@charset "UTF-8";
/* =====================================================
  0.0 - Foundation
===================================================== */
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap");
/*
i-functions
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
  Base
-----------------------------------------------------*/
*,
:before,
:after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  line-height: 2.1;
  font-family: "Noto Sans JP", "Hiragino Sans", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-height: 1.75;
}

body {
  font-size: clamp(0.875rem, 0.34vw + 0.79375rem, 1rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

video {
  max-width: 100%;
  height: auto;
}

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:active,
a:hover {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
li {
  list-style-type: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
  line-height: 2.1;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

img {
  width: 100%;
  max-width: 100%; /* 1 */
  height: auto; /* 1 */
  vertical-align: middle; /* 2 */
  font-style: italic; /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover; /* 4 */
  shape-margin: 0.75rem; /* 5 */
  display: block;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

button {
  border: none;
  font: inherit;
  line-height: inherit;
  background: none;
  margin: 0;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
} /* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

* {
  box-sizing: border-box;
}

em {
  font-weight: normal;
}

/* =====================================================
  1.0 - inc
===================================================== */
/* =====================================================
  2.0 - Layout
===================================================== */
html {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  line-height: 1.75;
  scroll-behavior: smooth;
}

/*
body
-----------------------------------------------------*/
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #fff;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/*
spacer
-----------------------------------------------------*/
.l-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-sp {
    display: none;
  }
}

.l-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-pc {
    display: block;
  }
}

/*
wrapper
-----------------------------------------------------*/
.l-wrapper {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    width: 100%;
    max-width: 1007px;
  }
}
.l-wrapper_sp100 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-wrapper_sp100 {
    width: 90%;
    margin: 0 auto;
    max-width: 1007px;
  }
}
.l-wrapper_sp90 {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-wrapper_sp90 {
    width: 100%;
    margin: 0;
  }
}
.l-wrapper.-w640 {
  max-width: 640px;
}
.l-wrapper.-w810 {
  max-width: 810px;
}
.l-wrapper.-w70 {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .l-wrapper.-w70 {
    width: 100%;
    max-width: 1007px;
  }
}

/*
 header
-----------------------------------------------------*/
body.home .l-header {
  position: fixed;
}

.l-header {
  width: 100%;
  position: sticky;
  top: 0;
  background: rgba(250, 247, 240, 0.8);
  color: #fff;
  height: 90px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-header {
    color: #333;
  }
}
.l-header .l-wrapper {
  display: flex;
  align-items: center;
  height: 90px;
}
@media screen and (min-width: 768px) {
  .l-header .l-wrapper {
    max-width: 90%;
    justify-content: space-between;
  }
}
.l-header_logo {
  width: 250px;
}
.l-header_logo a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.l-header_logo img:first-of-type {
  width: 23px;
}
.l-header_logo img:last-of-type {
  width: 211px;
}
.l-header .-hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  z-index: 99;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-header .-hamburger {
    display: none;
  }
}
.l-header .-hamburger span {
  background: #707070;
  display: block;
  width: 50px;
  height: 1px;
  position: absolute;
  left: 15px;
  transition: transform 0.3s;
}
.l-header .-hamburger span:nth-of-type(1) {
  top: 35%;
}
.l-header .-hamburger span:nth-of-type(2) {
  top: 50%;
}
.l-header .-hamburger span:nth-of-type(3) {
  top: 65%;
}
.l-header .-hamburger.-active span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
  background: #fff;
}
.l-header .-hamburger.-active span:nth-of-type(2) {
  background-color: transparent;
}
.l-header .-hamburger.-active span:nth-of-type(3) {
  top: 50%;
  transform: rotate(135deg);
  background: #fff;
}
.l-header .-nav {
  background: #a69485;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  z-index: 98;
}
@media screen and (min-width: 768px) {
  .l-header .-nav {
    background: transparent;
    display: block;
    position: static;
    max-width: 950px;
    height: auto;
    padding: 0;
  }
}
.l-header .-nav_wrap {
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    height: auto;
    padding: 0;
  }
}
.l-header .-nav_wrap > ul {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul {
    display: flex;
    width: auto;
    justify-content: center;
  }
}
.l-header .-nav_wrap > ul.-txt {
  border-bottom: 1px solid #937E6C;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt {
    border: 0;
    margin-right: 2em;
  }
}
.l-header .-nav_wrap > ul.-txt li {
  position: relative;
  border-top: 1px solid #937E6C;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt li {
    border: 0;
  }
}
.l-header .-nav_wrap > ul.-txt li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  transition: all 0.3s;
  padding: 0.75em 15%;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt li a {
    font-weight: 600;
    color: #333;
    padding: 1em 1em 1.3em 1em;
    transition: all 0.3s;
  }
  .l-header .-nav_wrap > ul.-txt li a:hover ul {
    display: block;
  }
}
.l-header .-nav_wrap > ul.-txt li a span {
  transition: transform 0.3s;
}
.l-header .-nav_wrap > ul.-txt li a span:before, .l-header .-nav_wrap > ul.-txt li a span:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt li a span:before, .l-header .-nav_wrap > ul.-txt li a span:after {
    background: transparent;
    transition: transform 0.3s;
  }
}
.l-header .-nav_wrap > ul.-txt li a span:before {
  width: 1em;
  height: 2px;
  top: calc(1.25em - 1px);
  right: 15%;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt li a span:before {
    display: none;
  }
}
.l-header .-nav_wrap > ul.-txt li a span:after {
  width: 2px;
  height: 1em;
  top: 0.75em;
  left: auto;
  right: calc(15% + 0.5em - 1px);
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt li a span:after {
    top: auto;
    bottom: 10%;
    left: calc(50% - 10px);
    width: 20px;
    height: 5px;
    background: url("../img/common/icn_arw_d.svg") no-repeat 50% 100%;
  }
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt li:hover span:after {
    bottom: 7%;
  }
  .l-header .-nav_wrap > ul.-txt li:hover ul {
    display: block; /* PCではホバーでドロップダウンを表示 */
  }
}
.l-header .-nav_wrap > ul.-txt li.-open a span:after {
  transform: rotate(90deg);
}
.l-header .-nav_wrap > ul.-txt li.-open ul {
  display: block; /* JavaScriptで切り替え */
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt li.-open ul {
    diplay: static;
  }
}
.l-header .-nav_wrap > ul.-txt li > ul {
  display: none;
  position: static;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt li > ul {
    width: 242px;
    position: fixed;
    top: 70px;
    height: auto;
    padding: 26px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    z-index: 5;
    overflow: visible;
    transition: all 0.3s;
  }
}
.l-header .-nav_wrap > ul.-txt li > ul a {
  position: relative;
  display: block;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  transition: 0.2s;
  padding: 0.75em 0;
  padding-left: calc(15% + 2em);
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt li > ul a {
    padding-left: 2em;
  }
  .l-header .-nav_wrap > ul.-txt li > ul a:hover {
    text-decoration: underline;
  }
}
.l-header .-nav_wrap > ul.-txt li > ul a:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1em;
  height: 0.5em;
  top: 0.75em;
  left: 15%;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap > ul.-txt li > ul a:before {
    left: 0;
    border-color: #333;
  }
}
.l-header .-nav_wrap .-btn {
  margin: 3em 5%;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap .-btn {
    margin: 0;
  }
}
.l-header .-nav_wrap .-btn li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1em 4em;
  border-radius: 4em;
  background: #fff;
  color: #a69485;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap .-btn li a {
    background: #7abf85;
    color: #fff;
    font-weight: 600;
  }
}
.l-header .-nav_wrap .-btn li a:after {
  position: absolute;
  top: calc(50% - 0.75em);
  right: 1.5em;
  display: block;
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url("../img/common/icn_arw.svg") no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap .-btn li a:after {
    display: none;
  }
}
.l-header .-nav_wrap .-btn li a i {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap .-btn li a span {
    display: none;
  }
}
.l-header .-nav_wrap .-btn li a:hover {
  opacity: 0.6;
}
.l-header .-nav_wrap .-btn li:first-child a i {
  background: url("../img/common/icn_mail02.svg") no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .l-header .-nav_wrap .-btn li:first-child a i {
    background: url("../img/common/icn_mail.svg") no-repeat 50% 50%;
    background-size: contain;
  }
}
.l-header .-nav_wrap .-btn li:last-child {
  margin-top: 1.5em;
}
.l-header .-nav_wrap .-btn li:last-child a i {
  background: url("../img/common/icn_call.svg") no-repeat 50% 50%;
  background-size: contain;
}

