@charset "UTF-8";
:root {
  --notosans: "Noto Sans jP", sans-serif;
  --zengothic: "Zen Kaku Gothic New", sans-serif;
  --bizgothic: "BIZ UDGothic", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --zenold: "Zen Old Mincho", serif;
  --sawarabi: "Sawarabi Mincho", serif;
  --sippori: "Shippori Mincho", serif;
  --kiwi: "Kiwi Maru", "Zen Maru Gothic", "Kosugi Maru", serif;
  --zenmaru: "Zen Maru Gothic", serif;
  --kosugimaru: "Kosugi Maru", serif;
}

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

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

:root {
  --shippori: "Shippori Mincho", serif;
  --bebas: "Bebas Neue", sans-serif;
  --abhaya: "Abhaya Libre", serif;
  --headline: "headline-gothic-atf", sans-serif;
  --sicyubi: "sicyubi-hyojunkaisho", sans-serif;
  --base: #281900;
  --main: #df5321;
  --bw: #593b02;
  --bw-bl: rgba(40, 25, 0, 0.6);
  --nv: #2e354f;
  --wh: #ffffff;
  --wh2: #f5f5f5;
}

iframe {
  border: none;
  display: block;
}

body {
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  font-family: var(--shippori);
  background-color: #281900;
  color: white;
}
@media (min-width: 768px) {
  body {
    line-height: 2;
  }
}

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

.stroke {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #f5f5f5;
  color: transparent;
}

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

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

.shippori {
  font-family: var(--shippori) !important;
}

.abhaya {
  font-family: var(--abhaya) !important;
}

.allura {
  font-family: var(--allura) !important;
}

.headline {
  font-family: var(--headline) !important;
}

.sicyubi {
  font-family: var(--sicyubi) !important;
}

.cl-main {
  color: var(--main);
}

.cl-main-bg {
  background-color: var(--main);
}

.cl-base {
  color: var(--base);
}

.cl-base-back {
  background-color: var(--base);
}

.cl-bw {
  color: var(--bw);
}

.cl-bw-back {
  background-color: var(--bw);
}

.bb-wh {
  border-bottom: solid 1px var(--wh2);
}

@media (min-width: 768px) {
  .bb-md-wh {
    border-bottom: solid 1px var(--wh2);
  }
}

.br-wh {
  border-right: solid 1px var(--wh2);
}

@media (min-width: 768px) {
  .br-md-wh {
    border-right: solid 1px var(--wh2);
  }
}

.bb-none {
  border: none !important;
}

.js-typein {
  visibility: hidden; /* 初期は非表示 */
}

.js-typein[data-typein-ready="1"] {
  visibility: visible; /* wrapChars 実行後に表示 */
}

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

.section-title > p {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  line-height: 1.8;
}
.section-title > h2,
.section-title > h3 {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
  line-height: 1.5;
  font-family: var(--sicyubi);
}
.section-title > h2 span,
.section-title > h3 span {
  display: inline-block;
}

.info-pop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
}
.info-pop > a {
  background-color: rgba(40, 25, 0, 0.6);
  border: solid 1px white;
  display: inline-block;
  padding: 8px 20px;
}
@media (min-width: 768px) {
  .info-pop > a {
    padding: 15px 27px;
  }
}
.info-pop > a .wrap {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--abhaya);
  color: var(--main);
  line-height: 1.2;
  transition: all 0.3s ease;
}
.info-pop > a .wrap .icon {
  width: 32px;
}
.info-pop > a:hover .wrap {
  transition: all 0.3s ease;
}

.btn-wrap a,
.btn-wrap .formBtnTd button,
.next a,
.prev a {
  position: relative;
  z-index: 1;
  background-color: var(--main);
  border: 1px solid #f5f5f5;
  color: white;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  white-space: nowrap;
}
.btn-wrap a .en, .btn-wrap a::before,
.btn-wrap .formBtnTd button .en,
.btn-wrap .formBtnTd button::before,
.next a .en,
.next a::before,
.prev a .en,
.prev a::before {
  font-family: var(--abhaya);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 10px;
}
.btn-wrap a::after,
.btn-wrap .formBtnTd button::after,
.next a::after,
.prev a::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 32px;
  height: 10px;
  background: url(../images/arrow.svg) center/contain no-repeat;
  transition: all 0.3s ease;
}
.btn-wrap a:hover,
.btn-wrap .formBtnTd button:hover,
.next a:hover,
.prev a:hover {
  color: var(--nv);
}
.btn-wrap a:hover::after,
.btn-wrap .formBtnTd button:hover::after,
.next a:hover::after,
.prev a:hover::after {
  right: 18px;
  transition: all 0.3s ease;
}

