@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 60px;
  }
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: "Zen Maru Gothic", serif, "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  background: #FCF9F0;
  color: #3B0F0F;
  line-height: 1.875;
  overflow: hidden;
}
main {
  position: relative;
}

.wrapper {
  position: relative;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
  width: 100%;
  height: 100%;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

/*======================================================
// 共通CSS
// ======================================================*/
.show--pc {
  display: block;
}

.show--sp {
  display: none;
  visibility: hidden;
}

@media screen and (max-width: 960px) {
  .show--pc {
    display: none;
  }
  .show--sp {
    display: block;
    visibility: visible;
  }
}
.inner {
  max-width: calc(1026px + 4%);
  margin: 0 auto;
  padding: 70px 2%;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .inner {
    max-width: 548px;
    padding: 40px 20px;
  }
}

.red {
  color: #FF414E;
  font-weight: 600;
}

.btn-wrapper {
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .btn-wrapper {
    margin-top: 40px;
  }
}

.btn {
  margin: auto;
  line-height: 1.5;
  min-width: 150px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  gap: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.btn svg {
  max-width: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn svg path,
.btn svg line,
.btn svg rect {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover svg rect {
  fill: #FF414E;
}
.btn:hover svg g path {
  stroke: #fff;
}
.btn:hover svg g line {
  stroke: #fff;
}

.section__title {
  padding-top: 20px;
  min-width: 220px;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .section__title {
    min-width: 140px;
  }
}
.section__title::before {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 210px;
  height: 150px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .section__title::before {
    width: 140px;
    height: 100px;
  }
}
.section__title--icon01::before {
  background: url("../img/common/icon-img01.svg") no-repeat center center/cover;
}
.section__title--icon02::before {
  background: url("../img/common/icon-img02.svg") no-repeat center center/cover;
}
.section__title--icon03::before {
  background: url("../img/common/icon-img03.svg") no-repeat center center/cover;
}

.section__title--en {
  text-align: center;
}

.section__title--jp {
  font-weight: bold;
  font-size: 60px;
  letter-spacing: 0.3em;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .section__title--jp {
    font-size: 32px;
    line-height: 1.25;
  }
}

/*======================================================
下層ページMV
======================================================*/
.page-mv {
  height: 768px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .page-mv {
    max-height: 400px;
  }
}
.page-mv .inner {
  height: 100%;
}

.page-mv__content {
  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;
  text-align: center;
  height: 100%;
}

.page-mv__title--jp {
  font-weight: bold;
  font-size: 60px;
  letter-spacing: 0.3em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .page-mv__title--jp {
    font-size: 32px;
    letter-spacing: 0.2em;
    line-height: 1.25;
  }
}

/*======================================================
パンくずリスト
======================================================*/
#breadcrumbs {
  margin: auto;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1025px;
  padding-right: 2%;
}
@media screen and (max-width: 960px) {
  #breadcrumbs {
    padding-inline: 20px;
    font-size: 10px;
  }
}
#breadcrumbs .inner {
  padding-block: 0;
}

@media screen and (max-width: 960px) {
  .single-news #breadcrumbs {
    padding-left: 135px;
    text-indent: -120px;
  }
}

#breadcrumbs a {
  padding-inline: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  #breadcrumbs a {
    padding-inline: 5px;
  }
}

#breadcrumbs .breadcrumb_last {
  padding-inline: 10px 0;
}

/*======================================================
header
======================================================*/
header {
  background: transparent;
  position: fixed;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 998;
  width: 100%;
  height: 220px;
}
@media screen and (max-width: 1366px) {
  header {
    height: 16.1054172767vw;
  }
}
@media screen and (max-width: 960px) {
  header {
    top: 0px;
    height: 120px;
  }
}

