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

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

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

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

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

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

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

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

html.is-resizing *,
html.is-resizing *::before,
html.is-resizing *::after {
  transition: none !important;
}

a {
  transition: all 0.3s ease;
  display: inline-block;
}
a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  opacity: 0.6;
}

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

.js-stagger > * {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-stagger.is-show > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.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-typein {
  opacity: 0;
}
.js-typein > * {
  opacity: 0;
}

.js-tab-panel {
  display: none;
  opacity: 0;
}
.js-tab-panel.is-show {
  display: block;
  -webkit-animation: panel-show 0.6s ease forwards;
  animation: panel-show 0.6s ease forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
:root {
  --c-bg: #828181;
  --c-bg2: #9c9c9c;
  --c-panel: #959595;
  --c-dark: #575757;
  --c-white: #fff;
  --noto-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --noto-en: "Noto Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Segoe UI", Arial, sans-serif;
}

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

body {
  font-size: 0.875rem;
  font-weight: 200;
  line-height: 1.8;
  letter-spacing: normal;
  font-family: var(--noto-ja);
  background-color: var(--c-bg);
  color: var(--c-white);
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
    line-height: 2.2;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 200 !important;
}

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

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

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

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

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

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

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

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

.bg-bg2 {
  background-color: var(--c-bg2) !important;
}

.bg-panel {
  background-color: var(--c-panel) !important;
}

.bg-dark {
  background-color: var(--c-dark) !important;
}

.bg-white {
  background-color: var(--c-white) !important;
}

.bc-w {
  border: solid 1px var(--c-white) !important;
}

.bc-t-w {
  border-top: solid 1px var(--c-white) !important;
}

.bc-b-w {
  border-bottom: solid 1px var(--c-white) !important;
}

.bc-l-w {
  border-left: solid 1px var(--c-white) !important;
}

.bc-r-w {
  border-right: solid 1px var(--c-white) !important;
}

.fw-sm {
  font-weight: 100;
}

.fw-md {
  font-weight: 200;
}

.fw-lg {
  font-weight: 300;
}

.fw-xl {
  font-weight: 400;
}

.bb-w {
  border-bottom: solid 1px white;
}

.gjs-dashed {
  background: transparent;
}
.gjs-dashed .header__nav {
  visibility: visible !important;
  opacity: 1 !important;
}
.gjs-dashed * {
  -webkit-animation: none !important;
          animation: none !important;
  transition: none !important;
}
.gjs-dashed .scroll-mask,
.gjs-dashed .scroll-mask-vertical {
  opacity: 1 !important;
  -webkit-mask-image: none !important;
          mask-image: none !important;
}
.gjs-dashed .p-concept .sec02 .box-txt p {
  color: white !important;
}
.gjs-dashed .js-typein {
  opacity: 1 !important;
}
.gjs-dashed .js-typein > * {
  opacity: 1 !important;
}
.gjs-dashed .page-hr img {
  display: block !important;
}

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

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

.aspect-row {
  aspect-ratio: 4/3;
}

.btn-wrap {
  display: flex;
}
.btn-wrap a {
  display: inline-flex;
  align-items: baseline;
  justify-content: space-between;
  min-width: 130px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .btn-wrap a {
    font-size: 1.25rem;
    gap: 35px;
    min-width: 170px;
  }
}
.btn-wrap a .arrow {
  width: 30px;
}
@media (min-width: 768px) {
  .btn-wrap a .arrow {
    width: 47px;
  }
}
.btn-wrap a .arrow img {
  transition: all 0.3s ease;
}
.btn-wrap a:hover .arrow img {
  transform: translateX(4px);
}

/* ==========================================
Text / Image reveal animation hooks
(common.js: .blur / .scroll-mask + .is-visible)
========================================== */
.scroll-mask,
.scroll-mask-vertical {
  display: block;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.scroll-mask img,
.scroll-mask-vertical img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.15);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-mask.is-visible,
.scroll-mask-vertical.is-visible {
  opacity: 1;
}

.scroll-mask.is-visible img,
.scroll-mask-vertical.is-visible img {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-mask,
.scroll-mask-vertical {
    transition: none;
    opacity: 1;
  }
  .scroll-mask img,
.scroll-mask-vertical img {
    transition: none;
    transform: none;
  }
}
.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
}
.header__inner {
  pointer-events: none;
  padding-inline: 20px;
  padding-block: 20px 0px;
}
@media (min-width: 768px) {
  .header__inner {
    padding-inline: 60px;
    padding-block: 33px 0px;
  }
}
.header__brand {
  pointer-events: all;
  max-width: clamp(7.5rem, 5.981rem + 6.57vw, 12.188rem);
}
.header__brand:hover {
  filter: drop-shadow(3px 3px 10px #777);
}
.header__nav {
  pointer-events: all;
  position: fixed;
  z-index: 997;
  inset: 0;
  width: 100%;
  height: 100dvh;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--c-panel);
  transition: all 0.4s ease;
  opacity: 0;
  margin-left: auto;
  justify-content: center;
  padding-block: 50px;
  padding-inline: 20px;
  overflow-y: auto;
  gap: 30px;
}
.header__nav::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}
.header__nav::-webkit-scrollbar-track {
  background-color: transparent;
}
.header__nav::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: var(--);
}
@media (max-height: 750px) {
  .header__nav {
    justify-content: flex-start;
  }
}
@media screen and (max-height: 600px) and (orientation: landscape) {
  .header__nav {
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .header__nav {
    position: static;
    opacity: 1;
    height: auto;
    visibility: visible;
    padding-block: 0px;
    padding-inline: 0px;
    background-color: transparent;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header__nav.open {
  visibility: visible;
  opacity: 1;
}
.header__nav-lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1200px) {
  .header__nav-lists {
    flex: 1;
    flex-direction: row;
    align-items: center;
  }
}
.header__nav-link {
  font-size: 1.25rem;
  color: white;
}
.header__nav-link:hover {
  text-shadow: 3px 3px 3px #777;
  opacity: 0.7;
}

#hum-btn {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  margin-block: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  padding: 14.5px 10px;
  border: solid 1px white;
  border-radius: 100px;
}
@media (min-width: 1200px) {
  #hum-btn {
    display: none;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  display: inline-block;
  transition: all 0.5s ease;
  box-sizing: border-box;
  width: 24px;
  height: 15px;
  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: 1.5px;
  transition: all 0.5s ease;
  background-color: var(--c-white);
  border-radius: 99px;
}
@media (min-width: 768px) {
  .btn-trigger__bar {
    height: 2px;
  }
}
.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 active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6.5px) rotate(0);
  }
  100% {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6.5px) rotate(0);
  }
  100% {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}
