@charset "UTF-8";
/**
 * Modern CSS Reset Tweaks
 * ==================================================
 * A collection of modern CSS reset and normalization styles
 * to ensure consistent behavior across browsers, OS and devices.
 */
/* Ensure consistent font resizing on mobile devices */
@import url("https://fonts.googleapis.com/css2?family=Lexend+Zetta:wght@100..900&display=swap");
html {
  -webkit-text-size-adjust: 100%;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Basic body setup for layout and text rendering optimization */
body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  text-size-adjust: 100%;
}

/* Apply box-sizing globally for consistent element sizing */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Style unclassed links for better accessibility */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 * Based on Eric Meyer's CSS Reset v2.0-modified (public domain)
 * URL: http://meyerweb.com/eric/tools/css/reset/
 */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
br,
button,
canvas,
caption,
center,
cite,
code,
col,
colgroup,
data,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
head,
header,
hgroup,
hr,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
main,
map,
mark,
menu,
meta,
meter,
nav,
noscript,
object,
ol,
optgroup,
option,
output,
p,
param,
picture,
pre,
progress,
q,
rb,
rp,
rt,
rtc,
ruby,
s,
samp,
script,
section,
select,
small,
source,
span,
strong,
style,
svg,
sub,
summary,
sup,
table,
tbody,
td,
template,
textarea,
tfoot,
th,
thead,
time,
title,
tr,
track,
tt,
u,
ul,
var,
video,
wbr {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Add focus styles to improve accessibility */
:focus {
  outline: 0;
}

/* Normalize HTML5 elements for older browsers */
article,
aside,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
object,
section {
  display: block;
}

canvas,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove default list styling */
ol,
ul {
  list-style: none;
}

/* Normalize quote styling */
blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* Reset and normalize form inputs */
input:required,
input {
  box-shadow: none;
}

/* Autofill styling for better compatibility */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Improve appearance of search inputs */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

video {
  background: #000;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/**
 * Make media easier to work with
 */
audio,
img,
picture,
svg,
video {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* Additional attribute handling for accessibility */
[disabled],
[disabled="true"],
[aria-disabled="true"] {
  pointer-events: none;
}

/**
 * Address box sizing set to content-box in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: #000;
  line-height: 0;
  page-break-after: always;
}

/**
 * Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
}

/**
 * Show the overflow in IE and Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
  outline: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  color: inherit;
  white-space: normal;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
template {
  display: none;
}

.en {
  font-family: "Lexend Zetta", zen-maru-gothic, sans-serif;
}

/* ----------------------------------------
このCSSは、FLOCSSに従ってCSS設計を行っています。
| FLOCSSについて | https://github.com/hiloki/flocss
---------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  /* 2 */
  -webkit-text-decoration: underline dotted;
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  /* 1 */
  margin: 0;
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 1 */
  color: inherit;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* ----------------------------------------
Foundation - base -
プロジェクトにおける基本的なスタイルを定義します。
ページの下地としての全体の背景や、基本的なタイポグラフィなどが該当します。
---------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
}

body {
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt" 1;
  background: url(../images/common/head_line.svg) repeat-x top 0.5em left, #FFF9C9;
  color: #3D2D2D;
  font-family: zen-maru-gothic, sans-serif;
  font-feature-settings: "palt" 1;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.7;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media only screen and (min-width: 769px) {
  body {
    min-width: 1024px;
  }
}

@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    font-size: 3.25vw;
  }
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
}

iframe {
  vertical-align: bottom;
}

svg {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

a {
  color: #6EC576;
  text-decoration: none;
  transition: .3s;
}

/* ----------------------------------------
form style
---------------------------------------- */
input,
button,
select,
textarea {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-size: 1.5rem;
  font-weight: normal;
}

textarea {
  width: 100%;
  resize: vertical;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input[type="text"],
input[type="passwprd"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="number"],
textarea {
  width: 100%;
  padding: 5px;
  border: solid 1px #D3CDBD;
  background-color: #fff;
}

select {
  width: 100%;
  padding: 5px;
  border: solid 1px #D3CDBD;
}

/* ----------------------------------------
Component
再利用できるパターンとして、小さな単位のモジュールを定義します。
grid/button/form/media...
---------------------------------------- */
.c-cont {
  margin-bottom: 6.1em;
}

.c-cont:last-child {
  margin-bottom: 0;
}

.c-box {
  max-width: 840px;
  margin-right: auto;
  margin-bottom: 6.1em;
  margin-left: auto;
  padding: 3.3em 6.6em;
  border-bottom: 6px solid #9DCC93;
  border-radius: 3.5em;
  background: #fff;
}

@media screen and (max-width: 870px) {
  .c-box {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.c-box:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .c-box {
    padding: 2.5em 1.5em;
    border-radius: 1.5em;
  }
}

.c-title-1 {
  color: #374B33;
  font-family: mizolet, sans-serif;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.c-title-1:after {
  display: block;
  width: 2em;
  height: 5px;
  margin: 1em auto 1.5em;
  border-radius: 3px;
  background: #9DCC93;
  text-align: center;
  content: "";
}

@media only screen and (max-width: 768px) {
  .c-title-1 {
    font-size: 6vw;
  }
}

.c-dl {
  display: flex;
  flex-wrap: wrap;
}

.c-dl_head, .c-dl_body {
  background: url(../images/common/line_dots_sky.svg) repeat-x left bottom;
}

.c-dl_head {
  width: 13em;
  padding: 1em 2em 1.5em;
  line-height: 1.6;
}

.c-dl_body {
  width: calc(100% - 13em);
  padding: 1em 0 1.5em;
  line-height: 1.6;
}

.c-kome {
  margin-left: 1em;
  font-size: 80%;
  line-height: 1.6;
}

.c-kome:before {
  margin-left: -1em;
  content: "※";
}

.c-copy {
  -webkit-transform: translate(-50%, -100%);
  display: block;
  z-index: 555;
  position: absolute;
  top: 1.75em;
  left: 50%;
  transform: translate(-50%, -100%);
  font-family: "Lexend Zetta", sans-serif;
  font-size: 2rem;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1;
  content: "";
  pointer-events: none;
}

@media only screen and (max-width: 768px) {
  .c-copy {
    top: 1em;
    width: 100%;
    font-size: 4vw;
    text-align: center;
  }
}

/* ----------------------------------------
Layout
ページを構成するヘッダーやメインのコンテンツエリア、
サイドバーやフッターといったプロジェクト共通のコンテナーブロックのスタイルを定義します。
header/main/sidebar/footer...
---------------------------------------- */
#l-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5em;
}

#l-header .head-logo {
  margin-bottom: 0.25em;
}

@media only screen and (max-width: 768px) {
  #l-header .head-logo {
    width: 40vw;
  }
}

#l-footer {
  padding-top: 11em;
  background: #FEEEA0;
}

#l-container.home:before, #l-container.home:after {
  display: block;
  z-index: 555;
  position: fixed;
  bottom: 0;
  content: "";
}