/*
footer
-----------------------------------------------------*/
.l-footer {
  background: #a69485;
  color: #fff;
  padding-top: clamp(40px, -2.04vw + 55.7px, 48px);
  padding-bottom: clamp(30px, 2.54vw + 20.5px, 40px);
}
.l-footer a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer_site {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer_logo {
    width: 30%;
  }
}
.l-footer_logo a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-footer_logo a {
    margin-bottom: 1em;
  }
}
.l-footer_logo a img:first-of-type {
  width: 9.8%;
}
.l-footer_logo a img:last-of-type {
  width: 84.2%;
}
.l-footer_logo p,
.l-footer_logo address {
  font-size: 3.3vw;
  line-height: 1.57;
}
@media screen and (min-width: 768px) {
  .l-footer_logo p,
  .l-footer_logo address {
    font-size: 14px;
  }
}
.l-footer_logo p {
  margin-bottom: 1.57em;
}
.l-footer_logo p strong {
  display: block;
  font-weight: 600;
}
.l-footer_logo address {
  font-style: normal;
}
.l-footer_nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer_nav {
    width: 63%;
    display: flex;
    justify-content: space-between;
  }
}
.l-footer_nav dl dt,
.l-footer_nav dl dd,
.l-footer_nav dl li,
.l-footer_nav ul dt,
.l-footer_nav ul dd,
.l-footer_nav ul li {
  margin-bottom: 1em;
}
.l-footer_nav dl dt,
.l-footer_nav dl li,
.l-footer_nav ul dt,
.l-footer_nav ul li {
  font-weight: 600;
}
.l-footer_nav a {
  padding-bottom: 0.2em;
  background-image: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
.l-footer_nav a:hover {
  background-size: 100% 1px; /* 線の横幅を100%にする */
}
@media screen and (min-width: 768px) {
  .l-footer_sns {
    margin-bottom: 60px;
  }
}
.l-footer_sns p {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer_sns p {
    text-align: left;
  }
}
.l-footer_sns p a {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .l-footer_sns p a {
    display: flex;
    align-items: center;
  }
}
.l-footer_sns p a i {
  display: block;
  width: 33px;
  height: 33px;
  background: url("../img/common/icn_fb.svg") no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .l-footer_sns p a i {
    margin-right: 1em;
  }
}
.l-footer_sns p a span {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer_sns p a span {
    display: block;
    font-size: 14px;
    line-height: 1.57;
  }
}
.l-footer_sns p a:hover {
  transition: all 0.3s;
  opacity: 0.8;
}
.l-footer_copyright {
  text-align: center;
  margin-top: 23px;
  font-size: 2.5vw;
}
@media screen and (min-width: 768px) {
  .l-footer_copyright {
    text-align: left;
    font-size: 10px;
  }
}

/*
main
-----------------------------------------------------*/
body:not(.home) .l-main section p {
  margin-bottom: 1.75em;
}
body:not(.home) .l-main section iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  margin-bottom: 1em;
}