@-webkit-keyframes menu-bar01 {
  0% {
    transform: translateY(7px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(7px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  50% {
    transform: translateY(-6.5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  50% {
    transform: translateY(-6.5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.bg-shadow {
  background: rgba(0, 0, 0, 0.5215686275);
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 996;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.is-nav-open .bg-shadow {
  opacity: 1;
}

.footer {
  background-color: var(--c-dark);
}
.footer .container {
  padding-block: 80px 20px;
}
@media (min-width: 768px) {
  .footer .container {
    padding-block: 120px 20px;
  }
}
@media (min-width: 992px) {
  .footer .container {
    padding-block: 160px 20px;
  }
}
@media (min-width: 1200px) {
  .footer .container {
    max-width: 1390px;
  }
}
.footer-address {
  flex: 1;
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-nav {
    width: 180px;
    font-size: 1.25rem;
  }
}

.p-top-fv {
  position: relative;
  height: 100vh;
  min-height: 650px;
}
.p-top-fv > img {
  height: 100%;
  -o-object-position: 60% center;
     object-position: 60% center;
}
@media (min-width: 768px) {
  .p-top-fv > img {
    -o-object-position: center;
       object-position: center;
  }
}
.p-top-fv__title {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 20px;
  line-height: normal;
}
@media (min-width: 768px) {
  .p-top-fv__title {
    padding: 80px 100px;
  }
}
@media (min-width: 1200px) {
  .p-top-fv__title {
    padding: 100px 160px;
  }
}
.p-top-fv__title .main {
  font-size: clamp(2.5rem, 2.014rem + 2.1vw, 4rem);
}
.p-top-fv__title .sub {
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
}
.p-top-concept {
  padding-block: 100px 150px;
}
@media (min-width: 768px) {
  .p-top-concept {
    padding-block: 150px 200px;
  }
}
@media (min-width: 992px) {
  .p-top-concept {
    padding-block: 180px 260px;
  }
}
@media (min-width: 992px) {
  .p-top-concept .container {
    max-height: 765px;
    height: 100vh;
  }
}
.p-top-concept .img-wrap {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .p-top-concept .img-wrap {
    position: absolute;
    inset: 0;
  }
}
.p-top-concept .img-wrap__inner {
  position: relative;
  height: 100%;
}
@media (min-width: 992px) {
  .p-top-concept .img-wrap__inner {
    width: 65%;
    padding-top: 100px;
  }
}
.p-top-concept .img-wrap__inner .image01 {
  width: 80%;
}
@media (min-width: 576px) {
  .p-top-concept .img-wrap__inner .image01 {
    width: 60%;
  }
}
.p-top-concept .img-wrap__inner .image02 {
  width: 60%;
}
@media (min-width: 576px) {
  .p-top-concept .img-wrap__inner .image02 {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .p-top-concept .img-wrap__inner .image02 {
    position: absolute;
    z-index: 1;
    top: 380px;
    right: 0;
  }
}
.p-top-concept .text-wrap {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .p-top-concept .text-wrap {
    width: 50%;
    height: 100%;
    margin-left: auto;
  }
}
.p-top-menu .list-wrap {
  margin-inline: auto;
  max-width: 1000px;
}
.p-top-gallery .gallery-wrap {
  margin-inline: calc(50% - 50vw);
}
.p-top-gallery .gallery-wrap img {
  aspect-ratio: 1;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.p-top-gallery .gallery-wrap img:hover {
  filter: grayscale(0%);
}
.p-top .beautifully-bg {
  position: relative;
  padding-bottom: 55px;
}
@media (min-width: 576px) {
  .p-top .beautifully-bg {
    padding-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .p-top .beautifully-bg {
    padding-bottom: 90px;
  }
}
.p-top .beautifully-bg .parallax {
  height: 350px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top .beautifully-bg .parallax {
    height: 450px;
  }
}
.p-top .beautifully-bg .parallax img {
  height: 100%;
  width: 100vw;
  min-height: 450px;
  -o-object-position: 80% center;
     object-position: 80% center;
}
@media (min-width: 768px) {
  .p-top .beautifully-bg .parallax img {
    -o-object-position: center;
       object-position: center;
  }
}
.p-top .beautifully-bg .beautifully-text {
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-top-news {
  background: linear-gradient(180deg, var(--c-bg) 80%, var(--c-bg2) 80%);
}
.p-top-news__body {
  position: relative;
  background-color: var(--c-panel);
  border-radius: 0 60px 60px 0;
  max-width: 95%;
}
@media (min-width: 992px) {
  .p-top-news__body {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .p-top-news__body {
    max-width: 90%;
    border-radius: 0 100px 100px 0;
  }
}
@media (min-width: 1400px) {
  .p-top-news__body {
    max-width: 71%;
    border-radius: 0 160px 160px 0;
  }
}
.p-top-news__img {
  width: 75%;
  max-width: 480px;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .p-top-news__img {
    top: -9vw;
    right: -10vw;
    width: 65%;
  }
}
@media (min-width: 992px) {
  .p-top-news__img {
    position: absolute;
    width: 45%;
    right: -12vw;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .p-top-news__img {
    right: -5vw;
  }
}
@media (min-width: 1400px) {
  .p-top-news__img {
    right: -21vw;
  }
}
.p-top-news__text {
  max-width: 760px;
  padding-inline: 20px;
  margin-inline: auto;
}
.p-top-news__list .webgene-blog {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vw, 48px);
}
.p-top-salon {
  background-color: var(--c-bg2);
}

.title-wrap {
  display: flex;
  align-items: center;
}
.title-wrap::before {
  content: "";
  display: block;
  width: clamp(2.5rem, 1.893rem + 2.63vw, 4.375rem);
  height: 1px;
  background-color: var(--c-white);
  order: 2;
  transform: rotate(-65deg);
  margin-inline: -0.4rem;
}
.title-wrap .number,
.title-wrap h1,
.title-wrap h2 {
  font-family: var(--noto-en);
}
.title-wrap .number {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
.title-wrap h1,
.title-wrap h2 {
  order: 3;
  font-size: clamp(1.75rem, 1.345rem + 1.75vw, 3rem);
}

.reservation-btn {
  display: flex;
  justify-content: center;
}
.reservation-btn a {
  max-width: 442px;
  width: 100%;
  font-size: 1.125rem;
  border-radius: 20px;
  border: solid 1px var(--c-white);
  text-align: center;
  line-height: normal;
  padding-block: 18px;
  padding-inline: 20px;
}
@media (min-width: 576px) {
  .reservation-btn a {
    font-size: 1.4375rem;
  }
}
@media (min-width: 768px) {
  .reservation-btn a {
    font-size: 2rem;
    padding-block: 27px;
  }
}
.reservation-btn a:hover {
  background-color: var(--c-white);
  color: var(--c-dark);
  opacity: 1;
}

.p-lower-title {
  display: flex;
  align-items: center;
}
.p-lower-title::before {
  content: "";
  display: block;
  width: clamp(3.75rem, 2.495rem + 5.43vw, 7.625rem);
  height: 1px;
  background-color: currentColor;
  order: 2;
  transform: rotate(-65deg);
  margin-inline: -0.3rem;
}
.p-lower-title .number,
.p-lower-title h1,
.p-lower-title h2 {
  order: 1;
  font-family: var(--noto-en);
}
.p-lower-title .number {
  font-size: clamp(2.813rem, 1.78rem + 4.47vw, 6rem);
}
.p-lower-title h1,
.p-lower-title h2 {
  order: 3;
  font-size: clamp(2.813rem, 1.78rem + 4.47vw, 6rem);
}

.sec-head {
  text-align: center;
  margin-bottom: clamp(40px, 7.94vw, 120px);
}
.sec-head h2 {
  font-family: var(--noto-en);
  font-size: clamp(1.75rem, 1.1rem + 3vw, 4rem);
}
.sec-head .jp {
  display: block;
  margin-top: clamp(4px, 0.46vw, 7px);
  font-size: 1.25rem;
}

.page-fv {
  position: relative;
  height: 100dvh;
  min-height: 650px;
}
.page-fv > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-fv .p-lower-title {
  position: absolute;
  right: clamp(20px, 7.28vw, 110px);
  bottom: clamp(20px, 10.78vw, 163px);
  z-index: 1;
  color: var(--c-white);
}
.page-fv .scroll-mask {
  height: 100%;
}

.page-intro {
  padding-block: clamp(5rem, 2.57rem + 10.51vw, 12.5rem) clamp(5rem, 3.38rem + 7.01vw, 10rem);
}
.page-intro h2 {
  font-family: var(--noto-en);
  line-height: 1.36;
  font-size: clamp(1.75rem, 1.1rem + 3vw, 4rem);
}
.page-intro .jp {
  margin-top: clamp(12px, 1.92vw, 29px);
  font-size: 1.5rem;
}
.page-intro .lead {
  max-width: 980px;
  margin-top: clamp(24px, 4.96vw, 75px);
  line-height: 1.9;
}

.page-head h2 {
  font-family: var(--noto-en);
  font-size: clamp(2rem, 4.23vw, 4rem);
  line-height: 1.36;
}
.page-head .jp {
  margin-top: clamp(8px, 1.32vw, 20px);
  font-size: clamp(1rem, 1.59vw, 1.5rem);
  line-height: 1.375;
}

.page-cta .cta-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4.63vw, 70px);
  max-width: 1352px;
  margin-inline: auto;
  padding-inline: clamp(20px, 10.91vw, 165px);
}
@media (min-width: 768px) {
  .page-cta .cta-cards {
    flex-direction: row;
  }
}
.page-cta .cta-card {
  position: relative;
  flex: 1;
  display: block;
  aspect-ratio: 556/185;
  border-radius: 20px;
  overflow: hidden;
}
.page-cta .cta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.page-cta .cta-card:hover {
  opacity: 1;
}
.page-cta .cta-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.page-cta .cta-card .cta-card__text {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  text-align: center;
}
.page-cta .cta-card .cta-card__text h3 {
  font-family: var(--noto-en);
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
}
.page-cta .cta-card .cta-card__text .jp {
  font-size: 0.9375rem;
}
.page-cta .reservation-btn {
  margin-top: clamp(24px, 3.77vw, 57px);
}

.p-concept-values {
  background-color: var(--c-bg);
}
@media (min-width: 1400px) {
  .p-concept-values .container {
    max-width: 1400px;
  }
}
.p-concept-values .list-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 1.46vw, 22px);
  margin-inline: auto;
}
@media (min-width: 992px) {
  .p-concept-values .list-wrap {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
}
.p-concept-values .value-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 439/371;
  max-width: 439px;
  margin-inline: auto;
  padding: 30px;
  background-color: transparent;
  border: 1px solid var(--c-white);
  border-radius: clamp(40px, 6.61vw, 100px);
}
.p-concept-values .value-card h3 {
  font-family: var(--noto-en);
  font-size: clamp(1.5rem, 1rem + 2.2vw, 3rem);
}
.p-concept-values .value-card .jp {
  font-size: 1.25rem;
}
.p-concept-values .value-card p {
  line-height: 1.9;
}
.p-concept-values .values-banner {
  overflow: hidden;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: clamp(60px, 12.04vw, 182px);
}
.p-concept-values .values-banner .parallax {
  height: 350px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-concept-values .values-banner .parallax {
    height: 450px;
  }
}
.p-concept-values .values-banner img {
  height: 100%;
  width: 100vw;
  min-height: 450px;
  -o-object-position: 80% center;
     object-position: 80% center;
}
@media (min-width: 768px) {
  .p-concept-values .values-banner img {
    -o-object-position: center;
       object-position: center;
  }
}
.p-concept-strength {
  background-color: var(--c-bg);
}
.p-concept-strength .strength-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(40px, 10.58vw, 160px);
  max-width: 1352px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .p-concept-strength .strength-row {
    flex-direction: row;
    align-items: center;
    gap: clamp(24px, 6.61vw, 100px);
  }
}
.p-concept-strength .strength-row:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .p-concept-strength .strength-row.reverse {
    flex-direction: row-reverse;
  }
}
.p-concept-strength .strength-row__media {
  width: 85%;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .p-concept-strength .strength-row__media {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .p-concept-strength .strength-row__media {
    width: auto;
    flex: 1;
    margin-inline: 0;
  }
}
.p-concept-strength .strength-row__media img {
  width: 100%;
  aspect-ratio: 546/341;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.p-concept-strength .strength-row__body {
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .p-concept-strength .strength-row__body {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .p-concept-strength .strength-row__body {
    width: auto;
    flex: 1;
    margin-inline: 0;
  }
}
.p-concept-strength .strength-row__body h3 {
  font-family: var(--noto-en);
  font-size: clamp(1.5rem, 1rem + 2.2vw, 3rem);
}
.p-concept-strength .strength-row__body .jp {
  font-size: 1.25rem;
}
.p-concept-strength .strength-row__body p {
  line-height: 1.9;
}
.p-concept-owner .container {
  background-color: var(--c-panel);
  border-radius: clamp(40px, 10.58vw, 160px) 0 0 clamp(40px, 10.58vw, 160px);
  max-width: 100%;
  padding: 65px 20px;
}
@media (min-width: 576px) {
  .p-concept-owner .container {
    padding: 65px 40px;
  }
}
@media (min-width: 768px) {
  .p-concept-owner .container {
    padding: clamp(30px, 7.41vw, 112px) 50px clamp(20px, 8.53vw, 129px);
  }
}
@media (min-width: 992px) {
  .p-concept-owner .container {
    padding: clamp(30px, 7.41vw, 112px) 40px clamp(20px, 8.53vw, 129px);
    max-width: 91%;
  }
}
.p-concept-owner .owner-wrap {
  gap: 30px;
  max-width: 1100px;
  margin-inline: auto;
}
.p-concept-owner .owner-body {
  position: relative;
  z-index: 1;
  flex: 1;
}
@media (min-width: 992px) {
  .p-concept-owner .owner-body {
    max-width: 545px;
  }
}
.p-concept-owner .owner-body .label {
  display: block;
  font-family: var(--noto-en);
  letter-spacing: 0.1em;
  opacity: 0.8;
  font-size: 1.25rem;
}
.p-concept-owner .owner-body h3 {
  font-family: var(--noto-en);
  font-size: clamp(1.75rem, 1.1rem + 3vw, 4rem);
}
.p-concept-owner .owner-body p {
  line-height: 1.9;
}
.p-concept-owner .owner-media {
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .p-concept-owner .owner-media {
    width: 100%;
    max-width: 434px;
    margin-inline: 0;
  }
}
.p-concept-owner .owner-media img {
  width: 100%;
  aspect-ratio: 434/542;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.p-service .page-fv .scroll-mask img {
  -o-object-position: 80% center;
     object-position: 80% center;
}
@media (min-width: 768px) {
  .p-service .page-fv .scroll-mask img {
    -o-object-position: center;
       object-position: center;
  }
}
.p-service-styles {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 7vw, 100px);
}
.p-service-styles .container {
  background-color: var(--c-panel);
  max-width: 100%;
  padding: 65px 20px;
}
@media (min-width: 576px) {
  .p-service-styles .container {
    padding: 65px 40px;
  }
}
@media (min-width: 768px) {
  .p-service-styles .container {
    padding: clamp(30px, 7.41vw, 112px) 50px clamp(20px, 8.53vw, 129px);
  }
}
@media (min-width: 992px) {
  .p-service-styles .container {
    padding: clamp(30px, 7.41vw, 112px) 40px clamp(20px, 8.53vw, 129px);
    max-width: 91%;
  }
}
.p-service-styles .container:nth-child(odd) {
  border-radius: clamp(40px, 10.58vw, 160px) 0 0 clamp(40px, 10.58vw, 160px);
}
.p-service-styles .container:nth-child(even) {
  border-radius: 0px clamp(40px, 10.58vw, 160px) clamp(40px, 10.58vw, 160px) 0;
}
.p-service-styles .container .style-row {
  max-width: 1100px;
  margin-inline: auto;
  align-items: center;
}
.p-service-styles .btn-wrap a {
  gap: 15px;
  min-width: 110px;
}

.p-service-styles .container .style-row {
  max-width: 1100px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .p-service-styles .style-row.reverse {
    flex-direction: row-reverse;
  }
}
.style-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.25rem;
}

.style-body .label {
  font-size: 1.125rem;
  opacity: 0.8;
}

.style-body h3 {
  font-family: var(--noto-en);
  font-size: clamp(2.25rem, 1.7rem + 2.2vw, 3.4375rem);
  line-height: 1.1;
}

.style-divider {
  width: 100%;
  height: 1px;
  background-color: var(--c-white);
  opacity: 0.6;
  margin-top: 1.375rem;
  margin-bottom: 2.1875rem;
}

.style-body p {
  line-height: 1.7;
}

.recommend-head .en {
  font-family: var(--noto-en);
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .recommend-head .en {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .recommend-head .en {
    font-size: 2.1875rem;
  }
}
.recommend-head .jp {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .recommend-head .jp {
    font-size: 1rem;
  }
}

.tag-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2.1vw, 28px);
}
@media (min-width: 768px) {
  .tag-list {
    grid-template-columns: 1fr 1fr;
  }
}

.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--c-white);
  border-radius: 20px;
  min-height: clamp(44px, 4.14vw, 56px);
  padding: 8px 16px;
}

/* ===== service page: home care items ===== */
.care-lead {
  line-height: 1.9;
}

.care-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 6vw, 40px);
}

@media (min-width: 768px) {
  .care-list {
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 6.29vw, 85px);
  }
}
.care-card {
  display: flex;
  flex-direction: column;
}

.care-media {
  border-radius: 20px;
  overflow: hidden;
}

.care-media img {
  display: block;
  width: 100%;
  aspect-ratio: 510/310;
  -o-object-fit: cover;
     object-fit: cover;
}

.care-card h3 {
  display: inline-block;
  margin-top: 1.5rem;
  margin-right: 0.5em;
  font-family: var(--noto-en);
  font-size: 1.5rem;
}

.care-card .jp {
  display: inline-block;
  font-size: 0.875rem;
  opacity: 0.8;
}

.care-card p {
  line-height: 1.875;
}

.p-menu-tabs {
  padding-top: clamp(60px, 10.65vw, 161px);
}
.p-menu-tabs .menu-tabs {
  display: flex;
  gap: clamp(12px, 3.44vw, 52px);
  max-width: clamp(280px, 61.9vw, 936px);
  margin-inline: auto;
}
.p-menu-tabs .menu-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(56px, 6.61vw, 100px);
  padding: 8px 16px;
  border: 1px solid var(--c-white);
  border-radius: 20px;
  font-size: clamp(0.9375rem, 1.59vw, 1.5rem);
  line-height: 1.375;
}
.p-menu-tabs .menu-tab:hover {
  background-color: var(--c-white);
  color: var(--c-dark);
  opacity: 1;
}
.p-menu-price {
  scroll-margin-top: 100px;
  padding-block: clamp(60px, 11.77vw, 178px) clamp(60px, 10.52vw, 159px);
}
.p-menu-price--panel {
  background-color: var(--c-panel);
  border-radius: clamp(40px, 10.58vw, 160px);
  padding-block: clamp(60px, 10.52vw, 159px) clamp(60px, 10.71vw, 162px);
}
.p-menu-list-wrap {
  display: flex;
  flex-direction: column;
  margin-top: clamp(30px, 4.96vw, 75px);
  padding-inline: clamp(0px, 4.89vw, 74px);
}
.p-menu-list-wrap .list-dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem 1.5rem;
  padding-block: clamp(16px, 1.92vw, 29px);
  border-top: 1px solid var(--c-white);
}
.p-menu-list-wrap .list-dl:first-child {
  border-top: none;
  padding-top: 0;
}
.p-menu-list-wrap .list-dl:last-child {
  padding-bottom: 0;
}

.list-dt {
  display: flex;
  flex-direction: column;
  font-size: clamp(0.875rem, 1.59vw, 1.5rem);
  line-height: 1.375;
}

.list-dd {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  padding-right: clamp(0px, 0.86vw, 13px);
  font-size: clamp(0.875rem, 1.59vw, 1.5rem);
  line-height: 1.375;
}
.list-dd__item {
  display: flex;
  justify-content: flex-end;
  gap: clamp(12px, 3.1vw, 47px);
}
.list-dd__item .opt {
  text-align: right;
}
.list-dd__item .price {
  min-width: clamp(60px, 6.15vw, 93px);
  text-align: right;
}

.scroll-progress {
  position: relative;
  width: 3px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.3);
}
.scroll-progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: inherit;
  background-color: var(--c-white);
}

.scroll-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--c-white);
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.scroll-dot.is-active {
  background-color: var(--c-white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-dot {
    transition: none;
  }
}
.p-first-visit .page-fv .scroll-mask img {
  -o-object-position: 20% center;
     object-position: 20% center;
}
@media (min-width: 768px) {
  .p-first-visit .page-fv .scroll-mask img {
    -o-object-position: center;
       object-position: center;
  }
}
.p-first-visit-flow .container {
  background-color: var(--c-panel);
  max-width: 100%;
  padding: 65px 20px;
  border-radius: clamp(40px, 10.58vw, 160px) 0 0 clamp(40px, 10.58vw, 160px);
}
@media (min-width: 576px) {
  .p-first-visit-flow .container {
    padding: 65px 40px;
  }
}
@media (min-width: 768px) {
  .p-first-visit-flow .container {
    padding: clamp(30px, 7.41vw, 112px) 50px clamp(20px, 8.53vw, 129px);
  }
}
@media (min-width: 992px) {
  .p-first-visit-flow .container {
    padding: clamp(30px, 7.41vw, 112px) 40px clamp(20px, 8.53vw, 129px);
    max-width: 91%;
  }
}
.p-first-visit-flow .flow-head {
  text-align: center;
  margin-bottom: clamp(40px, 5.75vw, 87px);
}
.p-first-visit-flow .flow-head h2 {
  font-family: var(--noto-en);
  font-size: clamp(1.5rem, 2.65vw, 2.5rem);
  line-height: 1.4;
}
.p-first-visit-reserve {
  padding-block: clamp(60px, 8.6vw, 130px);
}
@media (min-width: 1200px) {
  .p-first-visit-reserve .container {
    padding-inline: 0;
  }
}
.p-first-visit-reserve .reserve-notes {
  margin-top: clamp(16px, 1.85vw, 28px);
}

.flow-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4.76vw, 72px);
  max-width: 1057px;
  margin-inline: auto;
}

