@charset "UTF-8";
/* Universal box-sizing reset */
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  zoom: 1;
}

/* Set default styles for html */
html {
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
input,
textarea,
label {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size-adjust: 0.5;
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100vw;
  overflow-x: clip;
}

strong {
  font-style: normal;
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  outline: none;
  cursor: pointer;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style-type: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

iframe {
  border: none;
  display: block;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  transition: all 0.3s ease;
}

.js-tick {
  overflow: hidden;
  white-space: nowrap;
}

.js-tick-track {
  display: inline-flex;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: loopText var(--loop-duration, 10s) linear infinite;
          animation: loopText var(--loop-duration, 10s) linear infinite;
}

.js-tick-item {
  display: inline-block;
  padding-right: 4rem;
}

@-webkit-keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}

@keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}
.js-tab-panel {
  display: none;
  opacity: 0;
}
.js-tab-panel.is-show {
  display: block;
  -webkit-animation: panel-show 0.6s ease forwards;
  animation: panel-show 0.6s ease forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
:root {
  /* 日本語（Noto Sans JP） */
  --noto:
    "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Yu Gothic UI", "Meiryo", sans-serif;
  /* 英字（Belleza） */
  --bell:
    "Belleza", "Avenir Next", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

body {
  font-family: var(--noto);
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 2;
  letter-spacing: normal;
  overflow-x: clip;
  color: #351e16;
  word-break: auto-phrase;
}
@media (min-width: 768px) {
  body {
    letter-spacing: 0.1em;
  }
}

html.is-nav-open,
body.is-nav-open {
  overflow: hidden;
  height: 100%;
}

.bg-fix {
  background-image: url("../images/common-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--noto);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

a {
  color: #351e16;
  text-decoration: none !important;
}

a:hover {
  color: #c0b6a6 !important;
  cursor: pointer;
}

.sp-br > br {
  display: block;
}
@media (min-width: 576px) {
  .sp-br > br {
    display: none;
  }
}

.tab-br > br {
  display: block;
}
@media (min-width: 992px) {
  .tab-br > br {
    display: none;
  }
}

.xl-br > br {
  display: block;
}
@media (min-width: 1200px) {
  .xl-br > br {
    display: none;
  }
}

/* フォント */
.noto-r {
  font-family: var(--noto) !important;
  font-weight: 400 !important;
}

.noto-b {
  font-family: var(--noto) !important;
  font-weight: 700 !important;
}

.fc-white {
  color: #fff !important;
}

.fc-black {
  color: #351e16 !important;
}

.fc-red {
  color: #ce0a0a !important;
}

.fc-beige {
  color: #f5e9d9 !important;
}

.fc-beige2 {
  color: #beac8f !important;
}

.v-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.text-shadow {
  text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
  text-shadow: 2px 2px 5px white;
}

.has-shadow {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景 */
.bg-white {
  background-color: #fff;
}

.bg-beige {
  background-color: #beac8f;
}

.bg-red {
  background-color: #ea511f;
}

.r-5 {
  border-radius: 5px;
}

.r-10 {
  border-radius: 10px;
}

.r-20 {
  border-radius: 20px;
}

/*罫線*/
.b-black {
  border: 1px solid #b2a49a;
}

.bl-black {
  border-left: 1px solid #b2a49a;
}

.br-black {
  border-right: 1px solid #b2a49a;
}

.bb-black {
  border-bottom: 1px solid #b2a49a;
}

.bt-black {
  border-bottom: 1px solid #b2a49a;
}

/* ボタン */
.button {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
  border: 1px #351e16 solid;
  border-radius: 100px;
  padding: 0.8rem 2rem;
  gap: 0.8rem;
  min-width: 240px;
  max-width: 280px;
}
.button::before {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  background-image: url("../images/arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.button.free {
  width: 80%;
  max-width: 390px;
  padding: 1.2rem 1.4rem;
}
@media (min-width: 768px) {
  .button.free {
    width: 95%;
  }
}
@media (min-width: 992px) {
  .button.free {
    width: 80%;
  }
}
.button p {
  font-size: clamp(0.938rem, 0.897rem + 0.18vw, 1.063rem);
  color: #351e16 !important;
  line-height: 1.5;
}
.button:hover {
  background-color: #f8f3ea;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.2);
}
.button:hover::before {
  right: 18px;
}

.foot-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
  border: 1px #351e16 solid;
  border-radius: 100px;
  padding: 1.2rem 2rem;
  min-width: 240px;
  max-width: 260px;
}
.foot-button p {
  font-size: clamp(0.938rem, 0.897rem + 0.18vw, 1.063rem);
  color: #5f4b3e !important;
  line-height: 1.5;
}
.foot-button:hover {
  background-color: #f8f3ea;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.2);
}

.phone-button {
  display: inline-flex;
  height: 42px;
  width: 180px;
  transition: all 0.3s;
  cursor: pointer;
}
.phone-button:hover {
  transform: scale(1.03);
}
@media (min-width: 992px) {
  .phone-button {
    height: 46px;
  }
}
.phone-button img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.line-button,
.inst-button {
  display: inline-flex;
  width: auto;
  height: 42px;
  transition: all 0.3s;
  cursor: pointer;
}
.line-button:hover,
.inst-button:hover {
  transform: scale(1.03);
}
@media (min-width: 992px) {
  .line-button,
.inst-button {
    height: 46px;
  }
}
.line-button img,
.inst-button img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.comming-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px #351e16 solid;
  border-radius: 100px;
  padding: 0.8rem 2rem;
  min-width: 240px;
  max-width: 280px;
}

/* ナビ */
.a-nav-menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.3s;
  overflow-y: auto;
  background-color: #fff;
}
@media (min-width: 992px) {
  .a-nav-menu {
    flex-direction: row-reverse;
    justify-content: center;
  }
}
@media (orientation: landscape) and (max-height: 750px) {
  .a-nav-menu {
    display: flex;
    width: 100%;
    gap: 3rem;
  }
}

.a-nav-menu.is-active {
  visibility: visible;
  opacity: 1;
  left: 0;
  top: 0;
}

.a-nav-menu.edit {
  visibility: visible;
  opacity: 1;
  left: 0;
  top: 0;
}

.nav-menu-box-l {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  text-align: center;
  flex: 0.8;
  background-color: #f8f2ef;
  padding-block: 4rem;
}
@media (min-width: 992px) {
  .nav-menu-box-l {
    flex: 1.2;
    padding-block: 0;
    height: 100%;
  }
}
.nav-menu-box-l .main-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  width: 90%;
}
@media (min-width: 992px) {
  .nav-menu-box-l .main-box {
    width: 80%;
  }
}
.nav-menu-box-l .main-box .title {
  font-family: var(--bell);
  letter-spacing: 0.2em;
  font-size: clamp(1.125rem, 0.761rem + 1.58vw, 2.25rem);
}
.nav-menu-box-l .main-box .info-box {
  border: solid 1px #351e16;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-radius: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .nav-menu-box-l .main-box .info-box {
    padding: 3.4rem;
  }
}
.nav-menu-box-l .main-box .info-box .text-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  width: 100%;
  text-align: start;
}
.nav-menu-box-l .main-box .info-box .text-flex .l {
  flex: 1;
  color: #beac8f;
  display: flex;
}
.nav-menu-box-l .main-box .info-box .text-flex .r {
  flex: 3;
  display: flex;
}
.nav-menu-box-l .main-box .info-box .text-flex:not(:last-child) {
  border-bottom: 1px solid #c0b6a6;
  padding-bottom: 1.4rem;
}

.nav-menu-box-r {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  text-align: center;
  flex: 1;
  background-color: #fff;
  padding-block: 4rem;
}
@media (min-width: 992px) {
  .nav-menu-box-r {
    padding-block: 0;
  }
}
.nav-menu-box-r .main-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.4rem;
  width: 90%;
}
@media (min-width: 992px) {
  .nav-menu-box-r .main-box {
    width: 80%;
  }
}
.nav-menu-box-r .main-box .menu-logo {
  width: 60%;
  min-width: 297px;
}
.nav-menu-box-r .main-box .menu-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.nav-menu-box-r .main-box .menu-box .sub-menu-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav-menu-box-r .main-box .menu-box .sub-menu-box a {
  color: #917f73 !important;
}
.nav-menu-box-r .main-box .menu-box .sub-menu-box a p {
  transition: all 0.3s;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}
.nav-menu-box-r .main-box .menu-box .sub-menu-box a :hover {
  color: #ffe2a4 !important;
}
.nav-menu-box-r .main-box .menu-box .sub-menu-box .box {
  width: calc((100% - 0.6rem) / 2);
}
.nav-menu-box-r .main-box .menu-box .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav-menu-box-r .main-box .menu-box .icon-box .phone-button {
  display: inline-flex;
  height: 38px;
  width: 150px;
  transition: all 0.3s;
  cursor: pointer;
}
.nav-menu-box-r .main-box .menu-box .icon-box .phone-button:hover {
  transform: scale(1.03);
}
@media (min-width: 768px) {
  .nav-menu-box-r .main-box .menu-box .icon-box .phone-button {
    height: 42px;
    width: 180px;
  }
}
@media (min-width: 992px) {
  .nav-menu-box-r .main-box .menu-box .icon-box .phone-button {
    height: 46px;
  }
}
.nav-menu-box-r .main-box .menu-box .icon-box .line-button,
.nav-menu-box-r .main-box .menu-box .icon-box .inst-button {
  display: inline-flex;
  width: auto;
  height: 38px;
  transition: all 0.3s;
  cursor: pointer;
}
.nav-menu-box-r .main-box .menu-box .icon-box .line-button:hover,
.nav-menu-box-r .main-box .menu-box .icon-box .inst-button:hover {
  transform: scale(1.03);
}
@media (min-width: 768px) {
  .nav-menu-box-r .main-box .menu-box .icon-box .line-button,
.nav-menu-box-r .main-box .menu-box .icon-box .inst-button {
    height: 42px;
  }
}
@media (min-width: 992px) {
  .nav-menu-box-r .main-box .menu-box .icon-box .line-button,
.nav-menu-box-r .main-box .menu-box .icon-box .inst-button {
    height: 46px;
  }
}

