@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 {
  /* Dejanire Text */
  --deja:
    "dejanire-text", "Times New Roman", "Times", "YuMincho",
    "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  /* TOT Shizuka Rd Min */
  --shizu:
    "tot-shizukardmin-stdn", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "BIZ UDPMincho", "MS PMincho", serif;
  /* TOT Shizuka Smudge Min */
  --shizu_s:
    "tot-shizukasmudgemin-stdn", "YuMincho", "Yu Mincho",
    "Hiragino Mincho ProN", "Hiragino Mincho Pro", "BIZ UDPMincho",
    "MS PMincho", serif;
}

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

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

.bg-fix {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75vh;
  z-index: -2;
}
@media (min-width: 768px) {
  .bg-fix {
    height: 100vh;
  }
}
@media (768px <= width <= 1024px) and (orientation: portrait) {
  .bg-fix {
    height: 65vh;
  }
}
@media (orientation: landscape) and (max-height: 900px) {
  .bg-fix {
    height: 992px;
  }
}

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

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

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

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

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

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

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

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

/* フォント */
.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: #fffde7;
}

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

.bg-yellow {
  background-color: #ffefb5;
}

.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: start;
  cursor: pointer;
  transition: all 0.3s;
  gap: 1.4rem;
}
.button img {
  width: 20px;
  height: 20px;
  transition: all 0.3s;
}
.button p {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  color: #503500 !important;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.button:hover img {
  transform: rotate(180deg) scale(1.2);
}

.news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 5rem;
  background-color: #ffffff;
  border: 1px solid #f2cf51;
  border-radius: 100px;
  transition: all 0.3s;
}
.news-button p {
  text-align: center;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  color: #503500 !important;
}
.news-button:hover {
  cursor: pointer;
  background-color: #faf2cd;
}

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

.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-logo {
  display: block;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: auto;
}
@media (min-width: 768px) {
  .nav-menu-logo {
    width: 230px;
  }
}

.nav-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  gap: 1.4rem;
  margin-block: 2.2rem;
}
@media (min-width: 768px) {
  .nav-menu-list {
    margin-block: 3rem;
  }
}
.nav-menu-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--shizu_s);
  font-weight: 600;
  line-height: 1.5;
  color: #503500;
}
.nav-menu-list a div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.nav-menu-list a div .en {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  letter-spacing: 0.15em;
}
.nav-menu-list a div .jp {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.nav-menu-button {
  width: 210px;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .nav-menu-button {
    width: 320px;
  }
}
.nav-menu-button:hover {
  transform: scale(1.03);
}

.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 1.6rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: start;
  transition: all 0.3s;
}
.header-wrap.sub {
  background-color: #fffde7;
}
.header-wrap.is-scrolled {
  background-color: #64563f;
}
.header-wrap.is-scrolled a {
  color: #fff;
}
@media (min-width: 992px) {
  .header-wrap {
    justify-content: center;
  }
}

.header-menu {
  display: none;
  align-items: center;
  justify-content: start;
  gap: 2rem;
}
@media (min-width: 992px) {
  .header-menu {
    display: flex;
  }
}
.header-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--shizu_s);
  font-weight: 600;
  line-height: 1.5;
  gap: 0.2rem;
  color: #503500;
}
.header-menu a .en {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}
.header-menu a .jp {
  font-size: 10px;
}

.reserve-button {
  visibility: hidden;
  position: fixed;
  right: 0px;
  bottom: 25px;
  z-index: 900;
  width: 110px;
  opacity: 0;
}
@media (min-width: 768px) {
  .reserve-button {
    right: 0px;
    bottom: 40px;
    width: 160px;
  }
}
.reserve-button.edit {
  visibility: visible;
  opacity: 1;
  right: 20px;
}
@media (min-width: 768px) {
  .reserve-button.edit {
    right: 30px;
  }
}
.reserve-button img {
  transition: all 0.3s;
}
.reserve-button :hover {
  transform: scale(1.05);
}

.reserve-button.is-scrolled {
  visibility: visible;
  opacity: 1;
  right: 20px;
}
@media (min-width: 768px) {
  .reserve-button.is-scrolled {
    right: 30px;
  }
}

.a-burger {
  position: relative;
  z-index: 1100;
  cursor: pointer;
  width: 40px;
  height: 17px;
  padding: 0;
  display: block;
}
@media (min-width: 992px) {
  .a-burger {
    display: none;
  }
}

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

.is-scrolled .a-burger div {
  background-color: #fff;
}

.a-burger div:nth-child(1) {
  top: 0;
  width: 100%;
}

.a-burger div:nth-child(2) {
  bottom: 0;
  width: 75%;
}

.a-burger.is-active div:nth-child(1) {
  transform: rotate(-30deg);
  top: 9px;
  width: 120%;
}

.a-burger.is-active div:nth-child(2) {
  transform: rotate(30deg);
  bottom: 7px;
  width: 120%;
}

/* フッター */
.foot-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../images/foot-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.foot-deco {
  width: 100%;
  height: 140px;
}
@media (min-width: 768px) {
  .foot-deco {
    height: auto;
  }
}

.foot-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding-block: 3rem 4rem;
}
@media (min-width: 768px) {
  .foot-main {
    padding-block: 4rem 6rem;
  }
}
.foot-main .title {
  font-size: clamp(1.25rem, 0.967rem + 1.23vw, 2.125rem);
  color: #ffee97;
}
.foot-main .logo {
  width: 160px;
}
@media (min-width: 768px) {
  .foot-main .logo {
    width: 244px;
  }
}
.foot-main .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.15em;
}