.flow-rail {
  display: none;
}
@media (min-width: 768px) {
  .flow-rail {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(33.2% + clamp(16px, 3.31vw, 50px) + 7px);
    transform: translateX(-50%);
  }
}
.flow-rail .scroll-progress {
  height: 100%;
}

.flow-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .flow-item {
    grid-template-columns: 33.2% 14px minmax(0, 1fr);
    align-items: start;
    gap: clamp(16px, 3.31vw, 50px);
  }
}
.flow-item__media {
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  width: 85%;
}
@media (min-width: 576px) {
  .flow-item__media {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .flow-item__media {
    width: 100%;
    margin-inline: 0;
  }
}
.flow-item__media img {
  display: block;
  width: 100%;
  aspect-ratio: 350/240;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow-item__dot {
  display: none;
}
@media (min-width: 768px) {
  .flow-item__dot {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: calc(
        clamp(1.375rem, 2.38vw, 2.25rem) * 0.65 - 7px
      );
  }
}
.flow-item__body h3 {
  font-family: var(--noto-en);
  font-size: clamp(1.375rem, 2.38vw, 2.25rem);
  line-height: 1.3;
}
.flow-item__body p {
  margin-top: clamp(12px, 1.32vw, 20px);
  line-height: 1.9;
}

.reserve-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.69vw, 25.56px);
  margin-top: clamp(28px, 4.1vw, 62px);
}
@media (min-width: 576px) {
  .reserve-links {
    flex-wrap: nowrap;
  }
}
.reserve-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 100%;
  min-width: 0;
  min-height: clamp(48px, 6.61vw, 100px);
  padding: 8px 12px;
  border: 1px solid var(--c-white);
  border-radius: 20px;
  font-size: clamp(0.8125rem, 1.65vw, 1.5625rem);
  line-height: 1.3;
}
@media (min-width: 576px) {
  .reserve-links a {
    flex: 1 1 0;
  }
}
.reserve-links a:hover {
  background-color: var(--c-white);
  color: var(--c-dark);
  opacity: 1;
}
.reserve-links--compact {
  gap: clamp(8px, 0.96vw, 14.56px);
  margin-top: clamp(16px, 1.85vw, 28px);
}
.reserve-links--compact a {
  min-height: clamp(32px, 2.98vw, 45px);
  padding: 4px 8px;
  font-size: clamp(0.625rem, 0.73vw, 0.6875rem);
}
@media (min-width: 576px) {
  .reserve-links--compact a {
    flex: 0 1 164px;
  }
}