.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrap .right-box {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 1.4rem;
}
.header-wrap .left-box {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1.4rem;
}
.header-wrap .left-box .logo-box {
  display: none;
  width: 220px;
  opacity: 0;
  transform: translateX(-30px) scale(1);
  transition: opacity 0.5s, transform 0.5s;
}
.header-wrap .left-box p {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  transition: font-size 0.5s;
}
.header-wrap .left-box.is-show .logo-box {
  opacity: 1;
  transform: translateX(0) scale(0.8); /* 必要なら縮小 */
}
@media (min-width: 768px) {
  .header-wrap .left-box.is-show .logo-box {
    display: block;
  }
}
.header-wrap .left-box.is-show p {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
}

.reserve-button {
  position: fixed;
  right: 0;
  bottom: 30px;
  z-index: 1100;
  width: 90px;
}
@media (min-width: 992px) {
  .reserve-button {
    top: 86px;
    bottom: auto;
    width: 136px;
  }
}
.reserve-button img {
  transition: all 0.3s;
}
.reserve-button :hover {
  scale: 1.06;
}

.a-burger {
  position: relative;
  z-index: 1100;
  cursor: pointer;
  width: 35px;
  height: 35px;
  padding: 0;
  display: block;
}

.a-burger div {
  height: 3px;
  background-color: #210e0f;
  position: absolute;
  left: 0;
  width: 100%;
  transform-origin: center;
  transition: all 0.3s;
  padding: 0;
  margin: 0;
  min-height: 1px !important;
  border-radius: 10px;
}

.a-burger div:nth-child(1) {
  top: 5px;
}

.a-burger div:nth-child(2) {
  top: 46%;
}

.a-burger div:nth-child(3) {
  bottom: 5px;
}

.a-burger.is-active div:nth-child(1) {
  transform: rotate(-45deg);
  top: 17px;
}

.a-burger.is-active div:nth-child(2) {
  display: none;
}

.a-burger.is-active div:nth-child(3) {
  transform: rotate(45deg);
  bottom: 15px;
}

/* フッター */
.foot-wrap {
  position: relative;
  width: 100%;
}

.foot-bgimg {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  height: 100vh;
  width: 100%;
  z-index: 0;
  background-image: url("../images/foot-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .foot-bgimg {
    top: -80px;
    height: 120vh;
  }
}
.foot-bgimg::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 90px;
  background-image: url("../images/foot-deco.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .foot-bgimg::before {
    height: 180px;
  }
}

.foot-space {
  width: 100%;
}
@media (min-width: 768px) {
  .foot-space {
    height: 300px;
  }
}

.foot-reserve {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  transform: translateY(-300px);
}
.foot-reserve .logo {
  width: 280px;
}
@media (min-width: 768px) {
  .foot-reserve .logo {
    width: 530px;
  }
}
@media (min-width: 768px) {
  .foot-reserve {
    transform: translateY(-540px);
  }
}
@media (orientation: landscape) and (max-height: 900px) {
  .foot-reserve {
    transform: translateY(-440px);
  }
}
@media (min-width: 1200px) {
  .foot-reserve {
    transform: translateY(-540px);
  }
}
.foot-reserve .reserve-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 900px;
  padding: 2rem;
  border-radius: 10px;
  background-color: #efe9de;
  gap: 1.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .foot-reserve .reserve-box {
    padding: 4rem;
  }
}
.foot-reserve .reserve-box .en {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  font-family: var(--bell);
  color: #beac8f;
}
.foot-reserve .reserve-box .title {
  color: #5f4b3e;
  font-size: clamp(1.25rem, 1.129rem + 0.53vw, 1.625rem);
}
.foot-reserve .reserve-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  color: #5f4b3e;
  line-height: 2.3;
}
.foot-reserve .reserve-box .foot-button {
  width: 250px;
  background-color: #fff;
  border: #5f4b3e 1px solid;
  padding: 1.2rem;
  border-radius: 100px;
  color: #5f4b3e;
}
.foot-reserve .reserve-box .foot-button p {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 1.5;
}

.foot-main {
  position: relative;
  z-index: 3;
  background-color: #210e0f;
  border-radius: 64px 64px 0 0;
  padding-block: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.foot-main.news {
  margin-top: 0;
}
.foot-main .foot-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1320px;
  width: 90%;
}
@media (min-width: 768px) {
  .foot-main .foot-box {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.foot-main .foot-box .l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
}
@media (min-width: 768px) {
  .foot-main .foot-box .l {
    align-items: start;
    text-align: start;
    width: 30%;
  }
}
.foot-main .foot-box .l .logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.foot-main .foot-box .l .logo-box .logo {
  width: 180px;
  height: auto;
}
@media (min-width: 768px) {
  .foot-main .foot-box .l .logo-box .logo {
    width: 214px;
  }
}
.foot-main .foot-box .l .logo-box .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .foot-main .foot-box .l .logo-box .icon-box {
    gap: 1.2rem;
  }
}
.foot-main .foot-box .l .logo-box .icon-box .icon {
  width: 35px;
  height: 35px;
}
@media (min-width: 768px) {
  .foot-main .foot-box .l .logo-box .icon-box .icon {
    width: 50px;
    height: 50px;
  }
}
.foot-main .foot-box .l .list-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: start;
  justify-content: center;
  gap: 0.6rem;
}
.foot-main .foot-box .l .list-box .text {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  color: #fff;
}
.foot-main .foot-box .l .list-box .sub-menu-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.foot-main .foot-box .l .list-box .sub-menu-box a {
  color: #917f73 !important;
}
.foot-main .foot-box .l .list-box .sub-menu-box a p {
  transition: all 0.3s;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}
.foot-main .foot-box .l .list-box .sub-menu-box a :hover {
  color: #ffe2a4 !important;
}
.foot-main .foot-box .l .list-box .sub-menu-box .box {
  width: calc((100% - 0.6rem) / 2);
}
.foot-main .foot-box .r {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .foot-main .foot-box .r {
    flex: 1;
  }
}
.foot-main .foot-box .r .main-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  width: 90%;
}
@media (min-width: 992px) {
  .foot-main .foot-box .r .main-box {
    width: 80%;
  }
}
.foot-main .foot-box .r .main-box .title {
  font-family: var(--bell);
  font-size: clamp(1.125rem, 0.761rem + 1.58vw, 2.25rem);
  color: #917f73;
  position: relative;
  gap: 2rem;
  width: 200%;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
}
.foot-main .foot-box .r .main-box .title::after {
  content: "";
  flex: 1;
  border-top: 2px dashed #917f73;
}
.foot-main .foot-box .r .main-box .info-box {
  border: solid 1px #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-radius: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .foot-main .foot-box .r .main-box .info-box {
    padding: 3.4rem;
  }
}
.foot-main .foot-box .r .main-box .info-box .text-flex {
  display: flex;
  align-items: start;
  justify-content: center;
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  width: 100%;
  text-align: start;
}
.foot-main .foot-box .r .main-box .info-box .text-flex .name {
  flex: 1;
  color: #beac8f;
  display: flex;
  align-items: center;
  justify-content: start;
}
.foot-main .foot-box .r .main-box .info-box .text-flex .text {
  flex: 3;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: start;
}
.foot-main .foot-box .r .main-box .info-box .text-flex:not(:last-child) {
  border-bottom: 1px solid #c0b6a6;
  padding-bottom: 1.4rem;
}

/* News表示 */
.webgene-blog {
  width: 100%;
}

/* News表示 画像あり版 */
.news-list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-list .webgene-item {
  width: 100%;
}

@media (min-width: 768px) {
  .news-list .webgene-item {
    width: 48%;
  }
}
.top-news-flex {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iPhoneで慣性スクロール */
}
.top-news-flex .webgene-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  width: 630px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .top-news-flex .webgene-blog {
    width: 100%;
    padding-bottom: 0;
  }
}
.top-news-flex .webgene-blog .webgene-item {
  flex: 1;
}
.top-news-flex .webgene-blog .webgene-item .news-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.6rem;
}
.top-news-flex .webgene-blog .webgene-item .news-item__img {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 1;
  overflow: hidden;
}
.top-news-flex .webgene-blog .webgene-item .news-item__img img {
  aspect-ratio: 1;
  overflow: hidden;
}
.top-news-flex .webgene-blog .webgene-item .news-item__img .noImage {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.news-list-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  width: 100%;
}
.news-list-box a {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #e9e9e9;
  width: 100%;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .news-list-box a {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 2rem;
  }
}
.news-list-box a .left-box {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .news-list-box a .left-box {
    width: 240px;
  }
}
.news-list-box a .left-box .days-box {
  color: #beac8f;
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  line-height: 1;
  letter-spacing: 0.2em;
}
.news-list-box a .left-box .category-box {
  border: 1px solid #ce0a0a;
  padding: 0.3rem 0.8rem;
  font-size: clamp(0.625rem, 0.544rem + 0.35vw, 0.875rem);
  color: #ce0a0a;
  line-height: 1;
  border-radius: 100px;
  letter-spacing: 0.15em;
}
.news-list-box a .right-box {
  width: 100%;
}
@media (min-width: 768px) {
  .news-list-box a .right-box {
    flex: 1;
  }
}
.news-list-box a .right-box h2 {
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
}

