@charset "UTF-8";
/* destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* ↓ パッケージ導入せず直書きも可能、必要に応じてnpm管理も可 */
@import url("https://unpkg.com/destyle.css/destyle.css");
/* ----------------------------------------
Foundation - base -
プロジェクトにおける基本的なスタイルを定義します。
ページの下地としての全体の背景や、基本的なタイポグラフィなどが該当します。
---------------------------------------- */
* {
  box-sizing: border-box;
}

@media (max-width: 767px) {
  html {
    overflow-x: hidden;
  }
}

body {
  color: #371A00;
  background: #F1EFE7;
  font-size: clamp(15px, 15px + (18 - 15) * (100vw - 375px) / (1280 - 375), 18px);
  font-family: "sawarabi-gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  word-wrap: break-word;
  font-feature-settings: "palt" 1;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
  position: relative;
}
body::before {
  position: fixed;
  left: 0;
  top: 0;
  content: "";
  border-width: clamp(3px, 3px + (8 - 3) * (100vw - 375px) / (1280 - 375), 8px);
  border-color: #CC4B41;
  border-style: solid;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  background: url(../images/common/round-right-top.svg) right -1px top -1px, url(../images/common/round-left-top.svg) left -1px top -1px, url(../images/common/round-right-bottom.svg) right -1px bottom -1px, url(../images/common/round-left-bottom.svg) left -1px bottom -1px;
  background-repeat: no-repeat;
}
body p {
  transform: rotate(0.03deg);
}
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  transform: rotate(0.03deg);
}

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

img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

iframe {
  vertical-align: bottom;
}

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

a {
  transition: 0.3s;
  text-decoration: none;
  transform: rotate(0.03deg);
}

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

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%;
  border: solid 1px #D3CDBD;
  padding: 5px;
}

.header {
  /* ハンバーガーメニュー */
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  /* 開閉アニメーション */
}
.header__toggle-btn {
  width: 50px;
  height: 50px;
  position: relative;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: colors(base);
  transition: all 0.3s;
  position: absolute;
}
.header__toggle span:nth-child(1) {
  top: 0;
}
.header__toggle span:nth-child(2) {
  top: 50%;
}
.header__toggle span:nth-child(3) {
  bottom: 0;
}
@media (max-width: 767px) {
  .header__toggle {
    display: flex;
  }
}
.header__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: colors(main);
    transition: right 0.3s ease;
    z-index: 999;
  }
  .header__nav.is-open {
    right: 0;
  }
}
.header__list {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .header__list {
    flex-direction: column;
    padding: 2rem;
  }
}
.header__item.is-current .header__link {
  color: yellow;
  font-weight: bold;
}
.header__link {
  color: colors(main);
  text-decoration: none;
}

.footer {
  background: #F6F4F0;
  position: relative;
  margin-top: calc(150px + 5em);
  padding-top: clamp(50px, 50px + (50) * (100vw - 375px) / (905), 100px);
  padding-bottom: clamp(50px, 50px + (50) * (100vw - 375px) / (905), 100px);
}
.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  top: -120px;
  left: 0;
  height: 150px;
  background: url(../images/common/foot_wave.svg) no-repeat bottom left;
  background-size: 100%;
}
.footer_inner {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .footer_inner {
    padding-inline: 4.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer_inner {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.footer_logo {
  width: 248px;
}
.footer-site_info {
  transform: rotate(0.03deg);
  margin-left: 5.5em;
  width: 33%;
}
.footer-site_info .head {
  margin-bottom: 1.35em;
}
.footer-site_info .head .corp {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1280 - 375), 18px);
}
.footer-site_info .head .site {
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1280 - 375), 20px);
}
.footer-site_info .body {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1280 - 375), 16px);
  margin-bottom: 2em;
}
.footer-site_info .body .number {
  display: flex;
  flex-direction: row;
  margin-top: 0.25em;
}
.footer-site_info .body .number .tel {
  margin-right: 1em;
}
.footer-site_info .body .address br {
  display: none;
}
.footer_nav {
  transform: rotate(0.03deg);
  margin-left: auto;
  width: 40%;
}
.footer_nav ul {
  display: flex;
  flex-flow: wrap column;
  height: 7em;
}
.footer_navItem {
  width: 33%;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
.footer_navItem:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #6B9447;
  border-radius: 50%;
}
.footer_copy {
  position: absolute;
  writing-mode: vertical-rl;
  right: 2.25vw;
  font-family: "finalsix", sans-serif;
  color: #CC4B41;
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 375px) / (1280 - 375), 16px);
}
@media screen and (max-width: 1160px) {
  .footer_inner {
    flex-wrap: wrap;
  }
  .footer_logo {
    width: 100%;
    text-align: center;
    margin-bottom: 2em;
  }
  .footer_logo img {
    width: 248px;
  }
  .footer-site_info {
    margin-left: 0;
    width: 48%;
  }
  .footer_nav {
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    margin-top: calc(80px + 2.5em);
  }
  .footer::before {
    top: -70px;
    height: 80px;
  }
  .footer_logo img {
    width: 30vw;
  }
  .footer-site_info {
    width: 100%;
    margin-bottom: 1.5em;
    padding-right: 3em;
  }
  .footer_nav {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .footer-site_info .body .number {
    flex-direction: column;
  }
  .footer-site_info .body .address br {
    display: block;
  }
}

/* ----------------------------------------
Project
プロジェクト固有のパターンであり、いくつかのComponentと、
それに該当しない要素によって構成されるものを定義します。
例えば、記事一覧や、ユーザープロフィール、画像ギャラリーなどコンテンツを構成する要素などが該当します。
articles/ranking/promo...
---------------------------------------- */
.p-gnav {
  color: #371A00;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  background-color: #F1EFE7;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 90;
  transition: right 600ms 0s ease;
}
.p-gnav.is-enable {
  right: 0;
}
.p-gnavLogo {
  width: 45%;
  text-align: center;
}
.p-gnavLogo img {
  width: 50%;
  max-width: 398px;
}
.p-gnav nav {
  width: 55%;
  padding-left: 5vw;
}
.p-gnavInner {
  width: 100%;
  overflow-y: auto;
  margin: 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: 1em;
}
.p-gnavItem {
  display: block;
  width: 100%;
  position: relative;
}
.p-gnavItem::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #6B9447;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-gnavLink {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  line-height: 1;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  font-size: clamp(26px, 26px + (40 - 26) * (100vw - 375px) / (1280 - 375), 40px);
  font-family: "finalsix", sans-serif;
  text-transform: uppercase;
  gap: 1em;
  padding: 0.5em 0.5em 0.5em 0.75em;
}
.p-gnavLink:hover {
  opacity: 0.7;
}
.p-gnavLinkJp {
  font-family: "sawarabi-gothic", sans-serif;
  color: #CC4B41;
  font-size: clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1280 - 375), 20px);
}
@media only screen and (max-width: 767px) {
  .p-gnav {
    flex-flow: column;
  }
  .p-gnavLogo {
    margin-bottom: 1em;
    width: 50%;
  }
  .p-gnavLogo img {
    width: 80%;
    height: auto;
  }
  .p-gnav nav {
    width: 100%;
    padding: 5vw;
  }
  .p-gnavItem::before {
    width: 8px;
    height: 8px;
  }
}
.p-hamburger {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 92px;
  height: 92px;
  padding: 30px 15px;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
}
.p-hamburger::before, .p-hamburger::after {
  display: block;
  content: "";
  width: 50px;
  height: 12px;
  border-radius: 1em;
  border-width: clamp(3px, 3px + (4 - 3) * (100vw - 375px) / (1280 - 375), 4px);
  border-color: #CC4B41;
  border-style: solid;
  transition: all 200ms 0s ease;
  transform-origin: 0 0;
}
.p-hamburger.is-close::before, .p-hamburger.is-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
}
.p-hamburger.is-close::before {
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
}
.p-hamburger.is-close::after {
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
}
.p-pagetop {
  position: fixed;
  right: 3px;
  bottom: 0;
  z-index: 50;
  font-family: "dreaming-outloud-script", sans-serif;
  background: #CC4B41;
  border-radius: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1280 - 375), 30px);
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #F1EFE7;
  padding: clamp(11px, 11px + (10) * (100vw - 375px) / (905), 21px);
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 375px) / (1280 - 375), 16px);
}
.p-pagetop::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background: url(../images/common/round-right-bottom.svg);
  background-repeat: no-repeat;
  padding-right: clamp(-2px, -2px + (5) * (100vw - 375px) / (905), 3px);
  padding-top: clamp(-10px, -10px + (2) * (100vw - 375px) / (905), -8px);
}
.p-pagetop::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background: url(../images/common/round-right-bottom.svg);
  background-repeat: no-repeat;
  padding-left: clamp(-10px, -10px + (1) * (100vw - 375px) / (905), -9px);
  padding-bottom: clamp(0px, 0px + (7) * (100vw - 375px) / (905), 7px);
}
.p-pagetop:hover {
  cursor: pointer;
}
.p-site-logo {
  position: absolute;
  top: 2em;
  left: 2em;
  z-index: 50;
}
@media only screen and (min-width: 768px) {
  .p-site-logo {
    width: 10.625%;
  }
}
@media only screen and (max-width: 767px) {
  .p-site-logo {
    width: 33%;
  }
}
.p-visual {
  width: 100%;
  height: 100vh;
  position: relative;
}
.p-visual::before {
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(55, 26, 0, 0.1);
  mix-blend-mode: multiply;
  z-index: 50;
}
.p-visual::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  height: 18vh;
  width: 100%;
  background: url(../images//common/mv_wave.svg) no-repeat left bottom/cover;
  z-index: 50;
}
.p-visual .swiper {
  height: 100vh;
}
.p-visual .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-page-title {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 45%;
  left: 50%;
  color: #fff;
  z-index: 50;
  font-family: "sictake-banare", sans-serif;
  font-size: clamp(24px, 24px + (60 - 24) * (100vw - 375px) / (1280 - 375), 60px);
  text-align: center;
  text-shadow: 0px 3px 19px #171C17;
  transform: translate(-50%, -50%);
}
.p-page-title_en {
  font-size: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1280 - 375), 30px);
  font-family: "finalsix", sans-serif;
}