.header__inner {
  padding-top: 36px;
  padding-right: 40px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1366px) {
  .header__inner {
    padding-top: 2.635431918vw;
    padding-right: 2.9282576867vw;
  }
}
@media screen and (max-width: 960px) {
  .header__inner {
    padding-top: 30px;
    padding-inline: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__inner::before {
  background: url("../img/common/header-line.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1366px) {
  .header__inner::before {
    height: 1.4641288433vw;
  }
}
@media screen and (max-width: 960px) {
  .header__inner::before {
    background: url("../img/common/header-line-sp.svg") repeat center center/contain;
    height: 20px;
  }
}

.header__nav-item .header__logo {
  max-width: 280px;
  width: 100%;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1366px) {
  .header__nav-item .header__logo {
    max-width: 20.4978038067vw;
  }
  .header__nav-item .header__logo img {
    max-width: 100%;
  }
}
.header__nav-item .header__logo img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .header__nav-item .header__logo {
    max-width: 114px;
  }
}
@media (hover: hover) {
  .header__nav-item .header__logo:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 960px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header__nav-list::after {
  background: url("../img/common/dot-line.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 1px;
  height: 98px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1366px) {
  .header__nav-list::after {
    height: 7.1742313324vw;
  }
}

.header__nav-item--instagram {
  position: absolute;
  top: 0;
  right: 40px;
}
@media screen and (max-width: 1366px) {
  .header__nav-item--instagram {
    right: 2.9282576867vw;
  }
  .header__nav-item--instagram .header__nav-item-link img {
    max-width: 2.196193265vw;
  }
}
.header__nav-item--instagram .header__nav-item-link {
  padding: 0;
}
.header__nav-item--instagram .header__nav-item-link::before {
  content: none;
}
@media (hover: hover) {
  .header__nav-item--instagram:hover {
    opacity: 0.7;
  }
}

.header__nav-item--facebook {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1366px) {
  .header__nav-item--facebook .header__nav-item-link img {
    max-width: 2.196193265vw;
  }
}
.header__nav-item--facebook .header__nav-item-link {
  padding: 0;
}
.header__nav-item--facebook .header__nav-item-link::before {
  content: none;
}
@media (hover: hover) {
  .header__nav-item--facebook:hover {
    opacity: 0.7;
  }
}

.header__nav-item-link {
  padding: 0px 24px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1366px) {
  .header__nav-item-link {
    padding: 0 1.756954612vw;
    font-size: 1.1713030747vw;
  }
  .header__nav-item-link img {
    max-width: 5.1244509517vw;
  }
}
@media screen and (max-width: 960px) {
  .header__nav-item-link {
    padding: 0;
  }
  .header__nav-item-link img {
    max-width: 114px;
  }
}
.header__nav-item-link::before {
  background: url("../img/common/dot-line.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 1px;
  height: 98px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1366px) {
  .header__nav-item-link::before {
    height: 7.1742313324vw;
  }
}
@media screen and (max-width: 960px) {
  .header__nav-item-link::before {
    content: none;
  }
}

.header__btn {
  position: absolute;
  top: 0px;
  right: 0;
}
@media screen and (max-width: 1366px) {
  .header__btn {
    max-width: 17.5695461201vw;
  }
}
@media screen and (max-width: 960px) {
  .header__btn {
    display: none;
  }
}
.header__btn:hover {
  opacity: 0.7;
}

/* =========================
  ハンバーガーメニュー
============================ */
.hamburger-button-wrapper {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 960px) {
  .hamburger-button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    visibility: visible;
    z-index: 5;
  }
}

.hamburger {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 960px) {
  .hamburger {
    background: #FFD54B;
    display: block;
    border-radius: 50%;
    visibility: visible;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
  }
}

.hamburger-bar {
  background: #7E5656;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.hamburger-bar:nth-of-type(1) {
  top: 13px;
}

.hamburger-bar:nth-of-type(2) {
  top: 20px;
}

.hamburger-bar:nth-of-type(3) {
  bottom: 12px;
}

.hamburger.active .hamburger-bar {
  opacity: 1;
  visibility: visible;
}
.hamburger.active .hamburger-bar:nth-of-type(1) {
  -webkit-transform: translateX(-50%) translateY(7px) rotate(-45deg);
          transform: translateX(-50%) translateY(7px) rotate(-45deg);
}
.hamburger.active .hamburger-bar:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger-bar:nth-of-type(3) {
  -webkit-transform: translateX(-50%) translateY(-7px) rotate(45deg);
          transform: translateX(-50%) translateY(-7px) rotate(45deg);
}

.drawer {
  background: #FDF9F0;
  position: fixed;
  top: 0px;
  right: 0;
  width: calc(100vw + 1px);
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: visible;
}
.drawer::before {
  background: url("../img/common/drawer-bg.webp") no-repeat center top/cover;
  content: "";
  position: absolute;
  top: 25%;
  width: 100%;
  height: 100%;
  bottom: 0;
  pointer-events: none;
}

.drawer__inner {
  margin: 0 auto;
  height: 100%;
  width: 100%;
  max-width: 335px;
  padding: 180px 40px 90px;
  position: relative;
}

.drawer.active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin: auto;
}

@media screen and (max-width: 960px) {
  .drawer__nav-item-link {
    font-weight: 600;
    line-height: 1.5;
    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;
  }
}

.drawer .btn {
  padding: 10px 25px;
  max-width: 255px;
  height: 60px;
  border-radius: 16px;
  background: #ff424e;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #fcfcfc;
}
.drawer .btn:hover svg rect {
  fill: #fff;
}
.drawer .btn:hover svg line {
  stroke: #3b0f0f;
}
.drawer .btn:hover svg path {
  stroke: #3b0f0f;
}

.drawer .btn-wrapper {
  margin-top: 90px;
  z-index: 1;
}

.drawer-illust {
  position: absolute;
  top: -50px;
  left: 0;
  z-index: -1;
}

/*======================================================
採用情報バナー
======================================================*/
.recruit-banner {
  margin: auto;
  max-width: 866px;
}
@media screen and (max-width: 960px) {
  .recruit-banner {
    margin: 0 auto;
    max-width: 335px;
    width: 90%;
  }
}
.recruit-banner .section__title {
  padding-top: 0;
}
@media screen and (max-width: 960px) {
  .recruit-banner .section__title {
    margin: auto;
    max-width: 206px;
  }
}

.recruit-banner__link {
  padding: 55px 60px;
  position: relative;
  border-radius: 40px;
  border: 2px solid #572510;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .recruit-banner__link {
    padding: 40px 20px;
  }
}
.recruit-banner__link::before {
  background: url("../img/common/recruit-banner-bg.webp") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .recruit-banner__link::before {
    background: url("../img/common/recruit-banner-bg-sp.webp") no-repeat center center/cover;
  }
}
.recruit-banner__link svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  .recruit-banner__link svg {
    margin: 40px auto 0;
    display: block;
    position: static;
    max-width: 70px;
    max-height: 70px;
    border-radius: 50%;
    -webkit-transform: none;
            transform: none;
  }
}
.recruit-banner__link svg rect {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recruit-banner__link svg line {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recruit-banner__link svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recruit-banner__link:hover svg rect {
  fill: #FF414E;
}
.recruit-banner__link:hover svg line {
  stroke: #fff;
}
.recruit-banner__link:hover svg path {
  stroke: #fff;
}

.recruit-banner__text {
  margin-top: 40px;
  max-width: 420px;
}

.access {
  margin-top: 140px;
  margin-bottom: -350px;
  padding: 70px 0;
  position: relative;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 960px) {
  .access {
    margin-top: 80px;
    margin-bottom: -100px;
    padding: 45px 0 40px;
  }
}
.access .section__title {
  margin: auto;
}
.access::before {
  content: "";
  position: absolute;
  background: url("../img/common/access-bg.webp") no-repeat center top/100% 100%;
  width: 110%;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .access::before {
    background: url("../img/common/access-bg-sp.webp") no-repeat center top/cover;
  }
}

.access__box {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 75px;
}
@media screen and (max-width: 960px) {
  .access__box {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}

.access__info {
  width: 237px;
}
@media screen and (max-width: 960px) {
  .access__info {
    width: 100%;
  }
  .access__info img {
    max-width: 114px;
  }
}

.access__address {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .access__address {
    margin-top: 20px;
  }
}

.access__tel .num {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.5625;
  opacity: 0.8;
  white-space: nowrap;
}

.access__time {
  margin-top: 8px;
}

.access__map {
  padding-top: 38%;
  position: relative;
  width: 69.49%;
  max-width: 712px;
  height: 0;
}
@media screen and (max-width: 960px) {
  .access__map {
    padding-top: 80.5%;
    width: 100%;
  }
}
.access__map iframe {
  border-radius: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access__map .access-Illust {
  position: absolute;
  top: -179px;
  right: 80px;
}
@media screen and (max-width: 960px) {
  .access__map .access-Illust {
    max-width: 72px;
    top: auto;
    right: 0;
    bottom: -100px;
  }
}

.contact {
  padding-top: 350px;
  background: url("../img/common/contact-bg.webp") no-repeat center top/cover;
}
@media screen and (max-width: 960px) {
  .contact {
    padding-top: 100px;
  }
}
.contact .inner {
  padding-bottom: 140px;
}
@media screen and (max-width: 960px) {
  .contact .inner {
    padding-bottom: 80px;
  }
}

.contact__box {
  margin-top: 75px;
  padding: 140px 100px;
  background: #fff;
  border-radius: 40px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .contact__box {
    margin-top: 40px;
    padding: 40px 20px;
    border-radius: 20px;
  }
}

.contact-Illust01 {
  position: absolute;
  top: -40px;
  left: 80px;
}
@media screen and (max-width: 960px) {
  .contact-Illust01 {
    max-width: 110px;
    left: 20px;
  }
}

.contact__head {
  position: relative;
  z-index: 1;
}
.contact__head .section__title {
  margin: auto;
}

.contact__description {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .contact__description {
    margin-top: 40px;
  }
}

.contact__tel {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 110px;
}
@media screen and (max-width: 960px) {
  .contact__tel {
    margin: 40px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    max-width: 233px;
  }
}

.contact__tel-title {
  padding-left: 70px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .contact__tel-title {
    padding-left: 40px;
    font-size: 16px;
    letter-spacing: 0;
  }
}
.contact__tel-title::before {
  background: url("../img/common/icon-tel.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .contact__tel-title::before {
    width: 30px;
    height: 30px;
  }
}

.contact__tel-num {
  margin-top: 32px;
}
@media screen and (max-width: 960px) {
  .contact__tel-num {
    margin-top: 0;
    white-space: nowrap;
  }
}
.contact__tel-num .num {
  margin-left: 8px;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 960px) {
  .contact__tel-num .num {
    margin-left: 0;
    font-size: 32px;
    white-space: nowrap;
  }
}

.contact__tel-text {
  text-align: right;
  font-size: 13px;
}
@media screen and (max-width: 960px) {
  .contact__tel-text {
    text-align: center;
  }
}

.contact__hr {
  margin: 60px auto;
  border-top: 1px solid #B4CE5C;
  max-width: 700px;
}
@media screen and (max-width: 960px) {
  .contact__hr {
    margin: 40px auto 0;
    max-width: 100%;
  }
}

.contact__mail-title {
  padding-left: 70px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .contact__mail-title {
    margin: 40px auto 0;
    padding-left: 40px;
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
    max-width: 248px;
  }
}
.contact__mail-title::before {
  background: url("../img/common/icon-mail.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .contact__mail-title::before {
    width: 30px;
    height: 30px;
  }
}

.contact__form {
  margin-top: 60px;
}
@media screen and (max-width: 960px) {
  .contact__form {
    margin-top: 40px;
  }
}

.contact__wrapper {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .contact__wrapper {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact__item {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .contact__item {
    width: 100%;
  }
}

.contact__label {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  position: relative;
  line-height: 1;
  white-space: nowrap;
}

.contact__label--required::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  content: "必須";
  color: #FF424E;
  font-size: 13px;
  line-height: 1;
}

.contact__input {
  margin-top: 10px;
  display: inline-block;
  width: 100%;
}

.contact__input input,
.contact__input textarea {
  padding: 5px 10px;
  border: 1px solid #B4CE5C;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  border-radius: 4px;
  font-family: inherit;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .contact__input input,
  .contact__input textarea {
    font-size: 14px;
    line-height: 180%;
  }
}

.contact__item--radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .contact__item--radio {
    -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;
    gap: 20px;
  }
}
.contact__item--radio .wpcf7-list-item {
  margin-left: 0;
}
.contact__item--radio .contact__input {
  margin-top: 0;
}
.contact__item--radio .wpcf7-list-item-label {
  white-space: nowrap;
  cursor: pointer;
}

.contact__item--radio .wpcf7-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact__item--radio .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .contact__item--radio .wpcf7-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}

.contact__item--radio input[type=radio] {
  margin-top: 7px;
  margin-left: 0;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  accent-color: #3B0F0F;
}

.contact__input--zip {
  margin-bottom: 10px;
  max-width: 180px;
}

.contact__item--textarea {
  margin-top: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

.contact__item--textarea textarea {
  height: 220px;
  resize: none;
}

.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item:not(:last-child) {
  margin-right: 20px;
}
.wpcf7-checkbox .wpcf7-list-item-label {
  margin-left: 0;
}
.wpcf7-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .wpcf7-checkbox label {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.wpcf7-checkbox label .wpcf7-list-item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wpcf7-checkbox input[type=checkbox] {
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  border-radius: 2px;
  border: 1px solid #3B0F0F;
  background: #fff;
  cursor: pointer;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .wpcf7-checkbox input[type=checkbox] {
    margin-top: 5px;
  }
}
.wpcf7-checkbox input[type=checkbox]:checked {
  border-color: 3B0F0F;
}
.wpcf7-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #3B0F0F;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.wpcf7-checkbox input[type=checkbox]:hover {
  border-color: #3B0F0F;
}
.wpcf7-checkbox input[type=checkbox]:focus {
  outline: 2px solid rgba(0, 0, 0, 0.1);
  outline-offset: 2px;
}

.contact__placeholder {
  font-weight: normal;
  font-size: 13px;
  line-height: 1.8461538462;
  text-align: left;
  color: #9b9b9b;
}

.contact__privacy-check {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .contact__privacy-check {
    margin-top: 40px;
  }
}
.contact__privacy-check .wpcf7-checkbox {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__privacy-check .wpcf7-checkbox .wpcf7-list-item-label {
  display: block;
  text-align: left;
  line-height: 1.5;
}
.contact__privacy-check a {
  text-decoration: underline;
  display: inline-block;
  font-weight: bold;
}

.contact__btn {
  margin: 80px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  position: relative;
  z-index: 1;
  position: relative;
}
.contact__btn input[type=submit] {
  border-radius: 16px;
  border: 1px solid #B4CE5C;
  background: #B4CE5C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 246px;
  height: 60px;
  padding: 10px 20px 10px 40px;
  font-family: "Zen Maru Gothic", serif;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #3b0f0f;
  text-align: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact__btn::after {
  background: url("../img/common/contact-arrow.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact__btn:hover::after {
  -webkit-transform: translateX(10px) translateY(-50%);
          transform: translateX(10px) translateY(-50%);
}
.contact__btn:hover .contact-Illust02 img {
  -webkit-transform: translateX(-5px) translateY(-5px) rotate(-15deg);
          transform: translateX(-5px) translateY(-5px) rotate(-15deg);
}

.contact-Illust02 {
  position: absolute;
  top: -70px;
  left: -10px;
  z-index: -1;
  pointer-events: none;
}
.contact-Illust02 img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wpcf7-spinner {
  position: absolute;
}

/*======================================================
footer
======================================================*/
.footer {
  position: relative;
  background: url("../img/common/footer-bg.webp") no-repeat center top/cover;
}
@media screen and (max-width: 960px) {
  .footer {
    background: url("../img/common/footer-bg-sp.webp") no-repeat center top/cover;
  }
}
@media screen and (max-width: 960px) {
  .footer::before {
    background: url("../img/common/header-line-sp.svg") repeat center center/contain;
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .footer::after {
    background: url("../img/common/footer-bg-deco.webp") repeat center center/contain;
    content: "";
    position: absolute;
    width: 100%;
    height: 88.5333333333vw;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.footer .inner {
  padding-block: 80px 59.880239521vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .footer .inner {
    padding-block: 30px 380px;
    padding-bottom: 101.3333333333vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    max-width: 375px;
  }
}

.footer__logo img {
  max-width: 240px;
}
@media screen and (max-width: 960px) {
  .footer__logo img {
    max-width: 114px;
  }
}
.footer__logo:hover {
  opacity: 0.7;
}

.footer__address {
  margin-top: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .footer__address {
    margin-top: 20px;
  }
}

.footer__tel .num {
  margin-top: 10px;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.5625;
  opacity: 0.8;
}
.footer__sns-list {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .footer__sns-list {
    margin-top: 10px;
  }
}
@media (hover: hover) {
  .footer__sns-list a:hover {
    opacity: 0.7;
  }
}

.footer__copy {
  margin-top: 10px;
}

.copyright {
  font-weight: normal;
  font-size: 13px;
  line-height: 1.8461538462;
}
@media screen and (max-width: 960px) {
  .copyright {
    font-size: 10px;
  }
}

.footer__right {
  padding-bottom: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .footer__right {
    padding-bottom: 0;
    display: contents;
  }
}

.footer__menu-list {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 960px) {
  .footer__menu-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px 0;
  }
}

.footer__menu-item:last-child .footer__menu-item-link::after {
  background: url("../img/common/dot-line.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 1px;
  height: 98px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__menu-item-link {
  padding: 0px 24px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .footer__menu-item-link {
    padding: 0px 16px;
  }
}
.footer__menu-item-link::before {
  background: url("../img/common/dot-line.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 1px;
  height: 98px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__totop {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 960px) {
  .footer__totop {
    max-width: 90px;
    top: 30px;
    right: 20px;
  }
}

.illust-fadein {
  opacity: 0;
  -webkit-transform: translateY(40px) rotate(-5deg);
          transform: translateY(40px) rotate(-5deg);
  -webkit-transition: none;
  transition: none;
}

@-webkit-keyframes peekUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px) rotate(-5deg);
            transform: translateY(40px) rotate(-5deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(-8px) rotate(3deg);
            transform: translateY(-8px) rotate(3deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
}

@keyframes peekUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px) rotate(-5deg);
            transform: translateY(40px) rotate(-5deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(-8px) rotate(3deg);
            transform: translateY(-8px) rotate(3deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
}
/* アニメーション適用クラス */
.illust-fadein.is-visible {
  -webkit-animation: peekUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: peekUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-in-sequence {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.fade-in-sequence.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 各アイテムに遅延を設定（最大10個まで対応） */
.fade-in-sequence:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}

.fade-in-sequence:nth-child(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.fade-in-sequence:nth-child(3) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

.fade-in-sequence:nth-child(4) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

.fade-in-sequence:nth-child(5) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}

.fade-in-sequence:nth-child(6) {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

.fade-in-sequence:nth-child(7) {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}

.fade-in-sequence:nth-child(8) {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}

.fade-in-sequence:nth-child(9) {
  -webkit-transition-delay: 1600ms;
          transition-delay: 1600ms;
}

.fade-in-sequence:nth-child(10) {
  -webkit-transition-delay: 1800ms;
          transition-delay: 1800ms;
}

.js-wave span {
  display: inline-block;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.js-wave:hover .wave-wrapper span {
  -webkit-animation: waveAnimation 0.6s ease-in-out;
          animation: waveAnimation 0.6s ease-in-out;
}

.js-wave:hover a {
  opacity: 1;
}

.js-wave:hover .wave-wrapper span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.js-wave:hover .wave-wrapper span:nth-child(2) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}

.js-wave:hover .wave-wrapper span:nth-child(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.js-wave:hover .wave-wrapper span:nth-child(4) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.js-wave:hover .wave-wrapper span:nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.js-wave:hover .wave-wrapper span:nth-child(6) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.js-wave:hover .wave-wrapper span:nth-child(7) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.js-wave:hover .wave-wrapper span:nth-child(8) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}

.js-wave:hover .wave-wrapper span:nth-child(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.js-wave:hover .wave-wrapper span:nth-child(10) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

@-webkit-keyframes waveAnimation {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes waveAnimation {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}