/* ページネーション共通 */
.webgene-pagination {
  width: 100%;
}

.webgene-pagination ul,
.pagelink {
  display: flex;
  justify-content: space-between;
  margin: 3rem auto;
  gap: 20px;
  max-width: 280px;
}

.webgene-pagination ul li,
.pagelink p {
  font-size: clamp(0.75rem, 0.669rem + 0.35vw, 1rem);
  letter-spacing: 0.2rem;
  line-height: 1.5;
  width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webgene-pagination ul li a,
.pagelink p a {
  display: inline-flex !important;
  width: 130px;
  height: 36px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  gap: 2rem;
}

.webgene-pagination ul li a:hover,
.pagelink p a:hover {
  cursor: pointer;
}

.webgene-pagination .next {
  margin-left: auto;
}

@media (min-width: 768px) {
  .webgene-pagination ul,
.pagelink {
    max-width: 300px;
  }
}
/* Nextボタン */
.webgene-pagination li.next a::after,
.pagelink p.next a::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("../images/news-next.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}

.webgene-pagination ul li.next a:hover::after,
.pagelink p.next a:hover::after {
  transform: translateX(6px);
}

/* Prevボタン */
.webgene-pagination ul li.prev a::before,
.pagelink p.prev a::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("../images/news-back.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}

.webgene-pagination ul li.prev a:hover::before,
.pagelink p.prev a:hover::before {
  transform: translateX(-6px);
}

.news-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  max-width: 310px;
  width: 100%;
  border: 1px solid #363636;
  background-color: #fff;
  transition: all 0.3s;
}
.news-back-button:hover {
  background-color: #a3987c;
}
.news-back-button p {
  font-size: clamp(0.75rem, 0.669rem + 0.35vw, 1rem);
  color: #2d2d2d;
}

.newsdetail-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (min-width: 768px) {
  .newsdetail-box {
    padding-inline: 3rem;
  }
}

.news-icon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* フォーム */
.formInput,
.formTextArea {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 0;
  border: 1px solid #969696;
  background-color: #fff;
  margin-bottom: 2rem;
}

.formTextArea {
  height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
  border: 1px solid #969696;
  background-color: #fff;
}

.zipInput {
  width: 6rem;
}

@media (min-width: 768px) {
  .formTh {
    padding-left: 2rem;
  }
}
.requiredText {
  background-color: #a3987c;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.8rem;
  margin-left: 1rem;
}

.privacyformError {
  padding-top: 25px;
}

@media (min-width: 768px) {
  .privacyformError {
    padding-top: 0;
  }
}
.form-privacy {
  border: solid 1px #2d2d2d;
  background-color: white;
  height: 230px;
  overflow-y: auto;
  padding: 40px 30px;
}

/* ページ共通設定 */
.fv-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  height: 95vh;
}
@media (min-width: 992px) {
  .fv-wrap {
    height: 100vh;
    min-height: 968px;
    flex-direction: row;
    max-height: 982px;
  }
}
@media (min-width: 1200px) {
  .fv-wrap {
    height: calc(100vh + 200px);
    max-height: 1020px;
  }
}
@media (768px <= width <= 1024px) and (orientation: portrait) {
  .fv-wrap {
    height: auto;
    min-height: 900px;
  }
}
@media (orientation: landscape) and (max-height: 900px) {
  .fv-wrap {
    height: 992px;
  }
}
.fv-wrap .l {
  flex: 1;
  display: flex;
  align-items: end;
  justify-content: left;
  height: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .fv-wrap .l {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .fv-wrap .l {
    width: 80%;
  }
}
.fv-wrap .l .main-box {
  position: relative;
  width: 100%;
  height: 70%;
  max-height: 734px;
  margin-top: auto;
}
.fv-wrap .l .main-box .title-box {
  position: absolute;
  top: -58px;
  right: 35px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: end;
  justify-content: center;
  width: 86%;
  z-index: 2;
}
@media (min-width: 768px) {
  .fv-wrap .l .main-box .title-box {
    top: -115px;
    right: 80px;
  }
}
@media (min-width: 992px) {
  .fv-wrap .l .main-box .title-box {
    top: -110px;
    right: 45px;
  }
}
@media (min-width: 1200px) {
  .fv-wrap .l .main-box .title-box {
    top: -140px;
    right: 70px;
  }
}
.fv-wrap .l .main-box .title-box img {
  width: 100%;
  max-width: 874px;
}
@media (min-width: 992px) {
  .fv-wrap .l .main-box .title-box img {
    width: 90%;
  }
}
.fv-wrap .l .main-box .title-box h1 {
  font-size: clamp(0.688rem, 0.546rem + 0.61vw, 1.125rem);
  text-align: end;
}
.fv-wrap .l .main-box .img-box {
  width: 95%;
  height: 100%;
}
@media (min-width: 992px) {
  .fv-wrap .l .main-box .img-box {
    width: 100%;
  }
}
.fv-wrap .l .main-box .img-box .swiper {
  height: 100%;
  border-radius: 0 40px 40px 0;
}
.fv-wrap .l .main-box .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.fv-wrap .r {
  height: 180px;
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 80%;
}
@media (min-width: 992px) {
  .fv-wrap .r {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    height: 100%;
    width: 25%;
    margin-left: 90px;
    letter-spacing: 0.2em;
    align-items: end;
    justify-content: center;
  }
}

.fv-text-deco {
  position: absolute;
  right: 2%;
  bottom: -8%;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
  color: #beac8f;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  z-index: 10;
}
@media (min-width: 768px) {
  .fv-text-deco {
    bottom: 20%;
  }
}

.fv-sub-wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
  z-index: 1;
  background-color: #fff;
}
@media (min-width: 992px) {
  .fv-sub-wrap {
    height: 100vh;
    min-height: 968px;
    flex-direction: row;
    max-height: 982px;
  }
}
@media (min-width: 1200px) {
  .fv-sub-wrap {
    height: calc(100vh + 200px);
    max-height: 1020px;
  }
}
@media (768px <= width <= 1024px) and (orientation: portrait) {
  .fv-sub-wrap {
    height: auto;
    min-height: 840px;
    padding-inline: 3rem;
  }
}
@media (orientation: landscape) and (max-height: 900px) {
  .fv-sub-wrap {
    height: 766px;
  }
}
.fv-sub-wrap.green {
  background: linear-gradient(121deg, #5cbc7d 21.51%, #91e7af 81.24%);
}
.fv-sub-wrap.orange {
  background: linear-gradient(121deg, #f69134 21.51%, #ffb571 81.24%);
}
.fv-sub-wrap .fv-sub-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  max-width: 1152px;
  margin-top: auto;
  gap: 2rem;
}
@media (min-width: 768px) {
  .fv-sub-wrap .fv-sub-box {
    gap: 3rem;
  }
}
.fv-sub-wrap .fv-sub-box .title-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-left: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .fv-sub-wrap .fv-sub-box .title-box {
    gap: 1rem;
  }
}
.fv-sub-wrap .fv-sub-box .title-box p {
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.fv-sub-wrap .fv-sub-box .title-box h1 {
  font-size: clamp(1.875rem, 1.511rem + 1.58vw, 3rem);
}
.fv-sub-wrap .fv-sub-box .img-box {
  width: 100%;
  height: 42vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .fv-sub-wrap .fv-sub-box .img-box {
    height: 540px;
  }
}
@media (min-width: 1200px) {
  .fv-sub-wrap .fv-sub-box .img-box {
    height: 700px;
  }
}
.fv-sub-wrap .fv-sub-box .img-box img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 1200px) {
  .py-max-10 {
    padding-block: 9rem !important;
  }
}

.line-title,
.line-title-r,
.line-title-l {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: clamp(1.125rem, 0.518rem + 2.63vw, 3rem);
  color: #f5e9d9;
  font-family: var(--bell);
  width: 100%;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .line-title,
.line-title-r,
.line-title-l {
    gap: 4rem;
  }
}

.line-title::before,
.line-title::after {
  content: "";
  flex: 1;
  border-top: 2px dashed #e6d7c7;
}

.line-title-r {
  margin-left: 20%;
}

.line-title-r::after {
  content: "";
  flex: 1;
  border-top: 2px dashed #e6d7c7;
}

.line-title-l {
  margin-right: 20%;
}

.line-title-l::before {
  content: "";
  flex: 1;
  border-top: 2px dashed #e6d7c7;
}

/* プラシバシーポリシー */
.policy-box {
  overflow-y: scroll;
  height: 400px;
  border-radius: 30px;
}

.btn a::after {
  content: "→";
}

.top-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-block: 4rem 4rem;
}
@media (min-width: 768px) {
  .top-sec2-wrap {
    padding-block: 8rem 5rem;
  }
}
@media (768px <= width <= 1024px) and (orientation: portrait) {
  .top-sec2-wrap {
    padding-block: 4rem 4rem;
  }
}

.top-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}
.top-sec2-box .en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.top-sec2-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .top-sec2-box .en img {
    width: 60px;
  }
}
.top-sec2-box .title {
  font-size: clamp(1.375rem, 0.909rem + 2.01vw, 2.813rem);
}
.top-sec2-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}

.top-sec2-box2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .top-sec2-box2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
  }
}
.top-sec2-box2 .check-item {
  background: #f8f2ef;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 156px;
  padding: 1.2rem;
  gap: 0.8rem;
}
.top-sec2-box2 .check-item img {
  height: 40px;
  width: auto;
}
.top-sec2-box2 .check-item p {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  text-align: center;
  line-height: 1.3;
}