.foot-sub {
  width: 100%;
  background-color: #fff;
  padding-block: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
}
.foot-sub .list-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .foot-sub .list-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
}
.foot-sub .list-box a {
  width: 100%;
  font-family: var(--shizu_s);
  font-weight: 600;
  line-height: 1.5;
  gap: 0.2rem;
  color: #503500;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .foot-sub .list-box a {
    width: auto;
  }
}
.foot-sub .list-box a div {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.foot-sub .list-box a div .en {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  letter-spacing: 0.15em;
}
.foot-sub .list-box a div .jp {
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* 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.75rem, 0.71rem + 0.18vw, 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: 2rem 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: 60px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  gap: 1.2rem;
  background-color: #fff;
  border: solid 1px #f2cf51;
  border-radius: 100px;
}

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

.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: 20px;
  height: 20px;
  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: 20px;
  height: 20px;
  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: 80vh;
  min-height: 600px;
  background: linear-gradient(116deg, #fffdec 15.43%, #fff2c5 49.8%, #fff5d1 84.83%);
}
@media (min-width: 992px) {
  .fv-wrap {
    height: calc(100vh - 80px);
    min-height: 968px;
    flex-direction: row;
    max-height: 982px;
  }
}
@media (768px <= width <= 1024px) and (orientation: portrait) {
  .fv-wrap {
    height: 60vh;
    min-height: 700px;
  }
}
@media (orientation: landscape) and (max-height: 900px) {
  .fv-wrap {
    height: 600px;
  }
}
.fv-wrap .fv-img-box {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1320px;
  max-height: 1310px;
  background-image: url("../images/fv-sp-img.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (min-width: 768px) {
  .fv-wrap .fv-img-box {
    background-image: url("../images/fv-img.png");
    width: 95%;
    max-height: none;
    padding-top: 5%;
  }
}
.fv-wrap .fv-img-box .fv-title {
  position: relative;
  display: block;
  gap: 1.4rem;
  margin-block: auto 40px;
  margin-inline: 42px auto;
  z-index: 2;
}
@media (min-width: 768px) {
  .fv-wrap .fv-img-box .fv-title {
    margin-inline: auto 8%;
    margin-block: auto;
  }
}
@media (min-width: 992px) {
  .fv-wrap .fv-img-box .fv-title {
    margin-inline: auto 14%;
  }
}
.fv-wrap .fv-img-box .fv-title .title {
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
  line-height: 1.8;
}
.fv-wrap .fv-img-box .fv-title .en {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  letter-spacing: 0.15em;
  color: #b89000;
  margin-block: 1.2rem;
}
@media (min-width: 992px) {
  .fv-wrap .fv-img-box .fv-title .en {
    margin-block: 1rem;
  }
}
.fv-wrap .fv-img-box .fv-title .logo {
  width: 160px;
}
@media (min-width: 768px) {
  .fv-wrap .fv-img-box .fv-title .logo {
    width: 230px;
  }
}
.fv-wrap .fv-img-box .fv-deco {
  position: absolute;
  z-index: -1;
  top: -45px;
  right: -6%;
  width: 150px;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .fv-wrap .fv-img-box .fv-deco {
    top: -90px;
    right: -20%;
    width: 230px;
  }
}
.fv-wrap .fv-img-box .fv-deco2 {
  position: absolute;
  bottom: 35%;
  right: -10%;
  width: 200px;
}
@media (orientation: landscape) and (max-height: 900px) {
  .fv-wrap .fv-img-box .fv-deco2 {
    bottom: 35%;
    right: 10%;
    width: 200px;
  }
}
@media (min-width: 768px) {
  .fv-wrap .fv-img-box .fv-deco2 {
    bottom: 0%;
    right: -2%;
    width: 210px;
  }
}
@media (min-width: 992px) {
  .fv-wrap .fv-img-box .fv-deco2 {
    bottom: 2%;
    right: -3%;
    width: 290px;
  }
}
@media (min-width: 1200px) {
  .fv-wrap .fv-img-box .fv-deco2 {
    width: 330px;
  }
}

.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: end;
  height: 90vh;
  z-index: 1;
}
@media (min-width: 992px) {
  .fv-sub-wrap {
    height: calc(100vh - 80px);
    min-height: 900px;
    max-height: 1100px;
  }
}
@media (768px <= width <= 1024px) and (orientation: portrait) {
  .fv-sub-wrap {
    height: 80vh;
    min-height: 700px;
  }
}
@media (orientation: landscape) and (max-height: 900px) {
  .fv-sub-wrap {
    height: 992px;
  }
}
.fv-sub-wrap .fv-sub-box {
  position: relative;
  background-image: url("../images/fv-sub-box.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  min-height: 460px;
  height: 54%;
}
@media (min-width: 768px) {
  .fv-sub-wrap .fv-sub-box {
    height: 50%;
  }
}
@media (min-width: 1200px) {
  .fv-sub-wrap .fv-sub-box {
    height: 60%;
  }
}
.fv-sub-wrap .fv-sub-box .deco-l {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  max-width: 522px;
}
.fv-sub-wrap .fv-sub-box .deco-r {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  max-width: 522px;
}
.fv-sub-wrap .fv-sub-box .title-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .fv-sub-wrap .fv-sub-box .title-box {
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .fv-sub-wrap .fv-sub-box .title-box {
    bottom: 60px;
  }
}
.fv-sub-wrap .fv-sub-box .title-box .en {
  font-family: var(--deja);
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  color: #b89000;
}
.fv-sub-wrap .fv-sub-box .title-box .jp {
  font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
  line-height: 1.5;
  white-space: nowrap;
}

.fv-sub-news {
  padding-block: 10rem 4rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27vh;
  min-height: 330px;
}
.fv-sub-news .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}
.fv-sub-news .title-box .en {
  font-family: var(--deja);
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  color: #b89000;
}
.fv-sub-news .title-box .jp {
  font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
  line-height: 1.5;
  white-space: nowrap;
}

.loop-posi {
  position: absolute;
  left: 0;
  bottom: 45%;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 768px) {
  .loop-posi {
    bottom: 6%;
  }
}

.js-tick {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.loop__text {
  flex-shrink: 0;
  padding-right: 3rem;
  white-space: nowrap;
  color: #ffc041;
  font-size: 9rem;
  font-family: var(--deja);
  line-height: 1;
  letter-spacing: 0.02em;
  font-size: clamp(5.375rem, 4.889rem + 2.1vw, 6.875rem);
}

@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 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 8rem 10rem;
  background-color: #fffde7;
  z-index: 1;
  overflow: hidden;
  padding-inline: 1rem;
}
.top-sec2-wrap .bg-img {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.top-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .top-sec2-box {
    flex-direction: row;
  }
}
.top-sec2-box .l {
  display: flex;
  align-items: center;
  justify-content: start;
  flex: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec2-box .l {
    justify-content: center;
  }
}
.top-sec2-box .l .title-set {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.4rem;
}
.top-sec2-box .l .title-set .en {
  font-size: clamp(1rem, 0.717rem + 1.23vw, 1.875rem);
  font-family: var(--deja);
  color: #ffaa00;
  position: relative;
}
.top-sec2-box .l .title-set .en::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
  width: 28px;
  height: 52px;
  background-image: url("../images/deco-flower1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-sec2-box .l .title-set .en::after {
    right: -90px;
    width: 48px;
    height: 72px;
  }
}
.top-sec2-box .l .title-set .jp {
  font-size: clamp(2rem, 1.717rem + 1.23vw, 2.875rem);
  line-height: 1.8;
}
.top-sec2-box .r {
  display: block;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .top-sec2-box .r {
    width: 50%;
    max-width: 600px;
  }
}
.top-sec2-box .r .deco-leaf {
  width: 146px;
  position: absolute;
  bottom: -16%;
  left: -10%;
  z-index: 4;
}
@media (min-width: 768px) {
  .top-sec2-box .r .deco-leaf {
    bottom: -10%;
    left: -10%;
    width: 140px;
  }
}
@media (min-width: 992px) {
  .top-sec2-box .r .deco-leaf {
    width: 172px;
  }
}
.top-sec2-box .r .img-box {
  width: 100%;
  overflow: hidden;
}
.top-sec2-box .r .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.top-sec2-box2 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  margin-top: 6rem;
}
@media (min-width: 768px) {
  .top-sec2-box2 {
    flex-direction: row;
    align-items: start;
  }
}
.top-sec2-box2 .bg-deco {
  position: absolute;
  left: -20%;
  bottom: -10%;
  width: 300px;
  z-index: 0;
}
@media (min-width: 768px) {
  .top-sec2-box2 .bg-deco {
    width: 576px;
  }
}
.top-sec2-box2 .l {
  display: block;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .top-sec2-box2 .l {
    width: 50%;
    max-width: 546px;
  }
}
@media (min-width: 992px) {
  .top-sec2-box2 .l {
    width: 40%;
  }
}
.top-sec2-box2 .l .img-box {
  width: 100%;
  overflow: hidden;
}
.top-sec2-box2 .l .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-sec2-box2 .r {
  display: flex;
  align-items: start;
  justify-content: start;
  flex: 1;
  padding: 3rem 0 0 2rem;
}
.top-sec2-box2 .r .title-set {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 4rem;
}
.top-sec2-box2 .r .title-set .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2;
}

.top-sec3-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem 7rem;
  background: linear-gradient(180deg, #fffde7 38.69%, #fff2c5 100%);
  z-index: 1;
  overflow: hidden;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .top-sec3-wrap {
    padding-block: 8rem 10rem;
  }
}

.top-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .top-sec3-box {
    flex-direction: row;
    align-items: start;
  }
}
.top-sec3-box .l {
  display: flex;
  align-items: center;
  justify-content: start;
  flex: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec3-box .l {
    justify-content: center;
  }
}
.top-sec3-box .l .title-set {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.4rem;
}
.top-sec3-box .l .title-set .en {
  font-size: clamp(1rem, 0.717rem + 1.23vw, 1.875rem);
  font-family: var(--deja);
  color: #ffaa00;
  position: relative;
}
.top-sec3-box .l .title-set .en::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
  width: 28px;
  height: 52px;
  background-image: url("../images/deco-flower2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-sec3-box .l .title-set .en::after {
    right: -90px;
    width: 48px;
    height: 72px;
  }
}
.top-sec3-box .l .title-set .jp {
  font-size: clamp(2rem, 1.717rem + 1.23vw, 2.875rem);
  line-height: 1.8;
}
.top-sec3-box .r {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec3-box .r {
    width: 50%;
  }
}
.top-sec3-box .r .title-set {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 3rem;
}
.top-sec3-box .r .title-set .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2;
}