.btn-wrap a,
.btn-wrap .formBtnTd button,
.next a {
  padding-block: 14px;
  padding-inline: 30px 140px;
}

.next a,
.prev a {
  width: 100%;
  max-width: 240px;
}
@media (min-width: 768px) {
  .next a,
.prev a {
    max-width: 290px;
  }
}

.next a {
  padding-block: 14px;
  padding-inline: 30px 140px;
}
@media (min-width: 768px) {
  .next a {
    padding-inline: 30px 220px;
  }
}

.prev a {
  padding-block: 14px;
  padding-inline: 140px 30px;
}
@media (min-width: 768px) {
  .prev a {
    padding-inline: 220px 30px;
  }
}
.prev a::after {
  left: 28px;
  right: auto;
  transform: scale(-1, 1);
}
.prev a:hover::after {
  transform: scale(-1, 1);
  left: 18px;
}

.back a {
  background-color: var(--main);
  border: 1px solid #f5f5f5;
  color: white;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 240px;
  padding: 14px 30px;
}
@media (min-width: 768px) {
  .back a {
    max-width: 290px;
  }
}
.back a:hover {
  color: #2e354f;
}
.back a::after {
  content: "BACK";
  font-family: var(--abhaya);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1;
}

.insta-link > a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
}
.insta-link > a .icon {
  width: 30px;
}

.l-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.l-header__inner {
  background-color: rgba(40, 25, 0, 0.6);
  padding: 15px 20px;
}
@media (min-width: 768px) {
  .l-header__inner {
    padding: 19px 43px;
  }
}
.l-header__logo {
  width: 120px;
}
@media (min-width: 768px) {
  .l-header__logo {
    width: 140px;
  }
}
@media (min-width: 1200px) {
  .l-header__logo {
    width: 172px;
  }
}
.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  background-color: #3b2607;
  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 {
  background-color: var(--main);
  border-radius: 100px;
}
@media (min-width: 576px) {
  .l-header__nav {
    width: 500px;
  }
}
@media (min-width: 1200px) {
  .l-header__nav {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    gap: clamp(20px, 2.2vw, 36px);
    margin-left: auto;
    background-color: transparent;
    width: 100%;
    height: auto;
    padding: 0;
    overflow: visible;
    transform: none;
    flex: 1;
  }
}
.l-header__nav.open {
  transform: translateX(0);
}
.l-header__nav--item__link {
  color: white;
}
.l-header__nav--item__link .ja {
  font-size: clamp(0.938rem, 0.877rem + 0.26vw, 1.125rem);
}
.l-header__nav--item__link .en {
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  line-height: 1.2;
}
.l-header .hamburger-menu {
  position: fixed;
  z-index: 9999;
  display: block;
}
@media (min-width: 1200px) {
  .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.7);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-out;
}

.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: 34px;
  }
}
@media (min-width: 1200px) {
  .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: #fff;
  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;
  }
}
.l-footer {
  background-color: var(--base);
  color: white;
}
.l-footer .container {
  max-width: 650px;
  padding-block: 80px 45px;
}
@media (min-width: 576px) {
  .l-footer .container {
    padding-block: 120px 45px;
  }
}
@media (min-width: 768px) {
  .l-footer .container {
    padding-block: 176px 45px;
  }
}
.l-footer__logo {
  max-width: clamp(215px, 31vw, 456px);
  margin-inline: auto;
}
.l-footer__wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
}
@media (min-width: 768px) {
  .l-footer__wrap {
    flex-direction: row;
  }
}
.l-footer .list-dl {
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .l-footer .list-dl {
    text-align: left;
  }
}
.l-footer .list-dl:last-child {
  margin-bottom: 0;
}
.l-footer .list-dt {
  color: var(--main);
  margin-bottom: 8px;
}
.l-footer .list-dd {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .l-footer .list-dd {
    flex-direction: row;
  }
}
.l-footer .list-dd .en {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}
.l-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer__nav > a {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .l-footer__nav > a {
    gap: 10px;
    align-items: baseline;
    flex-direction: row;
    justify-content: flex-start;
  }
}