.top-sec3-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 2rem;
  background-color: #fff;
}
@media (min-width: 768px) {
  .top-sec3-wrap {
    padding-block: 7rem;
  }
}

.top-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .top-sec3-box {
    flex-direction: row;
    padding-inline: 2rem;
  }
}
.top-sec3-box .l {
  border-radius: 30px;
  height: 300px;
  width: 90%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-sec3-box .l {
    flex: 1;
    height: 100%;
    max-height: 586px;
  }
}
.top-sec3-box .l img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.top-sec3-box .r {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 90%;
}
@media (min-width: 768px) {
  .top-sec3-box .r {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    width: 20%;
    margin-left: 40px;
    align-items: center;
    justify-content: center;
    height: auto;
  }
}
.top-sec3-box .r h2 {
  letter-spacing: 0.3em;
  line-height: 1.8;
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
}

.top-sec3-box2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 5rem;
  position: relative;
  width: 100%;
  max-width: 1720px;
}
@media (min-width: 768px) {
  .top-sec3-box2 {
    padding-block: 260px;
  }
}
.top-sec3-box2 .bg-img1 {
  width: 280px;
  height: 180px;
  position: absolute;
  top: 4%;
  left: -60px;
}
@media (min-width: 768px) {
  .top-sec3-box2 .bg-img1 {
    width: 394px;
    height: 290px;
    top: 8%;
    left: 5%;
  }
}
.top-sec3-box2 .bg-img2 {
  width: 144px;
  height: 260px;
  position: absolute;
  top: 16%;
  right: -20px;
}
@media (min-width: 768px) {
  .top-sec3-box2 .bg-img2 {
    width: 244px;
    height: 400px;
    right: 6%;
  }
}
.top-sec3-box2 .bg-img3 {
  width: 200px;
  height: 100px;
  position: absolute;
  bottom: 30%;
  left: -40px;
}
@media (min-width: 768px) {
  .top-sec3-box2 .bg-img3 {
    width: 306px;
    height: 220px;
    left: 8%;
    bottom: 15%;
  }
}
.top-sec3-box2 .bg-img4 {
  width: 260px;
  height: 180px;
  position: absolute;
  bottom: 3%;
  right: -65px;
}
@media (min-width: 768px) {
  .top-sec3-box2 .bg-img4 {
    width: 380px;
    height: 296px;
    right: -4%;
  }
}
.top-sec3-box2 .img-box {
  border-radius: 20px;
  overflow: hidden;
}
.top-sec3-box2 .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-sec3-box2 .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  width: auto;
}
.top-sec3-box2 .title-box.w-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.6rem 1rem;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .top-sec3-box2 .title-box.w-box {
    padding: 2.4rem;
  }
}
.top-sec3-box2 .title-box .en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.top-sec3-box2 .title-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .top-sec3-box2 .title-box .en img {
    width: 60px;
  }
}
.top-sec3-box2 .title-box .title {
  font-size: clamp(1.125rem, 0.963rem + 0.7vw, 1.625rem);
  line-height: 2;
  text-align: center;
}
.top-sec3-box2 .title-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
  text-align: center;
}

.top-sec4-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 4rem;
  width: 100%;
  background: linear-gradient(15deg, #fffcf8 27.69%, #fff 83.24%);
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .top-sec4-wrap {
    padding-block: 6rem;
    gap: 6rem;
  }
}

.top-sec4-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1520px;
}
@media (min-width: 768px) {
  .top-sec4-box {
    flex-direction: row;
  }
}
.top-sec4-box .l {
  border-radius: 0 30px 30px 0;
  height: 300px;
  width: 95%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-sec4-box .l {
    flex: 1;
    height: 100%;
    max-height: 614px;
  }
}
.top-sec4-box .l img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.top-sec4-box .r {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: end;
  width: 90%;
}
@media (min-width: 768px) {
  .top-sec4-box .r {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    width: 25%;
    margin-left: 60px;
    align-items: end;
    justify-content: center;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .top-sec4-box .r {
    margin-left: 100px;
  }
}
.top-sec4-box .r h2 {
  letter-spacing: 0.3em;
  line-height: 1.8;
  font-size: clamp(1.625rem, 1.423rem + 0.88vw, 2.25rem);
  text-align: end;
}

.top-sec4-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .top-sec4-box2 {
    flex-direction: row;
    align-items: start;
    gap: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .top-sec4-box2 {
    padding-inline: 2rem;
  }
}
.top-sec4-box2 .l {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .top-sec4-box2 .l {
    flex: 1;
  }
}
.top-sec4-box2 .l .en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(1.25rem, 1.088rem + 0.7vw, 1.75rem);
  letter-spacing: 0.12em;
}
.top-sec4-box2 .l .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .top-sec4-box2 .l .en img {
    width: 60px;
  }
}
.top-sec4-box2 .l .img-box {
  width: 100%;
  height: 40vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .top-sec4-box2 .l .img-box {
    max-height: 520px;
    min-height: 500px;
  }
}
@media (min-width: 1200px) {
  .top-sec4-box2 .l .img-box {
    height: 50vh;
  }
}
.top-sec4-box2 .l .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-sec4-box2 .r {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .top-sec4-box2 .r {
    flex: 1;
  }
}
@media (min-width: 992px) {
  .top-sec4-box2 .r {
    padding-left: 4rem;
  }
}
.top-sec4-box2 .r .name {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  letter-spacing: 0.2em;
}
.top-sec4-box2 .r .title {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  line-height: 2;
}
.top-sec4-box2 .r .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
}

.top-sec5-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1520px;
}
@media (min-width: 768px) {
  .top-sec5-box {
    flex-direction: row-reverse;
  }
}
.top-sec5-box .l {
  border-radius: 30px 0 0 30px;
  height: 300px;
  width: 95%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-sec5-box .l {
    flex: 1;
    height: 100%;
    max-height: 614px;
  }
}
.top-sec5-box .l img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.top-sec5-box .r {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 90%;
}
@media (min-width: 768px) {
  .top-sec5-box .r {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    width: 25%;
    margin-right: 60px;
    align-items: start;
    justify-content: center;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .top-sec5-box .r {
    margin-right: 100px;
  }
}
.top-sec5-box .r h2 {
  letter-spacing: 0.3em;
  line-height: 1.8;
  font-size: clamp(1.625rem, 1.423rem + 0.88vw, 2.25rem);
  text-align: start;
}
@media (min-width: 768px) {
  .top-sec5-box .r h2 {
    text-align: start;
  }
}

.top-sec5-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .top-sec5-box2 {
    flex-direction: row-reverse;
    align-items: start;
    gap: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .top-sec5-box2 {
    padding-inline: 2rem;
  }
}
.top-sec5-box2 .l {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .top-sec5-box2 .l {
    flex: 1;
  }
}
.top-sec5-box2 .l .en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(1.25rem, 1.088rem + 0.7vw, 1.75rem);
  letter-spacing: 0.12em;
}
.top-sec5-box2 .l .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .top-sec5-box2 .l .en img {
    width: 60px;
  }
}
.top-sec5-box2 .l .img-box {
  width: 100%;
  height: 40vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .top-sec5-box2 .l .img-box {
    max-height: 520px;
    min-height: 500px;
  }
}
@media (min-width: 1200px) {
  .top-sec5-box2 .l .img-box {
    height: 50vh;
  }
}
.top-sec5-box2 .l .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-sec5-box2 .r {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .top-sec5-box2 .r {
    flex: 1;
  }
}
@media (min-width: 992px) {
  .top-sec5-box2 .r {
    padding-left: 4rem;
  }
}
.top-sec5-box2 .r .name {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  letter-spacing: 0.2em;
}
.top-sec5-box2 .r .title {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  line-height: 2;
}
.top-sec5-box2 .r .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
}

.top-sec6-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
}
@media (min-width: 768px) {
  .top-sec6-box {
    flex-direction: row;
    align-items: start;
    gap: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .top-sec6-box {
    padding-inline: 2rem;
  }
}
.top-sec6-box .l {
  display: flex;
}
@media (min-width: 768px) {
  .top-sec6-box .l {
    flex: 1;
  }
}
.top-sec6-box .l .img-box {
  width: 100%;
  height: 40vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .top-sec6-box .l .img-box {
    max-height: 520px;
    min-height: 500px;
  }
}
@media (min-width: 1200px) {
  .top-sec6-box .l .img-box {
    height: 50vh;
  }
}
.top-sec6-box .l .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-sec6-box .r {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .top-sec6-box .r {
    flex: 1;
  }
}
@media (min-width: 992px) {
  .top-sec6-box .r {
    padding-left: 4rem;
  }
}
.top-sec6-box .r .en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.top-sec6-box .r .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .top-sec6-box .r .en img {
    width: 60px;
  }
}
.top-sec6-box .r .name {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  letter-spacing: 0.2em;
}
.top-sec6-box .r .title {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  line-height: 2;
}
.top-sec6-box .r .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
}

.top-sec7-wrap {
  background-color: #f8f3ea;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .top-sec7-wrap {
    padding-block: 7rem;
  }
}

.top-sec7-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.top-sec7-box .en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec7-box .en {
    justify-content: start;
  }
}
.top-sec7-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .top-sec7-box .en img {
    width: 60px;
  }
}
.top-sec7-box .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec7-box .title-box {
    flex-direction: row;
    align-items: end;
    justify-content: start;
    gap: 3rem;
  }
}
.top-sec7-box .title-box .name {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  letter-spacing: 0.2em;
}
.top-sec7-box .title-box .title {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  line-height: 2;
}
.top-sec7-box .row-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.2rem;
}
.top-sec7-box .row-box .img-box {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-sec7-box .row-box .img-box {
    height: 360px;
  }
}
.top-sec7-box .row-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-sec7-box .row-box .text-box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.4rem;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  letter-spacing: 0.2em;
  width: 100%;
}
.top-sec7-box .row-box .text-box .arrow {
  width: 35px;
  height: auto;
  transition: all 0.3s;
}
.top-sec7-box .row-box:hover .text-box .arrow {
  transform: translateX(5px);
}

