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

/* Set default styles for html */
html {
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  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;
  line-height: 30px;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  color: #453c35;
}
@media (min-width: 768px) {
  body {
    line-height: 40px;
  }
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

strong {
  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;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -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;
  }
}
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--main);
}

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

:root {
  --beige: #a8a085;
  --brown: #453c35;
  --water: #e5e3da;
  --f-ja: "Shippori Mincho", serif;
  --f-en: toppan-bunkyu-midashi-min-st, serif;
  --f-no: Abril Fatface, serif;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}

body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 30px;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  color: #453c35;
}
@media (min-width: 768px) {
  body {
    line-height: 40px;
  }
}

.text {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .text {
    line-height: 1.8;
  }
}

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

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

.js-typein {
  opacity: 0;
}

.js-typein[data-typein-ready="1"] {
  opacity: 1;
}

.typein-char {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.typein-char.is-show {
  opacity: 1;
}

.js-tick {
  display: inline-flex;
  white-space: nowrap;
}

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

@-webkit-keyframes loopText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}
@keyframes loopText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}
.info-pop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
}

.l-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  transition: all 0.3s ease;
  padding: 27px 20px 20px;
}
@media (min-width: 768px) {
  .l-header {
    padding: 30px 30px;
  }
}
@media (min-width: 1400px) {
  .l-header {
    padding: 25px 40px;
  }
}
.l-header__inner {
  font-family: "Toppan Bunkyu Midashi Mincho", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  color: #a8a085;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  width: clamp(180px, 17vw, 253px);
  min-width: clamp(180px, 17vw, 253px);
  margin-right: 30px;
}
.l-header__logo > a {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 30px;
}
@media (min-width: 768px) {
  .l-header__logo > a {
    min-height: 34px;
  }
}
.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  height: 100%;
  width: 100%;
  padding: 150px 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: all 0.5s ease;
}
.l-header__nav::-webkit-scrollbar {
  width: 10px;
}
.l-header__nav::-webkit-scrollbar-track {
  background-color: transparent;
}
.l-header__nav::-webkit-scrollbar-thumb {
  border-radius: 100px;
}
@media (min-width: 576px) {
  .l-header__nav {
    width: 500px;
  }
}
@media (min-width: 1400px) {
  .l-header__nav {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    margin-left: auto;
    background-color: transparent;
    width: 100%;
    height: auto;
    padding: 0;
    overflow: visible;
    transform: none;
    flex: 1;
  }
}
.l-header__nav--item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 27px;
}
.l-header__nav--item__link:hover {
  color: white !important;
}
@media (min-width: 1400px) {
  .l-header__nav--item__link:hover {
    color: var(--brown) !important;
  }
}
.l-header__nav--item__link > p {
  display: block;
  margin-inline: auto;
  text-align: center;
}
.l-header__nav--item--has-sub {
  pointer-events: none;
  border: solid 1px var(--bg);
  padding-block: 30px;
}
@media (min-width: 1400px) {
  .l-header__nav--item--has-sub {
    position: relative;
    cursor: pointer;
    pointer-events: all;
    border: none;
    padding-block: 0;
  }
}
.l-header__nav--item--has-sub::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
}
.l-header__nav--item--has-sub:hover .l-header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-header__nav--item--has-sub .l-header__nav--item__link {
  pointer-events: none;
}
.l-header__nav--item--has-sub .l-header__nav--item__link:hover {
  color: #a8a085;
}
.l-header__nav--item--has-sub .l-header__nav--item__link > p {
  position: relative;
  font-size: 1.125rem;
  color: var(--wh2) !important;
}
@media (min-width: 1400px) {
  .l-header__nav--item--has-sub .l-header__nav--item__link > p {
    font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
    color: var(--bg);
    color: #a8a085 !important;
  }
}
.l-header__nav--item--has-sub .l-header__nav--item__link > p:hover {
  color: var(--wh2) !important;
}
@media (min-width: 1400px) {
  .l-header__nav--item--has-sub .l-header__nav--item__link > p:hover {
    color: #a8a085 !important;
  }
}
.l-header__nav--item--has-sub .l-header__nav--item__link > p::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: -32px;
  width: 1px;
  height: 20px;
  background-color: #a8a085;
}
@media (min-width: 1400px) {
  .l-header__nav--item--has-sub .l-header__nav--item__link > p::after {
    display: none;
  }
}
.l-header__nav.open {
  transform: translateX(0);
  background-color: #453c35;
}
@media (min-width: 1400px) {
  .l-header__nav--item--has-sub:hover .l-header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.l-header__dropdown {
  max-width: 300px;
  padding: 20px 20px 0;
  pointer-events: all;
}
@media (min-width: 1400px) {
  .l-header__dropdown {
    padding: 20px;
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    max-width: 100%;
    min-width: 280px;
    background-color: rgba(69, 60, 53, 0.9);
    pointer-events: none;
    opacity: 0;
    z-index: 50;
    transition: all 0.3s ease;
  }
}
.l-header__dropdown-item {
  border-bottom: 1px solid var(--beige);
  padding: 15px 0;
  transition: all 0.3s ease;
}
@media (min-width: 1400px) {
  .l-header__dropdown-item {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
}
@media (min-width: 1400px) {
  .l-header__dropdown-item:first-child {
    padding-top: 0;
  }
}
.l-header__dropdown-item:nth-child(1) {
  transition-delay: 0s;
}
.l-header__dropdown-item:nth-child(2) {
  transition-delay: 0.2s;
}
.l-header__dropdown-item:nth-child(3) {
  transition-delay: 0.4s;
}
.l-header__dropdown-item:last-child {
  border-bottom: none;
}
@media (min-width: 1400px) {
  .l-header__dropdown-item:last-child {
    border-bottom: solid 1px var(--bg);
  }
}
.l-header__dropdown-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-ja);
  font-size: 16px;
  color: var(--beige);
}
.l-header__dropdown-item > a:hover {
  color: white;
}
.l-header__dropdown-text {
  text-align: center;
  width: 100%;
  flex: 1;
}
@media (min-width: 1400px) {
  .l-header__dropdown-text {
    text-align: left;
  }
}
@media (min-width: 1400px) {
  .l-header__nav--item--has-sub:hover .l-header__dropdown-item {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-header__dropdown-arrow {
  display: none;
}
@media (min-width: 1400px) {
  .l-header__dropdown-arrow {
    display: block;
    width: 25px;
  }
}
.l-header__dropdown-hbl {
  line-height: 140%;
}
.l-header .reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 5px 25px;
  border: 1px solid var(--beige);
  background-color: transparent;
  color: var(--beige);
  border-radius: 40px;
}
.l-header .reserve-button img {
  width: 25px;
  height: 6px;
  transition: all 0.3s ease;
}
.l-header .reserve-button:hover img {
  transition: all 0.3s ease;
  transform: translateX(8px);
}
.l-header .hamburger-menu {
  position: fixed;
  z-index: 9999;
  display: block;
}
@media (min-width: 1400px) {
  .l-header .hamburger-menu {
    display: none;
  }
}
.l-header .back-shadow {
  position: fixed;
  inset: 0;
  z-index: 997;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-out;
}
.l-header.scrolled-color {
  transition: all 0.3s ease;
  background: #ffffff;
  border-bottom: solid 1px #a8a085;
}
.l-header.scrolled-color .l-header__nav--item__link:hover {
  color: #453c35;
  transition: all 0.3s ease;
}

.js_action_nav .back-shadow {
  visibility: visible;
  opacity: 1;
}

.hamburger-menu {
  display: flex;
  right: 20px;
  top: 27px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 40px;
  height: 30px;
}
@media (min-width: 576px) {
  .hamburger-menu {
    width: 50px;
    height: 34px;
  }
}
@media (min-width: 768px) {
  .hamburger-menu {
    right: 30px;
    top: 30px;
  }
}
@media (min-width: 1400px) {
  .hamburger-menu {
    display: none;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  width: 40px;
  height: 30px;
}
@media (min-width: 576px) {
  .btn-trigger {
    width: 50px;
    height: 34px;
  }
}
.btn-trigger p {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--beige);
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger p:nth-of-type(1) {
  top: 0;
}
.btn-trigger p:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn-trigger p:nth-of-type(3) {
  bottom: 0;
}

#hum-btn .btn-trigger.is-show p:nth-of-type(1) {
  transform: translateY(13.5px) rotate(-45deg);
}
@media (min-width: 576px) {
  #hum-btn .btn-trigger.is-show p:nth-of-type(1) {
    transform: translateY(15px) rotate(-45deg);
  }
}
#hum-btn .btn-trigger.is-show p:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-btn05-bar02 0.8s forwards;
          animation: active-btn05-bar02 0.8s forwards;
}
#hum-btn .btn-trigger.is-show p:nth-of-type(3) {
  transform: translateY(-13.5px) rotate(45deg);
}
@media (min-width: 576px) {
  #hum-btn .btn-trigger.is-show p:nth-of-type(3) {
    transform: translateY(-15px) rotate(45deg);
  }
}