/*
banner
-----------------------------------------------------*/
.l-bnr {
  background-color: #ebe4d7;
  background-image: radial-gradient(circle, rgba(166, 148, 133, 0.1411764706) 2.5px, transparent 2.5px);
  background-position: 0 0;
  background-size: 25px 25px;
  padding-bottom: calc(28.8675134595vw + 5em);
}
@media screen and (min-width: 768px) {
  .l-bnr {
    padding-bottom: calc(9.6225044865vw + 5em);
  }
}
.l-bnr ul {
  padding: 80px 0 55px;
}
.l-bnr ul li {
  background: #faf7f0;
}
.l-bnr ul li:not(:last-of-type) {
  margin-bottom: 33px;
}
@media screen and (min-width: 768px) {
  .l-bnr ul li:not(:last-of-type) {
    margin-bottom: 62px;
  }
}
@media screen and (min-width: 768px) {
  .l-bnr ul li figure {
    position: relative;
    min-height: 337px;
  }
  .l-bnr ul li figure:before {
    content: "";
    position: absolute;
    width: 100%;
    margin-top: 33.46%;
  }
  .l-bnr ul li figure::after {
    content: "";
    display: block;
    clear: both;
  }
}
@media screen and (min-width: 768px) {
  .l-bnr ul li figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
  }
}
.l-bnr ul li figure figcaption {
  padding: 8%;
}
@media screen and (min-width: 768px) {
  .l-bnr ul li figure figcaption {
    position: absolute;
    width: 55.73%;
    height: 100%;
    padding: 5%;
    background: linear-gradient(to right, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .l-bnr ul li figure figcaption h3 {
    width: 350px;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 768px) {
  .l-bnr ul li figure figcaption p {
    width: 350px;
    line-height: 1.875;
  }
}
@media screen and (min-width: 768px) {
  .l-bnr ul li figure figcaption .c-btn {
    width: 270px;
  }
}
@media screen and (min-width: 768px) {
  .l-bnr ul li:not(:first-of-type) figcaption {
    color: #fff;
    background: linear-gradient(to right, rgb(43, 43, 43) 10%, rgba(43, 43, 43, 0) 100%);
  }
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
/*
box
-----------------------------------------------------*/
.c-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .c-box {
    flex-direction: row;
  }
}

/*
button
-----------------------------------------------------*/
.c-btn a {
  position: relative;
  display: block;
  background: #a69485;
  border: 1px solid #a69485;
  border-radius: 3em;
  padding: 1em 2.5em 1em 1.2em;
  color: #fff;
  font-size: clamp(16px, 0vw + 16px, 16px);
  transition: all 0.3s;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .c-btn a {
    padding: 1em 2em;
  }
}
.c-btn a:after {
  position: absolute;
  content: "";
  width: 2em;
  height: 1em;
  top: 0;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  vertical-align: middle;
  background: url("../img/common/icn_arw_w.svg") no-repeat 90% 50%;
}
.c-btn a:hover {
  color: #a69485;
  background: transparent;
}
.c-btn a:hover:after {
  background: url("../img/common/icn_arw.svg") no-repeat 90% 50%;
}
.c-btn.-border a {
  background: transparent;
  color: #a69485;
}
.c-btn.-border a:after {
  background: url("../img/common/icn_arw.svg") no-repeat 90% 50%;
}
.c-btn.-border a:hover {
  color: #fff;
  background: #a69485;
}
.c-btn.-border a:hover:after {
  background: url("../img/common/icn_arw_w.svg") no-repeat 90% 50%;
}
.c-btn.-lnk a:after {
  width: 22px;
  height: 22px;
  background: url("../img/common/icn_lnk_w.svg") no-repeat 90% 50%;
}
.c-btn.-lnk a:hover {
  color: #a69485;
  background: #fff;
}
.c-btn.-lnk a:hover:after {
  background: url("../img/common/icn_lnk_c.svg") no-repeat 90% 50%;
}
.c-btn.-none a {
  text-align: center;
  background: #a69485;
  color: #fff;
  padding: 1em 1.2em;
}
.c-btn.-none a:after {
  display: none;
}
.c-btn.-none a:hover {
  color: #a69485;
  background: #fff;
}
.c-btn.-pdf a {
  color: #d6a073;
  border-color: #d6a073;
  background: transparent;
  padding-right: 1.2em;
  text-align: center;
}
.c-btn.-pdf a:after {
  display: none;
}
.c-btn.-pdf a:hover {
  color: #fff;
  background: #d6a073;
}
.c-btn.-fb a {
  border-width: 0;
  background: #0866FF;
  display: flex;
  align-items: center;
}
.c-btn.-fb a i {
  width: 2.25rem;
  height: 2.25rem;
  background: url("../img/common/icn_fb.svg") no-repeat 90% 50%;
  background-size: contain;
  margin-right: 1rem;
}
.c-btn.-fb a span span {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-btn.-fb a span span {
    display: inline-block;
  }
}
.c-btn.-fb a:hover {
  background: #3A84FF;
}
.c-btn.-w270 a {
  min-width: 270px;
}
@media screen and (min-width: 768px) {
  .c-btn.-w270 a {
    max-width: 270px;
  }
}
.c-btn.-right {
  display: flex;
  justify-content: flex-end;
}

/*
c-dot
-----------------------------------------------------*/
.c-dot {
  width: 100%;
  height: calc(216px + 28.8675134595vw);
  background: url("../img/home/dot2.svg") no-repeat 50% 0;
}
@media screen and (min-width: 768px) {
  .c-dot {
    height: calc(245px + 9.6225044865vw);
  }
}

.c-dot2 {
  width: 100%;
  height: calc(216px + 28.8675134595vw);
  background: url("../img/home/dot.svg") no-repeat 50% 0;
}
@media screen and (min-width: 768px) {
  .c-dot2 {
    height: calc(245px + 9.6225044865vw);
  }
}

/*
fadein
-----------------------------------------------------*/
.c-fadein {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.c-fadein.-on {
  transform: translateY(0);
  opacity: 1;
}

/*
form
-----------------------------------------------------*/
.c-form_box h2 {
  margin-bottom: 1em;
}
.c-form_box dl {
  margin-bottom: 5em;
}
@media screen and (min-width: 768px) {
  .c-form_box dl div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5em;
  }
}
.c-form_box dl div dt {
  margin: 2em 0 1em;
}
@media screen and (min-width: 768px) {
  .c-form_box dl div dt {
    width: 10em;
    margin: 0;
    padding: 0.8em 0;
  }
}
.c-form_box dl div dt span {
  color: #f00;
}
@media screen and (min-width: 768px) {
  .c-form_box dl div dd {
    width: calc(100% - 10em);
  }
}
.c-form_box .-confirm dl > div {
  border-bottom: 1px solid #cecece;
  padding: 1rem;
}
.c-form_box .-confirm dl > div dt {
  padding: 0;
}
.c-form_box .-confirm dl > div:last-child {
  border: 0;
}
.c-form_policy {
  max-width: 640px;
  margin: 5em auto;
}
@media screen and (min-width: 768px) {
  .c-form_policy {
    align-items: center !important;
  }
}
.c-form .-acceptance label {
  display: block;
}
.c-form .-acceptance input[type=checkbox] {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-form .-acceptance input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.c-form .-acceptance .wpcf7-list-item-label {
  position: relative;
  padding-left: 50px;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  line-height: 40px;
  white-space: nowrap;
}
.c-form .-acceptance .wpcf7-list-item-label:before, .c-form .-acceptance .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}
.c-form .-acceptance .wpcf7-list-item-label:before {
  height: 40px;
  width: 40px;
  background: #a69485;
  border-radius: 5em;
  top: 50%;
  left: 0;
  margin-top: -18px;
  transition: 0.3s;
}
.c-form .-acceptance .wpcf7-list-item-label:after {
  top: 50%;
  transition: 0.3s;
  transform: rotate(45deg);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 12px;
  height: 20px;
  left: 14px;
  margin-top: -10px;
  opacity: 0.05;
}
.c-form_txt {
  max-width: 640px;
  margin: 5em auto;
}
.c-form_txt p {
  font-weight: 400;
}
.c-form .-select {
  position: relative;
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.c-form .-select:after {
  position: absolute;
  right: 1em;
  width: 10px;
  height: 7px;
  background-color: #dbdbdb;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.c-form .-select select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 2.6em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: none;
  background-color: #fff;
  color: #333;
  font-size: 1em;
  cursor: pointer;
  border: 1px solid #dbdbdb;
  font-size: clamp(1rem, 0.34vw + 0.91875rem, 1.125rem);
}
.c-form ul {
  margin: 0;
  padding: 0;
}
.c-form ul li {
  display: block;
}
.c-form ul li label {
  width: auto;
}
.c-form input {
  color: #333;
}
.c-form input[type=text], .c-form input[type=email], .c-form input[type=tel], .c-form input[type=datetime], .c-form input[type=date], .c-form input[type=month], .c-form input[type=week], .c-form input[type=time], .c-form input[type=datetime-local], .c-form input[type=tel], .c-form input[type=serch], .c-form input[type=url], .c-form input[type=password], .c-form input[type=number], .c-form input[type=range], .c-form input[type=color], .c-form input[type=file], .c-form input[type=image] {
  width: 100%;
  font-size: clamp(1rem, 0.34vw + 0.91875rem, 1.125rem);
  padding: 0.65em;
  border: transparent;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #cdd6dd;
}
.c-form input[type=radio], .c-form input[type=checkbox] {
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 0.3em;
}
.c-form input.zipcode {
  width: calc(100% - 2em);
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-form input.zipcode {
    width: 8em;
  }
}
.c-form textarea {
  width: 100%;
  color: #333;
  font-size: clamp(1rem, 0.34vw + 0.91875rem, 1.125rem);
  padding: 0.8em;
  border: transparent;
  box-sizing: border-box;
  height: 10em;
  background: #fff;
  border: 1px solid #cdd6dd;
}
.c-form input[type=submit], .c-form input[type=button],
.c-form button[type=submit],
.c-form button[type=button] {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-size: clamp(1.25rem, 0vw + 1.25rem, 1.25rem);
  font-weight: 900;
  padding: 0.6em 0;
  border: 0;
  background: #a69485;
  border-radius: 5em;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-form input[type=submit], .c-form input[type=button],
  .c-form button[type=submit],
  .c-form button[type=button] {
    width: auto;
    padding: 0.6em 5em;
  }
}
@media (hover: hover) {
  .c-form input[type=submit]:hover, .c-form input[type=button]:hover,
  .c-form button[type=submit]:hover,
  .c-form button[type=button]:hover {
    background-color: #d6a073;
  }
}
.c-form_btn {
  text-align: center;
  margin: 5em 0;
}
.c-form.-confirm dl {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-form.-confirm dl {
    flex-direction: row;
  }
}
.c-form.-confirm dl dt {
  font-weight: bold;
  width: 100%;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .c-form.-confirm dl dt {
    width: 10em;
    margin: 0 1rem 0;
  }
}
.c-form.-confirm dl dd {
  width: auto;
}

/*
lineup
-----------------------------------------------------*/
.c-lineup {
  overflow: hidden;
  margin-bottom: 48px;
}
.c-lineup .-inner {
  margin: 0 auto;
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 768px) {
  .c-lineup .-inner {
    padding-left: calc(50% - 502px);
    padding-right: calc(50% - 502px);
  }
}
.c-lineup .-box {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-lineup .-carousel {
    display: flex;
    gap: 2%;
    align-items: stretch;
  }
}
.c-lineup .-carousel li {
  margin-right: 30px;
  height: 100%;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .c-lineup .-carousel li {
    width: 30%;
    margin: 0;
    height: auto;
  }
}
.c-lineup .-carousel li figure {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-lineup .-carousel li figure img {
  display: block;
  border-radius: 20px 20px 0 0;
}
.c-lineup .-carousel li figure figcaption {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  height: 100%;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 1em;
}
.c-lineup .-carousel li figure figcaption h3 {
  font-size: 25px;
  line-height: 1.85;
  color: #a69485;
}
.c-lineup .-carousel li figure figcaption p {
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}
.c-lineup .-carousel li figure figcaption .c-btn {
  margin-top: auto;
}
.c-lineup .slick-list {
  overflow: visible;
}
.c-lineup .slick-track {
  display: flex;
}
.c-lineup .slick-slide {
  height: auto !important;
}

/*
c-herohead
-----------------------------------------------------*/
.c-herohead {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(3.25rem, 15.04vw - 0.275rem, 8.75rem);
}
@media screen and (min-width: 768px) {
  .c-herohead {
    flex-direction: row;
    align-items: stretch;
  }
}
.c-herohead img {
  width: auto;
  height: 58%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-herohead img {
    width: 58vw;
    height: auto;
    order: 1;
  }
}
.c-herohead h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: clamp(2.375rem, 1.37vw + 2.05rem, 2.875rem);
  font-weight: 600;
  padding: 1.5em 5%;
  background: #d6a073 url("../img/illust/leaf02.svg") no-repeat;
  background-position: 5% 50%;
}
@media screen and (min-width: 768px) {
  .c-herohead h1 {
    width: 42vw;
    text-align: center;
    padding: 1.5em 1em;
    background-position: 56px 51px;
  }
}
.c-herohead h1 span {
  display: inline-block;
}
.c-herohead.-none h1 {
  background-image: none;
}
@media screen and (min-width: 768px) {
  .c-herohead.-none h1 {
    width: 100%;
  }
}

/*
p-pagenav
-----------------------------------------------------*/
.wp-pagenavi {
  display: flex;
  gap: 0.5rem;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 48px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    width: 96%;
    padding-top: 0;
    margin-top: clamp(60px, 8.93vw - 8.6px, 120px);
  }
}
@media screen and (min-width: 620px) {
  .wp-pagenavi {
    gap: 1rem;
  }
}
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .back {
  background: #fff;
  color: #a69485;
  transition: 0.5s;
  text-decoration: none !important;
  border: 1px solid #a69485;
  display: inline-block;
  width: 4em;
  height: 2.5em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5em;
}
.wp-pagenavi .current.current,
.wp-pagenavi .page.current,
.wp-pagenavi .back.current {
  background: #a69485;
  color: #fff;
}
.wp-pagenavi .current:hover,
.wp-pagenavi .page:hover,
.wp-pagenavi .back:hover {
  background: #a69485;
  border-color: #a69485;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .current,
  .wp-pagenavi .page,
  .wp-pagenavi .back {
    width: 5em;
    height: 3em;
  }
}
.wp-pagenavi .back {
  width: auto;
  padding: 0 5em;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: #a69485;
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/common/icon_arrow_left_bk.svg) no-repeat 0% 50%/16px 9px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    background-position: 50% 50%;
  }
  .wp-pagenavi .previouspostslink:before,
  .wp-pagenavi .nextpostslink:before {
    content: "prev";
    display: block;
    font-size: 16px;
    font-family: "Noto Sans JP", "Hiragino Sans", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    letter-spacing: 0.25rem;
    font-weight: 600;
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translate(0%, -57%);
  }
}
.wp-pagenavi .nextpostslink {
  background: url(../img/common/icon_arrow_right_bk.svg) no-repeat 100% 50%/16px 9px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .nextpostslink {
    background-position: 50% 50%;
  }
  .wp-pagenavi .nextpostslink:before {
    content: "next";
    left: auto;
    font-size: 16px;
    font-family: "Noto Sans JP", "Hiragino Sans", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    letter-spacing: 0.25rem;
    font-weight: 600;
    right: 45px;
    top: 50%;
    transform: translate(0%, -53%);
  }
}
.wp-pagenavi .previouspostslink {
  left: 0;
}
.wp-pagenavi .nextpostslink {
  right: 0;
}

/*
section
-----------------------------------------------------*/
.c-section {
  padding-bottom: 120px;
}
.c-section h2,
.c-section h3,
.c-section h4 {
  margin-bottom: 1em;
}
.c-section .-column {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-section .-column {
    flex-direction: row;
    justify-content: space-between;
  }
}
.c-section .-column .-contents {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  .c-section .-column .-contents {
    width: 66%;
  }
}
.c-section .-column .-contents h2,
.c-section .-column .-contents h3 {
  font-weight: 600;
}
.c-section .-column .-contents .-date {
  color: #959595;
  font-weight: 600;
  margin-bottom: 1em;
}
.c-section .-column .-contents .-date ul {
  display: inline-block;
  margin-left: 1em;
}
.c-section .-column .-contents .-date ul li a {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  padding: 0.5em 1em;
  background: #d6a073;
  border-radius: 2em;
  transition: all 0.3s;
}
.c-section .-column .-contents .-date ul li a:hover {
  opacity: 0.7;
}
.c-section .-column .-contents .-body .-image {
  margin-bottom: 2em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.c-section .-column .-contents .-body .-image.-column2 img {
  display: block;
  width: 49%;
  margin-bottom: 1em;
}
.c-section .-column .-contents .-body img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .c-section .-column .-modules {
    width: 26%;
  }
}
.c-section .-column .-modules > div {
  width: 100%;
  margin-bottom: 3em;
}
.c-section .-column .-modules > div h3 {
  font-weight: 600;
}
.c-section .-column .-modules > div ul li {
  margin-bottom: 1em;
}
.c-section .-column .-modules .-year h3 {
  color: #a69485;
  font-weight: 600;
}
.c-section .-column .-modules .-year ul li {
  margin-bottom: 1em;
}
.c-section .-column .-modules .-year ul li a {
  display: block;
  color: #fff;
  background: #a69485;
  padding: 1em;
  font-size: clamp(1.125rem, 0.51vw + 1.00625rem, 1.25rem);
  font-weight: 600;
  border-radius: 5em;
  transition: all 0.3s;
}
.c-section .-column .-modules .-year ul li a:hover {
  opacity: 0.7;
}
.c-section .-column .-modules .-monthly,
.c-section .-column .-modules .-categories {
  padding: 2em 5% 1em;
  border: 1px solid #ebe4d7;
  border-radius: 20px;
}
.c-section .-column .-modules .-monthly h3,
.c-section .-column .-modules .-categories h3 {
  border-bottom: 1px solid #ebe4d7;
  padding-bottom: 1rem;
}
.c-section .-column .-modules .-amount {
  padding: 5%;
  background-color: #fffae8;
}
.c-section .-column .-modules .-amount p {
  margin-bottom: 0;
}
.c-section .-column .-modules .-amount p:nth-of-type(1) {
  font-size: clamp(0.8125rem, 1.27vw + 0.5125rem, 1.125rem);
  font-weight: 600;
}
.c-section .-column .-modules .-amount p:nth-of-type(2) {
  font-size: clamp(0.625rem, 0.76vw + 0.45rem, 0.8125rem);
  font-weight: 400;
}
.c-section .-column .-modules .-amount p:nth-of-type(3) {
  color: #a69485;
  font-size: clamp(0.8125rem, 1.53vw + 0.45rem, 1.1875rem);
}
.c-section .-column .-modules .-amount p:nth-of-type(3) span {
  font-size: clamp(1.3125rem, 1.78vw + 0.89375rem, 1.75rem);
  font-weight: 600;
}
.c-section .-column .-modules .-donation {
  padding: 5%;
  background-color: #fffae8;
}
.c-section .-column .-modules .-donation .c-btn {
  margin-bottom: 1em;
}
.c-section .-column .-modules .-donation p {
  display: none;
  font-size: clamp(0.875rem, 0.51vw + 0.75625rem, 1rem);
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-section .-column .-modules .-donation p {
    display: block;
  }
}
.c-section .-postlist dl div {
  display: block;
  border-bottom: 1px solid #e6e0db;
}
.c-section .-postlist dl a {
  display: flex;
  flex-direction: column;
  padding: 0.8em 0;
}
@media screen and (min-width: 768px) {
  .c-section .-postlist dl a {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.3em 0;
  }
}
.c-section .-postlist dl a dt {
  font-weight: 600;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .c-section .-postlist dl a dt {
    width: 12em;
    margin-bottom: 0;
  }
}
.c-section .-postlist dl a dt span {
  display: inline-block;
  float: right;
  width: 7em;
  text-align: center;
  color: #fff;
  font-size: 10px;
  padding: 0.5em 0;
  background: #d6a073;
  border-radius: 2em;
}
.c-section .-postlist dl a dd {
  position: relative;
  padding-right: 2em;
}
@media screen and (min-width: 768px) {
  .c-section .-postlist dl a dd {
    width: auto;
    width: calc(100% - 12em - 2em);
    font-weight: 600;
  }
}

/*
c-slick
-----------------------------------------------------*/
.c-slick_center {
  /* 中央以外のスライド */
  /* 中央のスライド */
}
.c-slick_center .slick-slide img {
  height: auto;
  opacity: 0.78;
  transform: scale(0.8);
  transition: opacity 0.5s, transform 0.5s;
  width: 90%;
}
.c-slick_center .slick-center img {
  opacity: 1;
  transform: scale(1);
  width: 100%;
}
.c-slick_rebuild {
  overflow: hidden;
  max-width: 300px;
  width: 100%;
  margin: auto;
}
.c-slick_rebuild img {
  max-width: 100%;
  display: block;
  height: auto;
}
.c-slick_rebuild .-thumb .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
.c-slick_rebuild .-thumb .slick-slide {
  display: block !important;
  float: none !important;
  flex: 0 0 47.5%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/*
table
-----------------------------------------------------*/
.c-table table {
  border-collapse: collapse;
  empty-cells: show;
}
.c-table table thead th,
.c-table table thead td {
  padding: 0.7em 1em;
  color: #a69485;
  font-weight: 600;
}
.c-table table tbody tr {
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}
.c-table table tbody tr th,
.c-table table tbody tr td {
  font-size: 20px;
  padding: 2em 1em;
  vertical-align: middle;
  font-weight: 500;
  line-height: 1.25;
}
.c-table.-scroll {
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
}
.c-table.-border thead {
  background: #f7f0df;
}
.c-table.-border th,
.c-table.-border td {
  text-align: center;
  font-size: 16px;
  padding: 1em;
  border: 1px solid #dbdbdb;
}
.c-table.-thbg th {
  background: #fffae8;
}
.c-table.-thleft th {
  text-align: left;
}
.c-table.-tdright td {
  text-align: right;
}
.c-table.-w100 table {
  width: 100%;
}

.scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: none;
  animation: scroll-hint-animation 2s infinite ease;
}

@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
.scroll-hint--show {
  display: block;
}
@media screen and (min-width: 768px) {
  .scroll-hint--show {
    display: none;
  }
}

table {
  line-height: 2;
}

/*
title
-----------------------------------------------------*/
.c-title {
  font-weight: 600;
}
.c-title.-ll {
  font-size: clamp(2.0625rem, 2.8vw + 1.40625rem, 2.75rem);
  line-height: 1.45;
  margin-bottom: 1.45em;
}
.c-title.-l {
  font-size: clamp(2rem, 2.04vw + 1.51875rem, 2.5rem);
  line-height: 1.45;
}
.c-title.-m {
  font-size: clamp(1.75rem, 1.37vw + 1.425rem, 2.25rem);
  line-height: 1.5;
}
.c-title.-ms {
  font-size: clamp(1.5rem, 1.03vw + 1.25625rem, 1.875rem);
  line-height: 1.5;
}
.c-title.-s {
  font-size: clamp(1.375rem, 0.68vw + 1.21875rem, 1.625rem);
  line-height: 1.5;
}
.c-title.-ss {
  font-size: clamp(1.125rem, 0.34vw + 1.04375rem, 1.25rem);
  line-height: 1.5;
}
.c-title.-beta {
  padding: 0.5em;
  background: #f7f0df;
  border-radius: 10px;
}

.-center {
  text-align: center;
}
.-center_sp {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .-center_sp {
    text-align: inherit;
  }
}
.-center_pc {
  text-align: inherit;
}
@media screen and (min-width: 768px) {
  .-center_pc {
    text-align: center;
  }
}

/*
triangle
-----------------------------------------------------*/
.c-triangle {
  position: relative;
  width: 100vw;
  height: 28.8675134595vw;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  margin-top: -28.8675134595vw;
}
@media screen and (min-width: 768px) {
  .c-triangle {
    height: 9.6225044865vw;
    margin-top: -9.6225044865vw;
    margin-bottom: -1px;
  }
}
.c-triangle.-home {
  background: #ebe4d7;
}
.c-triangle.-sub {
  background: #f7f0df;
}
.c-triangle.-sub2 {
  background: #faf7f0;
}
.c-triangle.-sub3 {
  background: #fffae8;
}
.c-triangle.-foot {
  background: #a69485;
}

/*
txt
-----------------------------------------------------*/
.c-txt.-b {
  font-weight: 800;
}
.c-txt.-i {
  font-style: italic;
}

/*
loading
-----------------------------------------------------*/
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #fff;
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
}