.top-visual .swiper {
  width: 100%;
  height: 100vh;
  position: relative;
}
.top-visual .swiper::before {
  width: 13%;
  height: 180px;
  background: url(../images/top/mv_deco_bird.svg) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  z-index: 50;
  right: 5%;
  top: 8%;
}
.top-visual .swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 1em 1em 0 0;
}
.top-visual .swiper .swiper-pagination {
  z-index: 60;
}
.top-visual .swiper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1290px) {
  .top-visual .swiper img {
    top: 25%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: auto;
    height: 100%;
  }
}

/* ----------------------------------------
Component
再利用できるパターンとして、小さな単位のモジュールを定義します。
grid/button/form/media...
---------------------------------------- */
.c-section {
  margin-top: clamp(70px, 70px + (70) * (100vw - 375px) / (905), 140px);
  margin-bottom: clamp(70px, 70px + (70) * (100vw - 375px) / (905), 140px);
}
.c-section:nth-child(2) {
  margin-top: 0;
}
.c-section:last-child {
  margin-bottom: 0;
}
.c-section-sub {
  margin-top: clamp(25px, 25px + (30) * (100vw - 375px) / (905), 55px);
  margin-bottom: clamp(25px, 25px + (30) * (100vw - 375px) / (905), 55px);
}
.c-section-sub:nth-child(1) {
  margin-top: 0;
}
.c-section-sub:last-child {
  margin-bottom: 0;
}
.c-section-block {
  margin-top: clamp(16px, 16px + (16) * (100vw - 375px) / (905), 32px);
  margin-bottom: clamp(16px, 16px + (16) * (100vw - 375px) / (905), 32px);
}
.c-section-block:nth-child(1) {
  margin-top: 0;
}
.c-section-block:last-child {
  margin-bottom: 0;
}
.c-inner {
  width: 100%;
  max-width: 1010px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1040px) {
  .c-inner {
    margin-right: 15px;
    margin-left: 15px;
  }
}
.c-inner--lg {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1190px) {
  .c-inner--lg {
    margin-right: 15px;
    margin-left: 15px;
  }
}
.c-inner--xl {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .c-inner--xl {
    padding-inline: 4.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-inner--xl {
    margin-left: 15px;
    margin-right: 15px;
  }
  .c-inner--xl .c-inner--lg, .c-inner--xl .c-inner, .c-inner--xl .c-inner--sm {
    margin-left: 0;
    margin-right: 0;
  }
}
.c-inner--sm {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 890px) {
  .c-inner--sm {
    margin-right: 15px;
    margin-left: 15px;
  }
}
.c-link {
  border-width: clamp(1.5px, 1.5px + (2 - 1.5) * (100vw - 375px) / (1280 - 375), 2px);
  font-size: clamp(15px, 15px + (18 - 15) * (100vw - 375px) / (1280 - 375), 18px);
  border-color: #CC4B41;
  border-style: solid;
  border-radius: 5em;
  padding: 0.9em 3.5em 0.9em 2em;
  color: #CC4B41;
  font-family: "finalsix", sans-serif;
  min-width: 180px;
  display: inline-block;
  position: relative;
  text-align: left;
}
.c-link::before {
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  content: "";
}
.c-link:hover {
  background: #CC4B41;
  color: #F1EFE7;
}
.c-link-list {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.c-link.base::before {
  width: 1em;
  height: 2px;
  background: #CC4B41;
}
.c-link:hover.base::before {
  background: #F1EFE7;
}
.c-link.pdf, .c-link.word, .c-link.blank {
  color: #371A00;
  border-color: #B7C7A1;
  transition: 0.3s;
  min-width: 320px;
  font-family: "sawarabi-gothic", sans-serif;
}
.c-link.pdf:before, .c-link.word:before, .c-link.blank:before {
  width: 1em;
  height: 1em;
  aspect-ratio: 1/1;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background: #371A00;
  transition: #371A00 0.25s ease;
}
.c-link.pdf:hover, .c-link.word:hover, .c-link.blank:hover {
  background: #B7C7A1;
}
.c-link.pdf:hover::before, .c-link.word:hover::before, .c-link.blank:hover::before {
  background: #371A00;
}
@media only screen and (max-width: 767px) {
  .c-link.pdf, .c-link.word, .c-link.blank {
    min-width: auto;
  }
}
.c-link.insta::before {
  width: 1em;
  height: 1em;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url(../images/common/icn_instagram.svg);
  background: #CC4B41;
  transition: #CC4B41 0.25s ease;
}
.c-link.insta:hover {
  background: #CC4B41;
}
.c-link.insta:hover::before {
  background: #F1EFE7;
}
.c-link.pdf::before {
  mask-image: url(../images/common/icn_pdf.svg);
}
.c-link.word::before {
  mask-image: url(../images/common/icn_word.svg);
}
.c-link.blank::before {
  mask-image: url(../images/common/icn_blank.svg);
}
@media only screen and (max-width: 767px) {
  .c-link {
    min-width: auto;
  }
}
.c-head1 {
  color: #CC4B41;
  font-size: clamp(20px, 20px + (25 - 20) * (100vw - 375px) / (1280 - 375), 25px);
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  margin-bottom: clamp(22px, 22px + (78) * (100vw - 375px) / (905), 100px);
  margin-left: 0;
  margin-top: 0;
  margin-right: 0;
}
.c-head1 .en {
  text-transform: uppercase;
  font-size: clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1280 - 375), 60px);
  color: #371A00;
  font-family: "finalsix", sans-serif;
}
.c-head2 {
  display: flex;
  flex-direction: column;
  font-size: clamp(24px, 24px + (50 - 24) * (100vw - 375px) / (1280 - 375), 50px);
  margin-bottom: 1em;
  line-height: 1.7;
  align-items: start;
}
.c-head2 .en {
  color: #CC4B41;
  font-family: "finalsix", sans-serif;
}
.c-head2 .jp {
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 375px) / (1280 - 375), 24px);
  position: relative;
}
.c-head2 .jp:before {
  content: "";
  background: url(../images/common/title_deco_dot.svg) no-repeat left bottom;
  width: 2em;
  height: 1em;
  display: block;
  position: absolute;
  bottom: 0.5em;
  right: -2.5em;
}
.c-head3 {
  margin-bottom: 1.75em;
}
.c-head3 span {
  display: inline-block;
  font-size: clamp(17px, 17px + (24 - 17) * (100vw - 375px) / (1280 - 375), 24px);
  border-bottom: 1px solid #371A00;
  position: relative;
  padding-bottom: 0.5em;
}
.c-head3 span:after {
  position: absolute;
  top: -0.5em;
  right: -2em;
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url(../images/common/title_deco_leaf.svg) no-repeat;
  background-size: contain;
}
.c-head4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  font-size: clamp(17px, 17px + (22 - 17) * (100vw - 375px) / (1280 - 375), 22px);
  margin-bottom: 1em;
}
.c-head4:after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url(../images/common/title_deco_dot_small.svg) no-repeat;
  background-size: 0.75em;
  background-position: center left;
  margin-left: 0.5em;
}
.c-deflist {
  width: 100%;
  max-width: 1010px; /* デフォは下層想定の広め */
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.c-deflist dt, .c-deflist dd {
  transform: rotate(0.03deg);
}
.c-deflist dd {
  margin: 0;
}
.c-deflist--top {
  margin: 0;
}
.c-deflist--top dt {
  width: 170px;
  color: #CC4B41;
  padding-block: 2em;
}
.c-deflist--top dd {
  padding: 2em 2.5em;
  width: calc(100% - 170px);
  background-image: url(../images/common/dl_line.svg);
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 2px;
}
.c-deflist--top dd:last-child {
  background: none;
}
.c-deflist--dot dt, .c-deflist--dot dd {
  background-position: left bottom;
  background-size: 15px 15px;
  background-repeat: repeat-x;
  padding: 1em 1em 1.75em 1em;
}
.c-deflist--dot dt {
  font-weight: normal;
  width: 214px;
  background-image: radial-gradient(circle, #6B9447 2px, transparent 2px);
}
.c-deflist--dot dd {
  width: calc(100% - 214px);
  background-image: radial-gradient(circle, #B7C7A1 2px, transparent 2px);
}
@media screen and (max-width: 1200px) {
  .c-deflist--top dt {
    width: 5em;
  }
  .c-deflist--top dd {
    padding: 2em 1.5em;
    width: calc(100% - 5em);
  }
}
@media only screen and (max-width: 767px) {
  .c-deflist {
    flex-direction: column;
  }
  .c-deflist--top dt {
    width: auto;
    padding-bottom: 0em;
    margin-bottom: 0.5em;
  }
  .c-deflist--top dd {
    padding: 0 0 2em 0;
    width: 100%;
  }
  .c-deflist--dot dt {
    width: auto;
    padding-bottom: 0em;
    margin-bottom: 0.5em;
    background: none;
    font-weight: 800;
  }
  .c-deflist--dot dd {
    padding: 0 1em 2em 1em;
    width: 100%;
  }
}
.c-box-radius {
  border-radius: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1280 - 375), 60px);
  background: #fff;
  border-color: #F6F4F0;
  border-style: solid;
  border-width: clamp(3px, 3px + (8 - 3) * (100vw - 375px) / (1280 - 375), 8px);
  padding-left: clamp(15px, 15px + (55) * (100vw - 375px) / (905), 70px);
  padding-right: clamp(15px, 15px + (55) * (100vw - 375px) / (905), 70px);
  padding-top: clamp(15px, 15px + (55) * (100vw - 375px) / (905), 70px);
  padding-bottom: clamp(15px, 15px + (55) * (100vw - 375px) / (905), 70px);
}
.c-box-round {
  border-radius: clamp(20px, 20px + (100 - 20) * (100vw - 375px) / (1280 - 375), 100px);
  background: #fff;
  border-color: #F6F4F0;
  border-style: solid;
  border-width: clamp(3px, 3px + (8 - 3) * (100vw - 375px) / (1280 - 375), 8px);
  padding-left: clamp(15px, 15px + (17) * (100vw - 375px) / (905), 32px);
  padding-right: clamp(15px, 15px + (17) * (100vw - 375px) / (905), 32px);
  padding-top: clamp(15px, 15px + (17) * (100vw - 375px) / (905), 32px);
  padding-bottom: clamp(15px, 15px + (17) * (100vw - 375px) / (905), 32px);
}
.c-list_ol li {
  transform: rotate(0.03deg);
  margin-bottom: clamp(18px, 18px + (14) * (100vw - 375px) / (905), 32px);
}
.c-list_ol li:last-child {
  margin-bottom: 0;
}
.c-list_ol .title-area {
  display: flex;
  align-items: center;
}
.c-list_ol .title-area .number {
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "dreaming-outloud-script", sans-serif;
  color: #947D6A;
  font-size: clamp(18px, 18px + (49 - 18) * (100vw - 375px) / (1280 - 375), 49px);
  position: relative;
  padding-right: 0.5em;
  margin-right: 0.5em;
}
.c-list_ol .title-area .number .deco {
  font-family: "dreaming-outloud-scriptslant", sans-serif;
  font-style: italic;
  color: #C4B8AC;
  font-size: clamp(13px, 13px + (15 - 13) * (100vw - 375px) / (1280 - 375), 15px);
}
.c-list_ol .title-area .number:before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 1em;
  background: url(../images/common/number_line.svg) no-repeat center;
}
.c-list_ol .title-area .title {
  font-size: clamp(17px, 17px + (24 - 17) * (100vw - 375px) / (1280 - 375), 24px);
  transform: rotate(0.03deg);
}
.c-list_ol .title-area.small .number {
  font-size: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1280 - 375), 30px);
  margin-right: 0.75em;
  padding-right: 0.75em;
}
.c-list_ol .title-area.small .title {
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1280 - 375), 20px);
}
.c-list_ol .text-area {
  line-height: 1.9;
  margin-top: 1.75em;
}
.c-list_ol.is-bg li {
  background: #F6F4F0;
}
.c-list_ol.is-small li {
  padding-left: clamp(5px, 5px + (26) * (100vw - 375px) / (905), 31px);
  padding-right: clamp(5px, 5px + (26) * (100vw - 375px) / (905), 31px);
  padding-top: clamp(5px, 5px + (5) * (100vw - 375px) / (905), 10px);
  padding-bottom: clamp(5px, 5px + (5) * (100vw - 375px) / (905), 10px);
}
.c-list-default {
  transform: rotate(0.03deg);
}
.c-list-default li {
  margin-bottom: 1em;
  margin-left: 1em;
}
.c-list-default li:before {
  content: "*";
  margin-right: 0.5em;
  margin-left: -1em;
}
.c-list-default li:last-child {
  margin-bottom: 0;
}
.c-kome {
  transform: rotate(0.03deg);
}
.c-kome li {
  margin-left: 1.5em;
  margin-bottom: 0.75em;
}
.c-kome li:before {
  margin-left: -1.5em;
  margin-right: 0.5em;
  content: "※";
}
.c-kome li:last-child {
  margin-bottom: 0;
}
.c-table {
  width: 100%;
  transform: rotate(0.03deg);
  border-radius: clamp(16px, 16px + (32 - 16) * (100vw - 375px) / (1280 - 375), 32px);
  overflow: hidden;
}
.c-table td, .c-table th {
  padding: 1.25em 1em;
  text-align: center;
  font-weight: normal;
  vertical-align: middle;
}
.c-table_head-top {
  background: #C4B8AC;
  border-right: 1px solid #371A00;
}
.c-table_head-top:last-child {
  border-right: none;
}
.c-table_head-side {
  background: #371A00;
  color: #F1EFE7;
  border-bottom: 1px solid #F1EFE7;
}
.c-table_body {
  background: #fff;
  border-bottom: 1px solid #371A00;
  border-right: 1px solid #371A00;
}
.c-table_body:last-child {
  border-right: none;
}
.c-table_body.border-bottom {
  border-bottom: 1px solid #371A00;
}
.c-table_body.border-right {
  border-right: 1px solid #371A00;
}
.c-table_body.no-border {
  border: none;
}
.c-table tr:last-child th, .c-table tr:last-child td {
  border-bottom: none;
}
.c-scroll {
  margin-bottom: 2em;
}
@media only screen and (max-width: 767px) {
  .c-scroll {
    margin-top: 6.66667vw;
    margin-bottom: 1.33333vw;
    overflow: auto;
    white-space: nowrap;
  }
  .c-scroll:before {
    display: block;
    margin: 0px 0 5px;
    font-size: 2.6vw;
    content: "※横にスクロールします。";
  }
}

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