.page-top {
  background-color: var(--base);
}
.page-top__food, .page-top__drink, .page-top__scene {
  position: relative;
  z-index: 1;
}
.page-top .section-top {
  height: 100vh;
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-top .section-top {
    padding-bottom: 200px;
  }
}
.page-top .section-top::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: inherit;
  background-color: rgba(223, 83, 33, 0.8);
}
.page-top .section-top__title {
  color: var(--wh2);
}
.page-top .section-top__title h2 {
  font-size: clamp(1.438rem, 0.729rem + 3.06vw, 3.625rem);
  font-weight: 600;
}
.page-top .section-top__title h2 span {
  display: inline-block;
}
.page-top .section-top__title > p {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  font-family: var(--abhaya);
}
.page-top .back-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -1;
}
.page-top .back-img img {
  height: inherit;
}
.page-top .back-img.is-fixed {
  position: fixed;
  top: 0;
}
.page-top .back-img.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
}
.page-top__contents {
  position: relative;
  z-index: 1;
  background-color: var(--base);
  padding-block: 100px;
}
@media (min-width: 768px) {
  .page-top__contents {
    padding-block: 125px;
  }
}
.page-top__contents .container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-top__contents .container {
    gap: 40px;
    flex-direction: row;
  }
}
.page-top__contents .box {
  width: 100%;
}
@media (min-width: 992px) {
  .page-top__contents .box {
    width: calc(50% - 20px);
  }
}
.page-top__contents .box--img {
  width: 60%;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .page-top__contents .box--img {
    width: calc(50% - 20px);
  }
}
.page-top__contents .box--text {
  text-align: center;
  font-weight: 500;
}
@media (min-width: 992px) {
  .page-top__contents .box--text {
    text-align: left;
  }
}
.page-top__contents .box--text h2 {
  font-size: clamp(1.375rem, 1.011rem + 1.58vw, 2.5rem);
}
.page-top__drink .container {
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .page-top__drink .container {
    flex-direction: row;
  }
}
.page-top .top-fv {
  overflow: hidden;
  height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-top .top-fv::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  background-color: rgba(129, 98, 40, 0.35);
  inset: 0;
  width: 100%;
  height: inherit;
  pointer-events: none;
}
.page-top .top-fv .fade-slider {
  height: inherit;
}
.page-top .top-fv .fade-slider .swiper-wrapper {
  display: flex;
  width: 100%;
  height: inherit;
}
.page-top .top-fv .fade-slider .swiper-slide img {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 5s ease-in-out;
  display: block;
}
.page-top .top-fv .fade-slider .swiper-slide-active img {
  transform: scale(1);
}
.page-top .top-fv__text {
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.page-top .top-fv__text .subTitle {
  overflow: clip;
  font-size: clamp(1.875rem, 0.62rem + 5.43vw, 5.75rem);
  line-height: 1;
}
@media (min-width: 992px) {
  .page-top .top-fv__text .subTitle {
    line-height: 1.5;
  }
}
.page-top .top-fv__text .mainTitle {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 992px) {
  .page-top .top-fv__text .mainTitle {
    padding-block: 4vw;
  }
}
.page-top .top-fv__text .mainTitle > * {
  width: inherit;
}
.page-top .top-fv__text .mainTitle > h1 {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(6.25rem, 1.39rem + 21.02vw, 21.25rem);
  color: var(--main);
  font-family: var(--abhaya);
}
.page-top .top-fv__text .mainTitle .text-wrap {
  display: inline-block;
  text-shadow: 1.933px 5.73px 3.8px rgba(0, 0, 0, 0.3);
  font-family: var(--shippori);
  font-size: clamp(1.563rem, 0.186rem + 5.95vw, 5.813rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .page-top .top-fv__text .mainTitle .text-wrap {
    letter-spacing: -10.205px;
  }
}
@media (min-width: 992px) {
  .page-top .top-fv__text .mainTitle .text-wrap > br {
    display: none;
  }
}
.page-top__about--top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 110vh;
  writing-mode: vertical-lr;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  font-weight: 600;
  line-height: 114%;
  color: var(--wh2);
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .page-top__about--top {
    margin-bottom: 200px;
  }
}
.page-top__about--bottom {
  position: relative;
  z-index: 1;
  padding-block: 130px 80px;
  background-color: var(--base);
}
@media (min-width: 576px) {
  .page-top__about--bottom {
    padding-block: 150px 100px;
  }
}
@media (min-width: 768px) {
  .page-top__about--bottom {
    padding-block: 185px 130px;
  }
}
.page-top__about--bottom .bottom__img {
  position: relative;
}
.page-top__about--bottom .bottom__img .inner-text {
  position: absolute;
  z-index: 1;
  right: -3vw;
  top: -22%;
  text-align: center;
  line-height: 1;
  font-weight: 600;
  font-family: var(--abhaya);
}
@media (min-width: 576px) {
  .page-top__about--bottom .bottom__img .inner-text {
    right: -7vw;
  }
}
.page-top__about--bottom .bottom__img .inner-text .small {
  font-size: clamp(1.5rem, 0.528rem + 4.2vw, 4.5rem);
}
.page-top__about--bottom .bottom__img .inner-text .big {
  font-size: clamp(5.625rem, 3.398rem + 9.63vw, 12.5rem);
}
.page-top__about--bottom .box--wrap {
  display: flex;
  gap: 20px;
}
@media (min-width: 768px) {
  .page-top__about--bottom .box--wrap {
    gap: 48px;
  }
}
.page-top__about--bottom .box--wrap .box {
  width: calc(50% - 10px);
}
@media (min-width: 768px) {
  .page-top__about--bottom .box--wrap .box {
    width: calc(50% - 24px);
  }
}
.page-top__about--bottom .box--wrap .box:nth-child(1) {
  margin-bottom: 80px;
}
@media (min-width: 576px) {
  .page-top__about--bottom .box--wrap .box:nth-child(1) {
    margin-bottom: 120px;
  }
}
@media (min-width: 992px) {
  .page-top__about--bottom .box--wrap .box:nth-child(1) {
    margin-bottom: 200px;
  }
}
.page-top__about--bottom .box--wrap .box:nth-child(2) {
  margin-top: 80px;
}
@media (min-width: 576px) {
  .page-top__about--bottom .box--wrap .box:nth-child(2) {
    margin-top: 120px;
  }
}
@media (min-width: 992px) {
  .page-top__about--bottom .box--wrap .box:nth-child(2) {
    margin-top: 200px;
  }
}
.page-top__about--bottom .bottom__text {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 15px;
  left: 0;
  right: 0;
}
.page-top__about--bottom .slide-text {
  font-size: clamp(5rem, 3.38rem + 7.01vw, 10rem);
  font-family: var(--abhaya);
  font-weight: 600;
  line-height: 0.8;
}
.page-top__links {
  align-items: stretch;
}
.page-top__links .box {
  position: relative;
  z-index: 1;
  overflow: clip;
}
.page-top__links .box > a {
  position: relative;
  z-index: 1;
  min-height: 320px;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .page-top__links .box > a {
    min-height: 450px;
    padding: 100px 20px;
  }
}
@media (min-width: 992px) {
  .page-top__links .box > a {
    min-height: 670px;
  }
}
.page-top__links .box > a::before {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 25, 0, 0.6);
  transition: all 0.3s ease;
  pointer-events: none;
}
.page-top__links .box > a > img {
  position: absolute;
  z-index: -1;
  height: 100%;
  filter: grayscale(100%) contrast(1) brightness(1);
  transition: all 0.3s ease;
}
.page-top__links .box > a:hover::before {
  background-color: transparent;
  transition: all 0.3s ease;
}
.page-top__links .box > a:hover img {
  filter: grayscale(0) contrast(1) brightness(1);
  transition: all 0.3s ease;
}
.page-top__links .box > a:hover .section-title .icon {
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.page-top__links .box .section-title {
  position: relative;
  z-index: 1;
}
.page-top__links .box .section-title .icon {
  max-width: 35px;
  margin-inline: auto;
  transition: all 0.3s ease;
}
.page-top__news .webgene-item {
  border-bottom: solid 1px white;
  padding-block: 20px;
}
@media (min-width: 768px) {
  .page-top__news .webgene-item {
    padding-block: 35px;
  }
}
.page-top__news .webgene-item:first-child {
  padding-top: 0;
}
.page-top__map iframe {
  height: 380px;
}
@media (min-width: 576px) {
  .page-top__map iframe {
    height: 550px;
  }
}
@media (min-width: 992px) {
  .page-top__map iframe {
    height: 680px;
  }
}

.js-tick {
  display: inline-flex;
  overflow: hidden;
  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%);
  }
}
.page-contents {
  background-color: var(--base);
}