.top-sec3-img {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 5rem;
  position: relative;
  z-index: 5;
}
.top-sec3-img .img-wrap {
  width: 90%;
  max-width: 700px;
  margin-right: auto;
  position: relative;
}
.top-sec3-img .img-wrap .deco-leaf {
  width: 126px;
  position: absolute;
  bottom: -16%;
  right: -10%;
  z-index: 4;
}
@media (min-width: 768px) {
  .top-sec3-img .img-wrap .deco-leaf {
    bottom: -10%;
    right: -10%;
    width: 120px;
  }
}
@media (min-width: 992px) {
  .top-sec3-img .img-wrap .deco-leaf {
    width: 160px;
  }
}
.top-sec3-img .img-wrap .img-box {
  width: 100%;
  overflow: hidden;
}
.top-sec3-img .img-wrap .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.top-sec3-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .top-sec3-box2 {
    flex-direction: row;
    align-items: start;
  }
}
.top-sec3-box2 .bg-img1 {
  position: absolute;
  width: 260px;
  top: -200px;
  right: -200px;
  z-index: 0;
}
@media (min-width: 768px) {
  .top-sec3-box2 .bg-img1 {
    width: 526px;
  }
}
.top-sec3-box2 .bg-img2 {
  position: absolute;
  width: 260px;
  bottom: -200px;
  left: -200px;
  z-index: 0;
}
@media (min-width: 768px) {
  .top-sec3-box2 .bg-img2 {
    width: 540px;
  }
}
.top-sec3-box2 .l {
  display: flex;
  align-items: center;
  justify-content: start;
  flex: 1;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .top-sec3-box2 .l {
    justify-content: center;
  }
}
.top-sec3-box2 .l .title-set {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.4rem;
}
.top-sec3-box2 .l .title-set .en {
  font-size: clamp(1rem, 0.717rem + 1.23vw, 1.875rem);
  font-family: var(--deja);
  color: #ffaa00;
  position: relative;
}
.top-sec3-box2 .l .title-set .en::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
  width: 28px;
  height: 52px;
  background-image: url("../images/deco-flower3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-sec3-box2 .l .title-set .en::after {
    right: -90px;
    width: 48px;
    height: 72px;
  }
}
.top-sec3-box2 .l .title-set .jp {
  font-size: clamp(2rem, 1.717rem + 1.23vw, 2.875rem);
  line-height: 1.8;
}
.top-sec3-box2 .l .title-set .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.2;
}
.top-sec3-box2 .r {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  width: 100%;
  position: relative;
  margin-top: 2rem;
  gap: 2.4rem;
  z-index: 3;
}
@media (min-width: 768px) {
  .top-sec3-box2 .r {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .top-sec3-box2 .r {
    width: 55%;
  }
}
.top-sec3-box2 .r .deco-leaf {
  width: 96px;
  position: absolute;
  top: 25%;
  right: -5%;
  z-index: 4;
}
@media (min-width: 768px) {
  .top-sec3-box2 .r .deco-leaf {
    right: -10%;
    width: 120px;
  }
}
@media (min-width: 992px) {
  .top-sec3-box2 .r .deco-leaf {
    width: 133px;
  }
}
.top-sec3-box2 .r .img-box1 {
  width: 70%;
  overflow: hidden;
  max-width: 418px;
}
.top-sec3-box2 .r .img-box1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-sec3-box2 .r .img-box2 {
  width: 90%;
  overflow: hidden;
  max-width: 450px;
}
.top-sec3-box2 .r .img-box2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-sec4-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 4rem;
  background-color: #fffde7;
  position: relative;
  z-index: 1;
  padding-inline: 1rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-sec4-wrap {
    padding-block: 6rem;
  }
}

.top-sec4-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  gap: 2.6rem;
  z-index: 4;
}
.top-sec4-box .bg-deco {
  position: absolute;
  left: -24%;
  bottom: -8%;
  width: 300px;
  z-index: 0;
}
@media (min-width: 768px) {
  .top-sec4-box .bg-deco {
    width: 576px;
  }
}
.top-sec4-box .bg-img {
  position: static;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-sec4-box .bg-img {
    position: absolute;
    top: 10%;
    left: 0;
    height: 460px;
    width: 34%;
    z-index: 0;
  }
}
@media (min-width: 992px) {
  .top-sec4-box .bg-img {
    height: 520px;
    width: 40%;
    margin-left: 10%;
  }
}
.top-sec4-box .bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-sec4-box .text-box {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec4-box .text-box {
    gap: 4rem;
    margin-left: auto;
  }
}
.top-sec4-box .text-box .title {
  background-color: #fff;
  border-radius: 30px;
  padding: 3rem 3.6rem;
  position: relative;
  font-size: clamp(1.5rem, 1.217rem + 1.23vw, 2.375rem);
  line-height: 2;
}
@media (min-width: 768px) {
  .top-sec4-box .text-box .title {
    padding: 3rem 4.6rem;
  }
}
.top-sec4-box .text-box .title::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -35px;
  width: 150px;
  height: 166px;
  background-image: url("../images/top-sec4-deco1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.top-sec4-box .text-box .title::after {
  content: "";
  position: absolute;
  bottom: -35px;
  right: -35px;
  width: 150px;
  height: 166px;
  background-image: url("../images/top-sec4-deco2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.top-sec4-box .text-box .text {
  margin-right: 2rem;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.2;
}
.top-sec4-box .button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .top-sec4-box .button-box {
    gap: 3rem;
    flex-direction: row;
    width: 90%;
  }
}
.top-sec4-box .button-box a {
  width: 100%;
  transition: all 0.3s;
}
.top-sec4-box .button-box a:hover {
  transform: scale(1.03);
}

.top-sec5-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem 8rem;
  background-color: #fffde7;
  position: relative;
}
.top-sec5-wrap .bg-img2 {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.top-sec5-box {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  position: relative;
  z-index: 4;
}
.top-sec5-box .bg-img {
  max-width: 915px;
  width: 100%;
  position: relative;
}
.top-sec5-box .bg-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 74px;
  height: 45px;
  background-image: url("../images/top-sec5-deco1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-sec5-box .bg-img::before {
    width: 180px;
    height: 100px;
  }
}
@media (min-width: 992px) {
  .top-sec5-box .bg-img::before {
    width: 210px;
    height: 122px;
  }
}
.top-sec5-box .bg-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 100px;
  background-image: url("../images/top-sec5-deco2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-sec5-box .bg-img::after {
    width: 240px;
    height: 200px;
  }
}
@media (min-width: 992px) {
  .top-sec5-box .bg-img::after {
    width: 306px;
    height: 270px;
  }
}
.top-sec5-box .title-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  z-index: 2;
  gap: 0.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 4;
}
@media (min-width: 768px) {
  .top-sec5-box .title-box {
    transform: translate(-60%, -50%);
    gap: 2rem;
  }
}
.top-sec5-box .title-box .en {
  font-size: clamp(1rem, 0.717rem + 1.23vw, 1.875rem);
  font-family: var(--deja);
  color: #ffaa00;
}
.top-sec5-box .title-box .jp {
  font-size: clamp(1.25rem, 0.886rem + 1.58vw, 2.375rem);
  line-height: 1.8;
}

.top-sec5-box2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 4rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .top-sec5-box2 {
    margin-block: 4rem;
  }
}
.top-sec5-box2 .bg-img1 {
  position: absolute;
  width: 260px;
  top: -200px;
  right: -150px;
  z-index: 0;
}
@media (min-width: 768px) {
  .top-sec5-box2 .bg-img1 {
    width: 390px;
    top: -300px;
    right: -200px;
  }
}
@media (min-width: 992px) {
  .top-sec5-box2 .bg-img1 {
    width: 526px;
  }
}
.top-sec5-box2 .deco-leaf {
  width: 126px;
  position: absolute;
  bottom: -30%;
  right: -10%;
  z-index: 4;
}
@media (min-width: 768px) {
  .top-sec5-box2 .deco-leaf {
    bottom: -20%;
    right: 10%;
    width: 120px;
  }
}
@media (min-width: 992px) {
  .top-sec5-box2 .deco-leaf {
    width: 150px;
  }
}
.top-sec5-box2 p {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.2;
  text-align: center;
}