.top-visual {
  font-size: clamp(26px, 26px + (60 - 26) * (100vw - 375px) / (1280 - 375), 60px);
  padding: 4.5vw;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.top-visual::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  height: 18vh;
  width: 100%;
  background: url(../images/common/mv_wave.svg) no-repeat left bottom/cover;
  z-index: 50;
}
.top-visual::after {
  position: absolute;
  left: 4.5vw;
  bottom: 1.5em;
  content: "";
  width: 22.9166666667%;
  height: 100%;
  background: url(../images/top/mv_deco.svg) no-repeat left bottom/100%;
  z-index: 40;
}
.top-visual .read {
  font-family: "sictake-banare", sans-serif;
  color: #F1EFE7;
  position: absolute;
  left: 2.5em;
  bottom: 4.25em;
  z-index: 50;
  text-shadow: 0px 3px 19px #171c17;
  line-height: 1.2;
  font-size: clamp(26px, 26px + (60 - 26) * (100vw - 375px) / (1280 - 375), 60px);
}
@media screen and (max-width: 1290px) {
  .top-visual {
    padding: 0.75em;
    height: 80vh;
  }
  .top-visual::after {
    width: 45%;
    left: 0em;
    bottom: 2.5em;
  }
  .top-visual .read {
    left: 1.5em;
    bottom: calc(18vh + 0.5em);
  }
}
.top-news .news-list {
  display: flex;
  flex-direction: row;
  gap: 2.5em;
  margin-bottom: clamp(45px, 45px + (45) * (100vw - 375px) / (905), 90px);
}
.top-news .news-item {
  width: 25%;
}
.top-news .news-item .news-thumb {
  position: relative;
}
.top-news .news-item .news-thumb::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 50px;
  height: 50px;
  background: pink;
}
.top-news .news-item a {
  transition: 1s;
}
.top-news .news-item a:hover .news-thumb {
  background-size: 105%;
  transition: 0.3s;
  opacity: 0.8;
}
.top-news .news-item:nth-child(4n+1) .news-thumb:after {
  transform: rotate(-16deg);
  background: url(../images/top/news_wata.png) no-repeat right bottom;
  background-size: contain;
}
.top-news .news-item:nth-child(4n+2) .news-thumb:after {
  transform: rotate(19deg);
  background: url(../images/top/news_donguri.png) no-repeat right bottom;
  background-size: contain;
}
.top-news .news-item:nth-child(4n+3) .news-thumb:after {
  transform: rotate(-60deg);
  background: url(../images/top/news_ki.png) no-repeat right bottom;
  background-size: contain;
}
.top-news .news-item:nth-child(4n) .news-thumb:after {
  transform: rotate(0deg);
  background: url(../images/top/news_matsubokkuri.png) no-repeat right bottom;
  background-size: contain;
}
.top-news .news-thumb {
  position: relative;
  width: 100%;
  transition: 0.3s;
  aspect-ratio: 4/3;
}
.top-news .news-thumb img {
  border-radius: 100% 100% 0 0;
  border: 4px solid #F6F4F0;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.top-news .news-textarea {
  transform: rotate(0.03deg);
  padding: 2em 1em 1em;
  font-size: clamp(15px, 15px + (18 - 15) * (100vw - 375px) / (1280 - 375), 18px);
}
.top-news .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #947D6A;
  margin-bottom: 0.5em;
}
.top-news .news-meta time {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1280 - 375), 16px);
}
.top-news .news-meta i {
  font-size: clamp(10px, 10px + (12 - 10) * (100vw - 375px) / (1280 - 375), 12px);
  font-family: "finalsix", sans-serif;
  border: 1px solid #947D6A;
  border-radius: 5em;
  font-style: normal;
  padding: 0.25em 0.5em;
}
@media screen and (max-width: 1280px) {
  .top-news .news-meta {
    flex-direction: column;
    align-items: start;
  }
  .top-news .news-meta time {
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1280 - 375), 16px);
  }
  .top-news .news-meta i {
    font-size: clamp(10px, 10px + (12 - 10) * (100vw - 375px) / (1280 - 375), 12px);
    font-family: "finalsix", sans-serif;
    border: 1px solid #947D6A;
    border-radius: 5em;
    font-style: normal;
    padding: 0.25em 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .top-news .news-list {
    flex-direction: column;
    gap: 1.5em;
  }
  .top-news .news-item {
    width: 100%;
    display: flex;
    border-bottom: 1px dashed #371A00;
    padding-bottom: 2em;
  }
  .top-news .news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .top-news .news-item .news-thumb::after {
    width: 2.5em;
    height: 2.5em;
  }
  .top-news .news-item a {
    display: flex;
    width: 100%;
    align-items: center;
  }
  .top-news .news-thumb {
    width: 40%;
  }
  .top-news .news-textarea {
    width: 60%;
    padding: 0 1em;
  }
}
.top-kv {
  position: relative;
  margin-top: clamp(60px, 60px + (170) * (100vw - 375px) / (905), 230px);
}
.top-kv .kv-wave {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
}
.top-kv .kv-wave.top {
  top: -1px;
}
.top-kv .kv-wave.bottom {
  bottom: -1px;
}
.top-kv .kv-deco {
  width: 22.5742574257%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.top-letter {
  background: url(../images/top/letter_deco.svg) no-repeat left 3vw bottom;
  padding-top: clamp(80px, 80px + (170) * (100vw - 375px) / (905), 250px);
  padding-bottom: clamp(40px, 40px + (100) * (100vw - 375px) / (905), 140px);
  margin-bottom: clamp(40px, 40px + (100) * (100vw - 375px) / (905), 140px);
  margin-top: 0;
}
.top-letter .letter-btn {
  display: flex;
  justify-content: center;
  gap: 3em;
}
.top-letter .letter-btn_item {
  border-color: #CFC9AF;
  border-style: solid;
  border-radius: clamp(25px, 25px + (60 - 25) * (100vw - 375px) / (1280 - 375), 60px);
  border-width: clamp(4px, 4px + (8 - 4) * (100vw - 375px) / (1280 - 375), 8px);
  background: #fff;
  height: 260px;
  width: calc(50% - 3em);
  position: relative;
}
.top-letter .letter-btn_item:before {
  position: absolute;
  bottom: -2em;
  width: 80%;
  height: 80px;
  content: "";
}
.top-letter .letter-btn_item:first-child:before {
  left: -4em;
  background: url(../images/top/letter_btn_left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.top-letter .letter-btn_item:last-child:before {
  right: -4em;
  background: url(../images/top/letter_btn_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.top-letter .letter-btn a {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  transform: rotate(0.03deg);
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 375px) / (1280 - 375), 24px);
  padding-top: clamp(18px, 18px + (6) * (100vw - 375px) / (905), 24px);
}
.top-letter .letter-btn a span {
  color: #6B9447;
  font-family: "finalsix", sans-serif;
  transform: rotate(-0.05deg);
  font-size: clamp(13px, 13px + (15 - 13) * (100vw - 375px) / (1280 - 375), 15px);
}
.top-letter .letter-btn a span::after {
  content: "~";
  color: #CEDEC1;
  display: block;
  margin-top: 0.5em;
  font-size: clamp(15px, 15px + (18 - 15) * (100vw - 375px) / (1280 - 375), 18px);
}
.top-letter .letter-btn a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .top-letter {
    background-size: 45%;
  }
  .top-letter .letter-btn {
    gap: 1em;
  }
  .top-letter .letter-btn_item {
    height: 10em;
    width: 50%;
  }
  .top-letter .letter-btn_item:before {
    bottom: -1em;
  }
}
.top-instagram .bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-instagram .instagram {
  position: relative;
  background-color: #CC4B41;
  isolation: isolate;
  padding-top: clamp(20px, 20px + (20) * (100vw - 375px) / (905), 40px);
  padding-bottom: clamp(20px, 20px + (20) * (100vw - 375px) / (905), 40px);
  padding-left: clamp(11px, 11px + (0) * (100vw - 375px) / (905), 11px);
  padding-right: clamp(11px, 11px + (0) * (100vw - 375px) / (905), 11px);
  /* ------- 上下2段（PC/タブレット） ------- */
  /* 2本のSwiper共通 */
  /* 正方形サムネ */
  /* ------- SP：1本のSwiperにまとめて左流れ ------- */
}
.top-instagram .instagram:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/top/insta_bg.png) center/500px auto repeat;
  mix-blend-mode: multiply;
  opacity: 0.7;
  pointer-events: none;
}
.top-instagram .instagram-rows {
  display: grid;
  row-gap: 0px;
}
.top-instagram .instagram-list {
  --gap: 0px; /* JSの spaceBetween と合わせると見た目が揃う */
  width: 100%;
  /* PC 4列: 25% / TB 3列: 33.333% */
}
.top-instagram .instagram-list .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear !important;
  transition-timing-function: linear;
}
.top-instagram .instagram-list .swiper-slide {
  width: 25%;
  margin: 0;
}
@media (max-width: 1024px) {
  .top-instagram .instagram-list .swiper-slide {
    width: 33.3333333333%;
  }
}
.top-instagram .instagram-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ddd;
}
.top-instagram .instagram-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-instagram .instagram-list-sp {
  display: none; /* PCでは隠す */
}
.top-instagram .instagram-list-sp .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear;
}
.top-instagram .instagram-list-sp .swiper-slide {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .top-instagram .instagram { /* PC用の上下2段を隠す */ }
  .top-instagram .instagram-rows {
    display: none;
  }
  .top-instagram .instagram-list-sp {
    display: block;
  }
}
.top-instagram .instagram-deco {
  position: absolute;
  bottom: -7.5%;
  left: 0;
  width: 20%;
  z-index: 50;
}
.top-access {
  padding-top: clamp(80px, 80px + (30) * (100vw - 375px) / (905), 110px);
  padding-bottom: clamp(40px, 40px + (60) * (100vw - 375px) / (905), 100px);
  margin-bottom: clamp(40px, 40px + (100) * (100vw - 375px) / (905), 140px);
  margin-top: 0;
}
.top-access .c-inner--xl {
  background: url(../images/top/access_bg_top.svg) no-repeat top 0% right 4.5vw;
}
.top-access .access {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: url(../images/top/access_bg_bottom.svg) no-repeat bottom 0% right 45%;
  padding-bottom: clamp(35px, 35px + (35) * (100vw - 375px) / (905), 70px);
}
.top-access .access .googlemap {
  border-radius: clamp(24px, 24px + (60 - 24) * (100vw - 375px) / (1280 - 375), 60px);
  border-color: #F6F4F0;
  border-style: solid;
  border-width: clamp(2px, 2px + (8 - 2) * (100vw - 375px) / (1280 - 375), 8px);
  overflow: hidden;
  width: 45%;
}
.top-access .access .googlemap iframe {
  width: 100%;
}
.top-access .access .c-deflist--top {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .top-access .c-inner--xl {
    background-size: 15%;
  }
  .top-access .access {
    flex-direction: column;
    background-position: bottom right;
    background-size: 25%;
  }
  .top-access .access .googlemap {
    width: 100%;
  }
  .top-access .access .googlemap iframe {
    height: 300px;
  }
  .top-access .access .c-deflist--top {
    width: 100%;
  }
}