#l-container.home:before {
  left: 0;
  width: 350px;
  width: 18.22917%;
  height: 400px;
  background: url(../images/common/follow_vege_left.svg) no-repeat bottom left;
  background-size: contain;
}

#l-container.home:after {
  right: 0;
  width: 18.22917%;
  height: 400px;
  background: url(../images/common/follow_vege_right.svg) no-repeat bottom right;
  background-size: contain;
}

@media only screen and (max-width: 768px) {
  #l-container.home:before, #l-container.home:after {
    width: 25%;
    background-size: contain;
  }
}

/* ----------------------------------------
Project
プロジェクト固有のパターンであり、いくつかのComponentと、
それに該当しない要素によって構成されるものを定義します。
例えば、記事一覧や、ユーザープロフィール、画像ギャラリーなどコンテンツを構成する要素などが該当します。
articles/ranking/promo...
---------------------------------------- */
.p-gnav {
  font-family: ads-corydance, sans-serif;
}

@media only screen and (min-width: 769px) {
  .p-gnavInner {
    display: flex;
    flex-direction: row;
  }
  .p-gnavItem {
    margin-right: 2.7em;
  }
}

@media only screen and (max-width: 768px) {
  .p-gnav {
    display: flex;
    z-index: 9999;
    position: fixed;
    top: 0;
    right: -100%;
    flex-flow: column;
    justify-content: center;
    width: 70%;
    height: 100%;
    padding: 50px 0;
    background-color: rgba(255, 255, 255, 0.9);
    transition: right 600ms 0s ease;
  }
  .p-gnav.is-enable {
    right: 0;
  }
  .p-gnavInner {
    width: 100%;
    height: 100%;
    margin: 0;
    padding-left: 0;
    overflow-y: auto;
    border-top: dotted 3px #A0D8E1;
    list-style: none;
  }
  .p-gnavItem {
    display: block;
    position: relative;
    width: 100%;
    border-bottom: dotted 3px #A0D8E1;
  }
  .p-gnavLink {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 20px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
  }
  .p-gnavLink:hover {
    background-color: rgba(160, 216, 225, 0.2);
  }
}

.p-hamburger {
  display: flex;
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  flex-flow: column;
  justify-content: space-between;
  width: 50px;
  height: 50px;
  padding: 17px 15px;
  background-color: #A0D8E1;
  cursor: pointer;
}