.top-sec8-wrap {
  padding-block: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-sec8-wrap.beige {
  background-color: #fffcf7;
}

.top-sec8-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .top-sec8-box {
    flex-direction: row;
    align-items: stretch;
    gap: 5rem;
  }
}
.top-sec8-box .l {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.8rem;
}
.top-sec8-box .l .name-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .top-sec8-box .l .name-box {
    flex-direction: row;
    align-items: center;
    gap: 1.8rem;
  }
}
.top-sec8-box .l .name-box .name {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.top-sec8-box .l .name-box .en {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec8-box .l .name-box .en {
    justify-content: start;
  }
}
.top-sec8-box .l .name-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .top-sec8-box .l .name-box .en img {
    width: 60px;
  }
}
.top-sec8-box .l .title {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  line-height: 2;
}
.top-sec8-box .r {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .top-sec8-box .r {
    flex: 1;
  }
}

.top-sec8-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.top-sec8-box2 .name-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec8-box2 .name-box {
    flex-direction: row;
    align-items: center;
    gap: 1.8rem;
  }
}
.top-sec8-box2 .name-box .name {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.top-sec8-box2 .name-box .en {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: start;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec8-box2 .name-box .en {
    justify-content: start;
  }
}
.top-sec8-box2 .name-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .top-sec8-box2 .name-box .en img {
    width: 60px;
  }
}

.top-sec9-wrap {
  padding-block: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.top-sec9-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec9-box {
    flex-direction: row;
    align-items: stretch;
    gap: 4rem;
  }
}
.top-sec9-box .l {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-sec9-box .l {
    width: 40%;
  }
}
.top-sec9-box .l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-sec9-box .r {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec9-box .r {
    flex: 1;
  }
}
.top-sec9-box .r .title {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  line-height: 2;
}
.top-sec9-box .r .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
}

.top-sec9-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .top-sec9-box2 {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
  }
}
.top-sec9-box2 .school-box {
  height: 228px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.6rem;
  background-color: #f8f2ef;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .top-sec9-box2 .school-box {
    flex: 1;
    padding: 0.4rem;
  }
}
@media (min-width: 992px) {
  .top-sec9-box2 .school-box {
    flex: 1;
    padding: 1.6rem;
  }
}
.top-sec9-box2 .school-box .en {
  font-family: var(--bell);
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.438rem);
  color: #beac8f;
  letter-spacing: 0.15em;
}
.top-sec9-box2 .school-box .jp {
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  color: #beac8f;
  border-bottom: #beac8f 1px solid;
  width: 100%;
  padding-bottom: 1rem;
}
.top-sec9-box2 .school-box .text {
  font-size: 14px;
  line-height: 1.5;
  color: #351e16;
}
.top-sec9-box2 .school-box .text2 {
  font-size: 14px;
  line-height: 1.5;
  color: #351e16;
  margin-top: 1rem;
}

.about-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 80px;
  left: 0;
  z-index: -2;
}
.about-bg.is-stop {
  position: absolute;
}
.about-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem 5rem;
  background-color: #fff;
}
@media (min-width: 768px) {
  .about-sec2-wrap {
    padding-block: 8rem 7rem;
  }
}

.about-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-sec2-box {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 992px) {
  .about-sec2-box {
    padding-inline: 3rem;
  }
}
.about-sec2-box .l {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 3rem 3.5rem;
  gap: 1.2rem;
}
.about-sec2-box .l .en {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.about-sec2-box .l .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .about-sec2-box .l .en img {
    width: 60px;
  }
}
.about-sec2-box .l .title {
  font-size: clamp(1.25rem, 1.129rem + 0.53vw, 1.625rem);
  line-height: 2.2;
  letter-spacing: 0.15;
}
@media (min-width: 768px) {
  .about-sec2-box .l {
    flex: 1;
  }
}
.about-sec2-box .r {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4rem;
  background-color: #f8f3ea;
  font-size: clamp(1.125rem, 1.085rem + 0.18vw, 1.25rem);
  border-radius: 20px;
  line-height: 2.3;
}
@media (min-width: 768px) {
  .about-sec2-box .r {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .about-sec2-box .r {
    width: 46%;
  }
}

.about-sec2-text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.5;
  font-weight: 400;
  text-align: center;
  margin-top: 4rem;
}

.about-sec3-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 4rem 6rem;
  background-color: #fff;
}
.about-sec3-wrap .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: auto;
}
.about-sec3-wrap .title-box .en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.about-sec3-wrap .title-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .about-sec3-wrap .title-box .en img {
    width: 60px;
  }
}
.about-sec3-wrap .title-box .title {
  font-size: clamp(1.5rem, 1.217rem + 1.23vw, 2.375rem);
  line-height: 2;
  text-align: center;
}
.about-sec3-wrap .title-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
  text-align: center;
  font-weight: 400;
}

.promise-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: auto;
  background-color: #fff;
  width: 100%;
  height: 1200px;
  padding-block: 100px 50px;
}
@media (min-width: 768px) {
  .promise-wrap {
    height: 2200px;
  }
}
.promise-wrap .promise-bg {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  gap: 2rem;
  width: 95%;
  height: 100%;
  top: 20px;
}
@media (min-width: 768px) {
  .promise-wrap .promise-bg {
    gap: 4rem;
    height: 100%;
    padding-block: 15%;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    width: 100%;
    height: 90%;
  }
}
.promise-wrap .promise-bg .img-box {
  overflow: hidden;
  border-radius: 20px;
}
.promise-wrap .promise-bg .box1 {
  max-width: 510px;
  aspect-ratio: 1.7/1;
}
.promise-wrap .promise-bg .box2 {
  max-width: 490px;
  aspect-ratio: 5/4;
  margin-right: 180px;
}
.promise-wrap .promise-bg .box3 {
  max-width: 700px;
  aspect-ratio: 5/2;
  margin-right: 80px;
}
.promise-wrap .promise-bg .box4 {
  max-width: 420px;
  aspect-ratio: 4/3;
  margin-right: 30px;
}
.promise-wrap .promise-bg .box5 {
  max-width: 390px;
  aspect-ratio: 2/1;
  margin-right: 200px;
}
.promise-wrap .promise-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.promise-wrap .space-box1 {
  height: 400px;
}
.promise-wrap .space-box2 {
  height: 200px;
}
.promise-wrap .promise-box {
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 5;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .promise-wrap .promise-box {
    align-items: start;
    padding-inline: 3rem 0;
    top: 200px;
    margin-block: 200px 100px;
  }
}
@media (min-width: 1200px) {
  .promise-wrap .promise-box {
    margin-left: 200px;
    top: 140px;
  }
}
@media (orientation: landscape) and (max-height: 900px) {
  .promise-wrap .promise-box {
    top: 50px;
  }
}
.promise-wrap .promise-box .white-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.2rem 5rem 1.2rem 1.2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .promise-wrap .promise-box .white-box {
    margin-right: auto;
    gap: 4rem;
    padding: 4rem;
    width: auto;
  }
}
.promise-wrap .promise-box .white-box .inner-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .promise-wrap .promise-box .white-box .inner-box {
    flex-direction: row;
    gap: 1rem;
  }
}
.promise-wrap .promise-box .white-box .inner-box .l {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ce0a0a;
  font-family: var(--bell);
  gap: 0.5rem;
}
.promise-wrap .promise-box .white-box .inner-box .l .text {
  font-size: clamp(0.75rem, 0.669rem + 0.35vw, 1rem);
}
.promise-wrap .promise-box .white-box .inner-box .l .no {
  font-size: clamp(1rem, 0.676rem + 1.4vw, 2rem);
  letter-spacing: 0.08em;
  line-height: 1;
}
.promise-wrap .promise-box .white-box .inner-box .r {
  font-size: clamp(0.75rem, 0.629rem + 0.53vw, 1.125rem);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .promise-wrap .promise-box .white-box .inner-box .r {
    flex: 1;
  }
}

.about-sec4-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 992px) {
  .about-sec4-box {
    padding-inline: 3rem;
  }
}
.about-sec4-box .en {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
  width: 100%;
}
.about-sec4-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .about-sec4-box .en img {
    width: 60px;
  }
}
.about-sec4-box .title {
  font-size: clamp(1.125rem, 0.963rem + 0.7vw, 1.625rem);
  line-height: 2;
  text-align: start;
  width: 100%;
}
.about-sec4-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
  text-align: start;
  font-weight: 400;
  width: 100%;
}
.about-sec4-box .sec4-img {
  width: 100%;
}

.about-sec5-main {
  position: relative;
  width: 100%;
  z-index: 0;
}

.about-sec5-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 4rem;
  width: 100%;
  background: linear-gradient(15deg, #fffcf8 27.69%, #fff 83.24%);
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .about-sec5-wrap {
    padding-block: 6rem;
    gap: 6rem;
  }
}

.about-sec5-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-sec5-box {
    flex-direction: row;
    align-items: start;
    gap: 2.5rem;
  }
}
@media (min-width: 992px) {
  .about-sec5-box {
    padding-inline: 4rem;
    gap: 4rem;
  }
}
.about-sec5-box .l {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  max-width: 440px;
}
@media (min-width: 768px) {
  .about-sec5-box .l {
    width: 50%;
  }
}
.about-sec5-box .r {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about-sec5-box .r {
    flex: 1;
    gap: 1rem;
  }
}
.about-sec5-box .r .text1 {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  line-height: 2;
  letter-spacing: 0.15em;
  font-weight: 400;
}
.about-sec5-box .r .name {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
  letter-spacing: 0.2em;
  line-height: 1.5;
}
.about-sec5-box .r .name2 {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  letter-spacing: 0.2em;
  color: #ce0a0a;
}
.about-sec5-box .r .text2 {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  letter-spacing: 2.2;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-top: 1.4rem;
}