.recruit-voices .voices-list_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(24px, 24px + (31) * (100vw - 375px) / (905), 55px);
}
.recruit-voices .voices-list_item .text-area {
  width: calc(100% - 160px);
}
.recruit-voices .voices-list_item .thumb {
  width: 137px;
  height: 137px;
  border-radius: 5em;
  background: #fff;
  border-width: clamp(4px, 4px + (8 - 4) * (100vw - 375px) / (1280 - 375), 8px);
  border-color: #F6F4F0;
  display: flex;
  justify-content: center;
  align-items: end;
}
.recruit-voices .voices-list_item .thumb img {
  width: auto;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .recruit-voices .voices-list_item {
    flex-direction: column;
  }
  .recruit-voices .voices-list_item .text-area {
    width: 100%;
  }
  .recruit-voices .voices-list_item .thumb {
    margin: 2em auto;
  }
}
.recruit-contact {
  background: url(../images/recruit/contact_bg.svg) no-repeat right 3em bottom;
}
@media only screen and (max-width: 767px) {
  .recruit-contact {
    padding-bottom: 5em;
    background-size: auto 4.5em;
    background-position: right 3em bottom;
  }
}
.recruit .contact .mfp {
  font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1280 - 375), 17px);
  transform: rotate(0.03deg);
  font-weight: normal;
}
.recruit .contact .mfp_must {
  color: #CC4B41;
}
.recruit .contact .mfp_form_area input[type=text], .recruit .contact .mfp_form_area input[type=number], .recruit .contact .mfp_form_area input[type=select-one], .recruit .contact .mfp_form_area input[type=email], .recruit .contact .mfp_form_area input[type=tel], .recruit .contact .mfp_form_area input[type=date], .recruit .contact .mfp_form_area input[type=password], .recruit .contact .mfp_form_area textarea {
  border-radius: clamp(5px, 5px + (8 - 5) * (100vw - 375px) / (1280 - 375), 8px);
  border-color: #947D6A;
}
.recruit .contact .mailform + div {
  transform: rotate(0.03deg);
}
.recruit .contact .mfp_comment {
  font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1280 - 375), 17px);
  margin: 2em auto;
}
.recruit .contact .mfp_buttons button {
  background: #DEDACA;
  color: #371A00;
  font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1280 - 375), 17px);
  transform: rotate(0.03deg);
  padding: 1em 1em;
  border-radius: 5em;
  transition: 0.5s;
}
.recruit .contact .mfp_buttons button:hover {
  background: #947D6A;
  color: #fff;
}
.recruit .contact button#mfp_button_send, .recruit .contact .mfp_buttons button[type=submit] {
  background: #CC4B41;
  color: #fff;
}
.recruit .contact button#mfp_button_send:hover, .recruit .contact .mfp_buttons button[type=submit]:hover {
  background: rgb(151.7634854772, 48.72406639, 40.7365145228);
}
.recruit #ThanksComment {
  margin-top: 1.5em;
}