.p-hamburger::before, .p-hamburger::after {
  -webkit-transform-origin: 0 0;
  display: block;
  width: 20px;
  height: 3px;
  transform-origin: 0 0;
  border-radius: 3px;
  background: #fff;
  content: "";
  transition: all 200ms 0s ease;
}

.p-hamburger.is-close::before, .p-hamburger.is-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
}

.p-hamburger.is-close::before {
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
}

.p-hamburger.is-close::after {
  -webkit-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
}

@media only screen and (min-width: 769px) {
  .p-hamburger {
    display: none;
  }
}

.p-pagetop {
  z-index: 9998;
  position: fixed;
  right: 10px;
  bottom: 10px;
}

.p-pagetop:hover {
  cursor: pointer;
}

.p-footer_inner {
  z-index: 0;
  position: relative;
  height: 1.25em;
  height: 250px;
  background-color: #93D99A;
  background-image: url(../images/common/footer_mask.svg), url(../images/common/footer_line.svg);
  background-position: left top , bottom left;
  background-repeat: no-repeat , repeat-x;
  background-size: 100% auto , 2.2em auto;
}

@media only screen and (max-width: 768px) {
  .p-footer_inner {
    height: 150px;
    background-size: 100% auto , 1.1em auto;
  }
}

/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  z-index: 1;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform,-webkit-transform;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform,-webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  z-index: 10;
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 27px 44px;
  cursor: pointer;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  right: auto;
  left: 10px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 10;
  position: absolute;
  transform: translate3d(0, 0, 0);
  text-align: center;
  transition: .3s opacity;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  position: relative;
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #000;
  opacity: .2;
}

button.swiper-pagination-bullet {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #007aff;
  opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  -webkit-transform: translate3d(0, -50%, 0);
  top: 50%;
  right: 10px;
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  -webkit-transform: translateY(-50%);
  top: 50%;
  width: 8px;
  transform: translateY(-50%);
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s top,.2s -webkit-transform;
  transition: .2s transform,.2s top;
  transition: .2s transform,.2s top,.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  -webkit-transform: translateX(-50%);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s left,.2s -webkit-transform;
  transition: .2s transform,.2s left;
  transition: .2s transform,.2s left,.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s right,.2s -webkit-transform;
  transition: .2s transform,.2s right;
  transition: .2s transform,.2s right,.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform: scale(0);
  -webkit-transform-origin: left top;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
  background: #007aff;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  -ms-touch-action: none;
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  z-index: 50;
  position: absolute;
  bottom: 3px;
  left: 1%;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
  z-index: 50;
  position: absolute;
  top: 1%;
  right: 3px;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  -o-object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  -webkit-transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  z-index: -1000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 0 0;
  visibility: hidden;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  backface-visibility: hidden;
  pointer-events: none;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  -webkit-backface-visibility: hidden;
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  -webkit-filter: blur(50px);
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  filter: blur(50px);
  opacity: .6;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  -webkit-backface-visibility: hidden;
  z-index: 1;
  backface-visibility: hidden;
  pointer-events: none;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  -webkit-backface-visibility: hidden;
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

.swiper {
  padding-bottom: 18%;
  overflow: hidden;
  background: url(../images/top/main_bg.svg) no-repeat left bottom/100% auto;
}

@media only screen and (max-width: 768px) {
  .swiper {
    margin-top: 0;
    background-size: cover;
  }
}

.swiper-pagination {
  bottom: -4em !important;
}

.swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  background: url(../images/top/slide_icn_non-active.svg) no-repeat center/29px auto;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: url(../images/top/slide_icn_active.svg) no-repeat center/29px auto;
}

.swiper-container {
  max-width: 1220px;
  margin: 0 auto !important;
  padding: 0em 0;
  overflow: visible;
}

.swiper-container .swiper-button-next, .swiper-container .swiper-button-prev {
  width: 75px;
  height: 78px;
  margin-top: -40px;
  background-size: contain;
}

.swiper-container .swiper-button-next:hover, .swiper-container .swiper-button-prev:hover {
  cursor: pointer;
}

.swiper-slide img {
  border-radius: 4em;
}

.home .read {
  z-index: 0;
  position: relative;
  padding-bottom: 20em;
  background: url(../images/top/wave_sky.svg) no-repeat bottom -5em left;
  background-size: 100% auto;
}

.home .read_inner {
  display: flex;
  justify-content: space-between;
  margin-right: 5.20833%;
  margin-left: 5.20833%;
}

.home .read_text {
  position: relative;
  width: 40.69767%;
}

.home .read-deco_kids {
  width: 71.42857%;
  margin-top: 3em;
  margin-left: -15%;
}

.home .read-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
  padding-bottom: 0.75em;
  background: url(../images/top/read_ttle.svg) no-repeat left bottom/239px auto;
  color: #374B33;
  font-family: mizolet, sans-serif;
  font-size: 4.6rem;
  font-style: normal;
  font-weight: 400;
}