#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading_logo img {
  width: 80px;
  animation: tremble 0.3s infinite;
}

#loading.loaded, #loading.active {
  opacity: 0;
  visibility: hidden;
}

@keyframes tremble {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(4deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-4deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
/*
wp block editor customize
-----------------------------------------------------*/
.wp-block-file a {
  position: relative;
  display: block;
  background: #a69485;
  border: 1px solid #a69485;
  border-radius: 3em;
  padding: 1em 2.5em 1em 1.2em;
  font-size: clamp(16px, 0vw + 16px, 16px);
  transition: all 0.3s;
  margin-top: 1em;
  color: #d6a073;
  border-color: #d6a073;
  background: transparent;
  padding-right: 1.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .wp-block-file a {
    padding: 1em 2em;
  }
}
.wp-block-file a:after {
  display: none;
}
.wp-block-file a:hover {
  color: #fff;
  background: #d6a073;
}

/*
  3.2 - Project
-----------------------------------------------------*/
/*
donation
-----------------------------------------------------*/
.p-donation h5 {
  margin-bottom: 0.5em;
}
.p-donation .-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-donation .-box {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-donation .-box > div {
    width: 48%;
  }
}
.p-donation .-box > div.-month h4 {
  background: #fcc969;
}
.p-donation .-box > div.-once h4 {
  background: #cfffdc;
}
.p-donation .-box > div dl {
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.p-donation .-box > div dl div {
  display: flex;
  justify-content: space-between;
  margin-top: -1px;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  padding: 1em 0;
}
.p-donation .-box > div dl div dt {
  width: 5em;
}
.p-donation .-box > div dl div dd {
  width: calc(100% - 5em);
}
.p-donation .-borderbox {
  padding: 2em 5%;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-donation .-borderbox {
    padding: 2em;
  }
}
.p-donation .-borderbox p {
  margin-bottom: 0 !important;
}
.p-donation .-borderbox hr {
  margin: 2em 0;
}

/*
home
-----------------------------------------------------*/
.p-home_kv {
  position: relative;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .p-home_kv {
    height: 54.6vw;
  }
}
.p-home_kv .slick-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
}
.p-home_kv p {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home_kv p {
    font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    display: block;
    position: absolute;
    width: 90%;
    left: 5%;
    top: calc(50% - 1.45em);
    z-index: 3;
    font-size: 38px;
    line-height: 1.45;
    margin: 0 auto;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .p-home_kv p span {
    padding: 0 0.5em 0 2em;
  }
}
.p-home_kv ul {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-home_news {
  background: #ebe4d7;
}
.p-home_news .-box {
  position: relative;
  transform: translateY(-68px);
  width: 100%;
  height: auto;
  padding: 63px 28px 24px;
  border-radius: 20px;
  background: #faf7f0;
}
@media screen and (min-width: 768px) {
  .p-home_news .-box {
    margin-top: -73px;
    display: flex;
    justify-content: space-between;
    padding: 1.5em 0 1.5em 4.5%;
  }
}
.p-home_news h2 {
  position: relative;
  font-size: clamp(1.5rem, 1.02vw + 1.2625rem, 1.75rem);
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .p-home_news h2 {
    text-align: left;
    padding-left: 2.6em;
    padding-top: 1em;
    text-align: left;
    margin-bottom: 0;
  }
}
.p-home_news h2 i {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home_news h2 i {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2.6em;
    height: 3em;
    background: url("../img/illust/news.svg") no-repeat 0 0;
    background-size: contain;
  }
}
.p-home_news dl {
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .p-home_news dl {
    width: 62%;
  }
}
.p-home_news dl div {
  display: block;
}
.p-home_news dl div:not(:last-of-type) {
  border-bottom: 1px solid #e6e0db;
}
.p-home_news dl a {
  display: block;
  padding: 0.8em 0;
}
@media screen and (min-width: 768px) {
  .p-home_news dl a {
    display: flex;
    padding: 1.3em 0;
  }
}
.p-home_news dl a dt {
  font-weight: 600;
  color: #b1b1b1;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .p-home_news dl a dt {
    width: 8em;
    margin-bottom: 0;
  }
}
.p-home_news dl a dd {
  position: relative;
  padding-right: 2em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-home_news dl a dd {
    width: auto;
    width: calc(100% - 8em - 1em);
    font-weight: 600;
  }
}
.p-home_news dl a dd:after {
  position: absolute;
  content: "";
  width: 1.625em;
  height: 1em;
  top: 0;
  right: 0;
  background: url("../img/common/icn_arw.svg") no-repeat 50% 50%;
  background-size: contain;
}
.p-home_lead {
  position: relative;
  background: #ebe4d7;
  padding-bottom: 9.6225044865vw;
}
@media screen and (min-width: 768px) {
  .p-home_lead .-column {
    display: flex;
    justify-content: space-between;
  }
}
.p-home_lead .-column p {
  font-size: clamp(1.25rem, 1.02vw + 1.0125rem, 1.5rem);
}
.p-home_lead .-column .-txt {
  width: 90%;
  margin: 0 auto;
  background-repeat: no-repeat;
}
.p-home_lead .-column:nth-of-type(1) {
  align-items: flex-start;
}
.p-home_lead .-column:nth-of-type(1) .-img {
  margin-right: 5%;
  margin-bottom: 5%;
}
@media screen and (min-width: 768px) {
  .p-home_lead .-column:nth-of-type(1) .-img {
    width: 47%;
  }
}
.p-home_lead .-column:nth-of-type(1) .-img img {
  border-radius: 0 40px 40px 0;
}
.p-home_lead .-column:nth-of-type(1) .-txt {
  margin-bottom: 95px;
  background-image: url("../img/illust/leaf.svg");
  background-position: 50% 0;
  background-size: 4.1rem 6rem;
  padding-top: 6.5em;
}
@media screen and (min-width: 768px) {
  .p-home_lead .-column:nth-of-type(1) .-txt {
    width: 36%;
    padding-left: 6.5%;
    background-image: url("../img/illust/leaf.svg");
    background-position: 0 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-home_lead .-column:nth-of-type(2) {
    align-items: flex-end;
    margin-bottom: 10.8rem;
  }
}
.p-home_lead .-column:nth-of-type(2) .-img {
  margin-left: 5%;
  margin-bottom: 7.5%;
}
@media screen and (min-width: 768px) {
  .p-home_lead .-column:nth-of-type(2) .-img {
    order: 2;
    width: 40%;
  }
}
.p-home_lead .-column:nth-of-type(2) .-img img {
  border-radius: 40px 0 0 40px;
}
.p-home_lead .-column:nth-of-type(2) .-txt {
  width: 90%;
  margin: 0 auto 60px;
  background-image: url("../img/illust/tree.svg");
  background-position: 50% 0;
  background-size: 4.5rem 5rem;
  padding-top: 6.5em;
}
@media screen and (min-width: 768px) {
  .p-home_lead .-column:nth-of-type(2) .-txt {
    order: 1;
    width: 40%;
    padding-left: 10%;
    background-image: url("../img/illust/tree.svg");
    background-position: 0 0;
    background-size: 6rem 7rem;
    padding-top: 0;
    margin-bottom: 0;
  }
}
.p-home_lead .-image {
  background-image: url("../img/illust/bagworm.svg"), url("../img/illust/mountain.svg");
  background-repeat: no-repeat;
  background-position: 58vw 66vw, 38.7vw 174.3vw;
  background-size: 5rem 5.8rem, 14.2rem 6.7rem;
  padding-bottom: 11rem;
}
@media screen and (min-width: 768px) {
  .p-home_lead .-image {
    position: relative;
    height: 480px;
    background-position: 20% 95%, 100% 100%;
    background-size: auto;
    padding-bottom: 0;
  }
}
.p-home_lead .-image picture {
  display: block;
}
.p-home_lead .-image picture:nth-of-type(1) {
  margin-bottom: 5em;
}
@media screen and (min-width: 768px) {
  .p-home_lead .-image picture:nth-of-type(1) {
    margin-bottom: 0;
  }
}
.p-home_lead .-image picture:nth-of-type(1) img {
  border-radius: 0 40px 40px 0;
}
@media screen and (min-width: 768px) {
  .p-home_lead .-image picture:nth-of-type(1) img {
    position: absolute;
    width: 38.5%;
    border-radius: 40px;
    top: 95px;
    left: 0;
  }
}
.p-home_lead .-image picture:nth-of-type(2) img {
  border-radius: 40px 0 0 40px;
}
@media screen and (min-width: 768px) {
  .p-home_lead .-image picture:nth-of-type(2) img {
    position: absolute;
    width: 38.8%;
    border-radius: 40px;
    top: 0;
    right: 70px;
  }
}
.p-home_lead .p-home_dot {
  margin-top: -245px;
}
.p-home_lead .-movie {
  width: 90%;
  margin: 10em auto;
}
@media screen and (min-width: 768px) {
  .p-home_lead .-movie {
    width: 600px;
  }
}
.p-home_lead .-movie .movie {
  margin-top: 2em;
}
.p-home_lead .-movie a {
  position: relative;
  display: block;
}
.p-home_lead .-movie a::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.5);
  width: 80px;
  height: 80px;
}
.p-home_lead .-movie a::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
  border-width: 15px 0 15px 25px;
}
.p-home_about, .p-home_nursery, .p-home_baby {
  padding-bottom: calc(28.8675134595vw + 46px);
}
@media screen and (min-width: 768px) {
  .p-home_about, .p-home_nursery, .p-home_baby {
    padding-bottom: calc(9.6225044865vw + 46px);
  }
}
.p-home_about h2, .p-home_nursery h2, .p-home_baby h2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: clamp(1.875rem, 3.56vw + 1.04375rem, 2.75rem);
  margin-bottom: 1.8em;
}
@media screen and (min-width: 768px) {
  .p-home_about h2, .p-home_nursery h2, .p-home_baby h2 {
    display: flex;
    align-items: center;
    text-align: left;
    padding-top: 1.25em;
  }
}
.p-home_about h2 i, .p-home_nursery h2 i, .p-home_baby h2 i {
  display: block;
  width: 65px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media screen and (min-width: 768px) {
  .p-home_about h2 i, .p-home_nursery h2 i, .p-home_baby h2 i {
    margin-right: 20px;
  }
}
.p-home_about {
  background: #faf7f0;
}
.p-home_about h2 i {
  background-image: url("../img/illust/leaf02.svg");
}
.p-home_nursery {
  background: #f7f0df;
}
.p-home_nursery h2 i {
  background-image: url("../img/illust/acorn.svg");
}
.p-home_baby {
  background: #faf7f0;
}
.p-home_baby:after {
  position: absolute;
  content: "";
  bottom: 9.6225044865vw;
  left: 50%;
  width: 10px;
}
.p-home_baby h2 i {
  background-image: url("../img/illust/sheep.svg");
}
.p-home_baby .-img {
  margin-bottom: 2rem;
}
.p-home_baby .-txt {
  padding: 0 5%;
}
@media screen and (min-width: 768px) {
  .p-home_baby .-column {
    display: flex;
    justify-content: space-between;
  }
  .p-home_baby .-column .-img {
    width: 45%;
  }
  .p-home_baby .-column .-img img {
    border-radius: 10px;
  }
  .p-home_baby .-column .-txt {
    width: 49%;
  }
  .p-home_baby .-column .-txt .c-btn {
    width: 270px;
  }
}
.p-home_image {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home_image {
    display: block;
    background: #f7f0df;
    padding-bottom: 9.6225044865vw;
  }
}
.p-home .-facebook {
  background: #fff;
  padding: 7% 5%;
}
@media screen and (min-width: 768px) {
  .p-home .-facebook {
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3% 5%;
  }
}
.p-home .-facebook p {
  margin-bottom: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-home .-facebook p {
    width: 46%;
  }
}
@media screen and (min-width: 768px) {
  .p-home .-facebook .c-btn {
    width: 43%;
  }
  .p-home .-facebook .c-btn a {
    margin-top: 0;
  }
}
.p-home .c-dot {
  background-color: #f7f0df;
}

/*
facilities
-----------------------------------------------------*/
.p-facilities .-img img {
  border-radius: 10px;
}
.p-facilities .-about .c-box {
  flex-direction: column;
}
.p-facilities .-about .c-box .-txt {
  margin-bottom: 5em;
}
.p-facilities .-about .c-box .-img {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-facilities .-about .c-box .-img {
    width: 88%;
  }
}
.p-facilities .-william .c-box {
  margin-bottom: 8em;
}
@media screen and (min-width: 768px) {
  .p-facilities .-william .c-box .-txt {
    width: 47%;
  }
}
@media screen and (min-width: 768px) {
  .p-facilities .-william .c-box .-img {
    width: 42%;
  }
}
.p-facilities .-william .c-box:nth-of-type(even) {
  margin-bottom: 5em;
}
@media screen and (min-width: 768px) {
  .p-facilities .-william .c-box:nth-of-type(even) .-img {
    order: -1;
  }
}
.p-facilities .-facilities .c-box {
  flex-direction: column;
  margin-bottom: 5em;
}
.p-facilities .-facilities .c-box .-img {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2em;
}
.p-facilities .-facilities .c-box .-img img {
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-facilities .-facilities .c-box .-img {
    flex-direction: row;
  }
  .p-facilities .-facilities .c-box .-img img {
    width: 49%;
    margin-bottom: 0;
  }
}
/*
guide-admission
-----------------------------------------------------*/
.p-guide-admission .-box {
  margin-bottom: 5em;
}

/*
guide-baby
-----------------------------------------------------*/
.p-guide-baby h2 {
  display: flex;
  margin-bottom: 2em;
}
.p-guide-baby h2 i {
  display: block;
  width: 96px;
  height: 73px;
  margin-right: 0.2em;
}
.p-guide-baby section,
.p-guide-baby .-box {
  margin-bottom: 5em;
}
.p-guide-baby .-kotori i {
  background: url("../img/illust/bird.svg") no-repeat 50% 50%;
}
.p-guide-baby .-kohitsuji i {
  background: url("../img/illust/sheep.svg") no-repeat 50% 50%;
}
.p-guide-baby .-txt {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-guide-baby .-txt {
    width: 45%;
  }
}
.p-guide-baby .-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-guide-baby .-img {
    width: 45%;
  }
}
.p-guide-baby .-img img {
  margin-bottom: 1em;
}
.p-guide-baby .-trouble li {
  margin-bottom: 1em;
}
.p-guide-baby .-trouble li span {
  display: block;
  width: 100%;
  text-align: center;
  color: #7abf85;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  padding: 1em;
  border: 1px solid #7abf85;
  border-radius: 3em;
}
.p-guide-baby .-trouble li:last-child {
  position: relative;
}
.p-guide-baby .-trouble li:last-child:before {
  content: "";
  display: block;
  margin-bottom: 1rem;
  width: 100%;
  height: 40px;
  background: url("../img/common/triangle.svg") no-repeat 50% 50%;
}
.p-guide-baby .-trouble li:last-child span {
  top: 51.9615242271px;
  left: 0;
  color: #fff;
  background: #7abf85;
}