.about-sec5-box2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  align-items: start;
}
@media (min-width: 768px) {
  .about-sec5-box2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}
@media (min-width: 992px) {
  .about-sec5-box2 {
    padding-inline: 4rem;
    gap: 4rem;
  }
}
.about-sec5-box2 .staff-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.4rem;
}
.about-sec5-box2 .staff-item .staff-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}
.about-sec5-box2 .staff-item .text1 {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  line-height: 2;
  letter-spacing: 0.15em;
  font-weight: 400;
  width: 100%;
}
.about-sec5-box2 .staff-item .name {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  letter-spacing: 0.2em;
  line-height: 1.5;
  width: 100%;
  margin-top: 1.4rem;
}
.about-sec5-box2 .staff-item .name2 {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  letter-spacing: 0.2em;
  color: #ce0a0a;
  width: 100%;
}
.about-sec5-box2 .staff-item .text2 {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  letter-spacing: 2.2;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-top: 1.4rem;
}

.about-sec5-space {
  height: 60vh;
}
@media (min-width: 768px) {
  .about-sec5-space {
    height: 76vh;
  }
}
@media (min-width: 1200px) {
  .about-sec5-space {
    height: 100vh;
  }
}

.about-sec5-box3 {
  background-color: #fff;
  padding-block: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.about-sec5-box3 .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-sec5-box3 .title-box .title1 {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.about-sec5-box3 .title-box .title2 {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  line-height: 2.3;
}
.about-sec5-box3 .title-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
  margin-top: 4rem;
}

.care-sec2-wrap {
  background-color: #fff;
  padding-block: 7rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1.4rem;
}
@media (min-width: 768px) {
  .care-sec2-wrap {
    padding-block: 14rem 8rem;
    align-items: center;
    padding-inline: 1rem;
  }
}

.care-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .care-sec2-box {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .care-sec2-box {
    padding-inline: 4rem;
  }
}
.care-sec2-box .l {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .care-sec2-box .l {
    flex: 1;
    height: 460px;
  }
}
.care-sec2-box .l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.care-sec2-box .r {
  padding-block: 3rem;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}
@media (min-width: 768px) {
  .care-sec2-box .r {
    width: 240px;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .care-sec2-box .r {
    width: 350px;
  }
}
.care-sec2-box .r .text {
  font-size: clamp(1.25rem, 1.129rem + 0.53vw, 1.625rem);
  letter-spacing: 0.3em;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .care-sec2-box .r .text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
  }
}

.care-sec2-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  margin-bottom: 5rem;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .care-sec2-box2 {
    padding-inline: 4rem;
  }
}
.care-sec2-box2 .text-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.care-sec2-box2 .text-box .en {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.care-sec2-box2 .text-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .care-sec2-box2 .text-box .en img {
    width: 60px;
  }
}
.care-sec2-box2 .text-box .title {
  font-size: clamp(1.5rem, 1.419rem + 0.35vw, 1.75rem);
  line-height: 2.2;
  letter-spacing: 0.15;
}
.care-sec2-box2 .text-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  font-weight: 400;
}
.care-sec2-box2 .img-box1 {
  width: 90%;
  display: flex;
  margin-right: auto;
  height: 358px;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .care-sec2-box2 .img-box1 {
    width: 70%;
    margin-top: 6rem;
  }
}
.care-sec2-box2 .img-box1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.care-sec2-box2 .img-box2 {
  width: 70%;
  display: flex;
  margin-left: auto;
  height: 212px;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .care-sec2-box2 .img-box2 {
    width: 40%;
    margin-top: 5rem;
  }
}
.care-sec2-box2 .img-box2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.care-sec3-wrap {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1.4rem;
  gap: 6rem;
}
@media (min-width: 768px) {
  .care-sec3-wrap {
    gap: 7rem;
  }
}

.care-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .care-sec3-box {
    padding-inline: 3rem;
  }
}
.care-sec3-box .point {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ce0a0a;
  font-family: var(--bell);
  gap: 0.6rem;
}
.care-sec3-box .point .en {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.care-sec3-box .point .no {
  font-size: clamp(1.25rem, 0.886rem + 1.58vw, 2.375rem);
  line-height: 1.5;
}
.care-sec3-box .title {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  text-align: center;
  letter-spacing: 0.15em;
}
.care-sec3-box .image-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .care-sec3-box .image-box {
    flex-direction: row;
    align-items: start;
    gap: 3rem;
  }
}
.care-sec3-box .image-box .l {
  aspect-ratio: 2/1;
  width: 100%;
  max-width: 362px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .care-sec3-box .image-box .l {
    aspect-ratio: 1;
  }
}
.care-sec3-box .image-box .l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.care-sec3-box .image-box .r {
  font-size: clamp(0.875rem, 0.794rem + 0.35vw, 1.125rem);
  line-height: 2.5;
  width: 100%;
}
@media (min-width: 768px) {
  .care-sec3-box .image-box .r {
    flex: 1;
  }
}
.care-sec3-box .care-box {
  background-color: #fff7ed;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .care-sec3-box .care-box {
    gap: 1.6rem;
    padding: 4rem;
  }
}
.care-sec3-box .care-box .en {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.care-sec3-box .care-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .care-sec3-box .care-box .en img {
    width: 60px;
  }
}
.care-sec3-box .care-box .title {
  font-size: clamp(1.5rem, 1.419rem + 0.35vw, 1.75rem);
  line-height: 2.2;
  letter-spacing: 0.15;
  text-align: center;
}
.care-sec3-box .care-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  font-weight: 400;
  text-align: center;
}
.care-sec3-box .care-box .item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .care-sec3-box .care-box .item-box {
    flex-direction: row;
  }
}
.care-sec3-box .care-box .item-box .box {
  flex: 1;
  width: 100%;
  aspect-ratio: 4/3;
}
.care-sec3-box .care-box .item-box .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.care-sec4-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 4rem;
  width: 100%;
  background: linear-gradient(15deg, #fffcf8 27.69%, #fff 83.24%);
  gap: 2.4rem;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .care-sec4-wrap {
    padding-block: 6rem;
    gap: 6rem;
  }
}

.care-sec4-bg {
  position: absolute;
  top: 125px;
  right: 0;
  width: 72%;
  height: 204px;
  overflow: hidden;
  border-radius: 0 0 0 20px;
}
@media (min-width: 768px) {
  .care-sec4-bg {
    width: 60%;
    height: 548px;
    top: auto;
    bottom: 0;
    border-radius: 20px 0 0 0;
  }
}
.care-sec4-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .care-sec4-bg img {
    opacity: 1;
  }
}

.care-sec4-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .care-sec4-box {
    padding-left: 3rem;
  }
}
@media (min-width: 992px) {
  .care-sec4-box {
    padding-left: 5rem;
  }
}
.care-sec4-box .en {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
  width: 100%;
}
.care-sec4-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .care-sec4-box .en img {
    width: 60px;
  }
}
.care-sec4-box .title {
  font-size: clamp(1.125rem, 0.963rem + 0.7vw, 1.625rem);
  line-height: 2;
  text-align: start;
  width: 100%;
}
.care-sec4-box .beige-box {
  background-color: #f8f3ea;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .care-sec4-box .beige-box {
    padding: 5rem;
  }
}
.care-sec4-box .beige-box p {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  letter-spacing: 0.15em;
  padding-left: 36px;
  position: relative;
}
.care-sec4-box .beige-box p::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url("../images/check-box2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.care-sec5-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem;
  background-color: #fff;
}
@media (min-width: 768px) {
  .care-sec5-wrap {
    padding-block: 8rem 7rem;
  }
}
.care-sec5-wrap .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: auto;
}
.care-sec5-wrap .title-box .en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.care-sec5-wrap .title-box .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .care-sec5-wrap .title-box .en img {
    width: 60px;
  }
}
.care-sec5-wrap .title-box .title {
  font-size: clamp(1.5rem, 1.217rem + 1.23vw, 2.375rem);
  line-height: 2;
  text-align: center;
}
.care-sec5-wrap .title-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
  text-align: center;
  font-weight: 400;
}