.p-gallery-list {
  padding-block: clamp(60px, 13.29vw, 201px) clamp(60px, 13.69vw, 207px);
}

.gallery-grid {
  display: grid;
  width: min(100% - 40px, max(1242px, 82.14vw));
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.98vw, 30px);
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
}
.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item img {
    transition: none;
  }
  .gallery-item:hover img {
    transform: none;
  }
}
.p-information-detail {
  padding-top: clamp(60px, 10.78vw, 163px);
}
.p-information-detail .info-head {
  text-align: center;
}
.p-information-detail .info-head h2 {
  font-family: var(--noto-en);
  font-size: clamp(2rem, 4.23vw, 4rem);
  line-height: 1.36;
}
.p-information-detail .info-list {
  width: min(100% - 40px, max(818px, 54.1vw));
  margin-inline: auto;
  margin-top: clamp(32px, 6.61vw, 100px);
}
.p-information-detail .info-list .list-dl {
  display: flex;
  flex-direction: column;
  gap: 8px 25px;
  padding-bottom: clamp(14px, 2.31vw, 35px);
  border-bottom: 1px solid var(--c-white);
}
.p-information-detail .info-list .list-dl + .list-dl {
  margin-top: clamp(14px, 2.31vw, 35px);
}
@media (min-width: 768px) {
  .p-information-detail .info-list .list-dl {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
.p-information-detail .info-list .list-dt {
  position: relative;
  width: 100%;
  padding-left: 20px;
  line-height: 1.875;
}
.p-information-detail .info-list .list-dt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background-color: var(--c-white);
}
@media (min-width: 768px) {
  .p-information-detail .info-list .list-dt {
    width: auto;
    flex: 0 0 29%;
    padding-left: 0;
  }
  .p-information-detail .info-list .list-dt::before {
    content: none;
  }
}
.p-information-detail .info-list .list-dd {
  margin-left: 0;
  padding-right: 0;
  padding-left: 20px;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .p-information-detail .info-list .list-dd {
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 0;
  }
}
.p-information-access {
  padding-block: clamp(60px, 13.23vw, 200px) clamp(60px, 8.8vw, 133px);
  text-align: center;
}
.p-information-access .access-head h2 {
  font-family: var(--noto-en);
  font-size: clamp(2rem, 4.23vw, 4rem);
  line-height: 1.36;
}
.p-information-access .access-head .lead {
  max-width: 905px;
  margin-inline: auto;
  margin-top: clamp(20px, 3.37vw, 51px);
  line-height: 1.875;
}
.p-information-access .access-map {
  margin-inline: auto;
  margin-top: clamp(20px, 3.37vw, 51px);
}
@media (min-width: 1400px) {
  .p-information-access .access-map .container {
    max-width: 80%;
  }
}
.p-information-access .access-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-information-access .access-map iframe {
    height: 590px;
  }
}