.home .read-title span {
  font-size: 3.2rem;
}

.home .read_images {
  width: 55.34884%;
  margin-top: -8%;
}

.home .read_images-child {
  display: flex;
  justify-content: end;
}

.home .read_images-child .img {
  width: 45%;
}

.home .read_images-child .img:first-child {
  margin-right: 5%;
}

.home .read_images-child .img:last-child {
  display: flex;
  align-items: end;
  margin-bottom: -10%;
}

@media screen and (max-width: 1290px) {
  .home .read_images-child {
    flex-direction: column;
    justify-content: space-between;
  }
  .home .read_images-child .img {
    width: 70%;
  }
  .home .read_images-child .img:last-child {
    margin-top: 5%;
    margin-left: auto;
  }
}

.home .read_images .img-main {
  position: relative;
  margin-bottom: 3em;
}

.home .read_images .img-main:before {
  display: block;
  z-index: 5;
  position: absolute;
  right: -7%;
  bottom: -5em;
  width: 49.68487%;
  height: 500px;
  background: url(../images/top/read_img_right.png) no-repeat left bottom/contain;
  content: "";
}

.home .read_images .img-main:after {
  display: block;
  z-index: -5;
  position: absolute;
  right: -10.4%;
  bottom: -40%;
  width: 384px;
  height: 400px;
  background: url(../images/top/read_img_right_bg.svg) no-repeat right top/contain;
  content: "";
}

.home .read_images .img img {
  border: #fff 1vw solid;
  border-radius: 3.5em;
}

.home .read-bg {
  z-index: -5;
  position: absolute;
  bottom: -100%;
}

@media only screen and (max-width: 768px) {
  .home .read {
    z-index: 0;
    position: relative;
    padding-bottom: 7em;
    background: url(../images/top/wave_sky.svg) no-repeat bottom -6em left;
    background-size: 100% auto;
  }
  .home .read_inner {
    flex-direction: column;
  }
  .home .read_text {
    width: 100%;
  }
  .home .read-deco_kids {
    width: 80%;
  }
  .home .read-title {
    padding-bottom: 1.15em;
    background-size: 6em;
    font-size: 8vw;
  }
  .home .read-title span {
    font-size: 6vw;
  }
  .home .read_images {
    width: 100%;
    margin-top: 3em;
  }
  .home .read_images-child .img {
    width: 80%;
  }
  .home .read_images .img:last-child {
    margin-top: 5%;
    margin-left: auto;
  }
  .home .read_images .img-main:before {
    bottom: -7em;
    width: 50%;
    background-size: contain;
  }
  .home .read_images .img-main:after {
    bottom: -15em;
    width: 50%;
    background-size: contain;
  }
  .home .read_images .img img {
    border: #fff 2.5vw solid;
  }
}