.top-sec5-box3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .top-sec5-box3 {
    flex-direction: row;
    margin-top: 0;
  }
}
.top-sec5-box3 .box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  flex: 1;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .top-sec5-box3 .box {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .top-sec5-box3 .box {
    padding: 4rem;
  }
}
.top-sec5-box3 .box .title-set {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 200px;
}
@media (min-width: 768px) {
  .top-sec5-box3 .box .title-set {
    min-width: none;
    align-items: start;
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .top-sec5-box3 .box .title-set {
    gap: 1.2rem;
  }
}
.top-sec5-box3 .box .title-set .en {
  font-size: clamp(1rem, 0.717rem + 1.23vw, 1.875rem);
  font-family: var(--deja);
  color: #ffaa00;
}
.top-sec5-box3 .box .title-set .jp {
  font-size: clamp(2rem, 1.717rem + 1.23vw, 2.875rem);
  line-height: 1.8;
}
.top-sec5-box3 .box.left {
  border-bottom: 1px solid #9a9579;
}
@media (min-width: 768px) {
  .top-sec5-box3 .box.left {
    border-right: 1px solid #9a9579;
    border-bottom: none;
  }
}

.top-sec5-box4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  position: relative;
  margin-top: 3rem;
}
.top-sec5-box4 .deco-leaf {
  width: 126px;
  position: absolute;
  bottom: -70%;
  left: -6%;
}
@media (min-width: 768px) {
  .top-sec5-box4 .deco-leaf {
    bottom: -10%;
    left: 0%;
    width: 120px;
  }
}
@media (min-width: 992px) {
  .top-sec5-box4 .deco-leaf {
    width: 134px;
  }
}
.top-sec5-box4 .text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  text-align: center;
  line-height: 1.5;
}
.top-sec5-box4 .title {
  position: relative;
  font-size: clamp(1rem, 0.676rem + 1.4vw, 2rem);
  color: #ffaa00;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.top-sec5-box4 .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -36px;
  transform: translateY(-50%);
  width: 15px;
  height: 24px;
  background-image: url("../images/line-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-sec5-box4 .title::before {
    left: -50px;
    width: 20px;
    height: 34px;
  }
}
.top-sec5-box4 .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  width: 15px;
  height: 24px;
  background-image: url("../images/line-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-sec5-box4 .title::after {
    right: -50px;
    width: 20px;
    height: 34px;
  }
}
.top-sec5-box4 .inst-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 2rem 3rem;
  background-color: #fff;
  border: 1px solid #503500;
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  width: 270px;
  letter-spacing: 0.24em;
  position: relative;
}
@media (min-width: 768px) {
  .top-sec5-box4 .inst-button {
    width: 400px;
  }
}
.top-sec5-box4 .inst-button img {
  width: 32px;
  height: 32px;
}

.top-sec6-wrap {
  background-color: #ffefb5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 5rem;
}

.top-sec6-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  gap: 4rem;
}
@media (min-width: 992px) {
  .top-sec6-box {
    flex-direction: row;
    align-items: start;
    gap: 4rem;
    padding-inline: 4rem;
  }
}
.top-sec6-box .l {
  display: block;
  padding: 3rem;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
}
@media (min-width: 992px) {
  .top-sec6-box .l {
    padding: 4rem 5rem;
  }
}
.top-sec6-box .l .deco-flower {
  position: absolute;
  bottom: -15%;
  left: -15%;
  width: 90px;
}
@media (min-width: 992px) {
  .top-sec6-box .l .deco-flower {
    width: 160px;
    bottom: -20%;
    left: -30%;
  }
}
.top-sec6-box .l .title-set {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.4rem;
}
.top-sec6-box .l .title-set .en {
  font-size: clamp(1rem, 0.717rem + 1.23vw, 1.875rem);
  font-family: var(--deja);
  color: #ffaa00;
  margin-left: 0.3rem;
}
.top-sec6-box .l .title-set .jp {
  font-size: clamp(2rem, 1.717rem + 1.23vw, 2.875rem);
  line-height: 1.8;
}
.top-sec6-box .r {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .top-sec6-box .r {
    align-items: end;
    flex: 1;
  }
}

.con-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fffde7;
  padding-block: 8rem 5rem;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .con-sec2-wrap {
    padding-block: 10rem 6rem;
  }
}
.con-sec2-wrap .bg-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.con-sec2-wrap .title {
  width: 100%;
  font-size: clamp(2.5rem, 2.014rem + 2.1vw, 4rem);
  color: #f2cf51;
  font-family: var(--deja);
}
.con-sec2-wrap .con-sec2-box1 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  margin-block: 2rem 0;
}
@media (min-width: 768px) {
  .con-sec2-wrap .con-sec2-box1 {
    flex-direction: row;
    gap: 2.4rem;
    margin-block: 4rem 0;
  }
}
@media (min-width: 768px) {
  .con-sec2-wrap .con-sec2-box1.reverse {
    flex-direction: row-reverse;
  }
}
.con-sec2-wrap .con-sec2-box1 .l {
  width: 100%;
  max-width: 423px;
  position: relative;
}
@media (min-width: 768px) {
  .con-sec2-wrap .con-sec2-box1 .l {
    width: 45%;
  }
}
.con-sec2-wrap .con-sec2-box1 .l .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.con-sec2-wrap .con-sec2-box1 .l .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.con-sec2-wrap .con-sec2-box1 .l .deco-leaf {
  position: absolute;
  left: -10%;
  bottom: -10%;
  width: 100px;
}
.con-sec2-wrap .con-sec2-box1.reverse .l {
  width: 100%;
  max-width: 480px;
  position: relative;
}
@media (min-width: 768px) {
  .con-sec2-wrap .con-sec2-box1.reverse .l {
    width: 50%;
  }
}
.con-sec2-wrap .con-sec2-box1 .r {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
}
@media (min-width: 768px) {
  .con-sec2-wrap .con-sec2-box1 .r {
    flex: 1;
  }
}
.con-sec2-wrap .con-sec2-box1 .r::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-image: url("../images/con-sec2-deco-l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 992px) {
  .con-sec2-wrap .con-sec2-box1 .r::before {
    width: 114px;
    height: 113px;
  }
}
.con-sec2-wrap .con-sec2-box1 .r::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-image: url("../images/con-sec2-deco-r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 992px) {
  .con-sec2-wrap .con-sec2-box1 .r::after {
    width: 114px;
    height: 113px;
  }
}
.con-sec2-wrap .con-sec2-box1 .r .p {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  line-height: 2;
  white-space: nowrap;
}
.con-sec2-wrap .con-sec2-box1 .r .p2 {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.5;
}
.con-sec2-wrap .con-sec2-box1 .r2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .con-sec2-wrap .con-sec2-box1 .r2 {
    flex: 1;
  }
}
@media (min-width: 992px) {
  .con-sec2-wrap .con-sec2-box1 .r2 {
    padding: 3rem;
  }
}
.con-sec2-wrap .con-sec2-box1 .r2 .p {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.5;
}

.con-sec3-wrap {
  background-color: #fffde7;
  padding-block: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .con-sec3-wrap {
    padding-block: 6rem;
  }
}
.con-sec3-wrap .con-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .con-sec3-wrap .con-sec3-box {
    gap: 5rem;
  }
}
.con-sec3-wrap .con-sec3-box .title {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  line-height: 1.5;
  position: relative;
  text-align: center;
}
.con-sec3-wrap .con-sec3-box .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 20px;
  height: 40px;
  background-image: url("../images/con-sec3-deco-l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .con-sec3-wrap .con-sec3-box .title::before {
    left: -90px;
    width: 50px;
    height: 70px;
  }
}
.con-sec3-wrap .con-sec3-box .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 20px;
  height: 40px;
  background-image: url("../images/con-sec3-deco-r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .con-sec3-wrap .con-sec3-box .title::after {
    right: -90px;
    width: 50px;
    height: 70px;
  }
}
.con-sec3-wrap .con-sec3-box .text-box {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .con-sec3-wrap .con-sec3-box .text-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
  }
}
.con-sec3-wrap .con-sec3-box .text-box .box {
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  padding-block: 2rem;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  box-shadow: 2px 2px 14px 0 rgba(0, 0, 0, 0.13);
}
.con-sec3-wrap .con-sec3-box .title2 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  line-height: 1.8;
  text-align: center;
}

.con-sec4-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.con-sec4-bg {
  width: 100%;
  height: 100%;
  min-height: 600px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: -1;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .con-sec4-bg {
    height: 100vh;
  }
}
.con-sec4-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.con-sec4-box {
  background-color: #fffde7;
  width: 100%;
  position: relative;
  padding-block: 6rem;
}
.con-sec4-box .title-font {
  position: absolute;
  top: -100px;
  left: 4%;
  max-height: 84px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 90%;
}
@media (min-width: 768px) {
  .con-sec4-box .title-font {
    top: -86px;
    left: 10%;
    width: auto;
  }
}