.p-news-list {
  padding-block: clamp(60px, 11.31vw, 171px) clamp(60px, 8.47vw, 128px);
}

.news-list {
  width: min(100% - 40px, max(956px, 63.2vw));
  margin-inline: auto;
}
.news-list .webgene-item + .webgene-item {
  margin-top: clamp(10px, 1.19vw, 18px);
}
.news-list .list-dl {
  display: flex;
  flex-direction: column;
  gap: 8px 25px;
  min-height: clamp(70px, 7.87vw, 119px);
  padding: clamp(14px, 1.65vw, 25px) clamp(20px, 4.17vw, 63px);
  border: 1px solid var(--c-white);
  border-radius: 20px;
  color: var(--c-white);
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) {
  .news-list .list-dl {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.news-list .list-dl:hover {
  background-color: var(--c-white);
  color: var(--c-dark);
  opacity: 1;
}
.news-list .list-dl:hover .list-dt::before {
  background-color: var(--c-dark);
}
.news-list .list-dt {
  position: relative;
  width: 100%;
  padding-left: 20px;
  font-family: var(--noto-en);
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.35;
}
.news-list .list-dt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background-color: var(--c-white);
}
@media (min-width: 768px) {
  .news-list .list-dt {
    width: auto;
    flex: 0 0 33.1%;
    padding-left: 0;
  }
  .news-list .list-dt::before {
    content: none;
  }
}
.news-list .list-dd {
  margin-left: 0;
  padding-right: 0;
  padding-left: 20px;
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.35;
}
@media (min-width: 768px) {
  .news-list .list-dd {
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 0;
  }
}

.webgene-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4.76vw, 72px);
}
.webgene-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2.05vw, 31px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.webgene-pagination li {
  display: contents;
}
.webgene-pagination a,
.webgene-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(90px, 9.26vw, 140px);
  min-height: clamp(40px, 3.64vw, 55px);
  padding: 6px 12px;
  border-radius: 20px;
  background-color: var(--c-bg2);
  color: var(--c-white);
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.5;
  text-align: center;
}
.webgene-pagination a:hover {
  background-color: var(--c-white);
  color: var(--c-dark);
  opacity: 1;
}