.page-fv {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-fv::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(89, 63, 16, 0.6);
}
.page-fv__title {
  width: 100%;
  text-align: center;
  text-shadow: 1px 4px 3px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
.page-fv__title > h1 {
  color: var(--main);
  font-size: clamp(2.188rem, 0.304rem + 8.14vw, 8rem);
}
.page-fv__title > p {
  font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
  line-height: 1;
}

.contents-title {
  font-family: var(--sicyubi);
  line-height: 1.8;
}
.contents-title h3 {
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
}
.contents-title .small {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}

.menu-top {
  margin-block: 100px 80px;
}
@media (min-width: 576px) {
  .menu-top {
    margin-block: 150px 100px;
  }
}
@media (min-width: 768px) {
  .menu-top {
    margin-block: 200px 140px;
  }
}
@media (min-width: 1400px) {
  .menu-top__main {
    max-width: 1240px;
  }
}
.menu-top__main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}
@media (min-width: 992px) {
  .menu-top__main {
    gap: 100px;
    flex-direction: row;
  }
}
.menu-top__main .box--text {
  font-size: clamp(1.625rem, 0.977rem + 2.8vw, 3.625rem);
  line-height: 1.8;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .menu-top__main .box--text {
    writing-mode: vertical-rl;
    display: inline-flex;
    flex-direction: column;
    margin-inline: 0;
  }
}
.menu-top__main .box--text > p:nth-child(2) {
  margin-top: auto;
  margin-left: 50px;
}
@media (min-width: 992px) {
  .menu-top__main .box--text > p:nth-child(2) {
    margin-left: 0;
  }
}
.menu-top__main .box--img {
  flex: 1;
}
@media (min-width: 992px) {
  .menu-top__main .box--img {
    padding-top: 60px;
  }
}
.menu-top__main .box--img > img {
  aspect-ratio: 3/2;
}
.menu-top__bottom {
  max-width: 95%;
  background-color: var(--main);
  padding-block: 200px 60px;
  margin-top: -150px;
}
@media (min-width: 992px) {
  .menu-top__bottom {
    padding-block: 280px 120px;
    margin-top: -190px;
  }
}
@media (min-width: 992px) {
  .menu-top__bottom .container {
    max-width: 960px;
  }
}