.care-sec5-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
}
.care-sec5-box .item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .care-sec5-box .item-box {
    flex-direction: row;
    gap: 3rem;
  }
}
.care-sec5-box .item-box .l {
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
}
@media (min-width: 768px) {
  .care-sec5-box .item-box .l {
    width: 314px;
  }
}
.care-sec5-box .item-box .l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.care-sec5-box .item-box .r {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .care-sec5-box .item-box .r {
    flex: 1;
  }
}
.care-sec5-box .item-box .r .name {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
.care-sec5-box .item-box .r .title {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.care-sec5-box .item-box .r .text {
  font-size: clamp(0.75rem, 0.669rem + 0.35vw, 1rem);
  line-height: 2.1;
}

.menu-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 8rem 6rem;
  background-color: #fff;
}

.menu-sec2-box {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: start;
}
@media (min-width: 768px) {
  .menu-sec2-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
.menu-sec2-box .grid-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  gap: 0.5rem;
  background-color: #f8f2ef;
  border-radius: 12px;
  transition: all 0.3s;
  height: 130px;
}
.menu-sec2-box .grid-box::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 14px;
  height: 14px;
  background-image: url("../images/menu-button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}
.menu-sec2-box .grid-box:hover {
  background-color: #f5e9d9;
}
.menu-sec2-box .grid-box:hover::after {
  bottom: 10px;
  right: 10px;
}
.menu-sec2-box .grid-box .title {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  font-weight: 700;
  line-height: 1.6;
}
.menu-sec2-box .grid-box .text {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  line-height: 1.6;
}
.menu-sec2-box .grid-box a:hover p {
  color: #351e16 !important;
}

.menu-sec2-box2 {
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  gap: 1rem;
  border-radius: 20px;
  border: solid #beac8f 1px;
  margin-top: 4rem;
  width: 90%;
}
@media (min-width: 768px) {
  .menu-sec2-box2 {
    width: 100%;
    padding: 4rem;
  }
}
.menu-sec2-box2 p {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.2;
  width: 100%;
}

.menu-sec3-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 3rem 3rem;
  gap: 7rem;
  background-color: #fff;
}
@media (min-width: 768px) {
  .menu-sec3-wrap {
    padding-block: 4rem 5rem;
  }
}
.menu-sec3-wrap.beige {
  background-color: #fffaf4;
  padding-block: 3rem 4rem;
}
@media (min-width: 768px) {
  .menu-sec3-wrap.beige {
    padding-block: 4rem 6rem;
  }
}

.menu-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  gap: 2.4rem;
}
@media (min-width: 992px) {
  .menu-sec3-box {
    padding-inline: 3rem;
  }
}
.menu-sec3-box .img-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
}
.menu-sec3-box .img-box .text {
  padding: 1rem;
  background-color: #f5e9d9;
  width: 100%;
}
.menu-sec3-box .img-box .text h2 {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
.menu-sec3-box .img-box .img {
  width: 100%;
  height: 40vh;
  min-height: 320px;
  max-height: 380px;
  overflow: hidden;
}
.menu-sec3-box .img-box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.menu-sec3-box .text-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  align-items: start;
  justify-content: center;
}
.menu-sec3-box .text-box .title {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  line-height: 2;
  width: 100%;
}
.menu-sec3-box .text-box .text {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  line-height: 2.3;
  width: 100%;
}
.menu-sec3-box .text-box .text2 {
  font-size: clamp(0.625rem, 0.585rem + 0.18vw, 0.75rem);
  line-height: 2.3;
  width: 100%;
}
.menu-sec3-box .text-box .red {
  width: 100%;
  border-radius: 100px;
  border: 1px solid #ce0a0a;
  color: #ce0a0a;
  text-align: center;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  padding: 0.6rem;
}
.menu-sec3-box .menu-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media (min-width: 768px) {
  .menu-sec3-box .menu-box {
    flex-direction: row;
    align-items: stretch;
  }
}
.menu-sec3-box .menu-box .l {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .menu-sec3-box .menu-box .l {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .menu-sec3-box .menu-box .l.row-box {
    width: 100%;
  }
}
.menu-sec3-box .menu-box .l .item-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #917f73;
  gap: 0.8rem;
  width: 100%;
}
.menu-sec3-box .menu-box .l .item-box .red-box {
  background-color: #ea511f;
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  font-size: 10px;
  color: #fff;
}
.menu-sec3-box .menu-box .l .item-box .name-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.5;
  width: 100%;
}
.menu-sec3-box .menu-box .l .item-box .name-box .name1 {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.menu-sec3-box .menu-box .l .item-box .name-box .name2 {
  font-size: clamp(0.625rem, 0.585rem + 0.18vw, 0.75rem);
  border: 1px solid #917f73;
  background-color: #f5f3f2;
  border-radius: 5px;
  padding: 0.3rem;
  color: #5d482b;
}
.menu-sec3-box .menu-box .l .item-box .price-box {
  display: flex;
  align-items: end;
  justify-content: start;
  margin-top: 0.5rem;
  line-height: 1.5;
  width: 100%;
}
.menu-sec3-box .menu-box .l .item-box .price-box .price1 {
  font-size: clamp(0.75rem, 0.73rem + 0.09vw, 0.813rem);
}
.menu-sec3-box .menu-box .l .item-box .price-box .price2 {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.menu-sec3-box .menu-box .l .item-box .price-box .price3 {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  margin-left: 1rem;
}
.menu-sec3-box .menu-box .l .item-box .price-box .price4 {
  font-size: clamp(1.25rem, 1.088rem + 0.7vw, 1.75rem);
}
.menu-sec3-box .menu-box .l.row-box .item-box {
  flex-direction: column;
  justify-content: start;
}
@media (min-width: 768px) {
  .menu-sec3-box .menu-box .l.row-box .item-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.menu-sec3-box .menu-box .l.row-box .item-box .price-box {
  margin-top: 0;
}
.menu-sec3-box .menu-box .r {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 100%;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .menu-sec3-box .menu-box .r {
    flex: 1;
  }
}
.menu-sec3-box .menu-box .r .img-box {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
@media (min-width: 768px) {
  .menu-sec3-box .menu-box .r .img-box {
    aspect-ratio: 1;
  }
}
.menu-sec3-box .menu-box .r .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.menu-sec3-box .white-box {
  padding: 3rem;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}
.menu-sec3-box .white-box .title {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  color: #ce0a0a;
  text-align: center;
}
.menu-sec3-box .white-box .img-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .menu-sec3-box .white-box .img-box2 {
    gap: 3rem;
    flex-direction: row;
  }
}
.menu-sec3-box .white-box .img-box2 .l {
  aspect-ratio: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .menu-sec3-box .white-box .img-box2 .l {
    width: 40%;
  }
}
.menu-sec3-box .white-box .img-box2 .r {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .menu-sec3-box .white-box .img-box2 .r {
    flex: 1;
  }
}
.menu-sec3-box .white-box .img-box2 .r .name {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  line-height: 1.5;
}
.menu-sec3-box .white-box .img-box2 .r .text {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  line-height: 1.5;
}
.menu-sec3-box .white-box .img-box2 .r .text2 {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2;
}

.menu-sec8-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .menu-sec8-box {
    padding-inline: 3rem;
  }
}
.menu-sec8-box .img-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .menu-sec8-box .img-box {
    flex-direction: row;
  }
}
.menu-sec8-box .img-box .l {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3/2;
}
.menu-sec8-box .img-box .l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 768px) {
  .menu-sec8-box .img-box .l {
    flex: 1;
  }
}
.menu-sec8-box .img-box .r {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  font-size: clamp(1.75rem, 1.588rem + 0.7vw, 2.25rem);
}
@media (min-width: 768px) {
  .menu-sec8-box .img-box .r {
    width: 240px;
    justify-content: start;
    height: auto;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
    letter-spacing: 0.3em;
    line-height: 1.8;
  }
}
@media (min-width: 1200px) {
  .menu-sec8-box .img-box .r {
    width: 400px;
  }
}
.menu-sec8-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
  width: 100%;
}

.faq-sec2-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding-block: 6rem;
}

.fap-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .fap-sec2-box {
    padding-inline: 3rem;
  }
}
.fap-sec2-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  text-align: center;
  line-height: 2.3;
  margin-bottom: 3rem;
}
.fap-sec2-box .qa-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.fap-sec2-box .qa-box .q-box {
  width: 100%;
  background-color: #f5e9d9;
  display: flex;
  align-items: start;
  justify-content: start;
  padding: 1.2rem;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .fap-sec2-box .qa-box .q-box {
    padding: 2rem;
    gap: 2rem;
  }
}
.fap-sec2-box .qa-box .q-box.a-box {
  background-color: #f8f3ea;
}
.fap-sec2-box .qa-box .q-box .icon {
  width: 24px;
}
@media (min-width: 768px) {
  .fap-sec2-box .qa-box .q-box .icon {
    width: 44px;
  }
}
.fap-sec2-box .qa-box .q-box .p {
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  margin-top: 4px;
  flex: 1;
}
.fap-sec2-box .qa-box .q-box.a-box .p {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}

.faq-sec3-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding-block: 4rem 6rem;
}

.fap-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .fap-sec2-box {
    padding-inline: 3rem;
  }
}
.fap-sec2-box .p1 {
  font-size: clamp(1.125rem, 1.085rem + 0.18vw, 1.25rem);
  width: 100%;
}
.fap-sec2-box .p2 {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
  width: 100%;
  margin-bottom: 2rem;
}

.voice-sec2-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f3ea;
  width: 100%;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .voice-sec2-box {
    padding-block: 5rem;
  }
}
.voice-sec2-box:nth-child(2n) {
  background-color: #fff;
}
.voice-sec2-box .voice-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #beac8f;
}
@media (min-width: 768px) {
  .voice-sec2-box .voice-box {
    padding: 4rem;
    flex-direction: row;
    align-items: start;
    gap: 3rem;
  }
}
.voice-sec2-box .voice-box .l {
  width: 180px;
  aspect-ratio: 1;
  border-radius: 200px;
  border: 1px solid #c0b6a6;
  overflow: hidden;
  background-color: #969696;
}
@media (min-width: 768px) {
  .voice-sec2-box .voice-box .l {
    width: 242px;
  }
}
.voice-sec2-box .voice-box .l img {
  width: 110%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.voice-sec2-box .voice-box .r {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .voice-sec2-box .voice-box .r {
    flex: 1;
  }
}
.voice-sec2-box .voice-box .r .name {
  font-size: clamp(1.125rem, 1.085rem + 0.18vw, 1.25rem);
  line-height: 1;
}
.voice-sec2-box .voice-box .r .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2;
}