.con-sec4-set {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media (min-width: 768px) {
  .con-sec4-set {
    gap: 6rem;
  }
}
.con-sec4-set .title {
  margin-inline: auto;
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  line-height: 1.8;
  position: relative;
  letter-spacing: 0.15em;
  text-align: center;
}
@media (min-width: 768px) {
  .con-sec4-set .title {
    text-align: end;
    margin-inline: auto 10%;
  }
}
.con-sec4-set .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 60px;
  height: 68px;
  background-image: url("../images/con-sec4-deco-l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .con-sec4-set .title::before {
    left: -140px;
    width: 100px;
    height: 118px;
  }
}
.con-sec4-set .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  width: 60px;
  height: 68px;
  background-image: url("../images/con-sec4-deco-r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .con-sec4-set .title::after {
    right: -140px;
    width: 100px;
    height: 118px;
  }
}
.con-sec4-set .inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 3rem;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .con-sec4-set .inline {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
.con-sec4-set .inline .l {
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .con-sec4-set .inline .l {
    max-width: 447px;
    width: 35%;
  }
}
@media (min-width: 992px) {
  .con-sec4-set .inline .l {
    width: 50%;
  }
}
.con-sec4-set .inline .l .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.con-sec4-set .inline .l .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.con-sec4-set .inline .l .deco-leaf {
  position: absolute;
  left: -10%;
  bottom: -8%;
  width: 140px;
}
@media (min-width: 768px) {
  .con-sec4-set .inline .l .deco-leaf {
    bottom: -10%;
    width: 210px;
  }
}
.con-sec4-set .inline .r {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}
@media (min-width: 768px) {
  .con-sec4-set .inline .r {
    justify-content: center;
    flex: 1;
    padding-inline: 4rem;
  }
}
.con-sec4-set .inline .r p {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.6;
}
.con-sec4-set .inline2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 4rem;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .con-sec4-set .inline2 {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
.con-sec4-set .inline2 .l {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .con-sec4-set .inline2 .l {
    flex: 1;
    justify-content: center;
  }
}
.con-sec4-set .inline2 .l .bg-img1 {
  position: absolute;
  width: 260px;
  bottom: -200px;
  left: -150px;
  z-index: -1;
}
@media (min-width: 768px) {
  .con-sec4-set .inline2 .l .bg-img1 {
    width: 390px;
    bottom: -300px;
    left: -200px;
  }
}
@media (min-width: 992px) {
  .con-sec4-set .inline2 .l .bg-img1 {
    width: 526px;
  }
}
.con-sec4-set .inline2 .l .deco-leaf {
  width: 126px;
  position: absolute;
  bottom: -50%;
  right: -10%;
  z-index: -1;
}
@media (min-width: 768px) {
  .con-sec4-set .inline2 .l .deco-leaf {
    bottom: 0;
    right: 0%;
    width: 120px;
  }
}
@media (min-width: 992px) {
  .con-sec4-set .inline2 .l .deco-leaf {
    width: 150px;
  }
}
.con-sec4-set .inline2 .l p {
  font-size: clamp(1.125rem, 0.963rem + 0.7vw, 1.625rem);
  line-height: 2.4;
}
.con-sec4-set .inline2 .r {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 1.4rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .con-sec4-set .inline2 .r {
    max-width: 326px;
    width: 40%;
  }
}
.con-sec4-set .inline2 .r .img-box1 {
  width: 100%;
  overflow: hidden;
}
.con-sec4-set .inline2 .r .img-box1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.con-sec4-set .inline2 .r .img-box2 {
  width: 70%;
  overflow: hidden;
}
.con-sec4-set .inline2 .r .img-box2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.con-sec4-set2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background-color: #fff;
  padding: 4rem 2rem;
  margin-top: 4rem;
  border-radius: 20px;
  position: relative;
  z-index: 4;
}
.con-sec4-set2 .deco-flower {
  display: block;
  width: 21%;
  max-width: 230px;
  position: absolute;
  bottom: -6%;
  right: -8%;
}
@media (min-width: 768px) {
  .con-sec4-set2 .deco-flower {
    bottom: -18%;
    right: -10%;
  }
}
@media (min-width: 992px) {
  .con-sec4-set2 .deco-flower {
    bottom: -12%;
    right: -5%;
  }
}
@media (min-width: 768px) {
  .con-sec4-set2 {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .con-sec4-set2 {
    padding: 4rem;
    gap: 3rem;
  }
}
.con-sec4-set2 .title {
  width: 100%;
  font-size: clamp(1.5rem, 1.338rem + 0.7vw, 2rem);
  line-height: 1.5;
}
.con-sec4-set2 .inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .con-sec4-set2 .inline {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
.con-sec4-set2 .inline .l {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .con-sec4-set2 .inline .l {
    width: 35%;
    max-width: 350px;
  }
}
@media (min-width: 992px) {
  .con-sec4-set2 .inline .l {
    width: 45%;
  }
}
.con-sec4-set2 .inline .l img {
  width: 100%;
  height: 100%;
}
.con-sec4-set2 .inline .r {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .con-sec4-set2 .inline .r {
    padding-inline: 2rem;
    flex: 1;
  }
}
.con-sec4-set2 .inline .r .box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 420px;
}
.con-sec4-set2 .inline .r .box .title {
  padding-left: 40px;
  position: relative;
  font-size: clamp(0.938rem, 0.877rem + 0.26vw, 1.125rem);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .con-sec4-set2 .inline .r .box .title {
    margin-bottom: 1.2rem;
  }
}
.con-sec4-set2 .inline .r .box .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 20px;
  background-image: url("../images/con-sec5-deco.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.con-sec4-set2 .inline .r .box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.2;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .con-sec4-set2 .inline .r .box .text {
    margin-top: 1rem;
  }
}

.con-sec7-wrap {
  padding-block: 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  background-color: #fffde7;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 768px) {
  .con-sec7-wrap {
    gap: 5rem;
  }
}
.con-sec7-wrap .bg-img {
  position: absolute;
  width: 260px;
  bottom: -100px;
  right: -200px;
  z-index: -1;
}
@media (min-width: 768px) {
  .con-sec7-wrap .bg-img {
    width: 540px;
  }
}
.con-sec7-wrap .bg-img2 {
  position: absolute;
  width: 260px;
  bottom: -48px;
  left: -110px;
  z-index: -1;
}
@media (min-width: 768px) {
  .con-sec7-wrap .bg-img2 {
    width: 340px;
  }
}

.con-sec7-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  text-align: center;
}
.con-sec7-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.6;
}
.con-sec7-box .title {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  line-height: 2.4;
}

.con-sec7-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.con-sec7-box2 .title {
  color: #f2cf51;
  text-align: center;
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
}
.con-sec7-box2 .title2 {
  color: #f2cf51;
  text-align: center;
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
  position: relative;
}
.con-sec7-box2 .title2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("../images/head-leaf-deco-l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .con-sec7-box2 .title2::before {
    left: -90px;
    width: 43px;
    height: 44px;
  }
}
.con-sec7-box2 .title2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("../images/head-leaf-deco-r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .con-sec7-box2 .title2::after {
    right: -90px;
    width: 43px;
    height: 44px;
  }
}
.con-sec7-box2 .button-box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .con-sec7-box2 .button-box {
    gap: 2rem;
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }
}
.con-sec7-box2 .button-box a {
  width: 100%;
  transition: all 0.3s;
}
.con-sec7-box2 .button-box a:hover {
  transform: scale(1.03);
}

.con-sec7-box3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  position: relative;
  margin-top: 3rem;
}
.con-sec7-box3 .deco-leaf {
  width: 126px;
  position: absolute;
  bottom: -70%;
  left: -6%;
}
@media (min-width: 768px) {
  .con-sec7-box3 .deco-leaf {
    bottom: -10%;
    left: 0%;
    width: 120px;
  }
}
@media (min-width: 992px) {
  .con-sec7-box3 .deco-leaf {
    width: 134px;
  }
}
.con-sec7-box3 .text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  text-align: center;
  line-height: 1.5;
}
.con-sec7-box3 .title {
  position: relative;
  font-size: clamp(1rem, 0.676rem + 1.4vw, 2rem);
  color: #ffaa00;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.con-sec7-box3 .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -36px;
  transform: translateY(-50%);
  width: 15px;
  height: 24px;
  background-image: url("../images/line-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .con-sec7-box3 .title::before {
    left: -50px;
    width: 20px;
    height: 34px;
  }
}
.con-sec7-box3 .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  width: 15px;
  height: 24px;
  background-image: url("../images/line-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .con-sec7-box3 .title::after {
    right: -50px;
    width: 20px;
    height: 34px;
  }
}
.con-sec7-box3 .inst-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 1.5rem 3rem;
  background-color: #fff;
  border: 1px solid #503500;
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  width: 270px;
  letter-spacing: 0.24em;
  position: relative;
}
@media (min-width: 768px) {
  .con-sec7-box3 .inst-button {
    width: 400px;
    padding: 2rem 3rem;
  }
}
.con-sec7-box3 .inst-button img {
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .con-sec7-box3 .inst-button img {
    width: 32px;
    height: 32px;
  }
}