.menu-contents {
  background-color: var(--base);
}
.menu-contents .menu-title {
  padding-block: clamp(100px, 16vw, 230px);
}

.course-box .wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .course-box .wrap {
    flex-direction: row;
  }
}
.course-box .wrap .image {
  max-width: 75%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .course-box .wrap .image {
    max-width: 100%;
    width: 50%;
  }
}

.course-list {
  text-align: center;
}
@media (min-width: 768px) {
  .course-list {
    width: 50%;
    text-align: left;
  }
}
.course-list .title {
  text-align: center;
}
@media (min-width: 768px) {
  .course-list .title {
    text-align: left;
  }
}
.course-list .title h4 {
  font-weight: 500;
  font-size: clamp(1.125rem, 1.085rem + 0.18vw, 1.25rem);
}

.course01 .course-list {
  display: flex;
  flex-wrap: wrap;
}
.course01 .course-list .title {
  width: 100%;
}
@media (min-width: 768px) {
  .course01 .course-list .title {
    width: 33.3333333333%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.course01 .course-list__box {
  width: 100%;
}
@media (min-width: 768px) {
  .course01 .course-list__box {
    padding-inline: 20px;
    width: 33.3333333333%;
  }
}

.course03 .other-course__wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .course03 .other-course__wrap {
    flex-direction: row;
  }
}
.course03 .other-course__wrap .course-list {
  width: 100%;
}
.course03 .other-course__wrap .course-box {
  border-bottom: solid 1px var(--wh2);
}
@media (min-width: 768px) {
  .course03 .other-course__wrap .course-box {
    border-bottom: none;
    border-right: solid 1px var(--wh2);
    padding-inline: clamp(10px, 4vw, 50px);
  }
}
.course03 .other-course__wrap .course-box:nth-child(odd) {
  padding-left: 0;
}
.course03 .other-course__wrap .course-box:nth-child(even) {
  padding-right: 0;
}
.course03 .other-course__wrap .course-box:last-child {
  border: none;
}

.menu-box__img {
  max-width: 850px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 35px;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .menu-box__img {
    flex-direction: row;
    gap: 25px;
  }
}
.menu-box__img .box--img {
  width: 75%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .menu-box__img .box--img {
    width: clamp(250px, 22vw, 326px);
  }
}
@media (min-width: 768px) {
  .menu-box__img .box--text {
    flex: 1;
  }
}
.menu-box .menu-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 576px) {
  .menu-box .menu-list {
    gap: 0;
  }
}
@media (min-width: 992px) {
  .menu-box .menu-list {
    width: 50%;
  }
}
.menu-box .menu-list__wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .menu-box .menu-list__wrap {
    flex-direction: row;
    gap: clamp(30px, 7vw, 100px);
  }
}
.menu-box .menu-list .list-dl {
  display: flex;
  flex-direction: column;
  padding-block: 6px;
}
@media (min-width: 576px) {
  .menu-box .menu-list .list-dl {
    gap: 20px;
    flex-direction: row;
  }
}
.menu-box .menu-list .list-dt,
.menu-box .menu-list .list-dd {
  line-height: 1.4;
}
.menu-box .menu-list .list-dt > p,
.menu-box .menu-list .list-dd > p {
  display: inline-block;
}
.menu-box .menu-list .list-dt {
  flex: 1;
}
.menu-box .menu-list .list-dd {
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: right;
}
@media (min-width: 576px) {
  .menu-box .menu-list .list-dd {
    width: 200px;
  }
}