/*
guide-flow
-----------------------------------------------------*/
.p-guide-flow .-flow {
  margin-bottom: clamp(5.4375rem, 22.65vw + 0.125rem, 11rem);
}
.p-guide-flow .-flow .-times {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-guide-flow .-flow .-times:before {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  top: 0;
  left: 35px;
  background: #7abf85;
  z-index: -1;
}
.p-guide-flow .-flow .-times:not(:last-of-type) {
  padding-bottom: clamp(2.9375rem, 13.99vw - 0.3375rem, 6.375rem);
}
.p-guide-flow .-flow .-times:last-of-type:before {
  display: none;
}
.p-guide-flow .-flow .-times .-time {
  text-align: center;
  color: #fff;
  width: 74px;
  height: 74px;
  line-height: 74px;
  background: #7abf85;
  border-radius: 3em;
}
.p-guide-flow .-flow .-times .-time h2 {
  line-height: 74px;
}
.p-guide-flow .-flow .-times .-conts {
  width: calc(100% - 148px);
}
.p-guide-flow .-flow .-times .-conts h3 {
  color: #7abf85;
  display: flex;
  align-items: center;
  margin-bottom: 0.3em;
  line-height: 74px;
}
.p-guide-flow .-flow .-times .-conts h3 i {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/illust/clock.svg) no-repeat 50% 50%;
  background-size: contain;
  margin-right: 0.5em;
}