.program-cont .program-title {
  font-size: clamp(18px, 18px + (28 - 18) * (100vw - 375px) / (1280 - 375), 28px);
  color: #CC4B41;
  background: url(../images/program/title_deco.svg) no-repeat left top;
  margin: 1em 0.5em;
}
.program-cont .program-title span {
  padding-left: 1em;
}
.program-cont .program-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.program-cont .program-list_item {
  margin-bottom: clamp(20px, 20px + (35) * (100vw - 375px) / (905), 55px);
}
.program-cont .program-list_item .thumb {
  height: 290px;
  border-color: #B7C7A1;
  border-width: clamp(4px, 4px + (10 - 4) * (100vw - 375px) / (1280 - 375), 10px);
  border-style: solid;
  border-radius: 50em 50em 0 0;
  display: flex;
  align-items: end;
}
.program-cont .program-list_item .thumb img {
  width: auto;
  margin: 0 auto;
}
.program-cont .program-list_item .contens {
  padding: 1.5em 1em 0;
}
.program-cont .program-list_item .contens a {
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 375px) / (1280 - 375), 24px);
}
.program-cont .program-list_item.is-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.program-cont .program-list_item.is-row .thumb {
  width: 47.619047619%;
}
.program-cont .program-list_item.is-row .contens {
  width: 47.619047619%;
}
.program-cont .program-list_item.is-row:nth-child(even) .thumb {
  order: 2;
  height: 100%;
}
.program-cont .program-list_item.is-row:nth-child(even) .contens {
  order: 1;
}
.program-cont .program-list_item.is-row:nth-child(odd) .thumb {
  order: 1;
}
.program-cont .program-list_item.is-row:nth-child(odd) .contens {
  order: 2;
}
.program-cont .program-list .is-thin .c-box-radius {
  padding: 0.25em 1.75em;
  margin-bottom: clamp(8px, 8px + (4) * (100vw - 375px) / (905), 12px);
}
.program-cont .program-list.is-row .program-list_item {
  width: 47.619047619%;
}
.program-cont .program-list.is-cloumn {
  width: 100%;
}
.program-cont .program-list .c-link-list {
  margin-top: 1.5em;
}
@media only screen and (max-width: 767px) {
  .program-cont .program-list_item .contens {
    padding: 1.5em 0em 0;
  }
  .program-cont .program-list_item.is-row {
    flex-direction: column;
  }
  .program-cont .program-list_item.is-row .thumb {
    width: 100%;
  }
  .program-cont .program-list_item.is-row .contens {
    width: 100%;
  }
  .program-cont .program-list_item.is-row:nth-child(even) .thumb {
    order: 1;
    height: 290px;
  }
  .program-cont .program-list_item.is-row:nth-child(even) .contens {
    order: 2;
  }
  .program-cont .program-list_item.is-row:nth-child(odd) .thumb {
    order: 1;
  }
  .program-cont .program-list_item.is-row:nth-child(odd) .contens {
    order: 2;
  }
  .program-cont .program-list.is-row .program-list_item {
    width: 100%;
  }
  .program-cont .program-list.is-cloumn {
    width: 100%;
  }
}
.program-schedule .c-inner--xl {
  background: url(../images/program/daily_deco_flower.svg) left 5em top 5em no-repeat, url(../images/program/daily_deco_bird.svg) right 5em bottom no-repeat;
}
@media screen and (max-width: 1560px) {
  .program-schedule .c-inner--xl {
    background-position: left top 5em, right bottom;
    background-size: 80px auto, 90px auto;
  }
}
.program-schedule .schedule-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
}
.program-schedule .schedule-list_item {
  width: 32.2580645161%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.program-schedule .schedule-list_item .head {
  transform: rotate(0.03deg);
  background: #C4B8AC;
  border-radius: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1280 - 375), 60px);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  text-align: center;
  font-size: clamp(17px, 17px + (21 - 17) * (100vw - 375px) / (1280 - 375), 21px);
  padding: 0.5em;
}
.program-schedule .schedule-list_item .head span {
  display: block;
  font-size: clamp(15px, 15px + (18 - 15) * (100vw - 375px) / (1280 - 375), 18px);
}
.program-schedule .schedule-list_item .body {
  background: #fff;
  border-width: clamp(2.5px, 2.5px + (8 - 2.5) * (100vw - 375px) / (1280 - 375), 8px);
  border-color: #F6F4F0;
  border-radius: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1280 - 375), 60px);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding: 1.5em;
  flex: 1;
  box-sizing: border-box;
  min-height: 0;
}
.program-schedule .schedule-list_item .body .time {
  font-family: "dreaming-outloud-script", sans-serif;
  font-size: clamp(17px, 17px + (22 - 17) * (100vw - 375px) / (1280 - 375), 22px);
  display: flex;
  align-items: center;
}
.program-schedule .schedule-list_item .body .time:before {
  background: url(../images/program/circle.svg) no-repeat;
  width: 0.75em;
  height: 0.75em;
  background-size: 0.75em;
  content: "";
  margin-right: 0.75em;
}
.program-schedule .schedule-list_item .body .time-schedule {
  display: block;
  background: url(../images/program/line.svg) no-repeat;
  padding: 1em 0;
  background-position: bottom left;
}
.program-schedule .schedule-list_item .body .time-schedule:last-child {
  background: none;
}
.program-schedule .schedule-list_item .body .time-cont {
  transform: rotate(0.03deg);
  background-image: radial-gradient(circle, #DEDACA 2px, transparent 2px);
  background-repeat: repeat-y;
  background-size: 15px 15px;
  background-position: left bottom;
  padding: 0.5em 0 0.5em 1.5em;
}
@media only screen and (max-width: 767px) {
  .program-schedule .schedule-list {
    flex-wrap: wrap;
  }
  .program-schedule .schedule-list_item {
    width: 100%;
  }
}
.program-event .event-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: clamp(20px, 20px + (40) * (100vw - 375px) / (905), 60px);
  margin-top: clamp(20px, 20px + (40) * (100vw - 375px) / (905), 60px);
}
.program-event .event-list_item {
  width: 50%;
  background: url(../images/program/event_deco_grid.svg) #fff;
  transform: rotate(0.03deg);
  padding-top: clamp(18px, 18px + (37) * (100vw - 375px) / (905), 55px);
  padding-bottom: clamp(18px, 18px + (37) * (100vw - 375px) / (905), 55px);
  padding-left: clamp(18px, 18px + (53) * (100vw - 375px) / (905), 71px);
  padding-right: clamp(18px, 18px + (53) * (100vw - 375px) / (905), 71px);
  border-width: clamp(4px, 4px + (8 - 4) * (100vw - 375px) / (1280 - 375), 8px);
  border-color: #F6F4F0;
  border-style: solid;
}
.program-event .event-list_item:nth-child(even) {
  position: relative;
  border-radius: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1280 - 375), 60px);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}
