/* 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;
  min-height: auto;
}

/* 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,
a,
figure,
blockquote,
dl,
dd,
input,
textarea,
label {
  margin: 0;
  padding: 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 */
/* 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;
}

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

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

:root {
  --shippori: "Shippori Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    "Yu Mincho", "YuMincho", "Noto Serif JP", "MS PMincho", serif;
  --gothic: fot-tsukuardgothic-std, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "YuGothic", "Noto Sans JP", "Meiryo", sans-serif;
  --corinthia: "Corinthia", "Snell Roundhand", "Apple Chancery", "Segoe Script",
    "Bradley Hand", cursive;
  --main: #595959;
  --or01: #1c1c1b;
  --or02: #eadac3;
  --or03: #fff9d0;
  --gr01: #f5fce1;
  --yr: #fff7bd;
  --gr-btn: linear-gradient(160deg, #f5fce1 0%, #fffcf6 50.48%, #f5fce1 100%);
  --or-btn: radial-gradient(
    100.09% 138.41% at 0.73% 4.31%,
    #ffcdab 0%,
    #ffecce 100%
  );
  --gr-gra01: linear-gradient(
      167deg,
      #f5fce1 0%,
      #fffcf6 25%,
      #f5fce1 50%,
      #fffcf6 75%,
      #f5fce1 100%
    ),
    linear-gradient(
      167deg,
      #fffcf6 0%,
      #f5fce1 25%,
      #fffcf6 50.48%,
      #f5fce1 75.48%,
      #fffcf6 100%
    );
  --or-gra01: linear-gradient(
    160deg,
    #ffecce 0%,
    #fff8ec 25%,
    #ffecce 50%,
    #fff8ec 75%,
    #ffecce 100%
  );
  --or-sc: radial-gradient(
    50% 50% at 50% 50%,
    #ffecce 16.83%,
    rgba(255, 248, 236, 0) 100%
  );
}

.corinthia {
  font-family: var(--corinthia) !important;
  font-weight: 500;
}

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

.gothic {
  font-family: var(--gothic) !important;
  font-weight: 500;
}

.or01 {
  color: var(--or01) !important;
}

.or02 {
  color: var(--or02) !important;
}

.or03 {
  color: var(--or03) !important;
}

.wh-txt {
  color: white !important;
}

.bk-txt {
  color: var(--main) !important;
}

.gr-bg01 {
  background-color: var(--gr01) !important;
}

.ye-bg01 {
  background-color: var(--yr) !important;
}

.wh-bg {
  background-color: white !important;
}

.bk-bg {
  background-color: var(--main) !important;
}

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

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

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

.lg-bk {
  display: block;
}
@media (min-width: 992px) {
  .lg-bk {
    display: none;
  }
}

.reverse {
  transform: scale(-1, 1);
}

.reverse-v {
  transform: scale(1, -1);
}

body {
  font-family: var(--shippori);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--main);
  letter-spacing: 2px;
  line-height: 1.8;
}

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

.is-scroll-lock {
  overflow: hidden;
}

.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;
  }
}
.btn-wrap a, .btn-wrap__inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(89, 89, 89, 0.3);
  border-radius: 99px;
  background: radial-gradient(100.09% 138.41% at 0.73% 4.31%, #ffcdab 0%, #ffecce 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding-inline: 30px 20px;
  padding-block: 8px;
  font-family: var(--gothic);
  min-width: 230px;
}
@media (min-width: 768px) {
  .btn-wrap a, .btn-wrap__inner {
    padding-inline: 23px 90px;
    padding-block: 9px;
    font-size: 1.125rem;
  }
}
.btn-wrap a::after, .btn-wrap__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: block;
  background: url(../images/arrow.svg) center/contain no-repeat;
  width: 18px;
  height: 4px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-wrap a::after, .btn-wrap__inner::after {
    width: 20px;
    height: 6px;
    right: 20px;
  }
}
.btn-wrap a .icon, .btn-wrap__inner .icon {
  width: 20px;
}
.btn-wrap a:hover::after, .btn-wrap__inner:hover::after {
  transform: translateY(-50%) translateX(5px);
}
.btn-wrap a.nonearrow, .btn-wrap__inner.nonearrow {
  padding-inline: 55px;
  justify-content: center;
}
.btn-wrap a.nonearrow .wrap, .btn-wrap__inner.nonearrow .wrap {
  transition: all 0.3s ease;
  gap: 6px;
}
.btn-wrap a.nonearrow .wrap, .btn-wrap__inner.nonearrow .wrap {
  display: inline-flex;
  align-items: center;
}
.btn-wrap a.nonearrow::after, .btn-wrap__inner.nonearrow::after {
  display: none;
}
.btn-wrap a.nonearrow:hover .wrap, .btn-wrap__inner.nonearrow:hover .wrap {
  transform: scale(1.05);
}

:root {
  --header-top: 80px;
}

html:not(.is-page-ready) body:not(.gjs-dashed) {
  opacity: 0;
  visibility: hidden;
}

.gjs-dashed .page-fv__img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.gjs-dashed .page-fv img {
  height: auto;
  min-height: auto;
}
.gjs-dashed .page-fv h1,
.gjs-dashed .page-fv p {
  opacity: 1;
}
.gjs-dashed * {
  -webkit-animation: none !important;
          animation: none !important;
  transition: none !important;
}
.gjs-dashed .header__nav {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}
.gjs-dashed .swiper-wrapper {
  display: flex;
}
.gjs-dashed .target {
  display: none;
}

.target {
  z-index: -1;
}

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

.section-title {
  position: relative;
  z-index: 1;
}
.section-title .en {
  color: var(--or02);
  font-family: var(--corinthia);
  font-size: clamp(2.813rem, 1.699rem + 4.82vw, 6.25rem);
  opacity: 0.3;
  margin-bottom: -4vw;
}
.section-title .ja {
  font-size: clamp(1.25rem, 0.845rem + 1.75vw, 2.5rem);
  font-weight: 500;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.content-title {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  font-weight: 500;
}

.reserve a {
  border: 1px solid rgba(89, 89, 89, 0.3);
  border-radius: 100px;
  background-image: linear-gradient(97deg, #d0e9a9 0%, #fbf2e4 80%, #d0e9a9 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  font-family: var(--gothic);
  font-size: clamp(0.938rem, 0.877rem + 0.26vw, 1.125rem);
  padding: 7px 25px;
}
@media (min-width: 768px) {
  .reserve a {
    padding: 7px 43px;
  }
}
.reserve a:hover {
  background-position: 120% 50%;
}

.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: background 0.3s ease;
}
.header.is-show {
  background-color: rgba(255, 255, 255, 0.8);
}
.header__inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: var(--base);
  padding: 20px;
}
@media (min-width: 768px) {
  .header__inner {
    padding: 24px 55px;
  }
}
.header__inner > .logo-sticky {
  position: static;
  padding: 0;
  margin-right: auto;
}
.header__brand {
  margin-right: 30px;
}
.header__brand > a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 140px;
}
@media (min-width: 768px) {
  .header__brand > a {
    max-width: 170px;
  }
}
.header__brand > a:hover {
  opacity: 0.5;
}
.header .reserve {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  inset-inline: 0;
  width: 100%;
}
@media (min-width: 576px) {
  .header .reserve {
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header .reserve > a {
  width: 100%;
  border-radius: 0;
  border: none;
  text-align: center;
  padding: 12px 20px;
}
@media (min-width: 576px) {
  .header .reserve > a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 100px;
    padding: 7px 43px;
    border: 1px solid rgba(89, 89, 89, 0.3);
  }
}
.header__nav {
  position: fixed;
  z-index: 997;
  inset-block: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
  visibility: hidden;
  background-color: var(--gray01);
  transform: translateX(100%);
  background: linear-gradient(165deg, #fff0d7 -1.01%, #ffd4a3 100%);
  display: flex;
}
@media (min-width: 576px) {
  .header__nav {
    display: flex;
    align-items: center;
    width: 500px;
    left: auto;
    right: 0;
  }
}
@media (max-height: 600px) {
  .header__nav {
    display: block;
  }
}
.header__nav.open {
  visibility: visible;
  transform: translateX(0%);
}
.header__nav-wrap {
  flex: 1;
}
.header__nav-brand {
  width: clamp(180px, 32vw, 315px);
  padding-right: 0;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .header__nav-brand {
    width: clamp(230px, 25vw, 375px);
    padding-right: 50px;
    margin-bottom: 0;
  }
}
.header__nav-brand a {
  width: 100%;
}
.header__nav-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  margin-inline: auto;
  display: flex;
  padding-block: 150px;
  padding-inline: clamp(20px, 7vw, 100px);
  gap: 20px;
  overflow-y: auto;
}
@media (min-width: 576px) {
  .header__nav-list {
    align-items: flex-start;
    gap: clamp(15px, 6vw, 20px);
  }
}
.header__nav-list .btn-wrap {
  width: 100%;
  margin-top: 35px;
  text-align: center;
}
@media (min-width: 576px) {
  .header__nav-list .btn-wrap {
    text-align: left;
  }
}
.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.9375rem;
  text-align: center;
  width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .header__nav-link {
    font-size: clamp(0.938rem, 0.877rem + 0.26vw, 1.125rem);
    align-items: flex-start;
    text-align: left;
  }
}
.header__nav-link:hover {
  opacity: 0.7;
}

#hum-btn {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  margin-block: auto;
  border-radius: 4px;
  margin-left: 15px;
}
@media (min-width: 768px) {
  #hum-btn {
    margin-left: 30px;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s ease;
  box-sizing: border-box;
  width: 27px;
  height: 19px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.btn-trigger__bar {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  height: 1px;
  transition: all 0.5s ease;
  background-color: var(--main);
  border-radius: 99px;
}
.btn-trigger__bar:nth-of-type(1) {
  top: 0;
  left: 0;
  -webkit-animation: menu-bar01 0.75s forwards;
          animation: menu-bar01 0.75s forwards;
}
.btn-trigger__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.btn-trigger__bar:nth-of-type(3) {
  bottom: 0;
  left: 0;
  -webkit-animation: menu-bar02 0.75s forwards;
          animation: menu-bar02 0.75s forwards;
}

.is-nav-open .btn-trigger {
  flex-direction: row;
  transition: all 0.5s ease;
}
.is-nav-open .btn-trigger__bar:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
          animation: active-menu-bar01 0.75s forwards;
}
.is-nav-open .btn-trigger__bar:nth-of-type(2) {
  opacity: 0;
}
.is-nav-open .btn-trigger__bar:nth-of-type(3) {
  -webkit-animation: active-menu-bar02 0.75s forwards;
          animation: active-menu-bar02 0.75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    transform: translateY(9px) rotate(45deg);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(9px) rotate(45deg);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(9px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(9px) rotate(45deg);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    transform: translateY(-9px) rotate(-45deg);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-9px) rotate(-45deg);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(-9px) rotate(-45deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(-9px) rotate(-45deg);
  }
}
.footer {
  background: linear-gradient(121deg, #fff0d7 0.97%, #ffd4a3 100%);
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .footer {
    flex-direction: row;
  }
}
.footer__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__title {
    flex-direction: row;
    align-items: baseline;
  }
}
.footer__title h2 {
  font-size: clamp(1.875rem, 1.187rem + 2.98vw, 4rem);
  font-weight: 600;
}
.footer__title > p {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px 25px;
}
@media (min-width: 576px) {
  .footer__links {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 768px) {
  .footer__links {
    justify-content: flex-start;
  }
}
.footer__links > * {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__links > * {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.footer__links a {
  flex-grow: 1;
  min-width: 230px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 10px;
}
.footer__left {
  width: 100%;
  height: 400px;
}
@media (min-width: 992px) {
  .footer__left {
    width: 30%;
    height: auto;
  }
}
.footer__right {
  flex: 1;
  width: 100%;
  padding-block: 40px;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .footer__right {
    padding-block: 45px;
    padding-inline: clamp(20px, 7vw, 95px);
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 24px clamp(30px, 7vw, 95px);
}
@media (min-width: 576px) {
  .footer__list {
    flex-direction: row;
    align-items: stretch;
  }
}
.footer__list h3 {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 900;
}
@media (min-width: 576px) {
  .footer__list h3 {
    font-weight: 500;
  }
}
.footer__list h3::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--main);
}
.footer__list-left, .footer__list-right {
  width: 100%;
}
@media (min-width: 576px) {
  .footer__list-left, .footer__list-right {
    width: calc(50% - clamp(15px, 3.5vw, 47.5px));
  }
}
.footer__list-right {
  display: flex;
  flex-direction: column;
}
.footer__list-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-top__fv {
  position: relative;
  min-height: 100vh;
}
.p-top__fv-txt {
  position: absolute;
  z-index: 1;
  width: 100%;
  padding-inline: clamp(20px, 6vw, 75px);
  inset-inline: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .p-top__fv-txt {
    top: auto;
    bottom: 65px;
    transform: none;
  }
}
.p-top__fv-txt h1,
.p-top__fv-txt > p {
  color: white;
  text-align: center;
  opacity: 0;
}
@media (min-width: 768px) {
  .p-top__fv-txt h1,
.p-top__fv-txt > p {
    text-align: right;
  }
}
.p-top__fv-txt h1 {
  font-family: var(--corinthia);
  font-size: clamp(1.125rem, -0.292rem + 5.8vw, 5.5rem);
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-top__fv-txt h1 {
    justify-content: flex-end;
  }
}
@media (max-width: 500px) {
  .p-top__fv-txt h1 {
    font-size: 2rem;
    flex-direction: column;
  }
}
.p-top__fv-txt > p {
  font-size: clamp(1.125rem, 0.923rem + 0.88vw, 1.75rem);
  font-weight: 500;
}
.p-top__fv-txt > p > span {
  display: inline-block;
}
.p-top .swiper-wrapper {
  min-height: inherit;
}
.p-top .swiper-slide {
  overflow: hidden;
  min-height: inherit;
  height: 100vh;
}
.p-top .swiper-slide.slide01 img {
  -o-object-position: left;
     object-position: left;
}
.p-top .swiper-slide.slide02 img {
  -o-object-position: left;
     object-position: left;
}
.p-top .swiper-slide.slide03 img {
  -o-object-position: center;
     object-position: center;
}
.p-top .swiper-slide img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 5s ease-in-out;
  display: block;
}
.p-top .swiper-slide-active img {
  transform: scale(1);
}
.p-top .page-body {
  position: relative;
}
.p-top__about {
  padding-block: clamp(100px, 15vw, 250px) clamp(80px, 12vw, 150px);
}
.p-top__about-top {
  margin-bottom: clamp(60px, 12vw, 160px);
}
.p-top__about-top .box-img {
  position: relative;
  padding-top: clamp(35px, 5vw, 70px);
}
.p-top__about-top .box-img .en {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -9vw;
  font-size: clamp(2.188rem, 0.871rem + 5.69vw, 6.25rem);
  line-height: 1;
  color: var(--or02);
  white-space: nowrap;
}
.p-top__about-top .box-img .target {
  top: 12vw;
  z-index: -1;
  max-width: clamp(280px, 48vw, 700px);
}
.p-top__about-center {
  margin-bottom: clamp(60px, 12vw, 160px);
}
.p-top__about-bottom .section-title {
  position: relative;
  z-index: 1;
}
.p-top__about-bottom .section-title .target {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  max-width: clamp(280px, 48vw, 700px);
}
.p-top__about-bottom .box-txt > p {
  position: relative;
  z-index: 1;
}
.p-top__about-bottom .box-img {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .p-top__about-bottom .box-img .box {
    width: calc(50% - 7.5px);
  }
}
@media (max-width: 575px) {
  .p-top__about-bottom .box-img .box {
    width: 30%;
  }
}
@media (max-width: 575px) {
  .p-top__about-bottom .box-img .box:nth-child(4), .p-top__about-bottom .box-img .box:nth-child(5), .p-top__about-bottom .box-img .box:nth-child(6), .p-top__about-bottom .box-img .box:nth-child(7) {
    width: 31.5%;
  }
}
.p-top__service {
  padding-block: clamp(80px, 12vw, 150px);
  background: linear-gradient(160deg, #ffecce 0%, #fff8ec 25%, #ffecce 50%, #fff8ec 75%, #ffecce 100%);
}
.p-top__service .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 10vw, 160px);
}
.p-top__service .box-wrap .box {
  position: relative;
  z-index: 1;
}
.p-top__service .box-wrap .box::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  display: block;
  background-color: white;
  width: 50%;
  height: 60%;
}
@media (min-width: 768px) {
  .p-top__service .box-wrap .box::after {
    width: 35%;
    height: 85%;
  }
}
.p-top__service .box-wrap .box-inner {
  margin-inline: auto;
  padding-inline: 20px;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .p-top__service .box-wrap .box-inner {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .p-top__service .box-wrap .box-inner {
    max-width: 720px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .p-top__service .box-wrap .box-inner {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .p-top__service .box-wrap .box-inner {
    max-width: 1140px;
  }
}
.p-top__service .box-wrap .box-img {
  position: relative;
  padding-top: 6vw;
}
.p-top__service .box-wrap .box-img .en {
  position: absolute;
  z-index: 1;
  top: 3vw;
  font-size: clamp(2.188rem, 0.871rem + 5.69vw, 6.25rem);
  line-height: 1;
  color: var(--or02);
  white-space: nowrap;
}
.p-top__service .box-wrap .box:nth-child(odd) .box-img .en {
  right: -6vw;
}
.p-top__service .box-wrap .box:nth-child(even)::after {
  left: auto;
  right: 0;
}
.p-top__service .box-wrap .box:nth-child(even) .box-img .en {
  left: -6vw;
}
.p-top__service .box-wrap .box:nth-child(even) .box-inner {
  right: 0;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .p-top__service .box-wrap .box:nth-child(even) .box-inner {
    flex-direction: row;
  }
}
.p-top__message .section-title .en, .p-top__news .section-title .en {
  font-size: clamp(1.5rem, 1.277rem + 0.96vw, 2.188rem);
  margin-bottom: -15px;
}
.p-top__message {
  background: radial-gradient(242.24% 161.27% at 0% -8.84%, #f5fce1 0%, #fffcf6 62.05%);
}
.p-top__message .box-txt {
  padding-block: clamp(45px, 5vw, 70px);
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .p-top__message .box-txt {
    padding-inline: clamp(20px, 7vw, 100px) 20px;
  }
}
.p-top__news {
  padding-block: clamp(80px, 7vw, 100px);
}
.p-top__news .webgene-blog {
  display: flex;
  flex-direction: column;
}
.p-top__news .webgene-blog article a {
  padding-block: 20px;
  border-bottom: solid 1px var(--or02);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px 50px;
}
@media (min-width: 768px) {
  .p-top__news .webgene-blog article a {
    padding-block: 35px;
    flex-direction: row;
  }
}
.p-top__news .webgene-blog article:first-child a {
  padding-top: 0;
}
.p-top__news .webgene-blog article .blog-date {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top__news .webgene-blog article .blog-date {
    width: 110px;
  }
}
.p-top__news .webgene-blog article .blog-title {
  flex: 1;
  width: 100%;
}
.p-top__other {
  padding-block: clamp(40px, 5vw, 70px) clamp(80px, 11vw, 140px);
}
.p-top__other a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
.p-top__other a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.6s ease;
}
.p-top__other a > img {
  position: absolute;
  z-index: -1;
  height: 100%;
  inset: 0;
  transition: all 0.6s ease;
}
.p-top__other a:hover > img {
  transform: scale(1.1);
}
.p-top__other a:hover::after {
  opacity: 1;
}
.p-top__other a .title {
  text-align: center;
}
.p-top__other a .title .en,
.p-top__other a .title .ja {
  color: white;
  font-weight: 500;
}
.p-top__other a .title .en {
  font-family: var(--corinthia);
  font-size: clamp(0.938rem, 0.877rem + 0.26vw, 1.125rem);
  margin-bottom: 10px;
}
.p-top__other a .title .ja {
  font-size: clamp(1.375rem, 1.173rem + 0.88vw, 2rem);
}
.p-top__map {
  height: clamp(380px, 47vw, 700px);
}

.logo-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 998;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: clamp(20px, 1.5vw, 30px);
  padding-block: 8px;
}
@media (min-width: 576px) {
  .logo-sticky {
    padding-block: 20px;
  }
}
.logo-sticky a {
  display: flex;
}
.logo-sticky img {
  max-width: 80px;
}
@media (min-width: 768px) {
  .logo-sticky img {
    max-width: 120px;
  }
}
.logo-sticky.is-fixed {
  position: fixed;
}

.page-fv {
  position: relative;
  padding-block: clamp(100px, 17vw, 250px) clamp(80px, 12vw, 140px);
  z-index: 1;
}
.page-fv .target {
  z-index: -1;
  max-width: clamp(280px, 56vw, 765px);
  pointer-events: none;
}
.page-fv .target.target01 {
  top: 8vw;
  left: -40vw;
}
@media (min-width: 768px) {
  .page-fv .target.target01 {
    left: -15vw;
  }
}
.page-fv .target.target02 {
  bottom: 0;
  right: -40vw;
}
@media (min-width: 768px) {
  .page-fv .target.target02 {
    right: -15vw;
  }
}
.page-fv__title {
  margin-bottom: clamp(45px, 5vw, 60px);
}
.page-fv__title .en {
  line-height: 0;
  font-size: clamp(2.813rem, 1.699rem + 4.82vw, 6.25rem);
  color: rgba(234, 218, 195, 0.3);
}
.page-fv__title h1 {
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
}
.page-fv__img img {
  min-height: 420px;
}

.link-btn {
  padding-block: clamp(80px, 13vw, 180px);
}
.link-btn a {
  padding: 75px 20px;
  max-width: 1000px;
  margin-inline: auto;
}
.link-btn a.gr {
  background-color: var(--gr01);
}
.link-btn a.gr:hover {
  background-color: var(--or03);
}
.link-btn a.yr {
  background-color: var(--or03);
}
.link-btn a.yr:hover {
  background-color: var(--gr01);
}
.link-btn .en {
  color: var(--or02);
  font-family: var(--corinthia);
  font-size: clamp(2.813rem, 1.699rem + 4.82vw, 6.25rem);
  line-height: 1.5;
}

.p-about__sec01 {
  padding-block: clamp(80px, 13vw, 175px);
}
.p-about__sec02 {
  background: var(--gr-gra01);
  padding-block: clamp(60px, 9vw, 120px);
}
.p-about__sec03 {
  background: var(--or-gra01);
  padding-block: clamp(80px, 12vw, 150px);
}
.p-about__sec03 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 13vw, 180px);
}
.p-about__sec03 .box-wrap .box {
  position: relative;
  z-index: 1;
}
.p-about__sec03 .box-wrap .box::after {
  content: "";
  position: absolute;
  top: -30px;
  z-index: -1;
  display: block;
  aspect-ratio: 6/5;
  background-color: white;
  height: auto;
  width: 60%;
}
@media (min-width: 576px) {
  .p-about__sec03 .box-wrap .box::after {
    aspect-ratio: 6/4;
  }
}
@media (min-width: 768px) {
  .p-about__sec03 .box-wrap .box::after {
    top: -50px;
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .p-about__sec03 .box-wrap .box::after {
    top: 0;
    width: 35%;
  }
}
.p-about__sec03 .box-wrap .box .container {
  display: flex;
  flex-direction: column;
  gap: 30px 50px;
}
@media (min-width: 1200px) {
  .p-about__sec03 .box-wrap .box .container {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .p-about__sec03 .box-wrap .box:nth-child(odd) .container {
    flex-direction: row;
  }
}
.p-about__sec03 .box-wrap .box:nth-child(even)::after {
  right: 0;
}
@media (min-width: 1200px) {
  .p-about__sec03 .box-wrap .box:nth-child(even) .container {
    flex-direction: row-reverse;
  }
}
.p-about__sec03 .box-wrap .box-img {
  width: 80%;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .p-about__sec03 .box-wrap .box-img {
    width: 53%;
    padding-top: 5vw;
  }
}
.p-about__sec03 .box-wrap .box-img img {
  aspect-ratio: 600/400;
}
.p-about__sec03 .box-wrap .box-txt {
  width: 100%;
  flex: 1;
}
.p-about__sec03 .box-wrap .box-txt .title .number {
  font-size: clamp(1.875rem, 1.47rem + 1.75vw, 3.125rem);
  color: var(--or02);
  font-family: var(--corinthia);
  line-height: 1.4;
}
.p-about__sec03 .box-wrap .box-txt .title h3 {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
}
.p-about__sec03 .box-wrap .box-txt .point {
  background-color: white;
  border-radius: 20px;
  padding: 30px clamp(20px, 2.5vw, 40px);
  font-family: var(--gothic);
}
.p-about__sec03 .box-wrap .box-txt .point h4 {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  font-family: var(--gothic);
  display: flex;
  gap: 10px;
  line-height: 1;
  border-bottom: dotted 2px #fdf29a;
}
.p-about__sec03 .box-wrap .box-txt .point h4::before {
  content: "";
  display: block;
  width: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  height: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  background-color: #fdf29a;
  border-radius: 100px;
}

.p-menu__sec01 {
  padding-block: clamp(50px, 7vw, 100px) clamp(80px, 12vw, 150px);
  background: linear-gradient(160deg, #ffecce 0%, #fff8ec 25%, #ffecce 50%, #fff8ec 75%, #ffecce 100%);
}
.p-menu__sec01 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 150px);
}

.menu-contents {
  padding-block: clamp(80px, 12vw, 150px);
}
.menu-contents .box {
  margin-bottom: clamp(60px, 7vw, 130px);
}
.menu-contents .box .menu-title {
  background: linear-gradient(90deg, #ffecce 0%, #ffd4a3 100%);
  padding: 14px 20px 10px;
  margin-bottom: 40px;
}
.menu-contents .box .menu-title p {
  color: rgba(89, 89, 89, 0.3);
  line-height: 1.2;
}
.menu-contents .box .tag p {
  background-color: var(--gr01);
  font-size: 0.8125rem;
  padding: 5px 20px;
  border-radius: 50px;
}
.menu-contents .box .warp,
.menu-contents .box .tag {
  gap: 8px 0;
}
.menu-contents .list-dl {
  padding-left: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px 50px;
  margin-bottom: clamp(40px, 4vw, 60px);
}
@media (min-width: 768px) {
  .menu-contents .list-dl {
    padding-left: 20px;
    flex-direction: row;
  }
}
.menu-contents .list-dl:last-of-type {
  margin-bottom: 0;
}
.menu-contents .list-dl::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 100%;
  left: 0;
  inset-block: 0;
  background-color: var(--yr);
}
@media (min-width: 768px) {
  .menu-contents .list-dl::before {
    width: 8px;
  }
}
.menu-contents .list-dt {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-contents .list-dd {
  width: 100%;
  text-align: right;
}
@media (min-width: 768px) {
  .menu-contents .list-dd {
    width: 150px;
  }
}

@media (min-width: 992px) {
  .p-gallery__sec01 .container {
    max-width: 1040px;
  }
}
.p-gallery__sec01 .box {
  position: relative;
  z-index: 1;
}
.p-gallery__sec01 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 14vw, 200px);
}
.p-gallery__sec01 .box .target {
  display: none;
}
@media (min-width: 768px) {
  .p-gallery__sec01 .box .target {
    top: 35vw;
    left: 50%;
    transform: translateX(-50%);
    max-width: clamp(400px, 60vw, 900px);
    display: block;
  }
}
.p-gallery__sec01 .box-top {
  align-items: center;
}
@media (min-width: 768px) {
  .p-gallery__sec01 .box-top {
    align-items: flex-start;
  }
}
.p-gallery__sec01 .box-top .section-title .en {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-gallery__sec01 .box-top .section-title {
    padding-left: clamp(20px, 7vw, 100px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-gallery__sec01 .box-top .box-txt {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(150px, 12vw, 180px);
}
@media (min-width: 768px) {
  .p-gallery__sec01 .box-top .box-txt {
    padding-top: 14vw;
    padding-bottom: 0;
  }
}
.p-gallery__sec01 .box-top .deco {
  position: absolute;
  z-index: -1;
  max-width: clamp(180px, 24vw, 350px);
  top: 14%;
}
@media (min-width: 576px) {
  .p-gallery__sec01 .box-top .deco {
    top: 24%;
  }
}
@media (min-width: 768px) {
  .p-gallery__sec01 .box-top .deco {
    top: 74%;
  }
}
.p-gallery__sec01 .box-top .box-img img {
  aspect-ratio: 4.9/6.5;
}
.p-gallery__sec01 .box:nth-child(odd) .box-top .deco {
  left: 13%;
}
@media (min-width: 768px) {
  .p-gallery__sec01 .box:nth-child(odd) .box-top .deco {
    left: -10%;
  }
}
@media (min-width: 768px) {
  .p-gallery__sec01 .box:nth-child(even) .box-top {
    flex-direction: row-reverse;
  }
}
.p-gallery__sec01 .box:nth-child(even) .box-top .deco {
  right: 13%;
}
@media (min-width: 768px) {
  .p-gallery__sec01 .box:nth-child(even) .box-top .deco {
    right: -10%;
  }
}
.p-gallery__sec01 .box-center img, .p-gallery__sec01 .box-bottom img {
  aspect-ratio: 3.5/4.7;
}

.p-beforeafter__sec01 {
  padding-bottom: clamp(100px, 14vw, 200px);
}
.p-beforeafter__sec01 > p {
  padding-block: clamp(40px, 6vw, 80px) clamp(80px, 12vw, 150px);
}
.p-beforeafter__sec01 .box {
  position: relative;
  z-index: 1;
}
.p-beforeafter__sec01 .box::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  background: linear-gradient(107deg, #fff8ec 0%, #ffd4a3 100%);
  bottom: 0;
  margin-inline: calc(50% - 50vw);
  width: 90%;
  height: 40%;
}
@media (min-width: 992px) {
  .p-beforeafter__sec01 .box::after {
    width: 48%;
    height: 63%;
  }
}
@media (max-width: 575px) {
  .p-beforeafter__sec01 .box::after {
    width: 95%;
    height: 26%;
  }
}
@media (max-width: 575px) {
  .p-beforeafter__sec01 .box > .container .row {
    margin-inline: 0;
  }
}
.p-beforeafter__sec01 .box:nth-child(odd) .container > .row {
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .p-beforeafter__sec01 .box:nth-child(odd) .container > .row {
    flex-direction: row;
  }
}
.p-beforeafter__sec01 .box:nth-child(odd)::after {
  left: 0;
}
.p-beforeafter__sec01 .box:nth-child(even) .container > .row {
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .p-beforeafter__sec01 .box:nth-child(even) .container > .row {
    flex-direction: row-reverse;
  }
}
.p-beforeafter__sec01 .box:nth-child(even)::after {
  right: 0;
}
.p-beforeafter__sec01 .box .tag {
  padding: 7px 20px;
  border-radius: 50px;
  background-color: var(--gr01);
  font-family: var(--gothic);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  line-height: 1.2;
}
.p-beforeafter__sec01 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 14.2vw, 200px);
}

.p-message__sec01 {
  position: relative;
  z-index: 1;
  overflow: clip;
  background: var(--gr-gra01);
  padding-block: clamp(80px, 12vw, 160px) clamp(160px, 33vw, 500px);
}
.p-message__sec01 .deco {
  position: absolute;
  z-index: -1;
  max-width: clamp(230px, 49vw, 740px);
  width: 100%;
  bottom: -8vw;
  right: -4vw;
}

.p-faq .list-dl {
  padding-block: clamp(20px, 3vw, 45px);
  border-bottom: solid 1px var(--or02);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-faq .list-dl:first-child {
  padding-top: 0;
}
.p-faq .list-dt, .p-faq .list-dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(10px, 3vw, 40px);
}
.p-faq .list-dt > p, .p-faq .list-dd > p {
  padding-block: clamp(5px, 1vw, 15px);
  flex: 1;
}
.p-faq .list-dt::before, .p-faq .list-dd::before {
  content: "";
  display: block;
  width: clamp(40px, 5vw, 68px);
  min-width: clamp(40px, 5vw, 68px);
  height: clamp(40px, 5vw, 68px);
  min-height: clamp(40px, 5vw, 68px);
}
.p-faq .list-dt::before {
  background: url(../images/q-icon.svg) center/contain no-repeat;
}
.p-faq .list-dd::before {
  background: url(../images/a-icon.svg) center/contain no-repeat;
}
.p-faq .attention {
  padding-block: clamp(80px, 12vw, 150px);
}

.p-news__sec01 {
  padding-block: clamp(80px, 11vw, 140px);
}
.p-news .webgene-blog {
  max-width: 910px;
  padding-inline: 20px;
  margin-inline: auto;
}
.p-news .webgene-blog > article a {
  padding-block: 40px;
  border-bottom: solid 1px var(--or02);
  display: flex;
  flex-direction: column;
  gap: 15px 50px;
}
@media (min-width: 768px) {
  .p-news .webgene-blog > article a {
    padding-block: clamp(30px, 4vw, 50px);
    flex-direction: row;
    align-items: center;
  }
}
.p-news .webgene-blog > article:first-of-type a {
  padding-top: 0px;
}
.p-news .webgene-blog > article:last-child {
  border-bottom: none;
}
.p-news .webgene-blog > article .date,
.p-news .webgene-blog > article .title {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.p-news .webgene-blog > article .date {
  color: var(--acc);
  font-family: var(--futura);
}
.p-news .webgene-blog > article .title {
  flex: 1;
}
.p-news .webgene-pagination {
  margin-top: clamp(60px, 8vw, 120px);
}
.p-news .blog-item__img {
  position: relative;
  z-index: 1;
  width: 65%;
  margin-inline: auto;
  aspect-ratio: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-news .blog-item__img {
    width: 150px;
  }
}
.p-news .blog-item__img img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}
.p-news .blog-item__img > .noImage {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-news .blog-item__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px 15px;
  flex: 1;
}

.p-newsdetail {
  padding-block: clamp(70px, 18vw, 270px) clamp(100px, 17vw, 250px);
}
.p-newsdetail .btn-block {
  margin-top: clamp(20px, 3vw, 45px);
}

.newsdetail-contents {
  margin-inline: auto;
  max-width: 820px;
  margin-bottom: clamp(60px, 9vw, 130px);
}
.newsdetail-contents__date {
  margin-bottom: 15px;
}
.newsdetail-contents__title {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  margin-bottom: 35px;
}
.newsdetail-contents__meta {
  margin-top: 35px;
}

.p-news .webgene-pagination,
.p-newsdetail .webgene-pagination {
  margin-top: clamp(60px, 6vw, 80px);
}
.p-news .webgene-pagination ul,
.p-newsdetail .webgene-pagination ul {
  max-width: 580px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 20px;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination ul,
.p-newsdetail .webgene-pagination ul {
    flex-direction: row;
    align-items: stretch;
  }
}
.p-news .webgene-pagination li,
.p-newsdetail .webgene-pagination li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-news .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .prev > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 100px 15px;
  padding-block: 8px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 200px;
  width: 100%;
  background: radial-gradient(100.09% 138.41% at 0.73% 4.31%, #ffcdab 0%, #ffecce 100%);
  border: 1px solid rgba(89, 89, 89, 0.3);
  font-family: var(--gothic);
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .prev > a {
    padding-inline: 120px 30px;
    padding-block: 10px;
    font-size: 1rem;
    min-width: 260px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-news .webgene-pagination .prev > a::after,
.p-newsdetail .webgene-pagination .prev > a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
  left: 15px;
  display: block;
  background: url(../images/arrow.svg) center/contain no-repeat;
  width: 24px;
  height: 4px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .prev > a::after,
.p-newsdetail .webgene-pagination .prev > a::after {
    width: 31px;
    height: 8px;
    left: 30px;
  }
}
.p-news .webgene-pagination .prev > a:hover::after,
.p-newsdetail .webgene-pagination .prev > a:hover::after {
  transform: translateY(-50%) translateX(-5px) scale(-1, 1);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .next,
.p-newsdetail .webgene-pagination .next {
    margin-left: auto;
  }
}
.p-news .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .next > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 15px 100px;
  padding-block: 8px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 200px;
  width: 100%;
  background: radial-gradient(100.09% 138.41% at 0.73% 4.31%, #ffcdab 0%, #ffecce 100%);
  border: 1px solid rgba(89, 89, 89, 0.3);
  font-family: var(--gothic);
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .next > a {
    padding-inline: 30px 120px;
    padding-block: 10px;
    font-size: 1rem;
    min-width: 260px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-news .webgene-pagination .next > a::after,
.p-newsdetail .webgene-pagination .next > a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: block;
  background: url(../images/arrow.svg) center/contain no-repeat;
  width: 24px;
  height: 4px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .next > a::after,
.p-newsdetail .webgene-pagination .next > a::after {
    width: 31px;
    height: 8px;
    right: 30px;
  }
}
.p-news .webgene-pagination .next > a:hover::after,
.p-newsdetail .webgene-pagination .next > a:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
}
.p-news .webgene-pagination .btn-block,
.p-newsdetail .webgene-pagination .btn-block {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .btn-block,
.p-newsdetail .webgene-pagination .btn-block {
    margin-top: 50px;
  }
}
.p-news .webgene-pagination .btn-block > a,
.p-newsdetail .webgene-pagination .btn-block > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 100px 15px;
  padding-block: 8px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 250px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: radial-gradient(100.09% 138.41% at 0.73% 4.31%, #ffcdab 0%, #ffecce 100%);
  border: 1px solid rgba(89, 89, 89, 0.3);
  font-family: var(--gothic);
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .btn-block > a,
.p-newsdetail .webgene-pagination .btn-block > a {
    padding-inline: 120px 30px;
    padding-block: 10px;
    font-size: 1rem;
    min-width: 260px;
  }
}
.p-news .webgene-pagination .btn-block > a::after,
.p-newsdetail .webgene-pagination .btn-block > a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
  left: 15px;
  display: block;
  background: url(../images/arrow.svg) center/contain no-repeat;
  width: 24px;
  height: 4px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .btn-block > a::after,
.p-newsdetail .webgene-pagination .btn-block > a::after {
    width: 31px;
    height: 8px;
    left: 30px;
  }
}
.p-news .webgene-pagination .btn-block > a:hover::after,
.p-newsdetail .webgene-pagination .btn-block > a:hover::after {
  transform: translateY(-50%) translateX(-5px) scale(-1, 1);
  transition: all 0.3s ease;
}

.p-information__sec01 {
  padding-block: clamp(40px, 6vw, 80px) clamp(60px, 7vw, 100px);
}
.p-information__sec01 .container {
  max-width: 840px;
}
.p-information__sec01 .list-dl {
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px 20px;
  border-bottom: solid 1px var(--or02);
}
@media (min-width: 768px) {
  .p-information__sec01 .list-dl {
    flex-direction: row;
  }
}
.p-information__sec01 .list-dt {
  width: 100%;
}
@media (min-width: 768px) {
  .p-information__sec01 .list-dt {
    width: 150px;
  }
}
.p-information__sec01 .list-dd {
  flex: 1;
  width: 100%;
}
.p-information__sec02 {
  padding-block: clamp(40px, 6vw, 80px) 0;
}
.p-information__sec02 .map {
  height: clamp(380px, 47vw, 700px);
}
.p-information__sec03 {
  padding-block: clamp(60px, 7vw, 100px) 0;
}
.p-information #reserve .row {
  max-width: 840px;
  margin-inline: auto;
  align-items: center;
}
@media (min-width: 768px) {
  .p-information #reserve .row {
    align-items: stretch;
  }
}
.p-information #reserve .row a {
  padding: clamp(40px, 3.5vw, 55px) 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-information #reserve .row a .wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.p-information #reserve .row a .arrow {
  width: clamp(20px, 1.5vw, 31px);
  display: flex;
  align-items: center;
  justify-self: unset;
}
.p-information #reserve .row a .arrow img {
  transition: all 0.3s ease;
}
.p-information #reserve .row a:hover .arrow img {
  transform: translateX(6px);
}
.p-information #reserve .row a.gr {
  background-color: var(--gr01);
}
.p-information #reserve .row a.gr:hover {
  background-color: var(--or03);
}