@charset "UTF-8";
@media screen and (max-width: px(1104px)-1px) and (min-width: px(768px)) {
  html {
    font-size: calc(16 / 1104px * 100vw);
  }
}
@media screen and (max-width: px(375px)-1px) {
  html {
    font-size: calc(16 / 375px * 100vw);
  }
}

body {
  font-size: 12px;
  line-height: 1.5;
  color: #282d27;
  font-family: "Zen Maru Gothic";
  background: #fcf7e1;
}

html, body {
  overflow-x: hidden;
}

main {
  height: 300vh;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

li {
  list-style: none;
}

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .hidden-tab {
    display: none;
  }
}

.inline-block {
  font-weight: inherit;
  display: inline-block;
}

.inner {
  padding: 56px 20px;
}
@media screen and (min-width: 1024px) {
  .inner {
    padding-top: 120px;
    padding-bottom: 120px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.button {
  display: inline-block;
  font-family: "Montserrat";
  color: #fffdf6;
  font-weight: 700;
  background: #5b9e4d;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button:hover {
  background-color: #fcf7e1;
  color: #5b9e4d;
  border: 2px solid #5b9e4d;
  padding: 4px 10px;
}
@media screen and (min-width: 1024px) {
  .button {
    font-size: 18px;
    padding: 7px 30px;
    line-height: 1.6;
  }
  .button:hover {
    background-color: #fcf7e1;
    color: #5b9e4d;
    border: 2px solid #5b9e4d;
    padding: 5px 28px;
  }
}
.button--type2 {
  background: #fff;
  color: #282d27;
  font-size: 20px;
  padding: 8px 24px;
}
@media screen and (min-width: 1024px) {
  .button--type2 {
    padding: 16px 40px;
    font-family: Montserrat;
    font-weight: 700;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 374px) {
  .button--type2 {
    padding: 8px 18px;
  }
}
.button--type2:hover {
  background-color: #453222;
  color: #fff;
  padding: 8px 24px;
  border: none;
}
@media screen and (min-width: 1024px) {
  .button--type2:hover {
    padding: 16px 40px;
  }
}
@media screen and (max-width: 374px) {
  .button--type2:hover {
    padding: 8px 18px;
  }
}
.button--big {
  padding: 6px 28px;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid transparent;
}
.button--big:hover {
  background-color: #fcf7e1;
  color: #5b9e4d;
  border: 2px solid #5b9e4d;
  padding: 6px 28px;
}

.heading-en {
  color: #fffdf6;
  text-align: center;
  font-family: "Montserrat";
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2.8px;
}
@media screen and (min-width: 1024px) {
  .heading-en {
    font-size: 48px;
    letter-spacing: 4.8px;
  }
}
.heading-en--small {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .heading-en--small {
    font-size: 34px;
  }
}

.heading-ja {
  color: #fffdf6;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 1024px) {
  .heading-ja {
    font-size: 20px;
    letter-spacing: 1.4px;
  }
}
.heading-ja--small {
  line-height: 120%;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .heading-ja--small {
    font-size: 24px;
  }
}

.header {
  position: fixed;
  z-index: 100; /* 他の要素より前面に表示 */
  background: #fcf7e1;
  top: 0; /* 上部に固定 */
  left: 0; /* 左端に固定 */
  width: 100%; /* 幅を100%に設定 */
  height: auto; /* 高さを自動調整 */
  max-width: 100%; /* 最大幅を100%に設定 */
  overflow: hidden; /* はみ出しを防ぐ */
}
@media screen and (min-width: 1024px) {
  .header {
    position: static; /* PC時には固定しない */
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .header {
    position: static; /* tab時には固定しない */
  }
}

.header__inner {
  padding: 22px 20px;
}
@media screen and (min-width: 1024px) {
  .header__inner {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 29px;
    padding-bottom: 29px;
  }
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  display: block;
}
.header__logo img {
  width: 142px;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .header__logo img {
    width: 202px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 26px;
    margin-left: auto; /* 右寄せにするために追加 */
  }
}
@media screen and (min-width: 1024px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    margin-left: auto; /* 右寄せにするために追加 */
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}

.header__link {
  font-size: 18px;
  font-weight: 700;
}
.header__link:hover {
  opacity: 0.7; /* hover時に不透明度を70%に設定 */
}

@media screen and (max-width: 599px) {
  .header__button {
    display: block;
    margin-right: 10px; /* 必要に応じて調整 */
    margin-left: 10px;
    margin-right: 50px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .header__button {
    display: block;
    margin-left: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .header__button {
    display: block;
    margin-left: 30px;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .header__open {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: fixed;
  z-index: 102;
  top: 22px;
  right: 20px;
  width: 32px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .drawer-icon {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.js-show .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  translate: 0 7.5px;
}
.drawer-icon.js-show .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.js-show .drawer-icon__bar:nth-of-type(3) {
  top: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  translate: 0 -13.5px;
}

.drawer-icon__bar {
  width: 100%;
  height: 3px;
  border-radius: 6px;
  background: #282d27;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}

.drawer {
  position: fixed;
  z-index: 101;
  display: none; /* デフォルトで隠す */
  -webkit-transition: display 0.3s;
  transition: display 0.3s;
  width: 320px;
  height: 650px;
  height: 100vh;
  top: 0;
  right: 0;
  background: #ece3cb;
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  display: block;
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 27px 20px;
  text-align: right;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
  margin-bottom: 36px;
  padding-top: 50px;
}

.drawer__link {
  display: block;
  color: #000;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.drawer__button {
  display: inline-block;
  text-align: right;
}

.MV__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1024px) {
  .MV__inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 45px;
    padding-right: 45px;
  }
}

.page__title {
  border-radius: 40px;
  width: 100%;
  height: 375px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* フレックスボックスを使用 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* デフォルトは縦並び */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向の中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向の中央揃え */
  margin: 0 auto; /* 左右中央に配置 */
  margin-top: 82px;
}
@media screen and (min-width: 1024px) {
  .page__title {
    border-radius: 80px;
    width: 100%; /* PC時の幅を100%に設定 */
    height: 520px;
    margin-top: 0;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .page__title {
    border-radius: 60px;
    width: 100%; /* タブレット時の幅を100%に設定 */
    height: 420px;
    margin-top: 0;
  }
}
.page__title--about {
  background: url("../img/sp/img_about_fv.png") center center/cover no-repeat;
}
@media screen and (min-width: 1024px) {
  .page__title--about {
    background: url("../img/img_about_fv.png") center center/cover no-repeat;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .page__title--about {
    background: url("../img/img_about_fv.png") center center/cover no-repeat;
  }
}
.page__title--step {
  background: url("../img/sp/img_step_fv.png") center center/cover no-repeat;
}
@media screen and (min-width: 1024px) {
  .page__title--step {
    background: url("../img/img_step_fv.png") center center/cover no-repeat;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .page__title--step {
    background: url("../img/img_step_fv.png") center center/cover no-repeat;
  }
}
.page__title--menu {
  background: url("../img/sp/img_menu_fv.png") center center/cover no-repeat;
}
@media screen and (min-width: 1024px) {
  .page__title--menu {
    background: url("../img/img_menu_fv.png") center center/cover no-repeat;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .page__title--menu {
    background: url("../img/img_menu_fv.png") center center/cover no-repeat;
  }
}
.page__title--contact {
  background: url("../img/sp/img_contact_fv.png") center center/cover no-repeat;
}
@media screen and (min-width: 1024px) {
  .page__title--contact {
    background: url("../img/img_contact_fv.png") center center/cover no-repeat;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .page__title--contact {
    background: url("../img/img_contact_fv.png") center center/cover no-repeat;
  }
}
.page__title--staff {
  background: url("../img/sp/img_staff-shop_FV.png") center center/cover no-repeat;
}
@media screen and (min-width: 1024px) {
  .page__title--staff {
    background: url("../img/img_staff-shop_FV.png") center center/cover no-repeat;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .page__title--staff {
    background: url("../img/img_staff-shop_FV.png") center center/cover no-repeat;
  }
}

.lead__text {
  color: #282d27;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  font-weight: 700;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .lead__text {
    font-size: 32px;
    line-height: 1.6; /* 51.2px */
    letter-spacing: 1.6px;
  }
}
@media screen and (max-width: 374px) {
  .lead__text {
    font-size: 20px;
  }
}

.lead__description {
  color: #282d27;
  font-family: "Zen Maru Gothic";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6; /* 25.6px */
  letter-spacing: 0.48px;
  text-align: center;
  margin-top: 16px;
}
.lead__description--menu {
  font-size: 16px;
  width: 305px;
}
.lead__description--step {
  font-size: 14px;
  letter-spacing: 0.42px;
}
@media screen and (min-width: 1024px) {
  .lead__description--step {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .lead__description--step {
    font-size: 12px;
  }
}

.cta {
  background: #ece3cb;
}

.cta__inner {
  padding: 40px 20px;
}
@media screen and (min-width: 1024px) {
  .cta__inner {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: auto;
    padding-right: auto;
    max-width: 1120px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .cta__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.cta__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .cta__button-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 14px; /* 必要に応じて要素間のスペースを調整 */
  }
}
@media screen and (min-width: 1024px) {
  .cta__button-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px; /* 必要に応じて要素間のスペースを調整 */
  }
}

.cta__button-menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 必要に応じて各ボタンの幅を調整 */
  position: relative;
  display: inline-block;
}

.cta__button-link {
  display: block;
  position: relative;
}
.cta__button-link:hover .btn__link-img-wrap img {
  scale: 1.1;
}

.btn__link-img-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .btn__link-img-wrap {
    border-radius: 40px;
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .btn__link-img-wrap {
    width: 500px;
    border-radius: 80px;
  }
}

.cta__button-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .cta__button-img {
    border-radius: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cta__button-img {
    border-radius: 80px;
  }
}
.cta__button-img:hover {
  opacity: 0.8;
}

.cta__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff; /* 必要に応じてテキストカラーを調整 */
}

.cta2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向の中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向の中央揃え */
  width: 100%; /* 横幅を100%に設定 */
}

.cta2__inner {
  padding: 56px 20px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .cta2__inner {
    padding-bottom: 120px;
    padding-right: auto;
    padding-left: auto;
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .cta2__inner--type2 {
    padding-top: 120px;
  }
}

.cta2__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* 高さを揃える */
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .cta2__body {
    margin-top: 120px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .cta2__body {
    margin-inline: auto;
  }
}

.cta2__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #5b9e4d;
  border-radius: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 垂直方向の中央揃え */
  height: auto;
  width: 100%; /* 横幅を100%に設定 */
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .cta2__content {
    border-radius: 30px 30px 30px 30px;
    padding-block: 40px;
    padding-right: auto;
    padding-left: auto;
    width: 600px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .cta2__content {
    border-radius: 40px 0px 0px 40px;
    padding-right: auto;
    padding-left: auto;
    width: 800px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 水平方向の中央揃え */
  }
}

.cta2__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 垂直方向の中央揃え */
  padding: 40px 30px;
  padding-left: auto;
  padding-right: auto;
}
@media screen and (max-width: 374px) {
  .cta2__text-wrap {
    padding: 40px 16px;
  }
}

.cta2__title {
  color: #fffdf6;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: 0.72px;
}
@media screen and (min-width: 1024px) {
  .cta2__title {
    font-size: 36px;
    letter-spacing: 1.08px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .cta2__title {
    white-space: nowrap; /* 改行しないように設定 */
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .cta2__title {
    white-space: nowrap; /* 改行しないように設定 */
    font-size: 36px;
  }
}

.cta2__text {
  color: #fffdf6;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.48px;
  padding-top: 16px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .cta2__text {
    font-size: 16px;
    font-weight: regular;
    padding-top: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .cta2__text {
    font-size: 18px;
    font-weight: regular;
    padding-top: 16px;
  }
}

.cta2__button {
  padding-top: 40px;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .cta2__button {
    padding-top: 20px;
  }
}
.cta2__deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 11px;
  left: 11px;
}
.cta2__deco .cta2-content-image {
  width: 599px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .cta2__deco .cta2-content-image {
    width: 420px;
  }
}
.cta2__deco .cta2-paw-image {
  width: 125.499px;
}

.cta2__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cta2__image img {
  border-radius: 0px 40px 40px 0px;
}

.footer {
  background: #ccb67d;
}

.footer__inner {
  padding: 56px 20px;
}
@media screen and (min-width: 1024px) {
  .footer__inner {
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 40px;
    max-width: 1120px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .footer__inner {
    padding: 56px 40px;
  }
}

.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* デフォルトは縦並び */
}
@media screen and (min-width: 1024px) {
  .footer__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; /* PC時に横並びに変更 */
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; /* 必要に応じて調整 */
    gap: 41.6666666667%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .footer__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; /* PC時に横並びに変更 */
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; /* 必要に応じて調整 */
    gap: 20.8333333333%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1024px) {
  .footer__text-content {
    margin-top: 15.5px;
    margin-bottom: 15.5px;
  }
}

.footer__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 必要に応じて調整 */
}

.footer__logo img {
  width: 188px;
}
@media screen and (min-width: 1024px) {
  .footer__logo img {
    width: 201px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__logo-text {
    color: #282d27;
    font-family: "Montserrat";
    font-size: 32px;
    font-weight: 700;
    line-height: 150%; /* 48px */
  }
}

.footer__address {
  padding-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.footer__address-text {
  color: #282d27;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
@media screen and (min-width: 1024px) {
  .footer__address-text {
    white-space: nowrap; /* 改行しないように設定 */
  }
}

.footer__phone-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 高さを揃える */
}
@media screen and (min-width: 1024px) {
  .footer__phone-number {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 高さを揃える */
    padding-bottom: 32px;
    padding-top: 16px;
  }
}

.footer__phone-number-icon img {
  width: 24px;
  height: 24px;
}

.footer__phone-number-text {
  color: #282d27;
  font-family: "Montserrat";
  font-size: 28px;
  font-weight: 500;
  line-height: 150%; /* 42px */
  margin-left: 6px;
}
@media screen and (min-width: 1024px) {
  .footer__phone-number-text {
    margin-left: 8px; /* アイコンとテキストの間にスペースを設ける */
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向の中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向の中央揃え */
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (min-width: 1024px) {
  .footer__sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; /* 左寄せ */
    padding-top: 0;
  }
}

.footer__sns-link {
  display: inline-block;
  width: 40px; /* アイコンの幅を調整 */
  height: 40px; /* アイコンの高さを調整 */
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s; /* 色の変更にトランジションを追加 */
}
.footer__sns-link .sns-svg {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__sns-link .sns-svg:hover {
  fill: #fff;
}
.footer__sns-link .footer__sns-link:hover .sns-svg path {
  fill: #fff;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .footer__nav {
    gap: 20px;
    width: 160px;
  }
}

.footer__link {
  color: #282d27;
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: regular;
  line-height: 1.5;
  text-decoration: none;
}
.footer__link:hover {
  opacity: 0.7; /* hover時に不透明度を70%に設定 */
}

.footer__link--divider {
  border-bottom: 1px solid #282d27;
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: 80px;
  font-size: 16px; /* 他のリンクと同じフォントサイズに合わせる */
}

.footer__copyright {
  text-align: center; /* 必要に応じて中央揃え */
}
@media screen and (min-width: 1024px) {
  .footer__copyright {
    margin-top: 80px; /* 必要に応じて上部にマージンを設ける */
  }
}

.footer__copyright-text {
  color: #282d27;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.scroll_down {
  display: block;
  right: 3px;
  text-align: center;
  bottom: -27px;
  position: absolute;
  z-index: 10;
}
.scroll_down--type2 {
  bottom: 300px;
}
.scroll_down p {
  color: #453222;
  font-family: "Montserrat";
  font-size: 10px;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 0.5px;
}
@media screen and (min-width: 1024px) {
  .scroll_down p {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}

.scroll_down a {
  display: inline-block;
  line-height: 18px;
  font-size: 7px;
  font-weight: normal;
  color: #453222;
  letter-spacing: 2px;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .scroll_down a {
    font-size: 12px;
  }
}

.scroll_down .mouse {
  position: relative;
  display: block;
  width: 27px;
  height: 42px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1.2px solid #453222;
  border-radius: 18px;
}
@media screen and (min-width: 1024px) {
  .scroll_down .mouse {
    width: 44px;
    height: 69px;
    border-radius: 30px;
    border: 2px solid;
  }
}

.scroll_down .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 7px;
  height: 7px;
  margin: -4px 0 0 -4px;
  background: #453222;
  border-radius: 50%;
  -webkit-animation: ani-mouse 2.5s linear infinite;
          animation: ani-mouse 2.5s linear infinite;
}
@media screen and (min-width: 1024px) {
  .scroll_down .mouse > * {
    width: 8px;
    height: 8px;
  }
}

@-webkit-keyframes ani-mouse {
  0% {
    opacity: 0;
    top: 70%;
  }
  40% {
    opacity: 0;
    top: 30%;
  }
  70% {
    opacity: 1;
    top: 30%;
  }
  100% {
    opacity: 1;
    top: 70%;
  }
}

@keyframes ani-mouse {
  0% {
    opacity: 0;
    top: 70%;
  }
  40% {
    opacity: 0;
    top: 30%;
  }
  70% {
    opacity: 1;
    top: 30%;
  }
  100% {
    opacity: 1;
    top: 70%;
  }
}
.to-top {
  position: fixed;
  right: 10%;
  bottom: 10px;
  width: min(13.3333333333%, 50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.to-top.js-show {
  opacity: 1;
  visibility: visible;
}

.to-top p {
  color: #453222;
  font-family: "Montserrat";
  font-size: 10px;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 0.5px;
}
@media screen and (min-width: 1024px) {
  .to-top p {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}

.to-top a {
  display: inline-block;
  line-height: 18px;
  font-size: 7px;
  font-weight: normal;
  color: #453222;
  letter-spacing: 2px;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .to-top a {
    font-size: 12px;
  }
}

.to-top .mouse {
  position: relative;
  display: block;
  width: 27px;
  height: 42px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1.2px solid #453222;
  border-radius: 18px;
}
@media screen and (min-width: 1024px) {
  .to-top .mouse {
    width: 44px;
    height: 69px;
    border-radius: 30px;
    border: 2px solid;
  }
}

.to-top .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 7px;
  height: 7px;
  margin: -4px 0 0 -4px;
  background: #453222;
  border-radius: 50%;
  -webkit-animation: ani-pagetop 2.5s linear infinite;
          animation: ani-pagetop 2.5s linear infinite;
}
@media screen and (min-width: 1024px) {
  .to-top .mouse > * {
    width: 8px;
    height: 8px;
  }
}

.to-top > * {
  display: inline-block;
  line-height: 18px;
  font-size: 11px;
  font-weight: normal;
  color: #7f8c8d;
  color: #ffffff;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
}

@-webkit-keyframes ani-pagetop {
  0% {
    opacity: 0;
    top: 30%;
  }
  40% {
    opacity: 0;
    top: 70%;
  }
  70% {
    opacity: 1;
    top: 70%;
  }
  100% {
    opacity: 1;
    top: 30%;
  }
}

@keyframes ani-pagetop {
  0% {
    opacity: 0;
    top: 30%;
  }
  40% {
    opacity: 0;
    top: 70%;
  }
  70% {
    opacity: 1;
    top: 70%;
  }
  100% {
    opacity: 1;
    top: 30%;
  }
}
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animated__fadeIn--up {
  opacity: 0;
  translate: 0 40px;
  -webkit-transition: opacity 0.4s ease, translate 0.4s ease;
  transition: opacity 0.4s ease, translate 0.4s ease;
}
.animated__fadeIn--up.js-show {
  opacity: 1;
  translate: 0 0;
}

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .hidden-pc {
    display: none;
  }
}

.mv {
  max-width: calc(100% + 40px);
}
@media screen and (min-width: 1440px) {
  .mv {
    margin-left: auto;
    margin-right: auto;
  }
}

.mv__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 1; /* 背景として設定 */
  padding-top: calc(244px - 164 * (100vw - 375px) / 225); /* SP幅からタブレット幅にかけて徐々に小さくする */
}
@media screen and (min-width: 1440px) {
  .mv__slider {
    padding-top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mv__slide {
  width: 100%; /* 各スライドの幅を100%に設定 */
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-size: cover;
  background-position: center;
}

.mv__slide-image img {
  height: auto;
  width: 100%;
  height: calc(100% - 156px);
  border-radius: 40px;
}
@media screen and (min-width: 1440px) {
  .mv__slide-image img {
    border-radius: 80px;
  }
}

@media screen and (min-width: 1440px) {
  .slick-dots {
    position: absolute;
    bottom: 18px;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.mv__inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 1440px) {
  .mv__inner {
    padding-left: 45px;
    padding-right: 45px;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv__contents {
  position: relative;
  z-index: 2; /* スライダーの上に重ねる */
}

.mv__contents-wrap {
  position: absolute;
  z-index: 4; /* スライダーの上に重ねる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 20px;
}
.mv__leads {
  position: absolute;
  z-index: 3; /* スライダーの上に重ねる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 98px;
  gap: 12px;
  width: 100%;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .mv__leads {
    gap: 15px;
    top: 20px;
    left: 4%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__leads {
    gap: 15px;
    top: 40px;
    left: 4%;
  }
}
@media screen and (min-width: 1440px) {
  .mv__leads {
    gap: 31px;
    left: 4%;
  }
}
@media screen and (max-width: 375px) {
  .mv__leads {
    gap: 10px;
    top: 90px;
    left: 0;
  }
}

.mv__lead {
  position: relative;
  display: inline-block;
  border-radius: 40px;
  background: #fff;
  color: #453222;
  -webkit-box-shadow: 6px 6px 0px 0px #ece3cb;
          box-shadow: 6px 6px 0px 0px #ece3cb;
  font-size: 20px;
  padding: 8px 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .mv__lead {
    font-size: 25px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1024px) {
  .mv__lead {
    font-size: 25px;
    letter-spacing: 1.5px;
  }
}
@media screen and (min-width: 1440px) {
  .mv__lead {
    padding: 10px 40px;
    font-size: 36px;
    letter-spacing: 1.8px;
  }
}
@media screen and (max-width: 375px) {
  .mv__lead {
    padding: 4px 22px;
    font-size: 18px;
    letter-spacing: 0.8px;
  }
}

.animation__text {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  overflow: hidden;
}
.animation__text .char {
  opacity: 0;
  display: inline-block;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.animation__text span {
  display: inline-block;
  overflow: hidden;
}

.animated__fadeIn {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}

.js-show {
  opacity: 1;
}

.mv__description {
  position: absolute;
  color: #333;
  left: 22px;
  bottom: 86px;
  font-size: 16px;
  letter-spacing: 0.48px;
  font-weight: 700;
  line-height: 2;
  width: 100%; /* 必要に応じて幅を調整 */
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .mv__description {
    left: 60px;
    bottom: 80px;
    font-size: 18px;
    letter-spacing: 0.72px;
    text-align: left; /* 必要に応じて中央揃え */
  }
}
@media screen and (min-width: 1024px) {
  .mv__description {
    left: 80px;
    bottom: 170px;
    font-size: 20px;
    letter-spacing: 0.72px;
    text-align: left; /* 必要に応じて中央揃え */
  }
}
@media screen and (min-width: 1440px) {
  .mv__description {
    left: 90px;
    bottom: 180px;
    font-size: 24px;
    letter-spacing: 0.72px;
    text-align: left; /* 必要に応じて中央揃え */
  }
}
.mv__description--small {
  position: absolute;
  bottom: 72px;
  letter-spacing: -7.2px;
}

.mv__deco {
  position: absolute;
  z-index: -1;
  bottom: 80px;
  left: -15px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .mv__deco {
    bottom: 70px;
    left: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .mv__deco {
    bottom: 140px;
    left: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .mv__deco {
    bottom: 100px;
    left: 35px;
  }
}
.mv__deco img {
  width: 146px;
}
@media screen and (min-width: 1440px) {
  .mv__deco img {
    width: 241px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .mv__deco img {
    width: 120px;
  }
}

.top__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 親要素で中央揃え */
}

.top__about__inner {
  position: relative;
  padding-top: 40px;
  padding-bottom: 56px;
}
@media screen and (min-width: 1440px) {
  .top__about__inner {
    padding-top: 120px;
    padding-bottom: 120px;
    max-width: 1260px;
  }
}

.top__about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex-direction: column-reverse; /* PC時に上下を入れ替える */
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .top__about__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .top__about__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1440px) {
  .top__about__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5.5555555556%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top__about__image {
  text-align: center;
  z-index: -1;
}
.top__about__image img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 335px;
  border-radius: 40px;
}
@media screen and (min-width: 1440px) {
  .top__about__image img {
    width: 522px;
    border-radius: 60px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .top__about__image img {
    width: 422px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top__about__image img {
    padding-top: 24px;
  }
}

.top__about__deco {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.top__about__deco img {
  width: 180.08px;
  height: 149.142px;
  -webkit-transform: rotate(19.898deg);
          transform: rotate(19.898deg);
}
@media screen and (min-width: 1440px) {
  .top__about__deco img {
    width: 373.766px;
    -webkit-transform: rotate(19.898deg);
            transform: rotate(19.898deg);
  }
}

.top__about__title-en {
  color: #282d27;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.top__about__title-ja {
  color: #282d27;
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: 0.72px;
  padding-top: 8px;
}
@media screen and (min-width: 1440px) {
  .top__about__title-ja {
    font-size: 32px;
    letter-spacing: 0.96px;
    padding-top: 16px;
  }
}

.top__about__desc {
  color: #282d27;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: regular;
  line-height: 1.5; /* 24px */
  letter-spacing: 0.48px;
  padding-block: 24px;
}

.gallery__inner {
  padding: 56px 20px;
}
@media screen and (min-width: 1440px) {
  .gallery__inner {
    padding-top: 120px;
    padding-bottom: 120px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 45px;
    padding-right: 45px;
  }
}

.gallery__title {
  color: #282d27;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: 0.72px;
}
@media screen and (min-width: 1440px) {
  .gallery__title {
    font-size: 32px;
    letter-spacing: 0.96px;
  }
}

.gallery__title-text {
  color: #282d27;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: regular;
  line-height: 1.5; /* 24px */
  letter-spacing: 0.48px;
  padding-top: 24px;
}
@media screen and (max-width: 375px) {
  .gallery__title-text {
    font-size: 14px;
  }
}

.gallery__sns-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* 縦方向に配置 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 上下中央に配置 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 左右中央に配置 */
  text-align: center;
  padding-block: 40px;
}

.gallery__sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 上下中央に配置 */
}
.gallery__sns-link img {
  width: 333px;
}
@media screen and (min-width: 1440px) {
  .gallery__sns-link img {
    width: 483px;
  }
}
.gallery__sns-link:hover {
  opacity: 0.8;
}

.gallery__sns-text {
  color: #453222;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.24px;
}
@media screen and (min-width: 1440px) {
  .gallery__sns-text {
    font-size: 28px;
  }
}

.gallery__slider {
  max-width: 960px;
  margin-inline: auto;
}

.gallery__swiper {
  padding-bottom: 30px;
}
@media screen and (min-width: 1440px) {
  .gallery__swiper {
    padding-bottom: 50px;
  }
}

.gallery-card__image img {
  width: 250px;
  border-radius: 8px;
}
@media screen and (min-width: 1440px) {
  .gallery-card__image img {
    width: 350px;
    border-radius: 10px;
  }
}
.gallery-card__image:hover {
  opacity: 0.8;
}

.gallery__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  bottom: 0 !important;
}
.gallery__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #CCC;
  opacity: 1;
}
.gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #282D27;
}

.gallery__prev,
.gallery__next {
  width: 40px;
  height: 40px;
  margin-top: -38px;
}
@media screen and (min-width: 1440px) {
  .gallery__prev,
  .gallery__next {
    width: 50px;
    height: 50px;
    margin-top: -20px;
  }
}
.gallery__prev::after,
.gallery__next::after {
  display: none;
}

.gallery__prev {
  left: 0;
  background: url(../img/icon/arow2.png) no-repeat center center/contain;
}
@media screen and (min-width: 1440px) {
  .gallery__prev {
    left: 10px;
  }
}

.gallery__next {
  right: 0;
  background: url(../img/icon/arow1.png) no-repeat center center/contain;
}
@media screen and (min-width: 1440px) {
  .gallery__next {
    right: 10px;
  }
}

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}

.about {
  position: relative;
}

.about__deco .about__deco-paw-right img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  width: 141.53px;
  height: 117.211px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
@media screen and (min-width: 1024px) {
  .about__deco .about__deco-paw-right img {
    width: 373.767px;
    height: 309.546px;
  }
}
.about__deco .about__deco-paw-left img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  width: 175.659px;
  height: 145.478px;
}
@media screen and (min-width: 1024px) {
  .about__deco .about__deco-paw-left img {
    width: 373.767px;
    height: 309.546px;
    -webkit-transform: rotate(-50deg);
            transform: rotate(-50deg);
  }
}

.about__inner {
  padding: 56px 20px;
}
@media screen and (min-width: 1024px) {
  .about__inner {
    padding: 112px 64px;
  }
}

@media screen and (min-width: 1024px) {
  .about__text-wrap {
    padding-block: 112px;
  }
}

.about__lead {
  color: #282d27;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .about__lead {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .about__lead {
    font-size: 18px;
  }
}

.about__description {
  color: #282d27;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8; /* 28.8px */
  padding-top: 56px;
}
@media screen and (min-width: 1024px) {
  .about__description {
    font-size: 18px;
    width: 784px;
    padding-top: 80px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .about__description {
    padding-left: 16.6666666667%;
    padding-right: 16.6666666667%;
    padding-top: 65px;
  }
}

.highlight {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFEB95));
  background: linear-gradient(transparent 60%, #FFEB95 60%);
  display: inline;
}

.feature {
  background-color: #ECE3CB;
}

.feature__inner {
  padding: 56px 20px;
}
@media screen and (min-width: 1024px) {
  .feature__inner {
    padding: 80px 64px;
  }
}

.feature__title {
  text-align: center;
}

.title-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .title-text {
    font-size: 40px;
  }
}

.text-number {
  font-size: 40px;
}
@media screen and (min-width: 1024px) {
  .text-number {
    font-size: 64px;
  }
}

@media screen and (min-width: 1024px) {
  .feature__points {
    margin-top: 40px;
  }
}

.point-box {
  padding-block: 40px;
}
@media screen and (min-width: 1024px) {
  .point-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 80px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  .point-box.is-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.point-box__head-text {
  color: #5b9e4d;
  font-family: "Montserrat";
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .point-box__head-text {
    font-size: 36px;
  }
}

.point-box-number {
  color: #5b9e4d;
  font-family: "Montserrat";
  font-size: 48px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .point-box-number {
    font-size: 64px;
  }
}

.point-box__head-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .point-box__head-title {
    font-size: 24px;
    padding-top: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .point-box__body {
    width: 35.7142857143%;
  }
}

.point-box__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  padding-block: 40px;
}
@media screen and (min-width: 1024px) {
  .point-box__image {
    width: 46.4285714286%;
  }
}
.point-box__image img {
  border-radius: 20px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .point-box__image img {
    border-radius: 40px;
  }
}

@media screen and (max-width: 767px) {
  .highlight {
    /* 必要に応じてスタイルを調整 */
  }
  .highlight::after {
    height: 5px; /* 例: 線の高さを調整 */
    background: #FFD700; /* 例: 線の色を変更 */
  }
}
@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}

.menu {
  position: relative;
}

.menu__deco-soup1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .menu__deco-soup1 {
    right: -60px;
  }
}
.menu__deco-soup1 img {
  width: 168px;
  height: 164px;
}
@media screen and (min-width: 1024px) {
  .menu__deco-soup1 img {
    width: 408px;
    height: 400px;
  }
}

.menu__deco-soup2 {
  position: absolute;
  top: 308px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .menu__deco-soup2 {
    top: 496px;
    left: -20px;
  }
}
.menu__deco-soup2 img {
  width: 116px;
  height: 117px;
}
@media screen and (min-width: 1024px) {
  .menu__deco-soup2 img {
    width: 249px;
    height: 251px;
  }
}

.menu__deco-soup3 {
  position: absolute;
  top: 651px;
  right: -20px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .menu__deco-soup3 {
    top: 1047px;
    right: 157px;
  }
}
.menu__deco-soup3 img {
  width: 116px;
  height: 117px;
}
@media screen and (min-width: 1024px) {
  .menu__deco-soup3 img {
    width: 249px;
    height: 251px;
  }
}

.menu__deco-soup4 {
  position: absolute;
  top: 1106px;
  left: -60px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .menu__deco-soup4 {
    top: 1441px;
  }
}
.menu__deco-soup4 img {
  width: 168px;
  height: 164px;
}
@media screen and (min-width: 1024px) {
  .menu__deco-soup4 img {
    width: 263px;
    height: 258px;
  }
}

@media screen and (min-width: 1024px) {
  .menu__inner {
    padding-block: 112px;
  }
}

.menu__lead__text-wrap {
  padding-inline: 15px;
}

.menu__lead__text {
  color: #282d27;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .menu__lead__text {
    font-size: 32px;
    line-height: 1.6; /* 51.2px */
    letter-spacing: 1.6px;
  }
}
@media screen and (max-width: 374px) {
  .menu__lead__text {
    font-size: 20px;
  }
}

.menu__lead__description {
  color: #282d27;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6; /* 25.6px */
  letter-spacing: 0.48px;
  text-align: center;
  margin-top: 16px;
  margin-inline: auto;
}

.menu__course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1024px) {
  .menu__course {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .menu__course {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

.course-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .course-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 86px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .course-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .course-box__body {
    width: 41.6666666667%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .course-box__body {
    width: 41.6666666667%;
  }
}

.course-box__head-title {
  color: #282d27;
  text-align: left;
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.72px;
  position: relative;
  display: inline-block; /* テキストの幅に合わせる */
}
.course-box__head-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: #FFEB95; /* 線の色 */
  z-index: -1; /* テキストの後ろに表示 */
}

.course-box__text {
  color: #282d27;
  padding-top: 12px;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6; /* 25.6px */
  letter-spacing: 0.48px;
}

@media screen and (min-width: 1024px) {
  .course-box__image {
    width: 50%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .course-box__image {
    width: 50%;
  }
}
.course-box__image img {
  border-radius: 10px;
}

.couese__caution {
  padding: 30px 20px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .couese__caution {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .couese__caution {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

.couese__caution-title {
  color: #000;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  position: relative;
}
.couese__caution-title::before {
  content: "●●●"; /* 点を3つ配置 */
  position: absolute;
  top: -2px; /* テキストの上に配置 */
  left: 51%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #282D26; /* 点の色 */
  font-size: 3px; /* 点のサイズ */
  letter-spacing: 18px; /* 点の間隔 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.couese__caution-text {
  color: #282d26;
  font-family: "Zen Maru Gothic";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.42px;
  padding-top: 30px;
}
@media screen and (min-width: 1024px) {
  .couese__caution-text {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.price {
  background: #ece3cb;
}

.price__inner {
  padding: 46px 20px;
}
@media screen and (min-width: 1024px) {
  .price__inner {
    padding: 112px 80px;
  }
}

.price__container-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.price__container-title img {
  width: 32px;
  height: 29px;
}

.price__container-title-text {
  color: #282d27;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 1024px) {
  .price__container-title-text {
    font-size: 32px;
    letter-spacing: 1.6px;
  }
}

.plan__content--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 52px;
  padding-top: 30px;
}
@media screen and (min-width: 1024px) {
  .plan__content--sp {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .plan__content--sp {
    display: none;
  }
}

.plan__content--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding-top: 80px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .plan__content--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .plan__content--pc {
    display: none;
  }
}

.price__table-title {
  color: #fff;
  background: #5b9e4d;
  font-family: "Zen Maru Gothic";
  border: 1px solid #ece3cb;
  border-bottom: none;
}
.price__table-title--sp {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 8px;
  border-radius: 10px 10px 0px 0px;
}
.price__table-title--pc {
  font-size: 24px;
  border-radius: 10px 10px 0px 0px;
  width: 100%;
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .plan__content--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 40px;
  }
  .plan__content--sp {
    display: none;
  }
}
th,
td {
  color: #282d27;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
}
th {
  background: #ccb67d;
  border: 1px solid #ece3cb;
}
th .small-text {
  font-size: 10px;
}

.menu__category {
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  padding: 8px 8px;
  border: 1px solid #ece3cb;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .menu__category {
    padding: 8px 6px;
    font-size: 14px;
  }
}

@media screen and (max-width: 599px) {
  .menu__category--op {
    text-align: left !important;
  }
}

.menu__price {
  color: #000;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  padding: 8px 8px;
  border: 1px solid #ece3cb;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.price__table {
  margin-left: auto;
  margin-right: auto;
  table-layout: fixed; /* テーブル全体の幅を固定 */
  border-collapse: collapse;
}
.price__table td {
  background: #fff;
  color: #000;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.price__table td :first-child {
  background-color: #ccb67d;
}
.price__table--sp {
  width: 100%;
}
.price__table--sp tr:last-child td {
  border-radius: 0 0 10px 0 !important; /* 最後の行のセルに角を丸くする */
}
.price__table--sp tr:last-child th {
  border-radius: 0 0 0 10px !important; /* 最後の行のセルに角を丸くする */
}
.price__table--pc {
  width: 100%;
  border-radius: 10px 10px 10px 10px; /* 角を丸くする */
}
.price__table--pc tr:last-child th {
  border-radius: 0 0 0 10px !important; /* 最後の行のセルに角を丸くする */
}
.price__table th,
.price__table td {
  width: 25%; /* 各セルの幅を均等に設定 */
  text-align: center; /* 中央揃え */
  padding: 8px; /* セル内の余白を設定 */
}

.menu__price--rounded {
  border-radius: 0 0 10px 0;
}

.menu__category--rounded {
  border-radius: 0 0 0 10px;
}

.option-table {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  table-layout: fixed; /* テーブル全体の幅を固定 */
  border-collapse: collapse;
}
.option-table td {
  background: #fff;
  color: #000;
  text-align: right;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.option-table--pc {
  width: 100%;
  text-align: center; /* 中央揃え */
}
.option-table--pc tr {
  width: 100%;
}
.option-table--pc th,
.option-table--pc td {
  width: 25%; /* 各セルの幅を均等に設定 */
  text-align: center; /* 中央揃え */
  padding: 8px; /* セル内の余白を設定 */
}

.benefits__container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向の中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向の中央揃え */
  padding-top: 64px;
}
@media screen and (min-width: 1024px) {
  .benefits__container {
    padding-top: 80px;
  }
}

.benefits__content-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 垂直方向の中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 水平方向の中央揃え */
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* 子要素の高さを揃える */
  gap: 20px;
  padding-top: 30px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .benefits__content-boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .benefits__content-boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    padding-top: 55px;
  }
}

.benefits__box {
  background: #fff;
  background: url(../img/deco/deco_menu_bg.png) no-repeat center center;
  border-radius: 10px;
  text-align: center;
  width: 100%;
}

.benefits__title-text {
  padding-top: 22px;
  color: #39823d;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-weight: 700;
}

.benefits__text {
  color: #000;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.44;
}
@media screen and (min-width: 1024px) {
  .benefits__text {
    line-height: normal;
    letter-spacing: 0.48px;
  }
}

.benefits__text--bold {
  color: #39823d;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-weight: 700;
  line-height: 1.44;
}
@media screen and (min-width: 1024px) {
  .benefits__text--bold {
    line-height: normal;
    letter-spacing: 0.6px;
  }
}

.benefits-button {
  margin-top: 16px;
  margin-bottom: 23px;
  width: 194px;
}
.benefits-button:hover {
  opacity: 0.8;
}

.benefits__image img {
  width: 96px;
  height: 86px;
}

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}

.step {
  position: relative;
}

.step__deco img {
  position: absolute;
  top: 0;
  right: 0;
  width: 155.456px;
  height: 128.75px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .step__deco img {
    width: 372.999px;
    height: 309.001px;
  }
}

.step__inner {
  max-width: 960px;
}
@media screen and (min-width: 1024px) {
  .step__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.step__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
  padding-top: 56px;
}
@media screen and (min-width: 1024px) {
  .step__boxes {
    gap: 96px;
  }
}

.step-box__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .step-box__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .step-box__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .is-reverse .step-box__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .is-reverse .step-box__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.step-box {
  position: relative;
}

.step-box__number {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 102px;
  z-index: 2;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .step-box__number {
    width: 70px;
  }
}
@media screen and (max-width: 599px) {
  .step-box__number {
    display: none;
  }
}

.step-box__line {
  position: absolute;
}
@media screen and (max-width: 599px) {
  .step-box__line {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .step-box__line {
    left: 50%;
    top: -180px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .step-box__line {
    left: 50%;
    top: -100px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .step-box__line img {
    height: 200px;
  }
}

@media screen and (min-width: 1024px) {
  .step-box__body {
    width: 40.5434782609%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .step-box__body {
    width: 40.5434782609%;
  }
}

.step-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.step-box__number-image img {
  width: 40px;
}

.step-box__title {
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  letter-spacing: 1.6px;
  font-size: 24px;
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .step-box__title {
    font-size: 32px;
    letter-spacing: 0.96px;
  }
}

.step-box__text {
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.48px;
  padding-top: 12px;
}
@media screen and (min-width: 1024px) {
  .step-box__text {
    padding-top: 20px;
  }
}
@media screen and (max-width: 375px) {
  .step-box__text {
    font-size: 14px;
  }
}

.step-box__image {
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .step-box__image {
    width: 40.5434782609%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .step-box__image {
    width: 40.5434782609%;
  }
}
.step-box__image img {
  border-radius: 10px;
}

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}

.staff {
  position: relative;
}

@media screen and (max-width: 599px) {
  .staff__deco1 {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .staff__deco1 {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .staff__deco1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .staff__deco1 img {
    width: 373px;
    height: 309px;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}

@media screen and (max-width: 599px) {
  .staff__deco2 {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .staff__deco2 {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .staff__deco2 {
    position: absolute;
    top: 520px;
    left: 0;
    z-index: -1;
  }
  .staff__deco2 img {
    width: 373px;
    height: 309px;
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
}

@media screen and (max-width: 599px) {
  .staff__deco3 {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .staff__deco3 {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .staff__deco3 {
    position: absolute;
    top: 1273px;
    right: 0;
    z-index: -1;
  }
  .staff__deco3 img {
    width: 373px;
    height: 309px;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}

.staff-shop__heading-en {
  font-family: "Montserrat";
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2.8px;
}
@media screen and (min-width: 1024px) {
  .staff-shop__heading-en {
    font-size: 48px;
    letter-spacing: 4.8px;
  }
}

.staff-shop__heading-ja {
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.12px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .staff-shop__heading-ja {
    font-size: 20px;
    letter-spacing: 1.4px;
  }
}

.staff__boxes {
  padding-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .staff__boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .staff__boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 120px;
    padding-top: 80px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 650px) {
  .staff__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .staff__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .staff__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 100px;
    margin-inline: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.staff__box-image {
  position: relative;
}

.staff__image {
  margin-inline: auto;
  width: 335px;
  border-radius: 40px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .staff__image {
    height: 280px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 9/7;
  }
}
@media screen and (min-width: 1024px) {
  .staff__image {
    width: 360px;
    height: 280px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 9/7;
  }
}

.staff__image__deco1 {
  position: absolute;
  right: -7px;
  top: 5px;
  z-index: -1;
}
.staff__image__deco1 img {
  width: 320px;
  height: 265px;
  border-radius: 40px;
}
@media screen and (min-width: 1024px) {
  .staff__image__deco1 {
    left: 64px;
    bottom: -11px;
  }
  .staff__image__deco1 img {
    width: 340px;
    height: 280px;
  }
}

.staff__deco {
  width: 203px;
}

.staff__box-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-top: 32px;
}
@media screen and (max-width: 650px) {
  .staff__box-body {
    width: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .staff__box-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .staff__box-body {
    padding-top: 0;
  }
}

.staff__box-name {
  color: #453222;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.staff__box-lead {
  color: #282D27;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.staff__box-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.staff__box-text--type2 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.staff-icon {
  margin: 5px 3px 4px 3px;
  width: 20px;
}

.staff-text {
  color: #282D27;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

@media screen and (min-width: 1024px) {
  .shop-information__inner {
    padding-top: 40px;
  }
}

@media screen and (max-width: 650px) {
  .shop-information__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .shop-information__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .shop-information__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    gap: 44px;
    max-width: 958px;
  }
}

.shop-information__box {
  background-color: #fcf7e1;
}

.shop-information__boxes {
  margin-top: 40px;
  border-top: 1px solid #DDD;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .shop-information__boxes {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 44px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-information__boxes {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 44px;
  }
}

@media screen and (min-width: 1024px) {
  .shop-information__box-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.shop-information__box-body {
  border-top: 1px solid #DDD;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .shop-information__box-body {
    width: 45.8333333333%;
  }
}
@media screen and (min-width: 1024px) {
  .shop-information__box-body {
    width: 45.8333333333%;
  }
}

.shop-information__box {
  padding: 10px 20px;
  border-bottom: 1px solid #DDD;
}
@media screen and (min-width: 1024px) {
  .shop-information__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
}

.shop-information__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .shop-information__title {
    padding: 20px;
    text-align: left;
    padding-right: 36px;
    width: 104px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .shop-information__title--time {
    padding-right: 20px;
  }
}

.shop-information__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .shop-information__text {
    padding: 20px;
    width: 375px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.shop-information__text--train {
  padding: 0;
  padding-top: 10px;
}
.shop-information__text--type2 {
  padding: 0px;
  padding-top: 10px;
}

.shop-information__ad {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.shop-address__train {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-top: 10px;
}
@media screen and (min-width: 1024px) {
  .shop-address__train {
    gap: 0;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.shop-train__icon {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .shop-train__icon {
    margin-top: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .shop-information__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.shop-map {
  padding-top: 44px;
  margin-inline: auto;
}
.shop-map iframe {
  border-radius: 31.905px;
}
@media screen and (min-width: 1024px) {
  .shop-map iframe {
    width: 440px;
    height: 420px;
    margin-block: 20px;
  }
}

.underline {
  text-decoration: underline;
}

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .contact__inner {
    padding: 80px 64px;
  }
}

.contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.contact__description {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 1em; /* 1行分の間隔を開ける */
}
@media screen and (min-width: 1024px) {
  .contact__description {
    font-size: 20px;
  }
}
.contact__description--type2 {
  margin-bottom: 0;
}

.contact__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .contact__boxes {
    gap: 80px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact__box {
  border-radius: 40px;
  background: #fff;
  padding: 40px 17px;
}
@media screen and (min-width: 1024px) {
  .contact__box {
    padding: 40px 56px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .contact__box {
    padding: 40px 40px;
  }
}
.contact__box--mail {
  background: #ece3cb;
  padding: 40px 17px;
}
@media screen and (min-width: 1024px) {
  .contact__box--mail {
    padding: 40px 80px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .contact__box--mail {
    padding: 40px 40px;
  }
}

.contact__box-tell {
  text-align: center;
}

.contact__box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .contact__box-title {
    gap: 16px;
  }
}

.box-title-icon {
  width: 36px;
}
@media screen and (min-width: 1024px) {
  .box-title-icon {
    width: 48px;
  }
}
@media screen and (max-width: 375px) {
  .box-title-icon {
    width: 32px;
  }
}

.box-title-text {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .box-title-text {
    font-size: 32px;
  }
}
@media screen and (max-width: 599px) {
  .box-title-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .box-title-text {
    font-size: 16px;
  }
}

.box-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.tel-icon {
  width: 34px;
  height: 40px;
}
@media screen and (min-width: 1024px) {
  .tel-icon {
    width: 48px;
    height: 56px;
  }
}
@media screen and (max-width: 375px) {
  .tel-icon {
    width: 24px;
    height: 32px;
  }
}

.contact__box-number {
  color: #39823d;
  font-size: 40px;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .contact__box-number {
    font-size: 64px;
  }
}
@media screen and (max-width: 375px) {
  .contact__box-number {
    font-size: 32px;
    font-weight: 900;
  }
}

.contact__box-time {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .contact__box-time {
    font-size: 20px;
  }
}
.contact__box-time .text-bold {
  font-weight: 700;
}
.contact__box-time .text-big {
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  .contact__box-time .text-big {
    font-size: 24px;
  }
}

.contact__box-line-text {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding-block: 40px;
}
@media screen and (min-width: 1024px) {
  .contact__box-line-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .contact__box-line-text {
    padding-block: 20px;
    font-size: 14px;
  }
}

.contact__box-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .contact__box-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .contact__box-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}

.contact__box-card {
  border-radius: 20px;
  background: #24ac3d;
}

.card-warp {
  padding: 24px 20px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .card-warp {
    padding: 24px 32px;
  }
}

.card-title {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .card-title {
    font-size: 36px;
  }
}

.card-image {
  width: 100px;
  padding-block: 16px;
}

.card-desc {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 375px) {
  .card-desc {
    font-size: 14px;
  }
}

.card-id {
  border-radius: 12px;
  background: #fff;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  padding-inline: 20px;
  width: 188px;
  margin-block: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .card-id {
    font-size: 32px;
    padding-inline: 20px;
    width: 261px;
    margin-block: 33px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .card-id {
    margin-block: 33px;
  }
}

.contact__box-mail-text {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding-top: 20px;
}
@media screen and (max-width: 375px) {
  .contact__box-mail-text {
    font-size: 14px;
  }
}

.contact__form {
  padding-top: 40px;
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-field__label {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .form-field__label {
    font-size: 20px;
  }
}

.form-field__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 5px;
  background: #39823d;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 10px 2px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 21px;
}

.form-text {
  border-radius: 10px;
  background: #fff;
  width: 100%;
  border: 1px solid #fff;
  padding: 7px 11px;
}
.form-text:hover, .form-text:focus {
  border-color: #39823d;
  border: 1px solid #39823d;
  outline: none;
}

.form-textarea {
  border-radius: 10px;
  background: #fff;
  width: 100%;
  border: 1px solid #fff;
  padding: 7px 11px;
}
.form-textarea:hover, .form-textarea:focus {
  border-color: #39823d;
  border: 1px solid #39823d;
  outline: none;
}

.contact__privacy {
  margin-top: 30px;
  text-align: center;
}

.form-checkbox:hover .form-checkbox__text::before {
  border-color: #39823d;
  border: 1px solid #39823d;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
+ .form-checkbox__text .form-checkbox__input:focus::before {
  border-color: #39823d;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 700;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid #111;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (min-width: 1024px) {
  .form-checkbox__text::before {
    margin-top: 2px;
  }
}
.form-checkbox__text::after {
  width: 23px;
  height: 17.53px;
  left: -1px;
  margin-top: -1.2px;
  background: url(../img/icon/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .form-checkbox__text::after {
    margin-top: 0.8px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  font-weight: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #39823d;
}

.contact__button {
  text-align: center;
  padding-top: 40px;
}

.button-submit {
  border-radius: 10px;
  border: 1px solid #39823d;
  background: #39823d;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
}
.button-submit:hover {
  background-color: #fcf7e1;
  color: #39823d;
  border: 2px solid #39823d;
  padding: 11px 23px;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}