.home .map {
  z-index: 10;
  position: relative;
  margin-top: -20em;
  padding-top: 10em;
  background: url(../images/common/wave_yellow.svg) left top no-repeat, linear-gradient(rgba(0, 0, 0, 0), 50%, #FEEEA0 50%);
  background-size: 100% auto;
}

.home .map-wrap {
  width: calc(100% - 10.41666%);
  margin-right: 5.20833%;
  margin-left: 5.20833%;
  border-radius: 4.4em;
  background: #fff;
}

.home .map_inner {
  display: flex;
  align-items: center;
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 3.1em;
  padding-bottom: 3.1em;
}

@media screen and (max-width: 1250px) {
  .home .map_inner {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.home .map_text, .home .map-googlemap {
  width: 50%;
}

.home .map-title {
  padding-bottom: 1.25em;
  background: url(../images/top/map_title.svg) no-repeat center bottom;
  color: #374B33;
  font-size: 4.6rem;
  font-weight: 300;
  text-align: center;
}

.home .map-en {
  color: #374B33;
  font-family: mizolet, sans-serif;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
}

.home .map-googlemap {
  height: 640px;
  margin-top: -8.1em;
  margin-bottom: -8.1em;
  overflow: hidden;
  border: 1vw solid #fff;
  border-radius: 4.4em;
}

.home .map-googlemap iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .home .map {
    margin-top: -6em;
    padding-top: 7em;
    background: url(../images/common/wave_yellow.svg) left top no-repeat, linear-gradient(rgba(0, 0, 0, 0), 15%, #FEEEA0 15%);
    background-size: contain;
  }
  .home .map-wrap {
    border-radius: 2em;
  }
  .home .map_inner {
    flex-direction: column;
    margin-right: 1em;
    margin-left: 1em;
    padding-top: 3.1em;
    padding-bottom: 3.1em;
  }
  .home .map_text, .home .map-googlemap {
    width: 100%;
  }
  .home .map-title {
    padding-bottom: 1.25em;
    background-size: 3em;
    font-size: 8vw;
  }
  .home .map-en {
    font-size: 6vw;
  }
  .home .map-googlemap {
    height: 300px;
    margin-top: 0em;
    margin-bottom: 0em;
    border: 1vw solid #fff;
    border-radius: 2em;
  }
}

.top-table tr {
  background: url(../images/common/line_dots.svg) repeat-x left bottom;
}

.top-table tr:last-child {
  background: none;
}

.top-table_head {
  padding: 1em;
}

.top-table_head p {
  display: inline-block;
  width: 6em;
  min-height: 36px;
  padding: 0.5em .75em;
  border-radius: 5em;
  background: #6EC576;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}

.top-table_body {
  padding: 1em;
}

.about .policy {
  position: relative;
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 870px) {
  .about .policy {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.about .policy:before {
  -webkit-transform: rotate(3deg);
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14.28571%;
  height: 90px;
  transform: rotate(3deg);
  background: url(../images/common/vegetable_pumpkin.svg) no-repeat right bottom/100% auto;
  content: "";
}

.about .goal-img {
  position: relative;
}

.about .goal-img:before {
  display: block;
  position: absolute;
  bottom: 0;
  width: 25.39683%;
  height: 90px;
  content: "";
}

.about .goal-text {
  display: inline-block;
  margin-top: 1em;
  padding: 0 1.75em;
  border-radius: 1em;
  background: #fff;
  font-size: 2.2rem;
  font-weight: 600;
}

.about .goal-text p {
  position: relative;
}

.about .goal-text p:before, .about .goal-text p:after {
  display: block;
  position: absolute;
  width: .5em;
  height: .5em;
  border-radius: 1em;
  background: #D0EBEF;
  content: "";
}

.about .goal-text p:before {
  -webkit-transform: translateY(-50%);
  top: 50%;
  left: -.75em;
  transform: translateY(-50%);
}

.about .goal-text p:after {
  -webkit-transform: translateY(-50%);
  top: 50%;
  right: -.75em;
  transform: translateY(-50%);
}

.about .goal-list {
  display: flex;
  justify-content: center;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1110px) {
  .about .goal-list {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.about .goal-list_item {
  width: 30.15873%;
  text-align: center;
}

.about .goal-list_item .goal-img:before {
  z-index: 5;
}

.about .goal-list_item:nth-child(1) .goal-img:before {
  -webkit-transform: rotate(-8deg);
  left: 0;
  transform: rotate(-8deg);
  background: url(../images/common/vegetable_onion.svg) no-repeat;
  background-size: contain;
}

.about .goal-list_item:nth-child(2) .goal-img:before {
  -webkit-transform: rotate(-12deg);
  right: 0;
  transform: rotate(-12deg);
  background: url(../images/common/vegetable_potato.svg) no-repeat;
  background-size: contain;
}

.about .goal-list_item:nth-child(3) .goal-img:before {
  -webkit-transform: rotate(-10deg);
  right: 0;
  transform: rotate(-10deg);
  background: url(../images/common/vegetable_tomato.svg) no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 768px) {
  .about .goal-list {
    flex-direction: column;
    align-items: center;
  }
  .about .goal-list_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    margin-bottom: 1.5em;
  }
  .about .goal-text {
    font-size: 5vw;
  }
}

.about .schedule .contents .c-dl {
  margin-bottom: 2em;
}

.about .class {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 610px;
  margin-top: 1.5em;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 610px) {
  .about .class {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.about .class_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 0.5em;
  border-radius: 2em;
  background: #E2F5E4;
}

@media only screen and (min-width: 769px) {
  .about .class_item {
    width: 31.14754%;
    min-height: 190px;
    margin-bottom: 1em;
  }
  .about .class_item:nth-last-child(-n + 3) {
    margin-bottom: 0;
  }
}

.about .class-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.4rem;
  line-height: 1.8;
}

.about .class-name span {
  font-size: 80%;
}

@media only screen and (max-width: 768px) {
  .about .class_item {
    width: 48%;
    margin-bottom: 1em;
  }
  .about .class_item:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
  .about .class-name {
    margin-bottom: 1em;
    font-size: 4.5vw;
  }
  .about .class-img {
    width: 35%;
  }
}

.about .wave {
  margin-top: -20%;
}

.about .wave .wave-item {
  z-index: -5;
  position: relative;
}

.about .wave_inner {
  margin-top: -15%;
  background: #FEEEA0;
}

:root {
  --height: 3.7em;
}

@media only screen and (max-width: 768px) {
  :root {
    --height: 5em;
  }
}

.daily .season_cont .img img {
  border: .55em solid #fff;
}

.daily .season-main {
  width: 50%;
}

.daily .season-main .img img {
  border-radius: 4vw;
}

.daily .season-child {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  width: 39.58333%;
}

.daily .season-child .img img {
  border-radius: 2vw;
}

.daily .season-child_item {
  width: 46.05263%;
}

.daily .season-title {
  position: relative;
}

.daily .season-title img {
  border: none !important;
  border-radius: 0 !important;
}

.daily .season-title .deco {
  width: 91.42857%;
}

.daily .season-title .deco-item {
  position: absolute;
  bottom: 0;
  width: 25%;
}

.daily .season_item {
  display: flex;
  margin-bottom: 15em;
}

.daily .season_item:last-child {
  margin-bottom: 0;
}

.daily .season_item:nth-child(odd) .season-main {
  order: 1;
  margin-right: 3.92377%;
}

.daily .season_item:nth-child(odd) .season-main .img img {
  border-left: none;
  border-radius: 0 4vw 4vw 0;
}

.daily .season_item:nth-child(odd) .season-child {
  order: 2;
}

.daily .season_item:nth-child(even) {
  justify-content: flex-end;
}

.daily .season_item:nth-child(even) .season-main {
  order: 2;
  margin-left: 3.92377%;
}

.daily .season_item:nth-child(even) .season-main .img img {
  border-right: none;
  border-radius: 4vw 0 0 4vw;
}

.daily .season_item:nth-child(even) .season-child {
  order: 1;
}

.daily .season_item.spring .season-child_item:nth-child(2) {
  order: 1;
}

.daily .season_item.spring .season-child_item:nth-child(3) {
  order: 3;
}

.daily .season_item.spring .season-child_item:nth-child(4) {
  order: 4;
}

.daily .season_item.spring .season-title {
  order: 2;
}

.daily .season_item.spring .season-title .deco-item.onion {
  -webkit-transform: rotate(-8deg);
  left: 0;
  transform: rotate(-8deg);
}

.daily .season_item.spring .season-title .deco-item.potato {
  -webkit-transform: rotate(8deg);
  right: 0;
  transform: rotate(8deg);
}

.daily .season_item.summer .season-title .deco-item.tomato {
  -webkit-transform: rotate(-10deg);
  left: 0;
  transform: rotate(-10deg);
}

.daily .season_item.autumn .season-child_item:nth-child(2) {
  order: 1;
}

.daily .season_item.autumn .season-child_item:nth-child(3) {
  order: 3;
}

.daily .season_item.autumn .season-child_item:nth-child(4) {
  order: 4;
}

.daily .season_item.autumn .season-title {
  order: 2;
}

.daily .season_item.autumn .season-title .deco-item.carrot {
  -webkit-transform: rotate(-12deg);
  right: 0;
  transform: rotate(-12deg);
}

.daily .season_item.winter .season-title .deco-item.pumpkin {
  -webkit-transform: rotate(-8deg);
  left: 0;
  transform: rotate(-8deg);
}

.daily .season_item.winter .season-title .deco-item.radish {
  -webkit-transform: rotate(8deg);
  right: 0;
  transform: rotate(8deg);
}

.daily .season .event-title {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
}

.daily .season .event-title span {
  display: inline-block;
  position: relative;
}

.daily .season .event-title span:before, .daily .season .event-title span:after {
  -webkit-transform: translateY(-50%);
  display: block;
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 1em;
  background: #D0EBEF;
  content: "";
}

.daily .season .event-title span:before {
  left: -1.25em;
}

.daily .season .event-title span:after {
  right: -1.25em;
}

@media only screen and (max-width: 768px) {
  .daily .season_cont .img img {
    border-width: 1.5vw;
  }
  .daily .season-main {
    width: 95%;
    margin-top: 1.5em;
  }
  .daily .season-child {
    width: 95%;
    margin: 0 auto;
  }
  .daily .season-child .img img {
    border-radius: 3vw;
  }
  .daily .season-title {
    position: relative;
  }
  .daily .season-title img {
    border: none !important;
    border-radius: 0 !important;
  }
  .daily .season-title .deco {
    width: 91.42857%;
  }
  .daily .season-title .deco-item {
    position: absolute;
    bottom: 0;
    width: 25%;
  }
  .daily .season_item {
    flex-direction: column;
    margin-bottom: 5em;
  }
  .daily .season_item:last-child {
    margin-bottom: 0;
  }
  .daily .season_item:nth-child(odd) .season-main {
    order: 2;
    margin-right: 3.92377%;
  }
  .daily .season_item:nth-child(odd) .season-child {
    order: 1;
  }
  .daily .season_item:nth-child(even) {
    justify-content: flex-end;
  }
  .daily .season_item:nth-child(even) .season-main {
    order: 2;
    margin-left: 3.92377%;
  }
  .daily .season_item:nth-child(even) .season-child {
    order: 1;
  }
  .daily .season_item.spring .season-child_item:nth-child(2) {
    order: 2;
  }
  .daily .season_item.spring .season-title {
    order: 1;
  }
  .daily .season_item.autumn .season-child_item:nth-child(2) {
    order: 2;
  }
  .daily .season_item.autumn .season-title {
    order: 1;
  }
  .daily .season_item.autumn .season-title .deco-item.carrot {
    -webkit-transform: rotate(12deg);
    width: 18%;
    transform: rotate(12deg);
  }
  .daily .season .event-title {
    font-size: 3.5vw;
  }
  .daily .season .event-title span:before, .daily .season .event-title span:after {
    width: 2.5vw;
    height: 2.5vw;
  }
}

.daily .dayflow {
  display: flex;
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1250px) {
  .daily .dayflow {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.daily .dayflow .time {
  width: 10em;
  margin-top: calc(var(--height) + .5em);
}

.daily .dayflow .time-item {
  display: flex;
  align-items: center;
  height: var(--height);
  margin-bottom: 0.25em;
  padding: 0 1em .5em;
  background-image: url(../images/daily/line_dots.svg);
  background-position: bottom left;
  background-repeat: repeat-x;
  background-size: 14px auto;
}

.daily .dayflow .time-item p {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 2em;
}

.daily .dayflow .time-item p.am:before {
  margin-right: 0.5em;
  margin-left: -2em;
  content: "AM";
}

.daily .dayflow .time-item p.pm:before {
  margin-right: 0.5em;
  margin-left: -2em;
  content: "PM";
}

.daily .schedule {
  display: flex;
  flex-direction: column;
  width: calc(100% - 10em / 3);
  padding: 0 .25em;
}

.daily .schedule-title {
  height: var(--height);
  margin-bottom: 0.5em;
  padding: .5em 0;
  border-radius: 1em 1em 0 0;
  font-weight: 600;
  text-align: center;
}

.daily .schedule-item {
  display: flex;
  align-items: center;
  height: var(--height);
  margin-bottom: 0.25em;
  padding-bottom: 0.5em;
  background-image: url(../images/daily/line_dots.svg);
  background-position: bottom left;
  background-repeat: repeat-x;
}

.daily .schedule-item p {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 1em;
}

.daily .schedule-item.x15 {
  height: calc(var(--height) * 1.5);
}

.daily .schedule-item.x05 {
  height: calc(var(--height) * .5);
}

.daily .schedule.year-0-1 .schedule-item p, .daily .schedule.year-0-1 .schedule-title {
  background: #A0D8E1;
}

.daily .schedule.year-2 .schedule-item p, .daily .schedule.year-2 .schedule-title {
  background: #93D99A;
}

.daily .schedule.year-3-4-5 .schedule-item p, .daily .schedule.year-3-4-5 .schedule-title {
  background: #FCCF8B;
}

@media screen and (max-width: 1112px) {
  .daily .dayflow {
    font-size: 1.5vw;
  }
  .daily .dayflow .time {
    margin-top: 4.2em;
  }
}

@media only screen and (max-width: 768px) {
  .daily .dayflow {
    font-size: 2.5vw;
    line-height: 1.5;
  }
  .daily .dayflow .time {
    margin-top: 3.5em;
  }
  .daily .dayflow .time-item {
    background-size: .75em auto;
  }
  .daily .schedule-title {
    height: 3em;
  }
  .daily .schedule-item {
    background-size: .75em auto;
  }
}

.daily .c-cont {
  margin-bottom: 0;
  padding-bottom: 6.1em;
  background: url(../images/daily/wave_yellow.svg) left bottom no-repeat;
  background-size: contain;
}

.daily .c-cont:last-child {
  padding-bottom: 0;
  background: #FEEEA0;
}

.childcare .inner {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1250px) {
  .childcare .inner {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.childcare .photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1220px;
  margin-right: auto;
  margin-bottom: 1.5em;
  margin-left: auto;
}

@media screen and (max-width: 1250px) {
  .childcare .photo {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.childcare .photo:last-child {
  margin-bottom: 0;
}

.childcare .photo_item {
  width: 31.14754%;
}

.childcare .photo_item:nth-last-child(-n + 3) {
  margin-top: 1em;
}

.childcare .photo_item > img {
  border: .5vw solid #fff;
  border-radius: 2em;
}

.childcare .photo_item.deco {
  position: relative;
}

.childcare .photo_item.deco .item {
  z-index: 5;
  position: absolute;
}

.childcare .photo_item.deco .item-potato {
  -webkit-transform: rotate(-12deg);
  bottom: -1em;
  left: -2em;
  width: 29.21053%;
  transform: rotate(-12deg);
}

.childcare .photo_item.deco .item-tomato {
  -webkit-transform: rotate(12deg);
  right: -2em;
  bottom: -1em;
  width: 32.36842%;
  transform: rotate(12deg);
}

.childcare .photo_item.deco .item-carrot {
  -webkit-transform: rotate(-22deg);
  bottom: -1em;
  left: -2em;
  width: 16.05263%;
  transform: rotate(-22deg);
}

.childcare .photo_item.deco .item-pumpkin {
  -webkit-transform: rotate(12deg);
  right: -2em;
  bottom: -1em;
  width: 27.89474%;
  transform: rotate(12deg);
}

.childcare .photo_item.deco .item-onion {
  -webkit-transform: rotate(-8deg);
  right: -2em;
  bottom: -1em;
  width: 26.31579%;
  transform: rotate(-8deg);
}

.childcare .photo_item.deco .item-radish {
  -webkit-transform: rotate(9deg);
  right: -2em;
  bottom: -1em;
  width: 25%;
  transform: rotate(9deg);
}

@media screen and (max-width: 1290px) {
  .childcare .photo_item.deco .item-potato {
    left: 0px;
  }
  .childcare .photo_item.deco .item-tomato {
    -webkit-transform: rotate(12deg);
    right: 0em;
    bottom: -1em;
    transform: rotate(12deg);
  }
  .childcare .photo_item.deco .item-carrot {
    -webkit-transform: rotate(-22deg);
    bottom: -1em;
    left: 0px;
    transform: rotate(-22deg);
  }
  .childcare .photo_item.deco .item-pumpkin {
    -webkit-transform: rotate(12deg);
    right: 0em;
    bottom: -1em;
    transform: rotate(12deg);
  }
  .childcare .photo_item.deco .item-onion {
    -webkit-transform: rotate(-8deg);
    bottom: -1em;
    left: 0px;
    transform: rotate(-8deg);
  }
  .childcare .photo_item.deco .item-radish {
    -webkit-transform: rotate(9deg);
    right: 0px;
    bottom: -1em;
    transform: rotate(9deg);
  }
}

@media only screen and (max-width: 768px) {
  .childcare .photo_item {
    width: 48%;
    margin-top: 1em;
  }
  .childcare .photo_item > img {
    border-width: 1.5vw;
    border-radius: 1.5em;
  }
}

.childcare .composition {
  margin-bottom: 0;
  padding-bottom: 6.1em;
  background: url(../images/common/wave_yellow.svg) no-repeat left bottom 100%/100% auto, linear-gradient(rgba(0, 0, 0, 0), 50%, #FEEEA0 50%);
}

@media only screen and (max-width: 768px) {
  .childcare .composition {
    background-position: left bottom;
  }
}

.childcare .play {
  background: #FEEEA0;
}

/* ----------------------------------------
Utility
ComponentとProjectレイヤーのObjectのモディファイアで
解決することが難しい・適切では無い、わずかなスタイルの調整のための便利クラスなどを定義します。
clearfix/display/margin...
---------------------------------------- */
@media only screen and (min-width: 769px) {
  .u-display-mobile {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .u-display-pc {
    display: none;
  }
}

.u-link-disabled {
  text-decoration: none;
  pointer-events: none;
}

.u-images-liquid {
  max-width: 100%;
  height: auto;
}

.u-align-center {
  text-align: center;
}

.u-align-left {
  text-align: left;
}

.u-align-right {
  text-align: right;
}

.mainView {
  background: url(../images/top/main_bg.svg) no-repeat left bottom -25%/100% auto;
}

.mainView_item {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}

.mainView_item img {
  border-radius: 4.4em;
}

.mainView-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1.5em auto;
  font-family: ads-corydance, sans-serif;
  font-size: 6.8rem;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.mainView-title .title-jp {
  margin-bottom: 0.4em;
  color: #467D3B;
}

.mainView-title .title-jp span {
  width: 1em;
  height: 1em;
  padding: 0.15em;
  border-radius: 1em;
  background: #fff;
}

.mainView-title .title-en {
  color: #C5E6A4;
  font-size: 3rem;
}

@media only screen and (max-width: 768px) {
  .mainView {
    padding-bottom: 0;
    background-position: left bottom 8em;
  }
  .mainView_item {
    margin-right: 15px;
    margin-left: 15px;
  }
  .mainView_item img {
    border-radius: 2.2em;
  }
  .mainView-title {
    margin-top: 1.5em;
    font-size: 11vw;
  }
  .mainView-title .title-jp {
    margin-bottom: 0.4em;
  }
  .mainView-title .title-jp span {
    padding: 0.15em;
    border-radius: 1em;
  }
  .mainView-title .title-en {
    font-size: 7vw;
  }
}