/*
nursery-day
-----------------------------------------------------*/
.p-nursery-day .-timeflow {
  margin-bottom: clamp(5.4375rem, 22.65vw + 0.125rem, 11rem);
}
.p-nursery-day .-timeflow .-times {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-nursery-day .-timeflow .-times:before {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  top: 0;
  left: clamp(2.9375rem, 9.41vw + 0.73125rem, 5.25rem);
  background: #7abf85;
  z-index: -1;
}
.p-nursery-day .-timeflow .-times:not(:last-of-type) {
  padding-bottom: clamp(2.9375rem, 13.99vw - 0.3375rem, 6.375rem);
}
@media screen and (min-width: 768px) {
  .p-nursery-day .-timeflow .-times:last-of-type {
    align-items: flex-end;
  }
}
.p-nursery-day .-timeflow .-times:last-of-type:before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-nursery-day .-timeflow .-times:last-of-type:before {
    display: block;
  }
}
.p-nursery-day .-timeflow .-times .-time {
  text-align: center;
  color: #fff;
  width: clamp(6.125rem, 18.83vw + 1.7125rem, 10.75rem);
  background: #7abf85;
  border-radius: 3em;
  padding: 0.2em 0;
}
.p-nursery-day .-timeflow .-times .-time h2 {
  margin: 0;
}
.p-nursery-day .-timeflow .-times .-conts {
  width: 65%;
}
@media screen and (min-width: 768px) {
  .p-nursery-day .-timeflow .-times .-conts {
    width: 78%;
  }
}
.p-nursery-day .-timeflow .-times .-conts figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-nursery-day .-timeflow .-times .-conts figure:not(:last-of-type) {
  margin-bottom: clamp(2.9375rem, 13.99vw - 0.3375rem, 6.375rem);
}
@media screen and (min-width: 768px) {
  .p-nursery-day .-timeflow .-times .-conts figure {
    flex-direction: row;
  }
}
.p-nursery-day .-timeflow .-times .-conts figure img {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-nursery-day .-timeflow .-times .-conts figure img {
    width: 36%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-nursery-day .-timeflow .-times .-conts figure figcaption {
    width: 58%;
  }
}
.p-nursery-day .-timeflow .-times .-conts figure figcaption h3 {
  color: #7abf85;
  display: flex;
  align-items: center;
  margin-bottom: 0.3em;
}
.p-nursery-day .-timeflow .-times .-conts figure figcaption h3 i {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/illust/clock.svg) no-repeat 50% 50%;
  background-size: contain;
  margin-right: 0.5em;
}
.p-nursery-day .-sns {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-nursery-day .-sns {
    margin-bottom: 100px;
  }
  .p-nursery-day .-sns a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    border-radius: 10em;
    font-size: clamp(1.125rem, 0.51vw + 1.00625rem, 1.25rem);
    line-height: 1.5;
    background: #f7f0df url(../img/common/icn_lnk.svg) no-repeat 95% 50%;
    transition: all 0.3s;
  }
  .p-nursery-day .-sns a:hover {
    opacity: 0.7;
  }
  .p-nursery-day .-sns i {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url(../img/common/icn_fb_b.svg) no-repeat 50% 50%;
    margin-right: 0.5em;
  }
  .p-nursery-day .-sns span {
    display: inline-block;
  }
}
.p-nursery-day .-note {
  background: #f7f0df;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 2em 5%;
}
@media screen and (min-width: 768px) {
  .p-nursery-day .-note {
    border-radius: 20px;
    margin: 0 auto;
    padding: 3em 3.5em;
  }
}
.p-nursery-day .-note h2 {
  margin-bottom: 0.8em;
}
.p-nursery-day .-note ul {
  line-height: 1.75;
}
.p-nursery-day .-note ul li {
  position: relative;
  padding-left: 1em;
}
.p-nursery-day .-note ul li:before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0.475em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background: #d6a073;
  border-radius: 1em;
}