@-webkit-keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
.footer {
  background-color: #615953;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.footer__logo-box {
  border-bottom: 1px solid var(--beige);
  display: flex;
  justify-content: center;
}
.footer__logo-img {
  display: flex;
  width: 100%;
  justify-content: center;
}
.footer__h3-en {
  font-family: var(--f-en);
  font-size: clamp(1.563rem, 1.34rem + 0.96vw, 2.25rem);
}
.footer__h3-ja {
  font-family: var(--f-ja);
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
.footer__h4 {
  font-family: var(--f-en);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.footer__p {
  font-family: var(--f-ja);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.footer__igbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 10px 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.footer__info-bg-img {
  width: 100%;
  height: 100vh;
}
.footer__ig-icon {
  width: 26px;
  height: auto;
}
.footer__ig-arrow {
  width: 20px;
  height: auto;
}
.footer__info-box-1 {
  border-right: 1px solid var(--beige);
}
@media (max-width: 768px) {
  .footer__info-box-1 {
    border-bottom: 1px solid var(--beige);
  }
}
.footer__copyright {
  color: var(--beige);
  font-family: var(--f-en);
  font-size: 14px;
  justify-content: center;
  border-top: 1px solid var(--beige);
  flex: 1;
}

.top__fv-logo {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(15.625rem, 11.98rem + 15.76vw, 26.875rem);
  width: 100%;
}

.top__fv-logo-img {
  width: 40%;
  height: auto;
}
@media (max-width: 768px) {
  .top__fv-logo-img {
    width: 60%;
  }
}

.top__fv-catch {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: var(--f-ja);
}

.top__h1 {
  font-size: clamp(1.438rem, 1.174rem + 1.14vw, 2.25rem);
  color: #fff;
}
.top__h1 strong {
  display: inline-block;
}

.top__p {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  color: #fff;
  margin-bottom: clamp(9.375rem, 6.338rem + 13.13vw, 18.75rem);
}

/* sec1 */
.top {
  font-family: var(--f-ja);
  background-color: #fff;
}
.top__sec1 {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.top__sec1-bg-text {
  position: absolute;
  top: 13%;
  left: 0%;
  font-size: clamp(9.375rem, 7.755rem + 7.01vw, 14.375rem);
  font-family: var(--f-en);
  color: rgba(168, 160, 133, 0.3);
  font-weight: 300;
  white-space: nowrap;
  -webkit-animation: slide-text 20s linear infinite;
  animation: slide-text 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 768px) {
  .top__sec1-bg-text {
    top: 3%;
    left: 0%;
    z-index: 2;
  }
}
.top__sec1-left {
  position: relative;
  display: inline-block;
}
.top__sec1-left::after {
  content: "eyebrow";
  position: absolute;
  bottom: 10%;
  left: 135%;
  transform: translateX(-50%);
  font-size: 8vw;
  font-family: var(--f-en);
  color: rgba(168, 160, 133, 0.3);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .top__sec1-left::after {
    bottom: 0%;
    left: 40%;
    font-size: clamp(5rem, 1.558rem + 14.89vw, 15.625rem);
  }
}
@media (max-width: 768px) {
  .top__sec1-left {
    width: 120%;
  }
}
.top__sec1-right-img {
  width: 100%;
  margin-left: auto;
  display: block;
}
.top__sec1-left-img {
  width: clamp(21.875rem, 15.8rem + 26.27vw, 40.625rem);
  display: block;
}
.top__sec1-box-row {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .top__sec1-box-row {
    flex-direction: row;
  }
}
.top__sec1-h2 {
  font-family: var(--f-ja);
  line-height: 160%;
  font-size: clamp(1.75rem, 1.507rem + 1.05vw, 2.5rem);
  margin-top: clamp(6.25rem, 1.188rem + 21.89vw, 21.875rem);
}
@media (max-width: 768px) {
  .top__sec1-h2 {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .top__sec1-h2 {
    margin-left: clamp(1.875rem, 1.47rem + 1.75vw, 3.125rem);
  }
}
.top__sec1-text-p {
  text-align: center;
  font-family: var(--f-ja);
  line-height: 250%;
}
@media (max-width: 768px) {
  .top__sec1-text-p {
    display: none;
  }
}
.top__sec1-text-p-2 {
  text-align: left;
  font-family: var(--f-ja);
  line-height: 250%;
  padding: 10px;
}
@media (min-width: 768px) {
  .top__sec1-text-p-2 {
    display: none;
  }
}
@media (min-width: 768px) {
  .top .container {
    flex-direction: row;
  }
}

/* sec2 */
.top__sec2 {
  display: flex;
  flex-direction: row;
  background-color: var(--brown);
  align-items: stretch;
}
.top__sec2-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media (max-width: 992px) {
  .top__sec2-row {
    flex-direction: column;
  }
}
.top__sec2-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.top__sec2-right {
  padding: clamp(1.875rem, 0.458rem + 6.13vw, 6.25rem);
  flex-basis: 50%;
}
@media (max-width: 992px) {
  .top__sec2-right {
    flex-basis: 100%;
  }
}
.top__sec2-left {
  flex-basis: 50%;
}
@media (max-width: 992px) {
  .top__sec2-left {
    flex-basis: 100%;
  }
}
.top__sec2-h2 {
  color: var(--beige);
  font-family: var(--f-en);
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
  margin-top: clamp(3.125rem, 1.91rem + 5.25vw, 6.875rem);
  margin-bottom: clamp(1.875rem, 0.66rem + 5.25vw, 5.625rem);
}
@media (max-width: 992px) {
  .top__sec2-h2 {
    text-align: center;
  }
}
.top__sec2-h3-en {
  color: #fff;
  font-family: var(--f-ja);
  font-size: clamp(1.25rem, 0.845rem + 1.75vw, 2.5rem);
}
@media (max-width: 992px) {
  .top__sec2-h3-en {
    text-align: center;
  }
}
.top__sec2-h3-ja {
  color: #fff;
  font-family: var(--f-ja);
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
@media (max-width: 992px) {
  .top__sec2-h3-ja {
    text-align: center;
  }
}
.top__sec2-text {
  font-family: var(--f-ja);
  color: #fff;
}
@media (max-width: 992px) {
  .top__sec2-text {
    text-align: center;
  }
}

.link-btn-2 {
  display: flex;
  flex: 1;
  margin-bottom: clamp(3.75rem, 2.535rem + 5.25vw, 7.5rem);
}
@media (min-width: 992px) {
  .link-btn-2 {
    justify-content: flex-start !important;
  }
}

/* sec3 */
.top__sec3 {
  display: flex;
  background-color: #fff;
}
.top__sec3-title {
  margin-top: clamp(3.125rem, 1.505rem + 7.01vw, 8.125rem);
}
.top__sec3-text-box {
  display: block;
  background-color: var(--beige);
  padding-top: clamp(3.125rem, 1.505rem + 7.01vw, 8.125rem);
  padding-right: clamp(1.875rem, 0.761rem + 4.82vw, 5.313rem);
  padding-bottom: clamp(2.5rem, 1.285rem + 5.25vw, 6.25rem);
  padding-left: clamp(1.875rem, 0.761rem + 4.82vw, 5.313rem);
  width: clamp(21.875rem, 12.175rem + 41.94vw, 51.813rem);
  margin-top: -80px;
}
@media (max-width: 992px) {
  .top__sec3-text-box {
    margin: 0 auto;
  }
}
.top__sec3-h3-en {
  display: flex;
  font-family: var(--f-en);
  color: var(--beige);
  font-size: clamp(1.875rem, 1.187rem + 2.98vw, 4rem);
  justify-content: center;
}
.top__sec3-h3-ja {
  display: flex;
  font-family: var(--f-ja);
  color: var(--brown);
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  justify-content: center;
  margin-bottom: clamp(3.125rem, 2.372rem + 3.44vw, 5.625rem);
}
.top__sec3-h4 {
  font-family: var(--f-ja);
  color: #fff;
  font-size: clamp(1.438rem, 1.093rem + 1.49vw, 2.5rem);
  margin-bottom: clamp(1.25rem, 0.845rem + 1.75vw, 2.5rem);
}
.top__sec3-text {
  font-family: var(--f-ja);
  color: #fff;
  margin-bottom: clamp(1.25rem, 0.845rem + 1.75vw, 2.5rem);
}
.top__sec3-hbl-img {
  display: block;
  width: clamp(21.875rem, 12.175rem + 41.94vw, 51.813rem);
  margin-left: auto;
}
@media (max-width: 992px) {
  .top__sec3-hbl-img {
    margin: 0 auto;
  }
}
.top__sec3-treat-box {
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-top: clamp(3.75rem, 2.62rem + 5.16vw, 7.5rem);
}
@media (max-width: 992px) {
  .top__sec3-treat-box {
    margin-top: clamp(3.125rem, 0.74rem + 10.9vw, 7.5rem);
  }
}
@media (min-width: 992px) {
  .top__sec3-treat-box {
    padding-bottom: 450px;
  }
}
@media (min-width: 1200px) {
  .top__sec3-treat-box {
    padding-bottom: 120px;
    flex-direction: row;
  }
}
.top__sec3-treat-img {
  display: block;
  width: clamp(20.625rem, 4.17rem + 75.22vw, 31.25rem);
  z-index: 0;
}
@media (max-width: 992px) {
  .top__sec3-treat-img {
    width: clamp(21.875rem, 12.175rem + 41.94vw, 51.813rem);
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .top__sec3-treat-img {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .top__sec3-treat-img {
    width: 50%;
  }
}
.top__sec3-text-box-2 {
  display: block;
  position: absolute;
  z-index: -1;
  background-color: var(--beige);
  padding: 40px 20px;
  bottom: 0;
  right: 0;
}
@media (max-width: 992px) {
  .top__sec3-text-box-2 {
    width: clamp(21.875rem, 12.175rem + 41.94vw, 51.813rem);
    margin: 0 auto;
    position: static;
  }
}
@media (min-width: 576px) {
  .top__sec3-text-box-2 {
    padding: 60px 70px;
  }
}
@media (min-width: 992px) {
  .top__sec3-text-box-2 {
    padding: 130px 70px 60px;
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .top__sec3-text-box-2 {
    padding: 60px 80px 60px 140px;
    width: clamp(40.625rem, 4.567rem + 48.08vw, 50rem);
  }
}
@media (min-width: 1200px) {
  .top__sec3-text-wrap {
    padding-left: 80px;
  }
}
.top__sec3-menu-box {
  display: flex;
}
@media (min-width: 992px) {
  .top__sec3-menu-box {
    flex-direction: row-reverse;
  }
}
.top__sec3-text-box-3 {
  left: 30px;
}
@media (min-width: 1200px) {
  .top__sec3-text-box-3 {
    padding: 60px 140px 60px 80px;
  }
}
@media (min-width: 1200px) {
  .top__sec3-text-wrap-2 {
    padding-right: 80px;
  }
}

.link-btn-box-3 {
  display: flex;
  justify-content: flex-start !important;
}

.link-btn-3 {
  display: flex;
  border: 1px solid #fff !important;
}
.link-btn-3-p {
  color: #fff !important;
  margin-right: 40px;
}

/*sec4*/
.top__sec4 {
  margin-top: clamp(4.688rem, 3.276rem + 6.45vw, 9.375rem);
  margin-bottom: 75px;
}

/*sec5*/
.top__sec5 {
  display: flex;
  align-items: stretch;
  background-color: var(--brown);
}
@media (max-width: 768px) {
  .top__sec5 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.top__sec5-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 650px;
  padding-block: clamp(80px, 10vw, 100px);
}
.top__sec5-text-box {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(5rem, 3.682rem + 6.02vw, 9.375rem);
  margin-left: 75px;
  margin-right: 75px;
}
.top__sec5-h2 {
  font-family: var(--f-en);
  color: var(--beige);
  text-align: center;
  font-size: clamp(1.563rem, 1.13rem + 1.98vw, 3rem);
  margin-bottom: clamp(3.125rem, 1.807rem + 6.02vw, 7.5rem);
}
.top__sec5-text {
  font-family: var(--f-ja);
  color: #fff;
  text-align: center;
  line-height: 210%;
}
@media (max-width: 768px) {
  .top__sec5-text {
    width: 100%;
  }
}
.top__sec5-img {
  flex: 1 1 50%;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top__sec5-img {
    display: none;
  }
}
.top__sec5-img-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.p-text {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}

.link-btn-box {
  display: flex;
  justify-content: center;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  border: 1px solid var(--beige);
  background-color: transparent;
  color: var(--beige);
  border-radius: 40px;
}
.link-btn__p {
  color: var(--beige);
  font-family: var(--f-en);
}
.link-btn__img {
  width: 25px;
  transition: all 0.3s ease;
}
.link-btn:hover .link-btn__img {
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.news__index-box {
  background-color: var(--water);
}
.news .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .news .webgene-blog {
    gap: 40px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .news .webgene-blog {
    gap: 60px;
  }
}
@media (min-width: 1200px) {
  .news .webgene-blog {
    gap: 100px;
  }
}
.news .webgene-item {
  width: 100%;
  padding-block: 15px;
}
.news .webgene-item:first-child {
  padding-top: 0;
}
.news .webgene-pagination {
  width: 100%;
}

.page-newsdetail__sec .container {
  max-width: 800px;
}

.page-news .webgene-pagination ul,
.page-newsdetail .webgene-pagination ul {
  max-width: 660px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media (min-width: 576px) {
  .page-news .webgene-pagination ul,
.page-newsdetail .webgene-pagination ul {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.page-news .webgene-pagination ul li,
.page-newsdetail .webgene-pagination ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-news .webgene-pagination ul .prev a,
.page-news .webgene-pagination ul .next a,
.page-newsdetail .webgene-pagination ul .prev a,
.page-newsdetail .webgene-pagination ul .next a {
  display: flex;
  flex-direction: column-reverse;
}
.page-news .webgene-pagination ul .prev a::before,
.page-news .webgene-pagination ul .next a::before,
.page-newsdetail .webgene-pagination ul .prev a::before,
.page-newsdetail .webgene-pagination ul .next a::before {
  line-height: 1;
  margin-top: 6px;
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  .page-news .webgene-pagination ul .prev a::before,
.page-news .webgene-pagination ul .next a::before,
.page-newsdetail .webgene-pagination ul .prev a::before,
.page-newsdetail .webgene-pagination ul .next a::before {
    font-size: 0.875rem;
  }
}
.page-news .webgene-pagination ul .prev a::before,
.page-newsdetail .webgene-pagination ul .prev a::before {
  content: "PREV";
  margin-left: auto;
}
.page-news .webgene-pagination ul .next a::before,
.page-newsdetail .webgene-pagination ul .next a::before {
  content: "NEXT";
}
@media (min-width: 576px) {
  .page-news .webgene-pagination ul .next,
.page-newsdetail .webgene-pagination ul .next {
    margin-left: auto;
  }
}
.page-news .webgene-pagination ul .back,
.page-newsdetail .webgene-pagination ul .back {
  width: 100%;
}
.page-news .webgene-pagination ul .back a,
.page-newsdetail .webgene-pagination ul .back a {
  text-align: center;
  justify-content: center;
  margin-inline: auto;
}