.head-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fffde7;
  padding-block: 8rem 5rem;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .head-sec2-wrap {
    padding-block: 10rem 6rem;
  }
}
.head-sec2-wrap .bg-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.head-sec2-box1 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .head-sec2-box1 {
    gap: 3rem;
  }
}
.head-sec2-box1 .deco-leaf {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: -1;
  width: 60%;
  max-width: 360px;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .head-sec2-box1 .deco-leaf {
    opacity: 1;
    width: 40%;
  }
}
.head-sec2-box1 .title {
  width: 100%;
  font-size: clamp(2.875rem, 1.984rem + 3.85vw, 5.625rem);
  color: #f2cf51;
  font-family: var(--deja);
}
.head-sec2-box1 .text {
  font-size: clamp(1.125rem, 0.68rem + 1.93vw, 2.5rem);
}
@media (min-width: 768px) {
  .head-sec2-box1 .text {
    margin-left: 2rem;
  }
}

.head-sec2-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  gap: 3rem;
}
@media (min-width: 768px) {
  .head-sec2-box2 {
    gap: 4rem;
  }
}
.head-sec2-box2 .title2 {
  font-size: clamp(1.125rem, 0.923rem + 0.88vw, 1.75rem);
  text-align: center;
  width: 100%;
}
.head-sec2-box2 .icon-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .head-sec2-box2 .icon-box {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.head-sec2-box2 .icon-box .white-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(122, 109, 89, 0.3);
  width: 100%;
  padding: 2rem 0;
}
.head-sec2-box2 .icon-box .white-box ::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background-image: url("../images/head-sec2-deco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.head-sec2-box2 .icon-box .white-box p {
  font-size: clamp(0.875rem, 0.794rem + 0.35vw, 1.125rem);
  letter-spacing: 0.15em;
}

.head-sec3-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .head-sec3-box {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    margin-top: 6rem;
  }
}
.head-sec3-box .l {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  position: relative;
}
@media (min-width: 768px) {
  .head-sec3-box .l {
    width: 40%;
  }
}
.head-sec3-box .l .deco-leaf {
  width: 100px;
  position: absolute;
  bottom: -3%;
  left: -5%;
  z-index: 4;
}
@media (min-width: 768px) {
  .head-sec3-box .l .deco-leaf {
    left: -6%;
    width: 140px;
  }
}
@media (min-width: 992px) {
  .head-sec3-box .l .deco-leaf {
    width: 168px;
  }
}
.head-sec3-box .l .img-box {
  width: 100%;
  overflow: hidden;
}
.head-sec3-box .l .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.head-sec3-box .r {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .head-sec3-box .r {
    flex: 1;
  }
}
.head-sec3-box .r .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .head-sec3-box .r .box {
    gap: 2rem;
  }
}
.head-sec3-box .r .box .title {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  line-height: 2.2;
  text-align: center;
}
.head-sec3-box .r .box .deco {
  width: 20%;
  max-width: 160px;
}
.head-sec3-box .r .box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.4;
}
@media (min-width: 768px) {
  .head-sec3-box .r .box .text {
    margin-left: 2rem;
  }
}

.head-sec4-wrap {
  background-color: #fffde7;
  padding-block: 4rem;
  gap: 2rem;
}
.head-sec4-wrap .title-box {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #ffaa00;
  margin-bottom: 4rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .head-sec4-wrap .title-box {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 1.2rem;
    margin-inline: 0;
  }
}
.head-sec4-wrap .title-box .text1 {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  line-height: 1.5;
}
.head-sec4-wrap .title-box .text2 {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .head-sec4-wrap .title-box .text2 {
    margin-bottom: 0.6rem;
  }
}
.head-sec4-wrap .button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .head-sec4-wrap .button-box {
    flex-direction: row;
  }
}
.head-sec4-wrap .button-box .spa-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex: 1;
  width: 100%;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .head-sec4-wrap .button-box .spa-box {
    padding: 3rem;
  }
}
.head-sec4-wrap .button-box .spa-box .p1 {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  color: #fff !important;
}
.head-sec4-wrap .button-box .spa-box .p2 {
  font-size: clamp(1.5rem, 1.338rem + 0.7vw, 2rem);
  color: #fff !important;
}
.head-sec4-wrap .button-box .spa-box .arrow {
  width: 22px;
  transition: all 0.3s;
  -o-object-fit: contain;
     object-fit: contain;
}
.head-sec4-wrap .button-box .spa-box:hover .arrow {
  transform: translateY(6px);
}

.head-sec5-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 2rem 6rem;
  gap: 8rem;
  background-color: #fffde7;
}
@media (min-width: 768px) {
  .head-sec5-wrap {
    padding-block: 3rem 6rem;
  }
}

.head-sec5-box {
  width: 100%;
  position: relative;
}
.head-sec5-box .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.head-sec5-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.head-sec5-box .title-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem;
  background-color: #fff;
  border-radius: 100px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .head-sec5-box .title-box {
    padding: 2rem 6rem;
  }
}
.head-sec5-box .title-box p {
  font-size: clamp(0.75rem, 0.669rem + 0.35vw, 1rem);
  color: #f2a951;
  letter-spacing: 0.15em;
}
.head-sec5-box .title-box h2 {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
}

.head-sec5-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.head-sec5-box2 .inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
  width: 100%;
}
.head-sec5-box2 .inline .point {
  position: relative;
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  color: #00490b;
  letter-spacing: 0.2em;
}
.head-sec5-box2 .inline .point.spa02 {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.head-sec5-box2 .inline .point::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 20px;
  background-image: url("../images/con-sec5-deco.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.head-sec5-box2 .inline .title {
  color: #ff9000;
  font-size: clamp(1.375rem, 1.254rem + 0.53vw, 1.75rem);
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.head-sec5-box2 .inline .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.3;
}

.menu-sec2-wrap {
  position: relative;
  padding-block: 6rem;
  background-color: #fffde7;
  z-index: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .menu-sec2-wrap {
    padding-block: 8rem;
  }
}
.menu-sec2-wrap .bg-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.menu-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .menu-sec2-box {
    gap: 3rem;
  }
}
.menu-sec2-box .img-box {
  width: 90%;
  margin-left: auto;
  height: 220px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .menu-sec2-box .img-box {
    width: 80%;
    max-width: 820px;
    height: 300px;
  }
}
@media (min-width: 992px) {
  .menu-sec2-box .img-box {
    width: 70%;
    height: 452px;
  }
}
.menu-sec2-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-sec2-box .text-box {
  position: static;
  bottom: -10%;
  left: 0;
  background-color: #fff;
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 598px;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 992px) {
  .menu-sec2-box .text-box {
    position: absolute;
  }
}
.menu-sec2-box .text-box .title {
  font-size: clamp(1.25rem, 1.088rem + 0.7vw, 1.75rem);
  line-height: 1.8;
  color: #ffaa00;
}
.menu-sec2-box .text-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.4;
}

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