.program-event .event-list_item:nth-child(even):before {
  position: absolute;
  top: 0;
  left: -1.5em;
  content: "";
  width: 3em;
  height: 100%;
  background: url(../images/program/event_deco_ring.svg) repeat-y;
  background-size: contain;
}
.program-event .event-list_item:nth-child(odd) {
  border-radius: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1280 - 375), 60px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-left: none;
}
.program-event .event-list_item.bg.bg-foot:after {
  position: absolute;
  bottom: 2em;
  right: 2em;
  content: "";
  width: 12em;
  height: 2.5em;
  background: url(../images/program/event_deco_foot.svg) no-repeat;
  background-size: contain;
}
.program-event .event-list_item.bg.bg-bird:after {
  position: absolute;
  bottom: 2em;
  left: 2em;
  content: "";
  width: 12em;
  height: 2.5em;
  background: url(../images/program/event_deco_bird.svg) no-repeat;
  background-size: contain;
}
.program-event .event-list_item.is-left:before {
  background: url(../images/program/event_deco_ring_half.svg) repeat-y;
  left: -0.75em;
}
.program-event .month {
  color: #947D6A;
  line-height: 1.25;
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 375px) / (1280 - 375), 24px);
}
.program-event .month .en {
  color: #C4B8AC;
  display: block;
  font-family: "dreaming-outloud-script", sans-serif;
  transform: rotate(-0.03deg);
  font-size: clamp(12px, 12px + (15 - 12) * (100vw - 375px) / (1280 - 375), 15px);
}
.program-event .month strong {
  font-family: "dreaming-outloud-script", sans-serif;
  font-size: clamp(22px, 22px + (49 - 22) * (100vw - 375px) / (1280 - 375), 49px);
  margin-right: 0.05em;
}
.program-event .month-list_item {
  margin-bottom: 2em;
}
.program-event .month-list_item:last-child {
  margin-bottom: 0;
}
.program-event .img-area {
  width: 50%;
  display: flex;
  align-items: flex-start;
  align-items: end;
}
.program-event .img-area img {
  width: auto;
}
@media only screen and (max-width: 767px) {
  .program-event .event-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: clamp(20px, 20px + (40) * (100vw - 375px) / (905), 60px);
    margin-top: clamp(20px, 20px + (40) * (100vw - 375px) / (905), 60px);
  }
  .program-event .event-list_item {
    width: 100%;
    border-color: #F6F4F0;
    margin-bottom: 2em;
  }
  .program-event .event-list_item:before {
    position: absolute;
    top: 0;
    left: -0.5em;
    content: "";
    width: 1em;
    height: 100%;
    background: url(../images/program/event_deco_ring_half.svg) repeat-y;
    background-size: contain;
  }
  .program-event .event-list_item:nth-child(even):before {
    position: absolute;
    top: 0;
    left: -0.5em;
    content: "";
    width: 1em;
    height: 100%;
    background: url(../images/program/event_deco_ring_half.svg) repeat-y;
    background-size: contain;
  }
  .program-event .event-list_item:nth-child(odd) {
    border-radius: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1280 - 375), 60px);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
  }
  .program-event .event-list_item.bg.bg-foot:after {
    bottom: 0em;
    right: 2em;
    width: 8em;
  }
  .program-event .event-list_item.bg.bg-bird:after {
    bottom: 2em;
    right: 2em;
    left: unset;
    width: 6em;
  }
  .program-event .event-list_item.is-left:before {
    left: -0.5em;
    width: 1em;
  }
  .program-event .img-area {
    order: 2;
  }
  .program-event .img-area img {
    width: auto;
  }
}

