/* Universal box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

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

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

strong {
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover {
  transition: all 0.3s ease;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--txt);
}
a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--txt);
}

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

.gjs-dashed .header__nav {
  width: 100vw !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.gjs-dashed .swiper-wrapper {
  display: flex !important;
}
.gjs-dashed .js-typein {
  opacity: 1 !important;
}
.gjs-dashed .blur {
  opacity: 1 !important;
}
.gjs-dashed .js-tab-panel {
  display: block !important;
  opacity: 1 !important;
}

:root {
  --font-gothic: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", "Noto Sans JP",
    sans-serif;
  --font-mincho: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho",
    "YuMincho", "MS Mincho", "Noto Serif JP", serif;
  --font-gp: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  --color-wh: #ffffff;
  --color-bk: #000000;
  --zen-old: "zen-old-mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    "Yu Mincho", "YuMincho", "MS Mincho", serif;
  --tsuku: "fot-tsukuardgothic-std", "Hiragino Kaku Gothic ProN",
    "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --txt: #484848;
  --base: #f2eee4;
  --acc: #eadcb2;
  --acc2: #ac985c;
  --bg01: url(../images/wallpaper01) center / contain repeat;
  --bg02: url(../images/wallpaper02) center / contain repeat;
  --bg03: url(../images/wallpaper03) center / contain repeat;
}

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

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

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

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

.zen-old {
  font-family: var(--zen-old);
}

.tsuku {
  font-family: var(--tsuku);
}

.bg-01 {
  background: url(../images/wallpaper01) center/contain repeat;
}

.bg-02 {
  background: url(../images/wallpaper02) center/contain repeat;
}

.bg-03 {
  background: url(../images/wallpaper03) center/contain repeat;
}

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

.img-br-20 {
  border-radius: 20px;
  overflow: hidden;
}

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

.fw-b {
  font-weight: bold;
}

.flex-1 {
  flex: 1;
}

.align-items-stretch {
  align-items: stretch !important;
}

@media (min-width: 576px) {
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
}

@media (min-width: 768px) {
  .align-items-md-stretch {
    align-items: stretch !important;
  }
}

@media (min-width: 992px) {
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
}

body {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: var(--tsuku);
  font-weight: 400;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: normal;
  color: var(--txt);
  background-color: var(--base);
  margin-top: var(--header-top) !important;
}

html.is-scroll-lock,
body.is-scroll-lock {
  overflow: hidden;
  touch-action: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--zen-old);
  font-weight: 600;
  line-height: normal !important;
}

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

.blur {
  opacity: 0;
}

.filter {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: transparent;
}
.filter::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(100, 90, 62, 0.45);
  mix-blend-mode: darken;
  pointer-events: none;
  z-index: 1;
  transition: all 0.5s ease;
  opacity: 1;
}
.filter.is-active::after {
  opacity: 0;
}
.filter img {
  filter: grayscale(100%) contrast(1) brightness(1);
  transition: filter 0.8s ease;
}

.filter-r {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: transparent;
}
.filter-r::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(100, 90, 62, 0.45);
  mix-blend-mode: darken;
  pointer-events: none;
  z-index: 1;
  transition: all 0.5s ease;
  opacity: 1;
}
.filter-r.is-active::after {
  opacity: 1;
}
.filter-r img {
  filter: grayscale(0%) contrast(1) brightness(1);
  transition: filter 0.8s ease;
}

.js-tab {
  font-family: var(--zen-old);
  border-radius: 100px;
  padding: 13px 35px;
  gap: 24px;
  color: var(--txt) !important;
  border: solid 1px var(--txt);
  text-align: center;
  min-width: 250px;
}
@media (min-width: 768px) {
  .js-tab {
    min-width: 270px;
  }
}
.js-tab > p {
  text-align: center;
}
.js-tab.is-active {
  background-color: var(--acc);
  border: solid 1px var(--acc2);
}

.js-tab__wrap {
  max-width: 620px;
  padding-inline: 20px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px clamp(20px, 2vw, 45px);
}

.panel__wrap .list-wrap {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
.panel__wrap .list-dl {
  flex-direction: column;
  gap: 8px 30px;
  padding-block: 15px;
  border-bottom: solid 1px var(--txt);
}
@media (min-width: 768px) {
  .panel__wrap .list-dl {
    flex-direction: row;
  }
}
.panel__wrap .list-dl:first-child {
  padding-top: 0;
}
.panel__wrap .list-dt {
  width: 100%;
}
@media (min-width: 768px) {
  .panel__wrap .list-dt {
    width: 170px;
  }
}
.panel__wrap .list-dd {
  width: 100%;
  flex: 1;
}

.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;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

.section-title h2,
.section-title h3 {
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
}
.section-title.menu-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: clamp(8px, 1.5vw, 20px);
  border-bottom: solid 2px var(--acc2);
  margin-bottom: 20px;
}
.section-title.menu-title .en {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-family: var(--zen-old);
  color: var(--acc2);
}

.contents-title h3,
.contents-title h4 {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
}

.btn-wrap a {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 15px 100px;
  padding-block: 12px;
  transition: all 0.3s ease;
  min-width: 240px;
  background-color: var(--acc);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px var(--txt);
  font-family: var(--zen-old);
}
@media (min-width: 768px) {
  .btn-wrap a {
    padding-inline: 25px 120px;
    padding-block: 20px;
    font-size: 1rem;
    min-width: 270px;
  }
}
.btn-wrap a .icon {
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
@media (min-width: 768px) {
  .btn-wrap a .icon {
    width: 23px;
    height: 23px;
  }
}
.btn-wrap a .icon img {
  aspect-ratio: 1;
}
.btn-wrap a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: block;
  background: url(../images/arrow_bk.svg) center/contain no-repeat;
  width: 20px;
  height: 4px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-wrap a::after {
    width: 29px;
    height: 6px;
    right: 30px;
  }
}
.btn-wrap a:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
}
.btn-wrap.anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px clamp(15px, 1.5vw, 35px);
}
.btn-wrap.anchor a {
  padding-inline: clamp(20px, 4vw, 55px);
  justify-content: center;
}
.btn-wrap.anchor a::after {
  display: none;
}

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

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

.bb-none {
  border: none;
}

.bb-red {
  border-bottom: solid 2px var(--txt);
}

.links-wrap {
  max-width: 827px;
  margin-inline: auto;
  gap: 20px clamp(20px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .links-wrap {
    align-items: stretch;
    flex-direction: row;
  }
}
.links-wrap .box {
  width: 100%;
}
@media (min-width: 768px) {
  .links-wrap .box {
    width: calc(50% - clamp(10px, 2.5vw, 35px));
  }
}
.links-wrap a {
  background-color: var(--acc);
  border-radius: 12px;
  border: solid 1px var(--txt);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .links-wrap a {
    padding: 38px clamp(20px, 1.9vw, 30px);
  }
}
.links-wrap a .arrow {
  transition: all 0.3s ease;
}
.links-wrap a:hover {
  background-color: #fff5d9;
}
.links-wrap a:hover .arrow {
  transform: translateX(6px);
}
.links-wrap a h3 {
  text-align: center;
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
.links-wrap a .inner-wrap {
  display: flex;
  justify-content: center;
}

.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.header__inner {
  position: relative;
  display: flex;
  background-color: var(--base);
  padding: 20px;
}
@media (min-width: 1400px) {
  .header__inner {
    padding: 0 50px 0 180px;
  }
}
.header__brand {
  display: flex;
  position: absolute;
  top: 0;
  left: 20px;
}
@media (min-width: 992px) {
  .header__brand {
    left: 45px;
  }
}
.header__brand > a {
  display: inline-flex;
  align-items: center;
  max-width: 80px;
  width: 100%;
}
@media (min-width: 1400px) {
  .header__brand > a {
    max-width: 120px;
  }
}
.header__brand > a:hover {
  opacity: 0.5;
}
.header__nav {
  position: fixed;
  z-index: 997;
  inset: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  padding: 100px 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  background: url(../images/wallpaper03.jpg) center/contain repeat;
}
@media (min-width: 1400px) {
  .header__nav {
    margin-left: auto;
    position: static;
    height: auto;
    width: auto;
    transform: none;
    transition: none;
    padding: 0;
    overflow-y: unset;
    opacity: 1;
    visibility: visible;
    background: none;
  }
}
.header__nav.open {
  opacity: 1;
  visibility: visible;
}
.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.9375rem;
  padding: 15px 20px;
  width: 100%;
  color: white;
}
@media (min-width: 576px) {
  .header__nav-link {
    font-size: clamp(0.938rem, 0.877rem + 0.26vw, 1.125rem);
  }
}
@media (min-width: 1400px) {
  .header__nav-link {
    padding: 35px clamp(8px, 1.7vw, 20px);
    font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: auto;
    height: 100%;
    color: var(--txt);
  }
}
.header__nav-link:hover {
  opacity: 0.7;
  color: white;
}
@media (min-width: 1400px) {
  .header__nav-link:hover {
    color: var(--txt);
  }
}
.header__nav-link.contact {
  background-color: var(--acc);
  color: var(--txt);
  padding-inline: 30px;
  padding-block: 25px;
  height: 100%;
  margin-top: 30px;
  border-radius: 15px;
}
@media (min-width: 1400px) {
  .header__nav-link.contact {
    margin-top: 0;
    border-radius: 0;
  }
}
.header__nav-lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  min-height: calc(100vh - 200px);
}
@media (min-width: 1400px) {
  .header__nav-lists {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    width: auto;
    margin-inline: auto;
    height: 100%;
    min-height: auto;
  }
}

#hum-btn {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  margin-left: auto;
  width: 29px;
  height: 20px;
  margin-block: auto;
  margin-inline: auto 0;
}
@media (min-width: 1400px) {
  #hum-btn {
    display: none;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.btn-trigger__bar {
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  height: 1.5px;
  transition: all 0.5s;
  background-color: var(--txt);
  border-radius: 99px;
}

.is-nav-open .btn-trigger {
  flex-direction: row;
  transition: all 0.3s ease;
}
.is-nav-open .btn-trigger__bar {
  width: 5px;
  height: 5px;
  background-color: white;
}

.info-pop {
  position: fixed;
  z-index: 5;
  right: 20px;
  bottom: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .info-pop {
    gap: 15px;
  }
}
.info-pop__link {
  display: inline-block;
  padding: 12px 20px;
  font-size: clamp(0.938rem, 0.877rem + 0.26vw, 1.125rem);
  font-family: var(--zen-old);
  line-height: normal;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .info-pop__link {
    padding: 17px 30px;
  }
}
.info-pop__link.reserve {
  border: 2px solid #484848;
  background: #eadcb2;
}
.info-pop__link.reserve:hover {
  border: 2px solid #f2eee4;
  background: #484848;
  color: white;
}
.info-pop__link.company {
  border: 2px solid #f2eee4;
  background: #484848;
  color: white;
}
.info-pop__link.company:hover {
  border: 2px solid #484848;
  background: #eadcb2;
  color: var(--txt);
}

.footer {
  background-color: var(--txt);
  position: relative;
  z-index: 1;
  flex-direction: column;
}
@media (min-width: 992px) {
  .footer {
    flex-direction: row;
  }
}
.footer a:hover {
  opacity: 0.6;
}
.footer h2,
.footer p,
.footer a {
  color: white;
}
.footer__img {
  height: 400px;
}
@media (min-width: 992px) {
  .footer__img {
    height: auto;
  }
}
.footer__img img {
  height: 100%;
}
.footer__brand > a {
  max-width: 300px;
  display: block;
  margin-bottom: 20px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .footer__brand > a {
    max-width: 422px;
    margin-inline: 0 auto;
  }
}
.footer__brand > h2,
.footer__brand > p {
  line-height: normal;
  text-align: center;
}
@media (min-width: 576px) {
  .footer__brand > h2,
.footer__brand > p {
    text-align: left;
  }
}
.footer__brand > h2 {
  font-weight: 600;
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
}
.footer__address {
  text-align: center;
}
@media (min-width: 576px) {
  .footer__address {
    text-align: left;
  }
}
.footer__address span {
  display: block;
}
@media (min-width: 1400px) {
  .footer__address span {
    display: inline-block;
  }
}
.footer__inner {
  padding-block: 60px 45px;
  padding-inline: clamp(20px, 4vw, 80px);
}
@media (min-width: 576px) {
  .footer__inner-wrap {
    gap: clamp(20px, 5vw, 100px);
  }
}
.footer__nav-link {
  line-height: 1.8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__nav-lists {
  display: flex;
  gap: 5px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 576px) {
  .footer__nav-lists {
    align-items: flex-start;
    text-align: left;
  }
}
.footer .btn-wrap a {
  background-color: transparent;
  color: white;
  border: solid 1px white;
}
.footer .btn-wrap a::after {
  content: "";
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
}

.p-top__hr {
  position: relative;
  z-index: 1;
}
.p-top__hr::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 30px;
  left: 0;
  display: block;
  background: url(../images/wallpaper02) center/contain repeat;
  max-width: 515px;
  width: clamp(300px, 34vw, 515px);
  max-height: 770px;
  height: 100%;
}
@media (min-width: 576px) {
  .p-top__hr::after {
    top: 60px;
    left: clamp(20px, 7vw, 100px);
  }
}
.p-top__hr-txt h1 {
  font-size: clamp(2rem, 1.514rem + 2.1vw, 3.5rem);
}
.p-top__hr-txt h1 span {
  display: inline-block;
}
.p-top__hr-img {
  max-width: 90%;
}
@media (min-width: 1400px) {
  .p-top__hr-img {
    max-width: 85%;
  }
}
.p-top__hr-img img {
  min-height: 480px;
}
.p-top__commitment {
  padding-block: clamp(80px, 12vw, 130px);
}
.p-top__commitment .box-img {
  position: relative;
  z-index: 1;
  padding-top: clamp(50px, 7vw, 100px);
  padding-right: clamp(20px, 14vw, 220px);
}
.p-top__commitment .box-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  display: block;
  background: url(../images/wallpaper02) center/contain repeat;
  max-width: 770px;
  width: clamp(350px, 47vw, 770px);
  max-height: 515px;
  height: 90%;
}
@media (min-width: 576px) {
  .p-top__commitment .box-img::after {
    height: 100%;
  }
}
.p-top__commitment .box img {
  aspect-ratio: 7.1/4.7;
}
.p-top__commitment .box-txt p span {
  display: inline-block;
}
.p-top__commitment .slide-gallery {
  padding-bottom: clamp(60px, 7vw, 110px);
}
.p-top__commitment .slide-gallery .swiper-slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.p-top__commitment .slide-gallery .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(100, 90, 62, 0.45);
  mix-blend-mode: darken;
  pointer-events: none;
  z-index: 1;
  transition: all 4s ease;
  opacity: 1;
}
.p-top__commitment .slide-gallery .swiper-slide img {
  filter: grayscale(100%) contrast(1) brightness(1);
  transition: filter 4s ease;
}
.p-top__commitment .slide-gallery .swiper-slide.swiper-slide-active::after {
  opacity: 0;
  background-color: transparent;
}
.p-top__commitment .slide-gallery .swiper-slide.swiper-slide-active img {
  filter: grayscale(0%) contrast(1) brightness(1);
}
.p-top__lunch, .p-top__menu {
  position: relative;
}
.p-top__lunch .box-txt, .p-top__menu .box-txt {
  padding-block: 50px clamp(80px, 10vw, 140px);
  width: 95%;
  background: url(../images/wallpaper01.jpg) center/contain repeat;
}
@media (min-width: 992px) {
  .p-top__lunch .box-txt, .p-top__menu .box-txt {
    width: 80%;
  }
}
.p-top__lunch .box-txt .tag, .p-top__menu .box-txt .tag {
  max-width: clamp(180px, 18vw, 260px);
}
.p-top__lunch .box-txt .limited, .p-top__menu .box-txt .limited {
  max-width: clamp(200px, 22vw, 330px);
}
.p-top__lunch .box-txt-inner, .p-top__menu .box-txt-inner {
  margin-top: 30px;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .p-top__lunch .box-txt-inner, .p-top__menu .box-txt-inner {
    padding-inline: clamp(20px, 5vw, 75px);
  }
}
.p-top__lunch .box-txt .section-title h2, .p-top__menu .box-txt .section-title h2 {
  font-size: clamp(1.875rem, 0.863rem + 4.38vw, 5rem);
}
.p-top__lunch .box-img, .p-top__menu .box-img {
  position: absolute;
  bottom: 0;
}
.p-top__lunch {
  padding-block: clamp(50px, 6vw, 80px) clamp(200px, 26vw, 380px);
}
.p-top__lunch .box-img {
  right: 0;
  width: 70%;
}
@media (max-width: 400px) {
  .p-top__lunch .box-img {
    width: 88%;
  }
}
@media (min-width: 576px) {
  .p-top__lunch .box-img {
    width: 60%;
  }
}
.p-top__menu {
  padding-block: clamp(60px, 6vw, 80px) 200px;
  margin-bottom: clamp(60px, 7vw, 120px);
}
.p-top__menu .box-img {
  left: 0;
  width: 70%;
}
@media (max-width: 400px) {
  .p-top__menu .box-img {
    width: 85%;
  }
}
@media (min-width: 576px) {
  .p-top__menu .box-img {
    width: 60%;
  }
}
.p-top__scene {
  background: url(../images/wallpaper03) center/contain repeat;
  padding-block: clamp(80px, 12vw, 150px);
}
.p-top__scene h2,
.p-top__scene h3 {
  color: white;
}
.p-top__scene h2 span,
.p-top__scene h3 span {
  display: inline-block;
}
.p-top__scene .box-wrap {
  flex-direction: column;
  gap: 60px;
  align-items: center;
}
@media (min-width: 768px) {
  .p-top__scene .box-wrap {
    flex-direction: row;
    gap: clamp(20px, 4vw, 50px);
    align-items: stretch;
  }
}
@media (min-width: 768px) {
  .p-top__scene .box-wrap .box {
    width: calc(33.3333333333% - clamp(10px, 3vw, 34px));
  }
}
@media (min-width: 768px) {
  .p-top__scene .box-wrap .box-img img {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .p-top__scene .box-wrap .box-img img {
    height: 564px;
  }
}
.p-top__scene .box-wrap .box-txt {
  line-height: 1.5;
}
.p-top__scene .announce-box {
  max-width: 850px;
  margin-inline: auto;
  margin-top: clamp(60px, 12vw, 140px);
  background-color: white;
  border-radius: clamp(20px, 1.5vw, 30px);
  border: solid 3px var(--acc);
  padding: 35px clamp(20px, 4vw, 50px);
}
.p-top__scene .announce-box .box {
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-top__scene .announce-box .box {
    flex-direction: column;
  }
}
.p-top__scene .announce-box .box-img {
  width: 50%;
}
@media (min-width: 768px) {
  .p-top__scene .announce-box .box-img {
    width: 22%;
  }
}
.p-top__scene .announce-box .box-txt {
  flex: 1;
  width: 100%;
}
.p-top__scene .announce-box .box-txt h4 {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
}
.p-top__info {
  position: relative;
  z-index: 1;
  padding-block: clamp(120px, 17vw, 260px) clamp(80px, 12vw, 150px);
}
.p-top__info::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  z-index: -1;
  display: block;
  background: url(../images/wallpaper02.jpg) center/contain repeat;
  width: clamp(300px, 38vw, 570px);
  height: 660px;
}
@media (min-width: 768px) {
  .p-top__info::after {
    height: 856px;
  }
}
.p-top__other .section-title {
  position: relative;
  z-index: 2;
}
.p-top__other .section-title h2 {
  color: white;
}
.p-top__other a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 160px);
  padding-inline: 20px;
}
.p-top__other a::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(100, 90, 62, 0.45);
  mix-blend-mode: darken;
  pointer-events: none;
  z-index: 1;
  transition: all 0.5s ease;
}
.p-top__other a:hover img {
  filter: grayscale(0%) contrast(1) brightness(1);
  transform: scale(1.065);
}
.p-top__other img {
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 100%;
  transition: all 0.5s ease-out;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(100%) contrast(1) brightness(1);
  box-sizing: border-box;
}
.p-top__map iframe {
  height: clamp(400px, 42vw, 635px);
}

.page-hr {
  position: relative;
  height: calc(100dvh - (var(--header-top)));
  min-height: 580px;
}
.page-hr img {
  height: inherit;
}
.page-hr__txt {
  position: absolute;
  z-index: 1;
  bottom: 0;
  inset-inline: 0;
  width: 100%;
  padding-bottom: 60px;
  padding-inline: clamp(20px, 6vw, 75px);
  background: linear-gradient(180deg, transparent 0%, transparent clamp(40px, 8.5vw, 140px), var(--base) clamp(40px, 8.5vw, 140px), var(--base) 100%);
}
.page-hr .en {
  color: #e2dfd7;
  font-family: var(--zen-old);
  font-size: clamp(2.5rem, 0.475rem + 8.76vw, 8.75rem);
}
.page-hr .ja {
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
}

.page-section-top {
  position: relative;
  z-index: 1;
  padding-block: clamp(100px, 18vw, 260px);
  padding-inline: 20px;
}
.page-section-top h2 {
  font-size: clamp(1.438rem, 1.093rem + 1.49vw, 2.5rem);
  font-family: var(--zen-old);
  color: white;
  text-align: center;
}
.page-section-top__img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-section-top__img img {
  height: inherit;
}

.pickup-wrap .container {
  padding-block: clamp(80px, 12vw, 170px);
}
.pickup-wrap .section-title {
  position: relative;
  z-index: 1;
  padding-top: clamp(20px, 3vw, 50px);
}
.pickup-wrap .section-title .number {
  position: absolute;
  z-index: -1;
  line-height: 1;
  font-size: clamp(4.063rem, 2.787rem + 5.52vw, 8rem);
  font-family: var(--zen-old);
  color: #e2dfd7;
  font-weight: 600;
  bottom: 0;
  left: 0;
}
.pickup-wrap .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 12vw, 150px);
}
.pickup-wrap .box-wrap .box {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (min-width: 768px) {
  .pickup-wrap .box-wrap .box {
    align-items: flex-end;
  }
}
.pickup-wrap .box-wrap .box:nth-child(odd) {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .pickup-wrap .box-wrap .box:nth-child(odd) {
    flex-direction: row;
    align-items: flex-end;
  }
}
.pickup-wrap .box-wrap .box:nth-child(even) {
  flex-direction: column;
}
@media (min-width: 768px) {
  .pickup-wrap .box-wrap .box:nth-child(even) {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .pickup-wrap .box-wrap .box-txt {
    width: calc(50% - 14.5px);
  }
}
.pickup-wrap .box-wrap .box-img {
  margin-inline: auto;
  width: 90%;
}
@media (min-width: 768px) {
  .pickup-wrap .box-wrap .box-img {
    width: calc(50% - 14.5px);
    margin-inline: 0;
  }
}
.pickup-wrap .box-wrap .box-img img {
  aspect-ratio: 6/4;
}

.info-contents {
  border-radius: clamp(20px, 1.5vw, 30px);
  border: solid 2px var(--acc2);
  background-color: white;
  padding: 40px 20px;
  max-width: 1140px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .info-contents {
    padding: clamp(40px, 4vw, 55px) clamp(20px, 7vw, 60px);
  }
}
@media (min-width: 768px) {
  .info-contents {
    border: solid 3px var(--acc2);
  }
}
.info-contents h3 {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
  font-weight: bold;
}
.info-contents > p {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.info-contents .btn-box {
  max-width: 640px;
  margin-inline: auto;
}

.limited-txt {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: var(--acc2);
  color: white;
  font-size: clamp(1.063rem, 0.84rem + 0.96vw, 1.75rem);
  padding: 15px 35px;
  border-radius: 100px;
}

.list-dl {
  display: flex;
}

.p-commitment .sec01 {
  padding-block: clamp(100px, 9vw, 180px) clamp(80px, 6vw, 110px);
}
.p-commitment .sec01 .box-wrap {
  margin-bottom: clamp(60px, 12vw, 150px);
}
.p-commitment .sec01 .box-img {
  position: relative;
  z-index: 1;
  padding-top: clamp(50px, 6vw, 100px);
}
.p-commitment .sec01 .box-img img {
  aspect-ratio: 7.1/4.7;
}
.p-commitment .sec01 .box-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -2vw;
  background: url(../images/wallpaper02) center/contain repeat;
  width: 84%;
  height: 84%;
  aspect-ratio: 7.1/4.7;
}
.p-commitment .sec01 .gallery-box {
  position: relative;
  z-index: 1;
}
.p-commitment .sec01 .gallery-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../images/wallpaper02) center/contain repeat;
  width: clamp(300px, 61vw, 460px);
  height: clamp(280px, 55vw, 410px);
  top: clamp(80px, 12vw, 150px);
  left: 40px;
}
@media (min-width: 768px) {
  .p-commitment .sec01 .gallery-box::after {
    width: clamp(300px, 38vw, 573px);
    height: clamp(280px, 34vw, 515px);
    left: clamp(40px, 14vw, 200px);
  }
}
.p-commitment .sec01 .gallery-box .box img {
  aspect-ratio: 5.8/3.9;
}
@media (min-width: 768px) {
  .p-commitment .sec01 .gallery-box .box:nth-child(1) {
    margin-bottom: clamp(100px, 14vw, 200px);
  }
}
.p-commitment .sec01 .gallery-box .box:nth-child(2) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-commitment .sec01 .gallery-box .box:nth-child(2) {
    margin-top: clamp(100px, 14vw, 200px);
  }
}
.p-commitment .sec05 {
  padding-block: clamp(80px, 12vw, 150px);
  padding-inline: 20px;
}
.p-commitment .sec05 .box-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(25px, 6vw, 80px);
}
@media (min-width: 992px) {
  .p-commitment .sec05 .box-wrap {
    flex-direction: row;
    align-items: stretch;
  }
}
.p-commitment .sec05 .box-wrap .box {
  background-color: white;
  border: solid 2px var(--acc2);
  padding-block: clamp(40px, 4vw, 65px);
  padding-inline: clamp(20px, 4vw, 65px);
  border-radius: clamp(20px, 1.5vw, 30px);
}
@media (min-width: 992px) {
  .p-commitment .sec05 .box-wrap .box {
    border: solid 3px var(--acc2);
    width: calc(50% - clamp(12.5px, 3vw, 40px));
  }
}
.p-commitment .sec05 .box-wrap .box h3 {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
  font-family: var(--tsuku);
  font-weight: bold;
}

.p-lunch .sec01 {
  padding-block: clamp(80px, 11vw, 130px);
}
.p-lunch .sec01 .box {
  position: relative;
  z-index: 1;
  padding-top: clamp(50px, 6vw, 80px);
  margin-bottom: 35px;
  max-width: 1000px;
  margin-inline: auto;
}
.p-lunch .sec01 .box::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100%;
  height: 93%;
  display: block;
  background: var(--bg01);
}
@media (min-width: 768px) {
  .p-lunch .sec01 .box::after {
    width: 93%;
  }
}
.p-lunch .sec01 .box .tag {
  max-width: clamp(200px, 25vw, 364px);
  margin-inline: auto;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .p-lunch .sec01 .box .tag {
    margin-bottom: 45px;
  }
}
.p-lunch .sec01 .box .limited {
  max-width: clamp(180px, 22vw, 330px);
  margin-inline: auto;
  margin-bottom: 10px;
}
.p-lunch .sec01 .box .section-title h2 {
  font-size: clamp(1.875rem, 0.761rem + 4.82vw, 5.313rem);
}
.p-lunch .sec01 .box-txt, .p-lunch .sec01 .box-img {
  padding-inline: 0;
}
.p-lunch .sec01 .box-txt {
  font-family: var(--zen-old);
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .p-lunch .sec01 .box-txt {
    margin-bottom: 45px;
  }
}
.p-lunch .sec01 .box-txt .txt-wrap {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
.p-lunch .sec01 .box-txt .txt-wrap .price {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
}
.p-lunch .sec02 {
  padding-block: clamp(80px, 12vw, 150px);
  color: #ffffff;
}
.p-lunch .sec02 .section-title span {
  display: inline-block;
}
.p-lunch .sec02 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 7vw, 110px);
}
.p-lunch .sec02 .box-wrap .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
@media (min-width: 768px) {
  .p-lunch .sec02 .box-wrap .box {
    flex-direction: row;
  }
}
.p-lunch .sec02 .box-wrap .box-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1000px;
  width: 75%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-lunch .sec02 .box-wrap .box-img {
    width: 32%;
    margin-inline: 0;
  }
}
.p-lunch .sec02 .box-wrap .box-img img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1000px;
}
.p-lunch .sec02 .box-wrap .box-txt {
  flex: 1;
  width: 100%;
}
.p-lunch .sec02 .box-wrap .box-txt .section-title {
  text-align: center;
}
@media (min-width: 768px) {
  .p-lunch .sec02 .box-wrap .box-txt .section-title {
    text-align: left;
  }
}
.p-lunch .sec03 {
  padding-block: clamp(80px, 12vw, 150px) clamp(100px, 14vw, 200px);
}

.menu-info {
  max-width: 940px;
  margin-inline: auto;
}

.p-menu .sec01,
.p-scene .sec01,
.p-forfamily .sec01,
.p-floor .sec01 {
  padding-block: clamp(80px, 12vw, 140px);
}
.p-menu .sec01 .box,
.p-scene .sec01 .box,
.p-forfamily .sec01 .box,
.p-floor .sec01 .box {
  margin-bottom: clamp(60px, 12vw, 150px);
}
.p-menu .sec01 .box-img,
.p-scene .sec01 .box-img,
.p-forfamily .sec01 .box-img,
.p-floor .sec01 .box-img {
  position: relative;
  z-index: 1;
  padding-top: clamp(50px, 6vw, 100px);
}
.p-menu .sec01 .box-img img,
.p-scene .sec01 .box-img img,
.p-forfamily .sec01 .box-img img,
.p-floor .sec01 .box-img img {
  aspect-ratio: 7.1/4.7;
}
.p-menu .sec01 .box-img::before,
.p-scene .sec01 .box-img::before,
.p-forfamily .sec01 .box-img::before,
.p-floor .sec01 .box-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -9vw;
  background: url(../images/wallpaper02) center/contain repeat;
  width: 84%;
  height: 84%;
  aspect-ratio: 7.1/4.7;
}
.p-menu .sec02,
.p-scene .sec02,
.p-forfamily .sec02,
.p-floor .sec02 {
  color: white;
}

.p-menu .info-contents {
  max-width: 800px;
}
.p-menu .sec02 {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-menu .sec02 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 6vw, 80px);
}
.p-menu .sec02 .box-wrap .box {
  display: flex;
  gap: 10px 0;
  margin-inline: 0;
}
@media (min-width: 768px) {
  .p-menu .sec02 .box-wrap .box {
    margin-inline: -15px;
    align-items: center;
  }
}
.p-menu .sec02 .box-wrap .box-img {
  position: relative;
  z-index: 1;
}
.p-menu .sec02 .box-wrap .box-img::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  display: block;
  background: var(--bg02);
  width: 90%;
  height: 65%;
}
.p-menu .sec02 .box-wrap .box:nth-child(odd) {
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-menu .sec02 .box-wrap .box:nth-child(odd) {
    flex-direction: row;
  }
}
.p-menu .sec02 .box-wrap .box:nth-child(odd) .box-img::after {
  content: "";
  left: 0;
}
.p-menu .sec02 .box-wrap .box:nth-child(even) {
  margin-left: auto;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-menu .sec02 .box-wrap .box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.p-menu .sec02 .box-wrap .box:nth-child(even) .box-img {
  margin-left: auto;
}
.p-menu .sec02 .box-wrap .box:nth-child(even) .box-img::after {
  content: "";
  right: 0;
}
.p-menu .sec02 .box-wrap .box-img {
  position: relative;
  z-index: 1;
}
.p-menu .sec02 .box-wrap .box-img::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-menu .sec03 {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-menu .sec04 .container {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-menu .sec04 .txt-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .p-menu .sec04 .txt-wrap {
    flex-direction: row;
    gap: 30px clamp(30px, 10vw, 100px);
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .p-menu .sec04 .txt-wrap {
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
  }
}
.p-menu .sec04 .txt-wrap p > span {
  display: inline-block;
}
.p-menu .sec05 .container {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-menu .sec05 .info-contents {
  max-width: 800px;
  margin-inline: auto;
}
.p-menu .sec06 .container {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-menu .course-wrap {
  margin-bottom: clamp(60px, 12vw, 150px);
}
.p-menu .menu-wrap .box {
  margin-bottom: clamp(60px, 12vw, 150px);
}
.p-menu .menu-wrap .menu-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0 clamp(20px, 9vw, 130px);
}
@media (min-width: 992px) {
  .p-menu .menu-wrap .menu-box {
    flex-direction: row;
  }
}
.p-menu .menu-wrap .menu-box .menu-list {
  width: 100%;
}
@media (min-width: 992px) {
  .p-menu .menu-wrap .menu-box .menu-list {
    width: calc(50% - clamp(10px, 4.5vw, 65px));
  }
}
.p-menu .menu-wrap .menu-list .list-dl {
  padding-block: 20px;
  flex-direction: column;
  gap: 8px 20px;
}
@media (min-width: 576px) {
  .p-menu .menu-wrap .menu-list .list-dl {
    flex-direction: row;
  }
}
.p-menu .menu-wrap .menu-list .list-dt {
  flex: 1;
  width: 100%;
}
.p-menu .menu-wrap .menu-list .list-dt p {
  line-height: 1.7;
}
.p-menu .menu-wrap .menu-list .list-dd {
  width: 100%;
  text-align: right;
}
@media (min-width: 576px) {
  .p-menu .menu-wrap .menu-list .list-dd {
    width: 150px;
  }
}
.p-menu .menu-wrap .menu-list .list-dd.amount {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-left: auto;
}
@media (min-width: 576px) {
  .p-menu .menu-wrap .menu-list .list-dd.amount {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: row;
  }
}
.p-menu .menu-wrap .menu-list .list-dt h4,
.p-menu .menu-wrap .menu-list .list-dd .price {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-weight: 600;
  font-family: var(--zen-old);
}

.p-scene .sec02 {
  padding-block: clamp(80px, 12vw, 150px) clamp(100px, 17vw, 230px);
  color: white;
}
.p-scene .sec02 .section-title {
  display: flex;
  align-items: baseline;
}
.p-scene .sec02 .section-title .number {
  font-size: clamp(1.875rem, 0.782rem + 4.73vw, 5.25rem);
  margin-right: 10px;
}
.p-scene .sec02 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 13vw, 200px);
}
.p-scene .sec02 .box-wrap .box {
  flex-direction: column;
}
.p-scene .sec02 .box-wrap .box-img {
  position: relative;
  z-index: 1;
  padding-top: clamp(50px, 6vw, 100px);
}
.p-scene .sec02 .box-wrap .box-img img {
  aspect-ratio: 7.1/4.7;
}
.p-scene .sec02 .box-wrap .box-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  background: url(../images/wallpaper02) center/contain repeat;
  width: 84%;
  height: 84%;
  aspect-ratio: 7.1/4.7;
}
.p-scene .sec02 .box-wrap .box:nth-child(odd) {
  margin-left: auto;
}
.p-scene .sec02 .box-wrap .box:nth-child(odd) .box-img {
  margin-left: auto;
}
.p-scene .sec02 .box-wrap .box:nth-child(odd) .box-img::before {
  content: "";
  right: -9vw;
}
.p-scene .sec02 .box-wrap .box:nth-child(even) {
  margin-right: auto;
}
.p-scene .sec02 .box-wrap .box:nth-child(even) .box-img {
  margin-right: auto;
}
.p-scene .sec02 .box-wrap .box:nth-child(even) .box-img::before {
  content: "";
  left: -9vw;
}

.p-forfamily .sec02 {
  color: white;
}
.p-forfamily .sec02 .section-title .number {
  color: #777777;
}

.p-contact__sec {
  padding-block: clamp(50px, 6vw, 75px) clamp(80px, 12vw, 150px);
}
.p-contact__form {
  padding-inline: 20px;
}
.p-contact__form .container {
  display: flex;
  flex-direction: column;
  gap: clamp(35px, 4vw, 55px);
}
@media (min-width: 768px) {
  .p-contact__form .container {
    max-width: 750px;
  }
}
.p-contact__form .row {
  flex-direction: column;
}
.p-contact__form input,
.p-contact__form textarea {
  width: 100%;
  background-color: white;
  border: solid 2px var(--txt);
  border-radius: 10px;
  padding: 15px 10px;
}
.p-contact__form textarea {
  height: 250px;
}
@media (min-width: 768px) {
  .p-contact__form textarea {
    height: 400px;
  }
}
.p-contact__form .checkbox {
  width: clamp(18px, 3vw, 25px);
  height: clamp(18px, 3vw, 25px);
  border: 1px solid var(--main);
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 15px;
}
.p-contact__form .privacyLabel {
  cursor: pointer;
}
.p-contact__form .formTh {
  font-size: clamp(1.063rem, 0.921rem + 0.61vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.p-contact__form .formTh > label {
  margin-bottom: 0;
  font-family: var(--zen-old);
}
.p-contact__form .formTh .requiredText {
  margin-left: 14px;
  background-color: var(--acc);
  font-size: clamp(0.688rem, 0.607rem + 0.35vw, 0.938rem);
  border-radius: 99px;
  padding: 2px 18px;
  line-height: 1.2;
}
.p-contact__form .formBtnTd {
  margin-top: clamp(50px, 7vw, 100px);
}
.p-contact__form .formBtnTd button {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 15px 100px;
  padding-block: 12px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 200px;
  width: 100%;
  background-color: var(--acc);
  border: solid 1px var(--txt);
  font-family: var(--zen-old);
}
@media (min-width: 768px) {
  .p-contact__form .formBtnTd button {
    padding-inline: 30px 100px;
    padding-block: 15px;
    min-width: 260px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-contact__form .formBtnTd button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: block;
  background: url(../images/arrow_bk.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-contact__form .formBtnTd button::after {
    width: 34px;
    height: 34px;
    right: 30px;
  }
}
.p-contact__form .formBtnTd button:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
}

.p-recruit .sec02 {
  padding-block: clamp(80px, 9vw, 130px) clamp(40px, 6vw, 88px);
  font-family: var(--zen-old);
  line-height: 1.8;
}
.p-recruit .sec03 {
  padding-block: clamp(40px, 6vw, 88px) clamp(80px, 9vw, 130px);
}
.p-recruit .sec04 {
  padding-block: clamp(60px, 8vw, 100px);
}
@media (min-width: 1200px) {
  .p-recruit .sec04 .container {
    max-width: 1340px;
  }
}
.p-recruit .holdings {
  background-image: none;
}
@media (min-width: 992px) {
  .p-recruit .holdings {
    background-image: url(../images/recruit-back.jpg);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.p-recruit .holdings__inner {
  background-color: white;
  border-radius: clamp(20px, 1.9vw, 35px);
  overflow: hidden;
}
.p-recruit .holdings__wrap {
  padding: clamp(40px, 6vw, 75px) clamp(20px, 5vw, 70px);
}
.p-recruit .holdings__logo {
  max-width: 168px;
  margin-inline: auto;
}
.p-recruit .holdings .section-title h2 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
.p-recruit .holdings .sp-img {
  display: block;
}
@media (min-width: 992px) {
  .p-recruit .holdings .sp-img {
    display: none;
  }
}
.p-recruit .holdings .sp-img img {
  height: 280px;
  -o-object-position: top center;
     object-position: top center;
}

.p-information .section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-information .section-title h2 {
  padding-inline: clamp(20px, 3vw, 55px);
  padding-bottom: 10px;
  border-bottom: solid 2px var(--acc2);
}
@media (min-width: 768px) {
  .p-information .section-title h2 {
    padding-bottom: 20px;
  }
}
.p-information .sec01,
.p-information .sec02,
.p-information .sec03 {
  padding-block: clamp(80px, 8vw, 130px);
}
.p-information .sec01 .container {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
.p-information .sec01 .list-dl {
  flex-direction: column;
  gap: 8px 30px;
  padding-block: 15px;
  border-bottom: solid 1px var(--txt);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-information .sec01 .list-dl {
    flex-direction: row;
  }
}
.p-information .sec01 .list-dl:first-child {
  padding-top: 0;
}
.p-information .sec01 .list-dt {
  width: 100%;
}
@media (min-width: 768px) {
  .p-information .sec01 .list-dt {
    width: 170px;
  }
}
.p-information .sec01 .list-dd {
  width: 100%;
  flex: 1;
}

.p-news .webgene-news {
  max-width: 910px;
  padding-inline: 20px;
  margin-inline: auto;
}
.p-news .webgene-news > article a {
  padding-block: 40px;
  border-bottom: solid 2px var(--acc);
  display: flex;
  flex-direction: column;
  gap: 15px 30px;
}
@media (min-width: 768px) {
  .p-news .webgene-news > article a {
    padding-block: 20px;
    flex-direction: row;
    align-items: center;
  }
}
.p-news .webgene-news > article:first-of-type a {
  padding-top: 0px;
}
.p-news .webgene-news > article .date,
.p-news .webgene-news > article .title {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.p-news .webgene-news > article .date {
  color: var(--acc);
  font-family: var(--futura);
}
.p-news .webgene-news > article .title {
  flex: 1;
}
.p-news .webgene-pagination {
  margin-top: clamp(60px, 8vw, 120px);
}
.p-news .news-item__img {
  position: relative;
  z-index: 1;
  width: 65%;
  margin-inline: auto;
  aspect-ratio: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-news .news-item__img {
    width: 150px;
  }
}
.p-news .news-item__img img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}
.p-news .news-item__img > .noImage {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-news .news-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 {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  margin-bottom: 15px;
  color: var(--red);
}
.newsdetail-contents__title {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  margin-bottom: 35px;
}
.newsdetail-contents__img {
  width: 75%;
  max-width: 600px;
  margin-inline: auto;
}
.newsdetail-contents__meta {
  margin-top: 35px;
}

.p-news .webgene-pagination,
.p-newsdetail .webgene-pagination {
  margin-top: clamp(60px, 7vw, 100px);
}
.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;
  color: white;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 100px 15px;
  padding-block: 12px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 200px;
  width: 100%;
  background-color: var(--acc);
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .prev > a {
    padding-inline: 120px 30px;
    padding-block: 15px;
    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_wh.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .prev > a::after,
.p-newsdetail .webgene-pagination .prev > a::after {
    width: 34px;
    height: 34px;
    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;
  color: white;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 15px 100px;
  padding-block: 12px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 200px;
  width: 100%;
  background-color: var(--acc);
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .next > a {
    padding-inline: 30px 120px;
    padding-block: 15px;
    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_wh.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .next > a::after,
.p-newsdetail .webgene-pagination .next > a::after {
    width: 34px;
    height: 34px;
    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;
  color: white;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 100px 15px;
  padding-block: 12px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 250px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--acc);
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .btn-block > a,
.p-newsdetail .webgene-pagination .btn-block > a {
    padding-inline: 120px 30px;
    padding-block: 15px;
    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_wh.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  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: 34px;
    height: 34px;
    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;
}

.privacy-policy {
  background-color: var(--txt);
  border-radius: 13px;
  padding: 14px 12px;
}
.privacy-policy__wrap {
  font-size: 0.8125rem;
  color: white;
  height: 230px;
  overflow: auto;
  padding-right: 10px;
}
.privacy-policy__wrap::-webkit-scrollbar {
  width: 8px;
}
.privacy-policy__wrap::-webkit-scrollbar-track {
  background-color: transparent;
}
.privacy-policy__wrap::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: white;
}
.privacy-policy a {
  color: white;
}

.p-complete .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.p-complete .btn-wrap a {
  min-width: 200px;
}
@media (min-width: 768px) {
  .p-complete .btn-wrap a {
    min-width: 280px;
  }
}