.menu-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.menu-sec3-box.sub {
  flex-direction: column;
}
@media (min-width: 768px) {
  .menu-sec3-box.sub {
    flex-direction: row;
    align-items: stretch;
  }
}
.menu-sec3-box .twin-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  flex: 1;
  gap: 1.4rem;
  width: 100%;
}
.menu-sec3-box .title-box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  width: 100%;
  line-height: 1.5;
}
.menu-sec3-box .title-box.sub2 {
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0;
}
.menu-sec3-box .title-box .title {
  font-size: clamp(1.5rem, 1.055rem + 1.93vw, 2.875rem);
}
.menu-sec3-box .title-box.sub2 .title {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
}
.menu-sec3-box .title-box .en {
  font-size: clamp(1rem, 0.717rem + 1.23vw, 1.875rem);
  color: #ffaa00;
  font-family: var(--deja);
  letter-spacing: 0.15em;
}
.menu-sec3-box .title-box.sub2 .en {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.menu-sec3-box .title-box img {
  width: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.menu-sec3-box .main-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .menu-sec3-box .main-box {
    flex-direction: row;
    align-items: start;
  }
}
.menu-sec3-box .main-box .l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem;
  gap: 1.4rem;
  background-color: #fff;
}
@media (min-width: 768px) {
  .menu-sec3-box .main-box .l {
    flex: 1;
  }
}
.menu-sec3-box .main-box .l .menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #c6c0b7;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 1.5;
  width: 100%;
  letter-spacing: 0.12em;
}
@media (min-width: 768px) {
  .menu-sec3-box .main-box .l .menu-list {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.4rem;
  }
}
.menu-sec3-box .main-box .l .menu-list .name {
  width: 100%;
}
@media (min-width: 768px) {
  .menu-sec3-box .main-box .l .menu-list .name {
    width: 70%;
  }
}
.menu-sec3-box .main-box .l .menu-list .price {
  width: 100%;
  display: flex;
  justify-content: end;
}
@media (min-width: 768px) {
  .menu-sec3-box .main-box .l .menu-list .price {
    width: 30%;
  }
}
.menu-sec3-box .main-box .r {
  width: 100%;
  aspect-ratio: 4/3;
  max-width: 470px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .menu-sec3-box .main-box .r {
    width: 40%;
    aspect-ratio: 1;
  }
}
.menu-sec3-box .main-box .r img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu-sec3-box2 {
  display: block;
  width: 100%;
}
.menu-sec3-box2 .main-box {
  position: relative;
  width: 100%;
  height: 200px;
  z-index: 0;
}
@media (min-width: 768px) {
  .menu-sec3-box2 .main-box {
    width: 70%;
    height: 314px;
  }
}
.menu-sec3-box2 .main-box.left {
  margin-left: auto;
}
.menu-sec3-box2 .main-box .bg-img2 {
  position: absolute;
  width: 260px;
  top: -200px;
  right: -200px;
  z-index: -1;
}
@media (min-width: 768px) {
  .menu-sec3-box2 .main-box .bg-img2 {
    width: 540px;
  }
}
.menu-sec3-box2 .main-box .deco-leaf {
  width: 100px;
  position: absolute;
  bottom: -3%;
  left: -5%;
  z-index: 4;
}
@media (min-width: 768px) {
  .menu-sec3-box2 .main-box .deco-leaf {
    left: -6%;
    width: 140px;
  }
}
@media (min-width: 992px) {
  .menu-sec3-box2 .main-box .deco-leaf {
    width: 168px;
  }
}
.menu-sec3-box2 .main-box .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.menu-sec3-box2 .main-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu-sec4-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  padding-block: 6rem;
  background: linear-gradient(180deg, #fffde7 38.69%, #fff2c5 100%);
}

.menu-sec4-box {
  display: block;
  height: 200px;
  width: 90%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .menu-sec4-box {
    width: 85%;
    height: 260px;
  }
}
.menu-sec4-box.left {
  margin-left: auto;
}
.menu-sec4-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu-sec4-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .menu-sec4-box2 {
    gap: 4rem;
  }
}
.menu-sec4-box2 .deco-flower {
  display: block;
  width: 21%;
  max-width: 230px;
  position: absolute;
  bottom: -30%;
  right: 2%;
}
@media (min-width: 768px) {
  .menu-sec4-box2 .deco-flower {
    bottom: -18%;
    right: 0%;
  }
}
@media (min-width: 992px) {
  .menu-sec4-box2 .deco-flower {
    bottom: -12%;
  }
}
.menu-sec4-box2 .title {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  line-height: 1.5;
}
.menu-sec4-box2 .text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 2.6;
}

.guide-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem;
  background-color: #fffde7;
  gap: 4rem;
}

.guide-sec2-box {
  display: block;
  position: relative;
  z-index: 0;
}
.guide-sec2-box .bg-img2 {
  position: absolute;
  width: 200px;
  bottom: -100px;
  left: -200px;
  z-index: -1;
}
@media (min-width: 768px) {
  .guide-sec2-box .bg-img2 {
    width: 400px;
  }
}
.guide-sec2-box .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #fff;
  padding: 4rem 2rem;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .guide-sec2-box .box {
    width: 80%;
    max-width: 830px;
    gap: 2rem;
  }
}
.guide-sec2-box .box .deco-flower {
  display: block;
  width: 28%;
  max-width: 230px;
  position: absolute;
  bottom: -6%;
  right: -8%;
  z-index: 2;
}
@media (min-width: 768px) {
  .guide-sec2-box .box .deco-flower {
    bottom: -18%;
    right: -10%;
  }
}
@media (min-width: 992px) {
  .guide-sec2-box .box .deco-flower {
    bottom: -12%;
    right: -5%;
  }
}
@media (min-width: 768px) {
  .guide-sec2-box .box {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .guide-sec2-box .box {
    padding: 4rem;
    gap: 3rem;
  }
}
.guide-sec2-box .box .title {
  width: 100%;
  font-size: clamp(1.375rem, 1.173rem + 0.88vw, 2rem);
  line-height: 2.2;
}
.guide-sec2-box .box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.5;
  width: 100%;
}

.guide-sec3-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  background-color: #fff;
  padding: 2.6rem 2rem;
  border-radius: 20px;
  position: relative;
  gap: 1.4rem;
  max-width: 800px;
  text-align: center;
}
@media (min-width: 768px) {
  .guide-sec3-box {
    padding: 3rem 4rem;
    text-align: start;
  }
}
.guide-sec3-box .deco-no {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10%;
  width: 50px;
}
@media (min-width: 768px) {
  .guide-sec3-box .deco-no {
    width: 90px;
    left: -20px;
    top: -35px;
    transform: translateX(0);
  }
}
.guide-sec3-box .title {
  font-size: clamp(1.25rem, 1.088rem + 0.7vw, 1.75rem);
  color: #a26c0e;
  width: 100%;
}
.guide-sec3-box .red-box {
  display: flex;
  background-color: #ff6a00;
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  padding: 0.5rem;
  border-radius: 10px;
  color: #fff;
}
.guide-sec3-box .text {
  font-size: clamp(0.875rem, 0.794rem + 0.35vw, 1.125rem);
  width: 100%;
  line-height: 2.2;
}

.guide-sec3-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 1rem 6rem;
  background-color: #fffde7;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.guide-sec3-wrap .bg-img {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.guide-sec3-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.guide-sec3-box2 .text {
  text-align: center;
  font-size: clamp(0.875rem, 0.794rem + 0.35vw, 1.125rem);
  line-height: 2.5;
}
.guide-sec3-box2 .phone-button {
  width: 100%;
  max-width: 260px;
}
@media (min-width: 768px) {
  .guide-sec3-box2 .phone-button {
    max-width: 400px;
  }
}

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

.staff-sec2-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.8rem;
}
.staff-sec2-box::before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 70px;
  height: 125px;
  background-image: url("../images/staff-sec2-deco-l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .staff-sec2-box::before {
    width: 170px;
    height: 225px;
    bottom: -90px;
  }
}
.staff-sec2-box::after {
  content: "";
  position: absolute;
  top: -70px;
  right: 0;
  width: 70px;
  height: 125px;
  background-image: url("../images/staff-sec2-deco-r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .staff-sec2-box::after {
    width: 170px;
    height: 225px;
    top: -90px;
  }
}
.staff-sec2-box .title {
  width: 100%;
  font-size: clamp(1.375rem, 1.173rem + 0.88vw, 2rem);
  line-height: 2.2;
}
.staff-sec2-box .text {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  line-height: 2.4;
  width: 100%;
}

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

.staff-sec3-line {
  width: 100%;
  height: 50px;
  margin-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .staff-sec3-line {
    margin-bottom: 6rem;
  }
}
.staff-sec3-line img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.staff-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .staff-sec3-box {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 1200px) {
  .staff-sec3-box {
    padding-inline: 4rem;
  }
}
.staff-sec3-box .l {
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
  max-width: 400px;
}
@media (min-width: 768px) {
  .staff-sec3-box .l {
    height: auto;
    width: auto;
  }
}
.staff-sec3-box .l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff-sec3-box .r {
  width: 100%;
  background-color: #fff;
  position: relative;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .staff-sec3-box .r {
    padding: 2.4rem;
  }
}
@media (min-width: 992px) {
  .staff-sec3-box .r {
    flex: 1;
  }
}
.staff-sec3-box .r .deco-leaf {
  width: 90px;
  position: absolute;
  bottom: -10%;
  right: -10%;
  z-index: 4;
}
@media (min-width: 768px) {
  .staff-sec3-box .r .deco-leaf {
    right: -6%;
    width: 100px;
  }
}
@media (min-width: 992px) {
  .staff-sec3-box .r .deco-leaf {
    width: 120px;
  }
}
.staff-sec3-box .r .text-set {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}
@media (min-width: 768px) {
  .staff-sec3-box .r .text-set {
    gap: 1.2rem;
  }
}
.staff-sec3-box .r .text-set .name1 {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.4rem;
  letter-spacing: 0.15em;
}
.staff-sec3-box .r .text-set .name1 p {
  color: #ffaa00;
  font-size: clamp(1rem, 0.717rem + 1.23vw, 1.875rem);
  font-family: var(--deja);
  font-weight: 600;
}
.staff-sec3-box .r .text-set .name1 img {
  width: 40px;
}
.staff-sec3-box .r .text-set .name2 {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  margin-bottom: 1rem;
}
.staff-sec3-box .r .text-set .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.5;
  width: 100%;
}

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