.p-newsdetail-body {
  padding-block: clamp(120px, 15.21vw, 230px) clamp(60px, 8.47vw, 128px);
}
.p-newsdetail .newsdetail-inner {
  width: min(100% - 40px, max(1187px, 78.5vw));
  margin-inline: auto;
}
.p-newsdetail .newsdetail-date {
  font-family: var(--noto-en);
  font-size: 1rem;
  line-height: 1.5;
}
.p-newsdetail .newsdetail-title {
  margin-top: clamp(8px, 1.19vw, 18px);
  font-size: clamp(1.25rem, 2.12vw, 2rem);
  line-height: 1;
}
.p-newsdetail .newsdetail-img {
  margin-top: clamp(32px, 7.14vw, 108px);
  border-radius: 20px;
  overflow: hidden;
}
.p-newsdetail .newsdetail-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1187/634;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-newsdetail .newsdetail-content {
  margin-top: clamp(24px, 4.23vw, 64px);
  font-size: 1rem;
  line-height: 1.9375;
}
.p-newsdetail .newsdetail-content p + p {
  margin-top: 1em;
}
.p-newsdetail .newsdetail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.p-newsdetail .newsdetail-content a {
  text-decoration: underline;
}
.p-newsdetail .webgene-pagination {
  margin-top: clamp(40px, 6.61vw, 100px);
}
.p-newsdetail .btn-back {
  display: flex;
  justify-content: center;
  margin-top: clamp(12px, 1.98vw, 30px);
}
.p-newsdetail .btn-back a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(90px, 9.26vw, 140px);
  min-height: clamp(40px, 3.64vw, 55px);
  padding: 6px 12px;
  border-radius: 20px;
  background-color: var(--c-dark);
  color: var(--c-white);
  font-family: var(--noto-en);
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.5;
  text-align: center;
}
.p-newsdetail .btn-back a:hover {
  background-color: var(--c-white);
  color: var(--c-dark);
  opacity: 1;
}