/*
nursery-event
-----------------------------------------------------*/
.p-nursery-event {
  background: #fffae8;
}
.p-nursery-event .c-box {
  background: #fff;
  padding: 43px 5%;
}
@media screen and (min-width: 768px) {
  .p-nursery-event .c-box {
    padding: 45px;
  }
}
@media screen and (min-width: 768px) {
  .p-nursery-event .c-box .-img {
    width: 62%;
  }
}
@media screen and (min-width: 768px) {
  .p-nursery-event .c-box .-txt {
    width: 33%;
  }
}
.p-nursery-event .slick-list {
  border-radius: 10px;
}
.p-nursery-event .slick-dots {
  display: flex;
  justify-content: center;
}
.p-nursery-event .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 1rem 5px 3rem;
  background: #dbdbdb;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-nursery-event .slick-dots li {
    margin: 1rem 5px 0;
  }
}
.p-nursery-event .slick-dots li:hover, .p-nursery-event .slick-dots li.slick-active {
  background: #111;
}
.p-nursery-event .slick-dots li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.p-nursery-event h2 {
  display: flex;
  margin-bottom: 1rem;
}
.p-nursery-event h2 i {
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  margin-right: 0.4em;
}
.p-nursery-event .-semester1 h2 i {
  background: url("../img/illust/cherryblossom.svg") no-repeat 50% 50%;
  background-size: contain;
}
.p-nursery-event .-semester2 h2 i {
  background: url("../img/illust/acorn.svg") no-repeat 50% 50%;
  background-size: contain;
}
.p-nursery-event .-semester3 h2 i {
  background: url("../img/illust/snowman.svg") no-repeat 50% 50%;
  background-size: contain;
}

/*
nursery-policy
-----------------------------------------------------*/
.p-nursery-policy .c-section {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .p-nursery-policy .c-section {
    padding: 54px 0;
  }
}
.p-nursery-policy .c-section:nth-of-type(even) {
  background: #f2e7dc;
}
.p-nursery-policy .c-section .-txt {
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .p-nursery-policy .c-section .-txt {
    width: 42%;
    margin-bottom: 0;
  }
}
.p-nursery-policy .c-section .-txt h2 {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-nursery-policy .c-section .-img {
    width: 51%;
  }
}
.p-nursery-policy .c-section .-img img {
  border-radius: 20px;
}
.p-nursery-policy .c-section dl {
  line-height: 1.75;
  margin: 3em calc(50% - 50vw) 0;
  padding: 3em 5%;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-nursery-policy .c-section dl {
    margin: 3em auto;
    border-radius: 10px;
  }
}
.p-nursery-policy .c-section dl div {
  margin-bottom: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.p-nursery-policy .c-section dl div dt {
  position: relative;
  padding-left: 1em;
  width: 4em;
}
@media screen and (min-width: 768px) {
  .p-nursery-policy .c-section dl div dt {
    width: 6em;
  }
}
.p-nursery-policy .c-section dl div dt:before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0.475em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background: #d6a073;
  border-radius: 1em;
}
.p-nursery-policy .c-section dl div dd {
  width: calc(100% - 4em);
}
@media screen and (min-width: 768px) {
  .p-nursery-policy .c-section dl div dd {
    width: calc(100% - 6em);
  }
}
.p-nursery-policy .c-section dl div dd dl {
  position: static;
  margin: 0 auto;
  padding: 0;
}
.p-nursery-policy .c-section dl div dd dl div {
  flex-direction: column;
  margin-bottom: 0;
  margin-top: 1em;
}
.p-nursery-policy .c-section dl div dd dl div dt {
  position: static;
  width: 100%;
  padding: 0;
  color: #d6a073;
  font-weight: 600;
}
.p-nursery-policy .c-section dl div dd dl div dt:before {
  display: none;
}
.p-nursery-policy .c-section dl div dd dl div dd {
  width: 100%;
}