.page-commitment .sec02 .section-box {
  padding-block: 100px;
  background: linear-gradient(180deg, transparent 0%, transparent 22%, var(--main) 22%, var(--main) 100%);
}
@media (min-width: 576px) {
  .page-commitment .sec02 .section-box {
    padding-block: 120px;
  }
}
@media (min-width: 768px) {
  .page-commitment .sec02 .section-box {
    padding-block: 155px;
  }
}
@media (min-width: 992px) {
  .page-commitment .sec02 .section-box {
    background: linear-gradient(180deg, transparent 0%, transparent 28%, var(--main) 28%, var(--main) 100%);
  }
}
.page-commitment .sec02 .section-box .top-container {
  position: relative;
  padding-top: 50px;
}
@media (min-width: 768px) {
  .page-commitment .sec02 .section-box .top-container {
    padding-top: 80px;
  }
}
@media (min-width: 1400px) {
  .page-commitment .sec02 .section-box .top-container {
    max-width: 1290px;
  }
}
.page-commitment .sec02 .section-box .top-container__top > p {
  position: absolute;
  z-index: 1;
  top: 0;
  font-size: clamp(3.75rem, 2.029rem + 7.44vw, 9.063rem);
  font-family: var(--abhaya);
  line-height: 1;
}
.page-commitment .sec02 .section-box .top-container__top > img {
  display: block;
  margin-inline: auto;
  max-width: 92%;
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .page-commitment .sec02 .section-box .top-container__top > img {
    max-width: 83%;
  }
}
.page-commitment .sec02 .section-box .top-container__text {
  margin-block: 40px 90px;
}
@media (min-width: 768px) {
  .page-commitment .sec02 .section-box .top-container__text {
    max-width: 83%;
  }
}
.page-commitment .sec02 .section-box .box {
  width: calc(50% - 15px);
}
.page-commitment .sec02 .section-box .box--wrap {
  display: flex;
  gap: 30px;
}
@media (min-width: 992px) {
  .page-commitment .sec02 .section-box .box--wrap {
    gap: 86px;
  }
}
@media (min-width: 992px) {
  .page-commitment .sec02 .section-box .box {
    width: calc(50% - 43px);
  }
}
.page-commitment .sec02 .section-box:nth-child(odd) .top-container__top > p {
  right: 0;
}
.page-commitment .sec02 .section-box:nth-child(odd) .top-container__top > img {
  margin-left: 0;
}
@media (min-width: 768px) {
  .page-commitment .sec02 .section-box:nth-child(odd) .top-container__text {
    margin-left: auto;
  }
}
.page-commitment .sec02 .section-box:nth-child(odd) .box:nth-child(1) {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .page-commitment .sec02 .section-box:nth-child(odd) .box:nth-child(1) {
    margin-bottom: 150px;
  }
}
.page-commitment .sec02 .section-box:nth-child(odd) .box:nth-child(2) {
  margin-top: 80px;
}
@media (min-width: 992px) {
  .page-commitment .sec02 .section-box:nth-child(odd) .box:nth-child(2) {
    margin-top: 150px;
  }
}
.page-commitment .sec02 .section-box:nth-child(even) .top-container__top > p {
  left: 0;
}
.page-commitment .sec02 .section-box:nth-child(even) .top-container__top > img {
  margin-right: 0;
}
@media (min-width: 768px) {
  .page-commitment .sec02 .section-box:nth-child(even) .top-container__text {
    margin-right: auto;
  }
}
.page-commitment .sec02 .section-box:nth-child(even) .box:nth-child(1) {
  margin-top: 80px;
}
@media (min-width: 992px) {
  .page-commitment .sec02 .section-box:nth-child(even) .box:nth-child(1) {
    margin-top: 150px;
  }
}
.page-commitment .sec02 .section-box:nth-child(even) .box:nth-child(2) {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .page-commitment .sec02 .section-box:nth-child(even) .box:nth-child(2) {
    margin-bottom: 150px;
  }
}

.course-contents .container > * > * {
  max-width: 950px;
  width: 100%;
  margin-inline: auto;
}