.faq-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .faq-sec2-box {
    flex-direction: row;
    gap: 1rem;
  }
}
.faq-sec2-box .l {
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .faq-sec2-box .l {
    width: 45%;
  }
}
.faq-sec2-box .l .deco-leaf {
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: 90px;
}
@media (min-width: 768px) {
  .faq-sec2-box .l .deco-leaf {
    width: 148px;
  }
}
.faq-sec2-box .l .img-box {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.faq-sec2-box .l .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.faq-sec2-box .r {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .faq-sec2-box .r {
    flex: 1;
    padding-inline: 2rem;
  }
}
.faq-sec2-box .r .text-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2.4rem;
  max-width: 470px;
}
.faq-sec2-box .r .text-box .title {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  line-height: 2;
}
.faq-sec2-box .r .text-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.4;
}

.faq-sec3-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 2rem 4rem;
  background-color: #fffde7;
  position: relative;
  z-index: 0;
}
.faq-sec3-wrap .bg-img2 {
  position: absolute;
  width: 240px;
  bottom: -90px;
  left: -90px;
  z-index: -1;
}
@media (min-width: 768px) {
  .faq-sec3-wrap .bg-img2 {
    width: 440px;
  }
}

.faq-sec3-box {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #fff;
  border-radius: 20px;
  max-width: 998px;
  gap: 2rem;
}
@media (min-width: 768px) {
  .faq-sec3-box {
    padding: 4rem;
    gap: 2.6rem;
    width: 90%;
  }
}
.faq-sec3-box .main-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #d1d1d1;
}
@media (min-width: 768px) {
  .faq-sec3-box .main-box {
    padding-bottom: 2.6rem;
    gap: 1.4rem;
  }
}
.faq-sec3-box .main-box .qa-box {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .faq-sec3-box .main-box .qa-box {
    gap: 1.4rem;
  }
}
.faq-sec3-box .main-box .qa-box img {
  width: 26px;
  height: 26px;
  margin-top: 0.2rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .faq-sec3-box .main-box .qa-box img {
    width: 40px;
    height: 40px;
    margin-top: 0;
  }
}
.faq-sec3-box .main-box .qa-box .q-text {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
@media (min-width: 768px) {
  .faq-sec3-box .main-box .qa-box .q-text {
    margin-top: 0.2rem;
    flex: 1;
  }
}
.faq-sec3-box .main-box .qa-box .a-text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.4;
}
@media (min-width: 768px) {
  .faq-sec3-box .main-box .qa-box .a-text {
    margin-top: 0.2rem;
    flex: 1;
  }
}

.store-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem 2rem;
  background-color: #fffde7;
  gap: 2rem;
}
@media (min-width: 768px) {
  .store-sec2-wrap {
    gap: 0;
  }
}

.store-sec2-box {
  width: 100%;
  display: flex;
  align-items: center;
}
.store-sec2-box .img-box {
  width: 90%;
  max-width: 982px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .store-sec2-box .img-box {
    width: 80%;
    margin-right: 10%;
  }
}

.store-sec2-box2 {
  display: block;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .store-sec2-box2 {
    transform: translateY(-70px);
  }
}
.store-sec2-box2 .bg-img2 {
  position: absolute;
  width: 200px;
  bottom: -100px;
  left: -200px;
  z-index: -1;
}
@media (min-width: 768px) {
  .store-sec2-box2 .bg-img2 {
    width: 400px;
  }
}
.store-sec2-box2 .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #fff;
  padding: 4rem 2rem;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .store-sec2-box2 .box {
    width: 90%;
    max-width: 830px;
    gap: 1.2rem;
    padding: 4rem;
  }
}
@media (min-width: 992px) {
  .store-sec2-box2 .box {
    width: 80%;
  }
}
.store-sec2-box2 .box .deco-flower {
  display: block;
  width: 28%;
  max-width: 230px;
  position: absolute;
  bottom: -6%;
  right: -8%;
  z-index: 2;
}
@media (min-width: 768px) {
  .store-sec2-box2 .box .deco-flower {
    bottom: -18%;
    right: -10%;
  }
}
@media (min-width: 992px) {
  .store-sec2-box2 .box .deco-flower {
    bottom: -12%;
    right: -5%;
  }
}
.store-sec2-box2 .box .title {
  width: 100%;
  font-size: clamp(1.375rem, 1.173rem + 0.88vw, 2rem);
  line-height: 2.2;
  margin-bottom: 0.5rem;
}
.store-sec2-box2 .box .text-set {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.8rem;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 1.8;
  text-align: start;
  width: 100%;
}
@media (min-width: 768px) {
  .store-sec2-box2 .box .text-set {
    flex-direction: row;
    justify-content: start;
    gap: 0;
  }
}
.store-sec2-box2 .box .text-set .text1 {
  width: 40%;
}
@media (min-width: 768px) {
  .store-sec2-box2 .box .text-set .text1 {
    width: 25%;
  }
}
.store-sec2-box2 .box .text-set .text2 {
  width: 100%;
  padding-left: 1rem;
  border-left: 1px solid #000000;
}
@media (min-width: 768px) {
  .store-sec2-box2 .box .text-set .text2 {
    flex: 1;
    padding-left: 2.4rem;
  }
}

.store-sec2-box3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .store-sec2-box3 {
    gap: 1.6rem;
  }
}
.store-sec2-box3 .en {
  font-size: clamp(1rem, 0.717rem + 1.23vw, 1.875rem);
  font-family: var(--deja);
  color: #ffaa00;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  width: 100%;
}
.store-sec2-box3 .en img {
  width: 20px;
}
@media (min-width: 768px) {
  .store-sec2-box3 .en img {
    width: 48px;
  }
}
.store-sec2-box3 .title {
  font-size: clamp(1.5rem, 1.055rem + 1.93vw, 2.875rem);
  width: 100%;
}
.store-sec2-box3 .text {
  width: 100%;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 2;
}
.store-sec2-box3 .map {
  width: 100%;
  height: 400px;
}

.news-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem;
  gap: 4rem;
  background-color: #fffde7;
}

.news-sec2-wrap2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 9rem 8rem;
  gap: 1rem;
  background-color: #fffde7;
}

.news-text-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.6;
}

.news-main-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 680px;
}
.news-main-box .webgene-blog .webgene-item .news-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.4rem;
  border-bottom: 1px solid #503500;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .news-main-box .webgene-blog .webgene-item .news-list {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 3rem;
    padding-bottom: 2.6rem;
    margin-bottom: 2.6rem;
  }
}
.news-main-box .webgene-blog .webgene-item .news-list .img-box {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.news-main-box .webgene-blog .webgene-item .news-list .img-box img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.news-main-box .webgene-blog .webgene-item .news-list .day {
  color: #ff6600;
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  width: 30%;
}
.news-main-box .webgene-blog .webgene-item .news-list .title {
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
}

.news-sec2-wrap2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 10rem 8rem;
}

.news-main-box2 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 740px;
}
.news-main-box2 .webgene-blog .webgene-item .details-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
.news-main-box2 .webgene-blog .webgene-item .details-box .category {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  color: #ffaa00;
  width: 100%;
}
.news-main-box2 .webgene-blog .webgene-item .details-box .day {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  letter-spacing: 0.15em;
  width: 100%;
}
.news-main-box2 .webgene-blog .webgene-item .details-box .title {
  font-size: clamp(1.125rem, 0.923rem + 0.88vw, 1.75rem);
  margin-top: 2rem;
  width: 100%;
}
.news-main-box2 .webgene-blog .webgene-item .details-box .img-box {
  width: 100%;
  overflow: hidden;
  margin-block: 2rem;
}
.news-main-box2 .webgene-blog .webgene-item .details-box .img-box img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.news-main-box2 .webgene-blog .webgene-item .details-box .text {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  line-height: 2.4;
  margin-bottom: 3rem;
  width: 100%;
}

.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);
}

.webgene-blog .webgene-item .news-index {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.8rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid #dab600;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .webgene-blog .webgene-item .news-index {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.webgene-blog .webgene-item .news-index p {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
}
.webgene-blog .webgene-item .news-index h3 {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}

.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;
}

/* ==========================
Loading
========================== */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.loading-anim.edit {
  opacity: 0;
  display: none;
}

.loading-logo {
  width: 90vw;
  max-width: 750px;
  opacity: 0;
}
.loading-logo.edit {
  opacity: 1;
}