.access-sec2-wrap {
  padding-block: 6rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
@media (min-width: 768px) {
  .access-sec2-wrap {
    padding-block: 8rem 6rem;
  }
}
@media (min-width: 1200px) {
  .access-sec2-wrap {
    padding-block: 12em 8rem;
  }
}

.access-sec2-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1020px;
}
@media (min-width: 768px) {
  .access-sec2-box {
    flex-direction: row;
    align-items: start;
    gap: 3rem;
  }
}
.access-sec2-box .l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 1.4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .access-sec2-box .l {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .access-sec2-box .l {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .access-sec2-box .l {
    width: 35%;
  }
}
.access-sec2-box .l .img-box {
  aspect-ratio: 3/2;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .access-sec2-box .l .img-box {
    aspect-ratio: 1;
  }
}
.access-sec2-box .l .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.access-sec2-box .r {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .access-sec2-box .r {
    flex: 1;
  }
}
.access-sec2-box .r .list-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #351e16;
  gap: 0.2rem;
  width: 100%;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}
@media (min-width: 768px) {
  .access-sec2-box .r .list-box {
    flex-direction: row;
    gap: 3rem;
  }
}
.access-sec2-box .r .list-box .name {
  width: 80px;
  align-items: start;
}
.access-sec2-box .r .list-box .name2 {
  flex: 1;
}
.access-sec2-box .r .beige-box {
  display: flex;
  width: 100%;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.access-sec2-box .r .beige-box p {
  padding: 0.3rem 1rem;
  background-color: #f8f2ef;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}

.access-sec2-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1020px;
}
.access-sec2-box2 .title-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}
.access-sec2-box2 .title-box .title {
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  justify-content: center;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .access-sec2-box2 .title-box .title {
    flex-direction: row;
    align-items: center;
    justify-content: start;
  }
}
.access-sec2-box2 .title-box .title h2 {
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
}
.access-sec2-box2 .title-box .title .en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.access-sec2-box2 .title-box .title .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .access-sec2-box2 .title-box .title .en img {
    width: 60px;
  }
}
.access-sec2-box2 .title-box .p {
  text-align: start;
  width: 100%;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2;
}
.access-sec2-box2 .root-box {
  display: grid;
  align-items: stretch;
  justify-content: center;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .access-sec2-box2 .root-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.4rem;
  }
}
.access-sec2-box2 .root-box .box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1.2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .access-sec2-box2 .root-box .box {
    flex: 1;
  }
}
.access-sec2-box2 .root-box .box .no {
  font-family: var(--bell);
  color: #ce0a0a;
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  width: 100%;
  text-align: start;
  line-height: 1.2;
}
.access-sec2-box2 .root-box .box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 1.8;
  width: 100%;
  text-align: start;
}
.access-sec2-box2 .root-box .box .img-box {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.access-sec2-box2 .root-box .box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.access-sec2-box2 .map-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 1.6rem;
}
.access-sec2-box2 .map-box h2 {
  width: 100%;
  text-align: start;
  font-size: clamp(1.25rem, 1.129rem + 0.53vw, 1.625rem);
}
.access-sec2-box2 .map-box .map-w {
  width: 100%;
  height: 356px;
}
.access-sec2-box2 .last-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .access-sec2-box2 .last-box {
    gap: 2.6rem;
  }
}
.access-sec2-box2 .last-box .img1 {
  width: 90%;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
}
@media (min-width: 768px) {
  .access-sec2-box2 .last-box .img1 {
    height: 438px;
    width: 70%;
  }
}
.access-sec2-box2 .last-box .img2 {
  width: 80%;
  margin-left: auto;
  border-radius: 20px;
  overflow: hidden;
  height: 240px;
}
@media (min-width: 768px) {
  .access-sec2-box2 .last-box .img2 {
    height: 350px;
    width: 60%;
  }
}
.access-sec2-box2 .last-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.access-sec2-box2 .last-box .white-box {
  position: absolute;
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem 1.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .access-sec2-box2 .last-box .white-box {
    padding: 4rem 5rem;
  }
}
.access-sec2-box2 .last-box .white-box .p1 {
  font-size: clamp(1.125rem, 0.963rem + 0.7vw, 1.625rem);
}
.access-sec2-box2 .last-box .white-box .p2 {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}

.school-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding-block: 8rem 6rem;
}

.school-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.school-sec2-box .title {
  text-align: center;
  font-size: clamp(1.125rem, 0.963rem + 0.7vw, 1.625rem);
}
.school-sec2-box .text {
  text-align: center;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}

.school-sec3-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .school-sec3-wrap {
    padding-block: 6rem;
  }
}

.school-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  gap: 1rem;
}
@media (min-width: 992px) {
  .school-sec3-box {
    padding-inline: 3rem;
    gap: 1.6rem;
  }
}
.school-sec3-box .title {
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
}
@media (min-width: 768px) {
  .school-sec3-box .title {
    flex-direction: row;
    align-items: center;
    justify-content: start;
  }
}
.school-sec3-box .title h2 {
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
}
.school-sec3-box .title .en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.school-sec3-box .title .en img {
  display: block;
  width: 40px;
  height: 1px;
}
@media (min-width: 768px) {
  .school-sec3-box .title .en img {
    width: 60px;
  }
}
.school-sec3-box .img-box {
  width: 100%;
  border-radius: 20px;
  height: 280px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .school-sec3-box .img-box {
    height: 328px;
  }
}
.school-sec3-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.school-sec3-box .title1 {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  width: 100%;
  color: #ce0a0a;
  margin-top: 1.2rem;
}
.school-sec3-box .title2 {
  font-size: clamp(1.125rem, 0.963rem + 0.7vw, 1.625rem);
  width: 100%;
  letter-spacing: 0.15em;
}
.school-sec3-box .text {
  font-size: clamp(0.75rem, 0.669rem + 0.35vw, 1rem);
  line-height: 2.2;
  width: 100%;
  font-weight: 400;
}
.school-sec3-box .beige-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.2rem;
  margin-top: 1.6rem;
}
@media (min-width: 768px) {
  .school-sec3-box .beige-box {
    flex-direction: row;
    align-items: stretch;
  }
}
.school-sec3-box .beige-box .box {
  width: 100%;
  height: 200px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f8f3ea;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .school-sec3-box .beige-box .box {
    height: 211px;
    flex: 1;
    padding: 2rem;
  }
}
.school-sec3-box .beige-box .box .p1,
.school-sec3-box .beige-box .box .p2 {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  width: 100%;
  text-align: center;
  line-height: 1.5;
}
.school-sec3-box .beige-box .box .p1 {
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: #351e16 1px solid;
}

.school-sec4-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.school-sec4-box .title {
  text-align: center;
  line-height: 2.2;
  font-size: clamp(1.125rem, 0.963rem + 0.7vw, 1.625rem);
}
.school-sec4-box .text {
  text-align: center;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.school-sec4-box .button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .school-sec4-box .button-box {
    flex-direction: row;
  }
}
.school-sec4-box .button-box .school-button {
  display: flex;
  flex-wrap: nowrap;
  width: 220px;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  border: 1px solid #351e16;
  background-color: #fff;
  border-radius: 100px;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .school-sec4-box .button-box .school-button {
    width: 330px;
  }
}
.school-sec4-box .button-box .school-button:hover {
  transform: scale(1.03);
  background-color: #f8f3ea;
}
.school-sec4-box .button-box .school-button .icon {
  width: auto;
  height: 29px;
}
.school-sec4-box .button-box .school-button p {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  color: #351e16;
  text-wrap: nowrap;
}

.news-fv-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-block: 6rem;
  min-height: 800px;
}
.news-fv-wrap .news-main-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 770px;
}
.news-fv-wrap .news-main-box .title-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-left: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .news-fv-wrap .news-main-box .title-box {
    gap: 1rem;
  }
}
.news-fv-wrap .news-main-box .title-box .sub {
  color: #ce0a0a;
  font-family: var(--bell);
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  letter-spacing: 0.12em;
}
.news-fv-wrap .news-main-box .title-box h1 {
  font-size: clamp(1.875rem, 1.511rem + 1.58vw, 3rem);
}
.news-fv-wrap .news-main-box .title-box .p {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
}
.news-fv-wrap .news-main-box .date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .news-fv-wrap .news-main-box .date-box {
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  }
}
.news-fv-wrap .news-main-box .d-image {
  display: block;
  align-items: start;
  line-height: 2;
  font-size: clamp(0.813rem, 0.792rem + 0.09vw, 0.875rem);
}
@media (min-width: 768px) {
  .news-fv-wrap .news-main-box .d-image {
    line-height: 2.5;
  }
}
.news-fv-wrap .news-main-box .d-image img {
  max-width: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media (min-width: 768px) {
  .news-fv-wrap .news-main-box .d-image img {
    max-width: 62% !important;
    aspect-ratio: 4/3;
  }
}
.news-fv-wrap .news-main-box .d-image a {
  color: #ea6b2d;
}

.news-title {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.6rem;
}

.categorylist {
  width: 100%;
  padding-left: 1rem;
  padding-block: 2rem 3rem;
}
@media (min-width: 768px) {
  .categorylist {
    padding-block: 3rem 4rem;
  }
}
.categorylist .webgene-blog {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.6rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .categorylist .webgene-blog {
    gap: 1rem;
  }
}
.categorylist .webgene-blog .webgene-item a {
  padding: 0.3rem 2rem;
  border-radius: 50px;
  background-color: #f5e9d9;
  border: 1px solid #5d482b;
  color: #5d482b;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}

.parallax {
  position: relative;
  overflow: hidden;
}

.parallax img {
  width: 100% !important;
  height: 130% !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.inner-box p {
  text-align: justify;
  text-justify: inter-ideograph;
  overflow-wrap: break-word;
  word-break: normal;
}