/*
overview
-----------------------------------------------------*/
.p-overview .c-section .l-wrapper {
  padding-top: 87px;
  background: url("../img/common/icn_square.png") no-repeat 0 0;
}
.p-overview .c-section .-txt {
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .p-overview .c-section .-txt {
    width: 45%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-overview .c-section .-img {
    width: 46%;
  }
}
.p-overview .c-section .-img img {
  border-radius: 20px;
}
.p-overview .c-section h2 {
  margin-bottom: 2rem;
}
.p-overview .c-section h3 {
  margin-bottom: 2rem;
}
.p-overview .c-section dl {
  border-top: 1px solid #dbdbdb;
}
.p-overview .c-section dl div {
  padding: 1em;
  border-bottom: 1px solid #dbdbdb;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.p-overview .c-section dl div dt {
  width: 4em;
  flex: 2;
}
@media screen and (min-width: 768px) {
  .p-overview .c-section dl div dt {
    flex: 1;
    width: 20%;
  }
}
.p-overview .c-section dl div dd {
  flex: 6;
  width: calc(100% - 4em);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-overview .c-section dl div dd {
    width: 80%;
  }
}
.p-overview .c-section .-column {
  margin-bottom: 80px;
}
.p-overview .c-section:nth-of-type(2) .-column {
  flex-direction: column;
}

/*
rebuild
-----------------------------------------------------*/
.p-rebuild .-body:not(:last-of-type) {
  padding-bottom: 3em;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 3em;
}
.p-rebuild .-body .-box:not(:last-of-type) {
  margin-bottom: 3em;
}
.p-rebuild .-body dl.-attempt dt {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.p-rebuild .-body dl.-attempt dt:before {
  position: absolute;
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  top: 0.25em;
  left: 0;
  background: #7abf85;
  border-radius: 3em;
}
.p-rebuild .-body dl.-attempt dd {
  margin-bottom: 3em;
}
.p-rebuild .-body dl.-faq {
  line-height: 1.75;
}
.p-rebuild .-body dl.-faq div:not(:last-of-type) {
  margin-bottom: 3em;
}
.p-rebuild .-body dl.-faq div dt,
.p-rebuild .-body dl.-faq div dd {
  display: flex;
  align-items: flex-start;
}
.p-rebuild .-body dl.-faq div dt i,
.p-rebuild .-body dl.-faq div dd i {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  background-size: contain;
  margin-right: 0.5em;
}
.p-rebuild .-body dl.-faq div dt {
  font-size: clamp(1.125rem, 0vw + 1.125rem, 1.125rem);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 1rem;
}
.p-rebuild .-body dl.-faq div dt i {
  background: url("../img/common/icn_q.svg") no-repeat 50% 50%;
  background-size: contain;
}
.p-rebuild .-body dl.-faq div dd {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  line-height: 1.75;
  font-weight: 400;
}
.p-rebuild .-body dl.-faq div dd i {
  background: url("../img/common/icn_a.svg") no-repeat 50% 50%;
  background-size: contain;
}
.p-rebuild .-body dl.-faq div dd span {
  flex: 2;
}
.p-rebuild .-modules {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .p-rebuild .-modules {
    position: static;
    flex-direction: column;
    box-shadow: none;
  }
}
.p-rebuild .-modules > div {
  margin-bottom: 0 !important;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-rebuild .-modules > div {
    display: block;
    position: sticky;
    top: 120px;
  }
}
.p-rebuild .-modules .-amount,
.p-rebuild .-modules .-donation {
  width: 50%;
  margin: 0 !important;
  padding: 2.5% 5%;
}
@media screen and (min-width: 768px) {
  .p-rebuild .-modules .-amount,
  .p-rebuild .-modules .-donation {
    width: 100%;
    margin-bottom: 10px !important;
    padding: 5%;
  }
}
.p-rebuild .-modules .-amount p,
.p-rebuild .-modules .-donation p {
  line-height: 1.5;
}
.p-rebuild .-modules .-amount .c-btn,
.p-rebuild .-modules .-donation .c-btn {
  margin: 0 !important;
}
@media screen and (min-width: 768px) {
  .p-rebuild .-modules .-amount .c-btn,
  .p-rebuild .-modules .-donation .c-btn {
    margin-bottom: 1em !important;
  }
}
.p-rebuild .-modules .-amount {
  padding-right: 0 !important;
}
@media screen and (min-width: 768px) {
  .p-rebuild .-modules .-amount {
    padding-right: 5% !important;
  }
}
.p-rebuild .slick-dots {
  display: flex;
  justify-content: center;
}
.p-rebuild .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 1rem 5px 3rem;
  background: #dbdbdb;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-rebuild .slick-dots li {
    margin: 1rem 5px 0;
  }
}
.p-rebuild .slick-dots li:hover, .p-rebuild .slick-dots li.slick-active {
  background: #111;
}
.p-rebuild .slick-dots li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

body.page-rebuild .l-footer {
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  body.page-rebuild .l-footer {
    padding: 0;
  }
}

/*
recruit
-----------------------------------------------------*/
.p-recruit .c-box {
  margin-bottom: 3em;
}
.p-recruit .-img img,
.p-recruit .-img2 img {
  border-radius: 10px;
}
.p-recruit .-lead {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-recruit .-lead .-txt {
    width: 54%;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit .-lead .-img {
    width: 31%;
  }
}
.p-recruit .-lead .-img2 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-recruit .-lead .-img2 {
    width: 100%;
    flex-direction: row;
  }
}
.p-recruit .-lead .-img2 img:first-of-type {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-recruit .-lead .-img2 img:first-of-type {
    width: 29%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit .-lead .-img2 img:last-of-type {
    width: 35%;
  }
}
.p-recruit .-comment .c-box {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  padding: 1.5em;
  margin: 0 auto 5em;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-recruit .-comment .c-box {
    margin: 0 8% 5em;
  }
}
.p-recruit .-comment .c-box .-img {
  width: 80%;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-recruit .-comment .c-box .-img {
    width: 25%;
    margin-bottom: 0;
  }
}
.p-recruit .-comment .c-box .-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10em;
}
.p-recruit .-comment .c-box .-txt {
  width: 74%;
}
.p-recruit .-comment .c-box .-txt h3 {
  margin-bottom: 0.3em;
}
.p-recruit .-comment .c-box .-txt p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit .-comment .c-box:nth-of-type(odd) .-img {
    order: 1;
    margin: -4em -4em -4em 0;
  }
  .p-recruit .-comment .c-box:nth-of-type(even) .-img {
    margin: -4em 0 -4em -4em;
  }
}
.p-recruit .-message .c-box {
  margin-bottom: 7rem;
  justify-content: space-between;
}
.p-recruit .-message .c-box .-img {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-recruit .-message .c-box .-img {
    width: 35%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit .-message .c-box .-txt {
    width: 55%;
  }
}
.p-recruit .-message .c-box .-txt dt {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.p-recruit .-message .c-box .-txt dt i {
  width: 1.2em;
  height: 1.2em;
  background: url("../img/common/icn_q.svg") no-repeat 50% 50%;
  background-size: contain;
  margin-right: 0.5em;
}
.p-recruit .-message .c-box .-txt dt:not(:first-of-type) {
  margin-top: 1.5em;
}
.p-recruit .-message .c-box .-txt dd {
  line-height: 1.875;
}
.p-recruit .-box {
  margin-bottom: 3em;
}

/*
yamahoiku
-----------------------------------------------------*/
.p-yamahoiku .c-box .-txt {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  .p-yamahoiku .c-box .-txt {
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  .p-yamahoiku .c-box .-img {
    width: 42%;
  }
}
.p-yamahoiku .c-box .-img img {
  width: 72%;
  border-radius: 10px;
}
.p-yamahoiku .c-box .-img img:not(:last-of-type) {
  margin-bottom: 3em;
}
.p-yamahoiku .c-box .-img img:nth-of-type(odd) {
  float: right;
}
.p-yamahoiku .-activity {
  background: #faf7f0;
  padding-bottom: 28.8675134595vw;
}
@media screen and (min-width: 768px) {
  .p-yamahoiku .-activity {
    padding-bottom: 9.6225044865vw;
  }
}
.p-yamahoiku .-activity h3 {
  margin-bottom: 1em;
}
.p-yamahoiku .-activity p {
  margin-bottom: 3em;
}
.p-yamahoiku .-activity h4 {
  margin: 0;
}

/*
p-privacy-policy
-----------------------------------------------------*/
.p-privacy-policy ol {
  margin-bottom: clamp(1.875rem, 7.63vw + 0.0875rem, 3.75rem);
  counter-increment: auto;
}
.p-privacy-policy ol li {
  margin-bottom: 1rem;
  line-height: 2rem;
  list-style: auto;
}/*# sourceMappingURL=common.css.map */