.p-contact-body {
  padding-block: clamp(60px, 11.57vw, 175px) clamp(40px, 7.8vw, 118px);
}
.p-contact-body > .container {
  max-width: none;
  padding-inline: 0;
}
.p-contact .formWrap > .container {
  width: min(100% - 40px, max(685px, 45.3vw));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}
.p-contact .formRow {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
.p-contact .formRow + .formRow {
  margin-top: clamp(24px, 3.57vw, 54px);
}
.p-contact .formTh {
  display: flex;
  align-items: center;
}
.p-contact .formTh .label {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.32vw, 1.25rem);
  line-height: 1.55;
}
.p-contact .formTh .label p {
  margin-bottom: 0;
}
.p-contact .formTh .requiredText {
  flex: 0 0 auto;
  min-width: 60px;
  margin-bottom: 0;
  margin-left: 20px;
  padding: 0 8px;
  border-radius: 10.5px;
  color: #f5f5f5;
  background-color: var(--c-dark);
  font-size: 0.75rem;
  line-height: 21px;
  text-align: center;
}
.p-contact .formTd {
  margin-top: 10px;
}
.p-contact .formInput,
.p-contact .formTextArea {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 20px;
  background-color: #d4d4d4;
  color: var(--c-dark);
  font-family: var(--noto-ja);
  font-size: 1rem;
  line-height: 1.6;
}
.p-contact .formInput::-moz-placeholder, .p-contact .formTextArea::-moz-placeholder {
  color: #8a8a8a;
}
.p-contact .formInput::placeholder,
.p-contact .formTextArea::placeholder {
  color: #8a8a8a;
}
.p-contact .formInput:focus,
.p-contact .formTextArea:focus {
  outline: 2px solid var(--c-white);
  outline-offset: 2px;
}
.p-contact .formInput {
  height: clamp(48px, 3.7vw, 56px);
  padding: 0 20px;
}
.p-contact .formTextArea {
  height: clamp(200px, 22.88vw, 346px);
  padding: 14px 20px;
  resize: vertical;
}
.p-contact .privacy-box {
  height: clamp(180px, 15.34vw, 232px);
  padding: 19px 15px;
  border-radius: 13px;
  background-color: var(--c-dark);
  color: var(--c-white);
  font-size: 0.8125rem;
  line-height: 1.62;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--c-white) transparent;
}
.p-contact .privacy-box::-webkit-scrollbar {
  width: 3px;
}
.p-contact .privacy-box::-webkit-scrollbar-track {
  background: transparent;
}
.p-contact .privacy-box::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: var(--c-white);
}
.p-contact .privacy-box p {
  margin-bottom: 0;
}
.p-contact .privacy-box a {
  text-decoration: underline;
}
.p-contact .formRow.privacy-row {
  margin-top: clamp(32px, 5.75vw, 87px);
}
.p-contact .formRow.privacy-row .formTh {
  display: block;
}
.p-contact .formRow.check-row {
  margin-top: clamp(24px, 3.64vw, 55px);
}
.p-contact .formRow.check-row .text-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-contact .formRow.check-row .formCheck {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  margin: 0 15px 0 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--c-dark);
  border-radius: 3px;
  background-color: var(--c-white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  cursor: pointer;
}
.p-contact .formRow.check-row .formCheck:checked {
  background-color: var(--c-dark);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3.5 3.5L13 4.5'/%3E%3C/svg%3E");
}
.p-contact .formRow.check-row .privacyLabel {
  margin-bottom: 0;
  line-height: 1.9375;
  cursor: pointer;
}
.p-contact .formRow.check-row .privacyLabel p {
  margin-bottom: 0;
}
.p-contact .formRow.submit-row {
  margin-top: clamp(32px, 7.54vw, 114px);
}
.p-contact .formBtnTd {
  display: flex;
  justify-content: center;
}
.p-contact .formBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(240px, 20.5vw, 310px);
  min-height: clamp(56px, 4.83vw, 73px);
  padding: 6px 16px;
  border: 1px solid var(--c-dark);
  border-radius: 20px;
  background-color: var(--c-dark);
  color: var(--c-white);
  font-family: var(--noto-ja);
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.p-contact .formBtn:hover {
  border-color: var(--c-white);
  background-color: var(--c-white);
  color: var(--c-dark);
  opacity: 1;
}
.p-contact .formError,
.p-contact .errorMessage {
  margin-top: 6px;
  color: #ffe0e0;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.p-complete__inner {
  height: 100svh;
  min-height: 650px;
  padding: 160px 20px 80px;
}
.p-complete__message {
  margin-bottom: 24px;
}