.news a {
  color: #CC4B41;
}
.news #entry .entry {
  margin-bottom: 3.75em;
}
@media only screen and (max-width: 767px) {
  .news #entry .entry .c-head3 {
    text-align: left;
  }
  .news #entry .entry .c-head3 span {
    padding: 0 0 1em 0;
    background: url(../images/common/title_left.svg) no-repeat left bottom/2.5em auto;
  }
}
.news #entry .entry .content {
  transform: rotate(0.03deg);
}
.news #entry .entry .content h2, .news #entry .entry .content h3, .news #entry .entry .content h4, .news #entry .entry .content h5 {
  margin-bottom: 0.1em;
  transform: rotate(0.05deg);
}
.news #entry .entry .content h2 {
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1280 - 375), 20px);
  border-bottom: solid 2px #371A00;
  display: inline-block;
  padding: 0 1em 0 0.25em;
}
.news #entry .entry .content h3 {
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1280 - 375), 20px);
  color: #6B9447;
}
.news #entry .entry .content h3:before {
  content: "●";
  color: #6B9447;
}
.news #entry .entry .content h4 {
  color: #CC4B41;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1280 - 375), 20px);
}
.news #entry .entry .content h5 {
  font-size: clamp(16px, 16px + (19 - 16) * (100vw - 375px) / (1280 - 375), 19px);
  font-weight: 700;
}
.news #entry .entry .content h5:before {
  margin-right: 0.25em;
  color: #CC4B41;
  content: "●";
}
.news #entry .entry .content h6 {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1280 - 375), 18px);
}
.news #entry .entry .content ul, .news #entry .entry .content ol {
  transform: rotate(0.03deg);
}
.news #entry .entry .content ul {
  margin-left: 1em;
}
.news #entry .entry .content ul li {
  list-style: none;
  margin-left: 0;
}
.news #entry .entry .content ul li:before {
  content: "-";
  margin-right: 0.5em;
  font-weight: 600;
  margin-left: -1em;
}
.news #entry .entry .content table {
  border-collapse: separate;
  box-sizing: border-box;
  background: #fff;
  border: none;
  border-radius: 1em;
  overflow: hidden;
  transform: rotate(0.03deg);
}
@media only screen and (min-width: 768px) {
  .news #entry .entry .content table {
    min-width: 700px;
    width: auto !important;
  }
}
.news #entry .entry .content table td, .news #entry .entry .content table th {
  padding: 1em;
}
.news #entry .entry .content table td {
  border: none;
  border-bottom: 1px solid #371A00;
  border-right: 1px solid #371A00;
}
.news #entry .entry .content table td:last-child {
  border-right: none;
}
.news #entry .entry .content table th {
  background: #C4B8AC;
  border: none;
  border-bottom: 1px solid #371A00;
  font-weight: normal;
}
.news #entry .entry .content table tr:last-child td, .news #entry .entry .content table tr:last-child th {
  border-bottom: none;
}
.news #utility {
  margin-top: clamp(20px, 20px + (40) * (100vw - 375px) / (905), 60px);
}
.news #utility .utility .calender {
  border-radius: 1em;
  overflow: hidden;
}
.news #utility .utility .calender th, .news #utility .utility .calender td {
  border-right: 1px solid #371A00;
  border-bottom: 1px solid #371A00;
}
.news #utility .utility .calender th:last-child, .news #utility .utility .calender td:last-child {
  border-right: none;
}
.news #utility .utility .calender tr:last-child th, .news #utility .utility .calender tr:last-child td {
  border-bottom: none;
}
.news #utility .utility .calender th {
  background: #C4B8AC;
  text-align: center;
}
.news #utility .utility .calender td {
  background: #fff;
}
.news #utility .utility .calender a {
  color: #fff;
  text-decoration: none;
  background: rgb(214.7925311203, 113.0912863071, 105.2074688797);
  padding: 0.25em 1em;
  border-radius: 0.25em;
}
.news #utility .utility .calenderNav {
  margin-top: 1em;
}
.news #utility .utility .calenderNav li:first-child a:before {
  content: "<";
}
.news #utility .utility .calenderNav li:last-child a:after {
  content: ">";
}
.news #freo-container form input[type=submit] {
  background: #CC4B41;
  font-size: clamp(15px, 15px + (16 - 15) * (100vw - 375px) / (1280 - 375), 16px);
}

.information li a {
  transform: rotate(0.05deg);
  display: inline-block;
}

.guidance .text {
  margin-bottom: clamp(15px, 15px + (15) * (100vw - 375px) / (905), 30px);
}
.guidance-enrollment .c-list_ol li {
  padding-top: clamp(18px, 18px + (-8) * (100vw - 375px) / (905), 10px);
  padding-bottom: clamp(18px, 18px + (-8) * (100vw - 375px) / (905), 10px);
  padding-left: clamp(18px, 18px + (11) * (100vw - 375px) / (905), 29px);
  padding-right: clamp(18px, 18px + (11) * (100vw - 375px) / (905), 29px);
  margin-bottom: clamp(15px, 15px + (7) * (100vw - 375px) / (905), 22px);
}
.guidance-enrollment .c-list_ol li.no-border {
  border: none;
  width: 70%;
}
.guidance-enrollment .c-list_ol.is-bg {
  background: url(../images/guidance/join_bg.svg) no-repeat bottom right;
  background-size: 25%;
}
.guidance-enrollment .c-list_ol.is-bg li {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .guidance-enrollment .c-list_ol li.no-border {
    width: 100%;
  }
  .guidance-enrollment .c-list_ol.is-bg {
    background: url(../images/guidance/join_bg.svg) no-repeat bottom right;
    background-size: auto 4.5em;
  }
  .guidance-enrollment .c-list_ol.is-bg:last-child {
    padding-bottom: 5em;
  }
}
.guidance-contact .tel {
  margin-top: clamp(18px, 18px + (16) * (100vw - 375px) / (905), 34px);
}
.guidance-contact .tel a {
  font-size: clamp(18px, 18px + (26 - 18) * (100vw - 375px) / (1280 - 375), 26px);
}
.guidance-contact {
  background: url(../images/guidance/contact-bg.svg) no-repeat left 3em bottom;
}
@media only screen and (max-width: 767px) {
  .guidance-contact {
    padding-bottom: 5em;
    background-size: auto 4.5em;
    background-position: right 3em bottom;
  }
}