.page-scene__box {
  position: relative;
  z-index: 1;
}
.page-scene__box--top {
  position: -webkit-sticky;
  position: sticky;
  z-index: -1;
  top: 0;
}
.page-scene__box--top .section-title {
  text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.3);
}
.page-scene__box--top .section-title > p {
  font-size: clamp(1.375rem, 1.011rem + 1.58vw, 2.5rem);
}
.page-scene__box--bottom {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgba(40, 25, 0, 0.9) 0%, rgba(40, 25, 0, 0) 100%);
  padding-block: 150px;
}
@media (min-width: 576px) {
  .page-scene__box--bottom {
    padding-block: 200px;
  }
}
@media (min-width: 768px) {
  .page-scene__box--bottom {
    padding-block: 250px;
    background: linear-gradient(90deg, rgba(40, 25, 0, 0) 0%, rgba(40, 25, 0, 0.9) 100%);
  }
}
.page-scene__box--bottom .section-title > p {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
@media (min-width: 576px) {
  .page-scene__box--bottom .container {
    min-width: 540px;
    max-width: 85%;
    margin-right: clamp(0px, 12vw, 170px);
  }
}
@media (min-width: 768px) {
  .page-scene__box--bottom .container {
    max-width: 55%;
  }
}
@media (min-width: 992px) {
  .page-scene__box--bottom .container {
    max-width: 35%;
  }
}
.page-scene .sec03 .container {
  background-color: var(--main);
  padding-block: 40px;
  padding-inline: 20px;
}
@media (min-width: 576px) {
  .page-scene .sec03 .container {
    padding-block: 60px;
    padding-inline: 30px;
  }
}
@media (min-width: 768px) {
  .page-scene .sec03 .container {
    padding-block: 100px;
  }
}
@media (min-width: 992px) {
  .page-scene .sec03 .container {
    padding-inline: clamp(20px, 7vw, 100px);
  }
}
.page-scene .sec03 .box-wrap {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
@media (min-width: 992px) {
  .page-scene .sec03 .box-wrap {
    flex-direction: row;
  }
}
.page-scene .sec03 .box-wrap__img, .page-scene .sec03 .box-wrap__text {
  width: 100%;
}
@media (min-width: 992px) {
  .page-scene .sec03 .box-wrap__img, .page-scene .sec03 .box-wrap__text {
    width: 50%;
  }
}
.page-scene .sec03 .box-wrap__img img {
  display: block;
  width: 85%;
  margin-inline: auto;
  aspect-ratio: 3/2.2;
}
@media (min-width: 992px) {
  .page-scene .sec03 .box-wrap__img img {
    width: 100%;
  }
}
.page-scene .sec03 .box-wrap__text .section-title > p {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.page-scene .sec03 .box-wrap__text .section-title > h2 {
  font-size: clamp(1.375rem, 1.092rem + 1.23vw, 2.25rem);
}

@media (min-width: 992px) {
  .page-recruit .container {
    max-width: 840px;
  }
}
.page-recruit .section-title {
  border-bottom: solid 1px var(--wh2);
}
.page-recruit .section-title > h2 {
  font-size: clamp(1.75rem, 1.345rem + 1.75vw, 3rem);
}
.page-recruit .section-title > p {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
.page-recruit .list-wrap {
  margin-inline: auto;
}
.page-recruit .list-wrap .list-dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 15px;
  gap: 8px;
}
@media (min-width: 576px) {
  .page-recruit .list-wrap .list-dl {
    flex-direction: row;
    align-items: start;
    gap: 25px;
  }
}
.page-recruit .list-wrap .list-dl:first-child {
  padding-top: 0;
}
.page-recruit .list-wrap .list-dt,
.page-recruit .list-wrap .list-dd {
  line-height: 1.5;
}
.page-recruit .list-wrap .list-dt {
  text-align: center;
  font-weight: 700;
}
@media (min-width: 576px) {
  .page-recruit .list-wrap .list-dt {
    width: 120px;
    text-align: left;
    font-weight: 500;
  }
}
@media (min-width: 768px) {
  .page-recruit .list-wrap .list-dt {
    width: 190px;
  }
}
.page-recruit .list-wrap .list-dd {
  flex: 1;
  text-align: center;
}
@media (min-width: 576px) {
  .page-recruit .list-wrap .list-dd {
    text-align: left;
  }
}

.page-info .section-title > h2 {
  font-size: clamp(1.75rem, 1.345rem + 1.75vw, 3rem);
}
.page-info .section-title > p {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
.page-info .list-wrap {
  max-width: 670px;
  margin-inline: auto;
}
.page-info .list-wrap .list-dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: solid 1px var(--wh2);
  padding-block: 15px;
  gap: 8px;
}
@media (min-width: 576px) {
  .page-info .list-wrap .list-dl {
    flex-direction: row;
    align-items: start;
    gap: 25px;
  }
}
.page-info .list-wrap .list-dl:first-child {
  padding-top: 0;
}
.page-info .list-wrap .list-dt,
.page-info .list-wrap .list-dd {
  line-height: 1.5;
}
.page-info .list-wrap .list-dt {
  text-align: center;
  font-weight: 700;
}
@media (min-width: 576px) {
  .page-info .list-wrap .list-dt {
    width: 120px;
    text-align: left;
    font-weight: 500;
  }
}
@media (min-width: 768px) {
  .page-info .list-wrap .list-dt {
    width: 190px;
  }
}
.page-info .list-wrap .list-dd {
  flex: 1;
  text-align: center;
}
@media (min-width: 576px) {
  .page-info .list-wrap .list-dd {
    text-align: left;
  }
}
.page-info .link-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}
@media (min-width: 768px) {
  .page-info .link-wrap {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-info .link-wrap {
    gap: 55px;
  }
}
.page-info .link-box {
  width: 100%;
}
@media (min-width: 768px) {
  .page-info .link-box {
    width: calc(50% - 15px);
  }
}
@media (min-width: 992px) {
  .page-info .link-box {
    width: calc(50% - 27.5px);
  }
}
.page-info .link-box > a {
  border: solid 1px white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  min-height: 160px;
}
@media (min-width: 768px) {
  .page-info .link-box > a {
    gap: 40px;
    min-height: 220px;
    padding: 60px 20px 25px;
  }
}
.page-info .link-box .section-title > h2 {
  font-size: clamp(1.375rem, 1.173rem + 0.88vw, 2rem);
}
.page-info .link-box .section-title > p {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.page-info .link-box .btn-wrap {
  margin-top: auto;
  display: flex;
  gap: 22px;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.page-info .link-box .btn-wrap .icon {
  max-width: 32px;
}
.page-info .link-box .btn-wrap .icon img {
  transition: all 0.3s ease;
}
.page-info .link-box:hover .btn-wrap {
  color: var(--main);
  transition: all 0.3s ease;
}
.page-info .link-box:hover .icon img {
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.page-news .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .page-news .webgene-blog {
    gap: 40px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-news .webgene-blog {
    gap: 60px;
  }
}
@media (min-width: 1200px) {
  .page-news .webgene-blog {
    gap: 100px;
  }
}
.page-news .webgene-item {
  width: 100%;
  padding-block: 15px;
  border-bottom: solid 1px var(--wh2);
}
.page-news .webgene-item:first-child {
  padding-top: 0;
}
.page-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;
}

.page-contact .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-contact label {
  margin: 0;
  font-weight: 400;
}
.page-contact .form-dl {
  display: flex;
  flex-direction: column;
}
.page-contact .form-dt {
  margin-bottom: 15px;
}
.page-contact .form-dt .requiredText {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8125rem;
  padding: 4px 15px;
  border-radius: 99px;
  background-color: var(--main);
  line-height: 1;
  margin-left: 15px;
}
.page-contact .form-dd {
  position: relative;
}
.page-contact .form-dd input,
.page-contact .form-dd textarea {
  width: 100%;
  background-color: white;
  color: #281900;
  padding: 8px;
  font-size: 1rem;
}
.page-contact .form-dd textarea {
  min-height: 200px;
}
.page-contact .form-dl.privacy .form-dd {
  overflow: hidden;
  border-radius: 13px;
  background-color: #593b02;
  padding: 14px 12px;
}
.page-contact .form-dl.privacy .form-dd .scroll-wrap {
  overflow-y: scroll;
  height: 230px;
  font-size: 0.8125rem;
}
.page-contact .form-dl.privacy .form-dd .scroll-wrap::-webkit-scrollbar {
  width: 6px;
}
.page-contact .form-dl.privacy .form-dd .scroll-wrap::-webkit-scrollbar-track {
  background-color: transparent;
}
.page-contact .form-dl.privacy .form-dd .scroll-wrap::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 100px;
}
.page-contact .checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.page-contact .checkbox-wrap > * {
  cursor: pointer;
}
.page-contact .formBtnTd button {
  display: flex;
  flex-direction: column-reverse;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-contact .formBtnTd button::before {
  content: "SEND";
  text-align: left;
}
.page-contact .formBtnTd button:hover {
  transition: all 0.3s ease;
}