.disclosure-support .c-deflist {
  margin-top: clamp(25px, 25px + (25) * (100vw - 375px) / (905), 50px);
  margin-bottom: clamp(25px, 25px + (30) * (100vw - 375px) / (905), 55px);
}

.about-info .c-deflist .address br {
  display: none;
}
.about-kv {
  position: relative;
  margin-bottom: clamp(20px, 20px + (17) * (100vw - 375px) / (905), 37px);
}
.about-kv::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 25vh;
  content: "";
  background: url(../images/about/kv_wave.svg) no-repeat left bottom;
  background-size: 100% auto;
}
.about-philosophy {
  margin-top: clamp(20px, 20px + (17) * (100vw - 375px) / (905), 37px);
}
.about-philosophy .c-section-sub {
  text-align: center;
}
.about-philosophy .philosophy-title {
  font-family: "sictake-banare", sans-serif;
  font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1280 - 375), 40px);
  margin-bottom: 1.25em;
  position: relative;
  display: inline-block;
}
.about-philosophy .philosophy-title + p {
  line-height: 2.2;
}
.about-philosophy .philosophy-title:before {
  content: "";
  display: block;
  width: 3em;
  height: 3em;
  position: absolute;
  top: -3em;
  right: -4em;
  background: url(../images/about/philosophy_deco.svg) no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .about-philosophy .u-align-center {
    text-align: left;
  }
  .about-philosophy .philosophy-title:before {
    top: -3em;
    right: -2em;
  }
}
@media only screen and (max-width: 767px) and (max-width: 490px) {
  .about-philosophy .philosophy-title:before {
    right: -0.5em;
  }
}
.about-policy p {
  margin-bottom: 2em;
}
.about-policy .c-box-radius {
  position: relative;
}
.about-policy .c-box-radius:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3em;
  right: -1em;
  width: 10em;
  height: 8em;
  background: url(../images/about/policy_deco.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 550px) {
  .about-policy .c-box-radius:after {
    bottom: -4em;
    width: 8em;
    height: 5em;
  }
}
.about-policy .policy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
}
.about-policy .policy-list li {
  display: flex;
  align-items: center;
}
.about-policy .policy-list li .number {
  width: 3em;
  height: 3em;
  font-family: "dreaming-outloud-script", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: clamp(17px, 17px + (25 - 17) * (100vw - 375px) / (1280 - 375), 25px);
  margin-right: 0.5em;
  background: url(../images/about/number_bg.svg) no-repeat center;
  background-size: contain;
}
.about-policy .policy-list li .number:after {
  position: absolute;
  content: "";
  left: -7px;
  bottom: 0;
  background: url(../images/about/list_deco.svg) no-repeat;
  background-size: contain;
  transform: rotate(-32deg);
  width: 0.75em;
  height: 1.5em;
}
.about-policy .policy-list li .text {
  width: calc(100% - 3em);
  transform: rotate(0.03deg);
}
.about-goals .goals-img {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 3.75em;
}
.about-goals .goals-img_item {
  position: relative;
}
.about-goals .goals-img_item > img {
  border-radius: clamp(25px, 25px + (60 - 25) * (100vw - 375px) / (1280 - 375), 60px);
  border-width: clamp(4px, 4px + (10 - 4) * (100vw - 375px) / (1280 - 375), 10px);
  border-color: #F6F4F0;
  border-style: solid;
  object-fit: cover;
  height: 100%;
}
.about-goals .goals-img_item .deco {
  position: absolute;
  bottom: -2em;
}
.about-goals .goals-img_item:first-child {
  width: 55%;
  height: 489px;
}
.about-goals .goals-img_item:first-child .deco {
  left: 0;
  width: 15.5%;
}
.about-goals .goals-img_item:last-child {
  width: 40%;
  margin-bottom: -5em;
  height: 386px;
}
.about-goals .goals-img_item:last-child .deco {
  right: 0;
  width: 26.5%;
}
@media only screen and (max-width: 767px) {
  .about-goals .goals-img {
    flex-direction: column;
  }
  .about-goals .goals-img_item {
    position: relative;
  }
  .about-goals .goals-img_item .deco {
    position: absolute;
    bottom: -2em;
  }
  .about-goals .goals-img_item:first-child {
    width: 90%;
    height: 50vh;
    margin-right: auto;
    margin-bottom: 2em;
  }
  .about-goals .goals-img_item:last-child {
    width: 90%;
    height: 50vh;
  }
  .about-goals .goals-img_item:last-child .deco {
    right: 0;
    width: 26.5%;
  }
}
.about-children {
  margin-top: clamp(100px, 100px + (80) * (100vw - 375px) / (905), 180px);
}
.about-children .children-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0em;
  align-items: flex-start;
}
.about-children .children-list > div {
  width: 48%;
}
.about-children .children-list > div:nth-child(2n) {
  margin-top: clamp(20px, 20px + (35) * (100vw - 375px) / (905), 55px);
}
@media only screen and (max-width: 767px) {
  .about-children .children-list {
    flex-direction: column;
  }
  .about-children .children-list > div {
    width: 100%;
    margin-top: clamp(20px, 20px + (35) * (100vw - 375px) / (905), 55px);
  }
  .about-children .children-list > div:nth-child(2n) {
    margin-top: clamp(20px, 20px + (35) * (100vw - 375px) / (905), 55px);
  }
}
.about-care .care-thumb {
  height: 40vh;
  min-height: 600px;
  border-radius: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1280 - 375), 60px);
  overflow: hidden;
}
.about-care .care-thumb img {
  object-fit: cover;
  height: 100%;
}
.about-care .care-list {
  display: flex;
  position: relative;
}
.about-care .care-list.column {
  flex-direction: column;
  margin-bottom: clamp(25px, 25px + (35) * (100vw - 375px) / (905), 60px);
}
.about-care .care-list.column .c-box-radius {
  margin-top: -5em;
  max-width: 1010px;
  margin-right: auto;
  margin-left: auto;
  z-index: 5;
}
@media screen and (max-width: 1010px) {
  .about-care .care-list.column .c-box-radius {
    margin-right: 0px;
    margin-left: 0px;
  }
}
.about-care .care-list.row {
  flex-direction: row;
  align-items: center;
  margin-bottom: clamp(25px, 25px + (35) * (100vw - 375px) / (905), 60px);
}
.about-care .care-list.row .care-thumb {
  width: 60%;
  background: gray;
}
.about-care .care-list.row .c-box-radius {
  width: 50%;
  position: absolute;
}
.about-care .care-list.row:nth-child(even) .care-thumb {
  margin-right: -4.5vw;
  margin-left: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.about-care .care-list.row:nth-child(even) .c-box-radius {
  left: 0;
}
.about-care .care-list.row:nth-child(odd) .care-thumb {
  margin-left: -4.5vw;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.about-care .care-list.row:nth-child(odd) .c-box-radius {
  right: 0;
}
@media only screen and (max-width: 767px) {
  .about-care .care-thumb {
    height: 40vh;
    min-height: 300px;
  }
  .about-care .care-list {
    display: flex;
    position: relative;
  }
  .about-care .care-list.column, .about-care .care-list.row {
    flex-direction: column;
    margin-bottom: clamp(25px, 25px + (35) * (100vw - 375px) / (905), 60px);
  }
  .about-care .care-list.column .c-box-radius, .about-care .care-list.row .c-box-radius {
    margin-top: 0em;
  }
  .about-care .care-list.row {
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(25px, 25px + (35) * (100vw - 375px) / (905), 60px);
  }
  .about-care .care-list.row .care-thumb {
    width: 100%;
  }
  .about-care .care-list.row .c-box-radius {
    width: 100%;
    position: unset;
  }
  .about-care .care-list.row:nth-child(even) .care-thumb {
    border-radius: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1280 - 375), 60px);
    margin: 0;
  }
  .about-care .care-list.row:nth-child(odd) .care-thumb {
    border-radius: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1280 - 375), 60px);
    margin: 0;
  }
}