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

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

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

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

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

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

/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background-color: var(--base);
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 1.5;
  font-style: normal;
  letter-spacing: 0.06em;
  max-width: 100vw;
}

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

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

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

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

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

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

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

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

body {
  position: relative;
  z-index: -1;
  font-family: var(--tem);
  color: var(--navy);
  line-height: 1.5;
}
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  inset: 0;
  background: url(../images/body-bg.jpg) center/cover repeat;
}

:root {
  --ms: "Ms Madi", cursive;
  --tsukushi: "fot-tsukubrdgothic-std", sans-serif;
  --tem: "ten-mincho", serif;
  --navy: #1f3957;
  --orange: #d25212;
  --skew: clamp(12px, 6vw, 96px);
}

.ms {
  font-family: "Ms Madi", cursive;
}

.tsukushi {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
}

.tem {
  font-family: "ten-mincho", serif;
}

.navy {
  color: var(--navy);
}

.or {
  color: var(--orange);
}

.text {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .text {
    font-size: 1rem;
  }
}

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

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

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

.typein-char.is-show {
  opacity: 1;
  transform: translateY(0);
}

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

.btn-wrap__link {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  overflow: hidden;
}
.btn-wrap__link::after {
  content: "";
  padding-top: 8px;
  display: block;
  width: 100%;
  height: 0px;
  border-bottom: dotted 2px var(--orange);
  transform: translateX(0);
  transform-origin: bottom left;
  transition: transform 0.25s ease-out;
}
.btn-wrap__link:hover::after {
  transform: translateX(100%);
  transform-origin: bottom right;
}
.btn-wrap__link--wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--tsukushi);
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  font-weight: bold;
  width: 180px;
}
@media (min-width: 576px) {
  .btn-wrap__link--wrap {
    width: 215px;
  }
}
.btn-wrap__link--wrap > p {
  color: white;
}
.btn-wrap__link--wrap > img {
  width: 22px;
  height: 22px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  padding: 15px 20px;
}
@media (min-width: 768px) {
  .l-header {
    padding: 25px 20px;
  }
}
.l-header__inner {
  max-width: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 74px;
}
@media (min-width: 576px) {
  .l-header__inner {
    padding: 15px 25px;
  }
}
@media (min-width: 1400px) {
  .l-header__inner {
    max-width: 1300px;
  }
}
.l-header__logo a {
  display: block;
  width: clamp(7.5rem, 6.731rem + 3.33vw, 9.875rem);
  height: clamp(2.563rem, 2.299rem + 1.14vw, 3.375rem);
  position: relative;
}
.l-header__logo a > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.l-header__logo a > .logo-nv {
  opacity: 1;
  transition: all 0.3s ease;
}
.l-header__logo a > .logo-or {
  opacity: 0;
  transition: all 0.3s ease;
}
.l-header__logo a:hover .logo-nv {
  opacity: 0;
}
.l-header__logo a:hover .logo-or {
  opacity: 1;
}
.l-header__nav {
  flex: 1;
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 800px;
  height: 100%;
  background-color: white;
  padding: 150px 0;
  overflow: auto;
}
@media (min-width: 576px) {
  .l-header__nav {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .l-header__nav {
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .l-header__nav {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    background-color: transparent;
    padding: 0;
    overflow: unset;
  }
}
.l-header__nav.open {
  transform: translateX(0);
  transition: all 0.5s ease;
}
.l-header__nav--lists {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1400px) {
  .l-header__nav--lists {
    flex-direction: row;
    justify-content: end;
  }
}
.l-header__nav--link {
  font-family: var(--tsukushi);
  font-size: 0.875rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .l-header__nav--link {
    font-size: 1rem;
  }
}

.hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
@media (min-width: 1400px) {
  .hamburger-menu {
    display: none;
  }
}

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

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

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

@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
#mask {
  display: none;
  transition: all 0.5s;
  justify-content: center;
}
#mask.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

.info-pop {
  position: fixed;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: clamp(5rem, 3.785rem + 5.25vw, 8.75rem);
}

.l-footer {
  background-color: var(--navy);
  padding-top: 60px;
  color: white;
}
@media (min-width: 768px) {
  .l-footer {
    padding-top: 82px;
  }
}
.l-footer__inner {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .l-footer__inner {
    margin-bottom: 75px;
  }
}
.l-footer__logo--link {
  max-width: 300px;
  display: flex;
  gap: 2%;
  margin: 0 auto 50px;
}
@media (min-width: 768px) {
  .l-footer__logo--link {
    max-width: 450px;
    margin: 0 auto 80px;
  }
}
.l-footer__logo--link .logo {
  width: 73%;
}
.l-footer__logo--link .pig {
  width: 25%;
}
.l-footer__logo--link img {
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__logo--link:hover .pig {
  -webkit-animation: puyon 1s linear 0s 1;
          animation: puyon 1s linear 0s 1;
}
@-webkit-keyframes puyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  40% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  50% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  60% {
    transform: scale(0.95, 1.05) translate(0%, -3%);
  }
  70% {
    transform: scale(1.05, 0.95) translate(0%, 3%);
  }
  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes puyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  40% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  50% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  60% {
    transform: scale(0.95, 1.05) translate(0%, -3%);
  }
  70% {
    transform: scale(1.05, 0.95) translate(0%, 3%);
  }
  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
.l-footer__wrap {
  max-width: 1000px;
  margin: 0 auto 50px;
  display: flex;
  gap: 50px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .l-footer__wrap {
    margin: 0 auto 90px;
    gap: 7%;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .l-footer__wrap--left {
    width: 50%;
  }
}
.l-footer__wrap--left .list-dl {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.l-footer__wrap--left .list-dd {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  letter-spacing: 2px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .l-footer__wrap--right {
    width: 43%;
  }
}
.l-footer__wrap--right .box-wrap {
  display: flex;
  border: solid 1px white;
  margin-top: 15px;
}
.l-footer__wrap--right .box-wrap .box {
  flex: 1;
  border-right: solid 1px white;
}
.l-footer__wrap--right .box-wrap .box:last-child {
  border-right: none;
}
.l-footer__wrap--right .box-wrap .box--top, .l-footer__wrap--right .box-wrap .box--bottom {
  padding: 7px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer__wrap--right .box-wrap .box--top img, .l-footer__wrap--right .box-wrap .box--bottom img {
  max-width: 75px;
  max-height: 75px;
  width: 100%;
}
.l-footer__wrap--right .box-wrap .box--top {
  border-bottom: solid 1px white;
}
.l-footer__nav--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 12px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  margin: 0 auto;
  max-width: 400px;
}
@media (min-width: 576px) {
  .l-footer__nav--list {
    -moz-column-gap: 36px;
         column-gap: 36px;
    max-width: 650px;
  }
}
@media (min-width: 992px) {
  .l-footer__nav--list {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .l-footer__nav--list {
    max-width: 100%;
    justify-content: flex-start;
  }
}
.l-footer__nav--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex: 0 0 auto;
  color: #fff;
  line-height: 1;
  font-size: 0.875rem;
  text-align: center;
  width: calc((100% - 32px) / 2);
}
@media (max-width: 400px) {
  .l-footer__nav--link {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .l-footer__nav--link {
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .l-footer__nav--link {
    font-size: 1rem;
  }
}
.l-footer__nav--link::after {
  content: "";
  display: none;
  width: 1px;
  height: 1em;
  margin-left: 16px;
  transform: rotate(15deg);
  background-color: currentColor;
  opacity: 0.9;
}
@media (min-width: 576px) {
  .l-footer__nav--link::after {
    display: inline-block;
  }
}
.l-footer .list-dt {
  font-family: var(--ms);
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  line-height: 1;
}
.l-footer .insta-link {
  display: flex;
  justify-content: center;
}
.l-footer .insta-link > a {
  width: 32px;
  display: block;
}
.l-footer .copyright {
  padding: 22px 0 18px;
  font-size: 0.875rem;
}

.page-fv {
  padding-top: 190px;
  position: relative;
  z-index: 1;
}
.page-fv__title {
  color: white;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .page-fv__title {
    margin-bottom: 50px;
  }
}
.page-fv__title--en {
  font-family: var(--ms);
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
}
.page-fv__title--ja {
  font-size: clamp(2.188rem, 1.6rem + 2.54vw, 4rem);
}
.page-fv__img {
  width: 100%;
  margin: 0 auto;
}
.page-fv__img img {
  aspect-ratio: 1168/876;
}
.page-fv .background {
  position: absolute;
  z-index: -1;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 58%;
  max-height: 856px;
  background-color: var(--navy);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
  -webkit-animation: fv-show 0.7s ease 0s 1 normal;
          animation: fv-show 0.7s ease 0s 1 normal;
}
@-webkit-keyframes fv-show {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
  }
}
@keyframes fv-show {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
  }
}

.top-fv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.top-fv__bg {
  position: relative;
  width: 100%;
  height: inherit;
}
.top-fv__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.07);
}
.top-fv__bg > img {
  position: absolute;
  inset: 0;
  height: inherit;
  -webkit-animation: zoomOut 10s ease-out forwards;
          animation: zoomOut 10s ease-out forwards;
}
@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.top-fv__title {
  position: absolute;
  z-index: 1;
  top: 17%;
  left: 6vw;
}
@media (min-width: 768px) {
  .top-fv__title {
    top: 20%;
  }
}
@media (min-width: 992px) {
  .top-fv__title {
    top: 25%;
  }
}
@media (min-width: 1200px) {
  .top-fv__title {
    left: 15vw;
  }
}
.top-fv__title h1 {
  font-size: clamp(1.463rem, 1.097rem + 2.01vw, 3rem);
  color: white;
  line-height: 1.34;
}

.page-top__main--contents {
  /* 画面に入って .is-event が付いたら、画像の形へ */
  /* 角度をブレイクポイントで微調整したいときの例 */
}
.page-top__main--contents > div {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
@media (min-width: 576px) {
  .page-top__main--contents > div {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .page-top__main--contents > div {
    padding: 150px 0;
  }
}
.page-top__main--contents .back-ground {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--navy);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 0.7s ease, -webkit-clip-path 0.7s ease;
}
.page-top__main--contents .back-ground.is-event {
  -webkit-clip-path: polygon(0 0, 100% var(--skew), 100% 100%, 0 calc(100% - var(--skew)));
          clip-path: polygon(0 0, 100% var(--skew), 100% 100%, 0 calc(100% - var(--skew)));
}
@media (min-width: 992px) {
  .page-top__main--contents :root {
    --skew: clamp(16px, 5vw, 120px);
  }
}
.page-top__main--contents > div:nth-child(odd) .back-ground {
  transform: scale(1, -1);
}
@media (min-width: 992px) {
  .page-top__main--contents > div:nth-child(even) .container {
    flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .page-top__main--contents > div:nth-child(even) .thema-text {
    margin-left: auto;
  }
}
.page-top__concept .container, .page-top__scene .container, .page-top__menu .container {
  gap: 40px;
}
@media (min-width: 1200px) {
  .page-top__concept .container, .page-top__scene .container, .page-top__menu .container {
    max-width: 1340px;
  }
}
.page-top__concept .thema-text, .page-top__scene .thema-text, .page-top__menu .thema-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: clamp(2rem, 1.498rem + 2.17vw, 3.125rem);
}
@media (min-width: 992px) {
  .page-top__concept .thema-text, .page-top__scene .thema-text, .page-top__menu .thema-text {
    margin-left: 0;
    max-width: 100%;
    margin-bottom: 130px;
  }
}
@media (min-width: 1200px) {
  .page-top__concept .thema-text, .page-top__scene .thema-text, .page-top__menu .thema-text {
    font-size: clamp(2rem, 1.352rem + 2.8vw, 4rem);
  }
}
.page-top__concept .thema-text > p > span, .page-top__scene .thema-text > p > span, .page-top__menu .thema-text > p > span {
  font-size: clamp(2.5rem, 1.664rem + 3.61vw, 4.375rem);
}
@media (min-width: 1200px) {
  .page-top__concept .thema-text > p > span, .page-top__scene .thema-text > p > span, .page-top__menu .thema-text > p > span {
    font-size: clamp(2.5rem, 1.366rem + 4.9vw, 6rem);
  }
}
.page-top__concept .thema-text > p:nth-child(2), .page-top__scene .thema-text > p:nth-child(2), .page-top__menu .thema-text > p:nth-child(2) {
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 992px) {
  .page-top__concept .thema-text > p:nth-child(2), .page-top__scene .thema-text > p:nth-child(2), .page-top__menu .thema-text > p:nth-child(2) {
    margin-left: 50px;
    margin-right: auto;
  }
}
.page-top__concept .box-right img,
.page-top__concept .page-top__menu--top img, .page-top__scene .box-right img,
.page-top__scene .page-top__menu--top img, .page-top__menu .box-right img,
.page-top__menu .page-top__menu--top img {
  box-shadow: 20px 20px 0px #d25212;
}
.page-top__concept .container, .page-top__scene .container {
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-top__concept .container, .page-top__scene .container {
    gap: 5%;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .page-top__concept .container, .page-top__scene .container {
    gap: 6%;
  }
}
@media (min-width: 992px) {
  .page-top__concept .box-left, .page-top__scene .box-left {
    width: 55%;
  }
}
@media (min-width: 1200px) {
  .page-top__concept .box-left, .page-top__scene .box-left {
    width: 50%;
  }
}
.page-top__concept .box-right, .page-top__scene .box-right {
  margin: 0 auto;
  max-width: 85%;
}
@media (min-width: 576px) {
  .page-top__concept .box-right, .page-top__scene .box-right {
    max-width: 70%;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .page-top__concept .box-right, .page-top__scene .box-right {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .page-top__concept .box-right, .page-top__scene .box-right {
    width: 44%;
  }
}
.page-top__concept .box-right img, .page-top__scene .box-right img {
  aspect-ratio: 645/860;
}
.page-top__concept .thema-text {
  max-width: 380px;
}
.page-top__concept .thema-text > p:nth-child(2) {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .page-top__concept .thema-text > p:nth-child(2) {
    margin-left: 50px;
    margin-right: auto;
  }
}
.page-top__concept .thema-text > p:nth-child(3) {
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 992px) {
  .page-top__concept .thema-text > p:nth-child(3) {
    margin-left: 100px;
    margin-right: auto;
  }
}
.page-top__concept .back-ground {
  height: 81%;
}
@media (min-width: 576px) {
  .page-top__concept .back-ground {
    height: 77%;
  }
}
@media (min-width: 992px) {
  .page-top__concept .back-ground {
    height: 63%;
  }
}
.page-top__scene .back-ground {
  height: 83%;
}
@media (min-width: 576px) {
  .page-top__scene .back-ground {
    height: 81%;
  }
}
@media (min-width: 992px) {
  .page-top__scene .back-ground {
    height: 66%;
  }
}
.page-top__menu {
  position: relative;
  z-index: 1;
}
.page-top__menu .container {
  display: flex;
  flex-direction: column;
}
.page-top__menu .thema-text {
  order: 1;
}
.page-top__menu--top {
  order: 3;
}
@media (min-width: 992px) {
  .page-top__menu--top {
    order: 2;
  }
}
.page-top__menu--bottom {
  order: 2;
}
@media (min-width: 992px) {
  .page-top__menu--bottom {
    order: 3;
  }
}
.page-top__menu .back-ground {
  height: 79%;
}
@media (min-width: 576px) {
  .page-top__menu .back-ground {
    height: 77%;
  }
}
@media (min-width: 992px) {
  .page-top__menu .back-ground {
    height: 81%;
  }
}
.page-top__menu--top img {
  aspect-ratio: 860/645;
}
.page-top__news {
  padding: 60px 0;
  padding: 120px 0;
}
@media (min-width: 576px) {
  .page-top__news {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .page-top__news {
    padding: 100px 0;
  }
}
.page-top__news .container {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media (min-width: 992px) {
  .page-top__news .container {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-top__news--left {
    width: 350px;
  }
}
.page-top__news--left .contents-text .title-en,
.page-top__news--left .contents-text .title-ja {
  line-height: 1;
}
.page-top__news--left .contents-text .title-ja {
  font-size: clamp(2.188rem, 1.38rem + 3.49vw, 4rem);
  color: var(--navy);
}
.page-top__news--right {
  flex: 1;
}
.page-top__news--right .news-item {
  padding: 20px 0;
  border-bottom: solid 1px var(--navy);
}
.page-top__news--right .news-date {
  color: var(--orange);
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  margin-bottom: 5px;
}
.page-top__news--right .news-title {
  font-size: clamp(1.063rem, 0.867rem + 0.84vw, 1.5rem);
}
.page-top__news--right .btn-wrap {
  display: flex;
  justify-content: end;
  margin-top: 50px;
}
.page-top__news--right .btn-wrap__link p {
  color: var(--navy);
}
.page-top__other--links {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 80px;
}
@media (min-width: 576px) {
  .page-top__other--links {
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .page-top__other--links {
    gap: 70px;
    margin-bottom: 120px;
  }
}
.page-top__other--links__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  min-height: 300px;
}
@media (min-width: 768px) {
  .page-top__other--links__link {
    padding: 30px;
    min-height: 370px;
  }
}
.page-top__other--links__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  transition: all 0.3s ease;
}
.page-top__other--links__link:hover .inner-wrap > img {
  transform: translateX(8px);
  transition: all 0.3s ease;
}
.page-top__other .contents-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: auto;
  margin-bottom: 25px;
}
.page-top__other .contents-text .title-en,
.page-top__other .contents-text .title-ja {
  line-height: 1;
}
.page-top__other .contents-text .title-en {
  margin-bottom: 0;
}
.page-top__other .contents-text .title-ja {
  font-size: clamp(2rem, 1.554rem + 1.93vw, 3rem);
}
.page-top__other .inner-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  gap: 8px;
}
.page-top__other .inner-wrap > p {
  flex: 1;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  color: white;
  text-align: right;
}
.page-top__other .inner-wrap > img {
  width: 27px;
  transition: all 0.3s ease;
}
.page-top .map iframe {
  border: none;
  width: 100%;
  height: 400px;
  display: block;
}
@media (min-width: 576px) {
  .page-top .map iframe {
    height: 550px;
  }
}
@media (min-width: 768px) {
  .page-top .map iframe {
    height: 680px;
  }
}

.card-contents {
  position: relative;
  z-index: 0;
  margin-top: -150px;
}
.card-contents .card-img {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
}
.card-contents .card-img img {
  height: inherit;
}

.page-top__products {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .page-top__products {
    flex-direction: row;
  }
}
.page-top__products--left {
  background-color: var(--orange);
  color: white;
  padding: 80px 20px;
}
@media (min-width: 576px) {
  .page-top__products--left {
    padding: 100px 40px;
  }
}
@media (min-width: 992px) {
  .page-top__products--left {
    -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    padding: 180px 0px 180px 50px;
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .page-top__products--left {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .page-top__products--left {
    padding: 180px 0px 180px 120px;
  }
}
.page-top__products--left .contents-text .title {
  color: var(--navy);
}
.page-top__products--left .contents-text .point-text {
  font-size: clamp(2.188rem, 1.38rem + 3.49vw, 4rem);
  line-height: 1.4;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-top__products--left .contents-text .point-text {
    margin-bottom: 65px;
  }
}
.page-top__products--left .btn-wrap__link::after {
  border-bottom: dotted 2px var(--navy);
}
.page-top__products--right {
  top: 0;
  right: 0;
  height: 100%;
}
@media (min-width: 992px) {
  .page-top__products--right {
    position: absolute;
    z-index: -1;
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .page-top__products--right {
    width: 55%;
  }
}
.page-top__products--right img {
  width: 100%;
  height: 100%;
}

.contents-text {
  color: white;
}
.contents-text .title {
  color: var(--orange);
  font-family: var(--ms);
  font-size: clamp(2rem, 1.352rem + 2.8vw, 4rem);
  margin-bottom: 10px;
}
.contents-text .text {
  margin-bottom: 40px;
  line-height: 1.8;
}

.page-concept__sec01 {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .page-concept__sec01 {
    padding-top: 100px;
  }
}
.page-concept__sec01 .container {
  position: relative;
}
@media (min-width: 992px) {
  .page-concept__sec01--left {
    width: 65%;
    padding-top: 30px;
  }
}
@media (min-width: 1200px) {
  .page-concept__sec01--left {
    padding-top: 100px;
  }
}
.page-concept__sec01--left .contents-text {
  background-color: var(--navy);
  padding: 40px 20px;
}
@media (min-width: 576px) {
  .page-concept__sec01--left .contents-text {
    padding: 60px 20px;
  }
}
@media (min-width: 768px) {
  .page-concept__sec01--left .contents-text {
    padding: 80px 40px;
  }
}
@media (min-width: 992px) {
  .page-concept__sec01--left .contents-text {
    padding: 100px 60px;
  }
}
@media (min-width: 1200px) {
  .page-concept__sec01--left .contents-text {
    padding: 100px;
  }
}
.page-concept__sec01--right {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 75%;
}
@media (min-width: 576px) {
  .page-concept__sec01--right {
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .page-concept__sec01--right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 100%;
    margin-top: 0;
  }
}
.page-concept__sec01--right > img {
  aspect-ratio: 712/950;
}
.page-concept__sec01 .thema-text {
  font-size: clamp(1.563rem, 0.922rem + 2.77vw, 3rem);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  max-width: 390px;
}
@media (min-width: 576px) {
  .page-concept__sec01 .thema-text {
    max-width: 570px;
  }
}
@media (min-width: 992px) {
  .page-concept__sec01 .thema-text {
    max-width: 100%;
    line-height: 2;
    writing-mode: vertical-rl;
    margin-left: 6vw;
  }
}
@media (min-width: 1200px) {
  .page-concept__sec01 .thema-text {
    margin-left: 13vw;
    margin-bottom: 90px;
  }
}
.page-concept__sec01 .thema-text > p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page-concept__sec01 .thema-text > p:nth-child(2) {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .page-concept__sec01 .thema-text > p:nth-child(2) {
    margin-top: 100px;
  }
}
.page-concept__sec01 .thema-text > p:nth-child(3) {
  margin-left: auto;
}
@media (min-width: 992px) {
  .page-concept__sec01 .thema-text > p:nth-child(3) {
    margin-top: 200px;
  }
}
@media (min-width: 992px) {
  .page-concept__sec01 .contents-text .text {
    max-width: 410px;
  }
}
.page-concept__sec01--bottom {
  display: flex;
  gap: 6%;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (min-width: 576px) {
  .page-concept__sec01--bottom {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .page-concept__sec01--bottom {
    margin-top: 140px;
    margin-bottom: 140px;
  }
}
.page-concept__sec01--bottom .box {
  width: 47%;
}
.page-concept__sec01--bottom .box:nth-child(1) {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-concept__sec01--bottom .box:nth-child(1) {
    margin-top: 85px;
  }
}
.page-concept__sec01--bottom .box:nth-child(2) {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-concept__sec01--bottom .box:nth-child(2) {
    margin-bottom: 85px;
  }
}
.page-concept__sec02 {
  position: relative;
  z-index: 1;
}
.page-concept__sec02--top {
  position: -webkit-sticky;
  position: sticky;
  z-index: -1;
  top: 0;
  height: 100vh;
}
.page-concept__sec02--bottom {
  color: white;
  background: linear-gradient(180deg, rgba(26, 19, 8, 0) 0%, rgba(26, 19, 8, 0.02) 2%, rgba(26, 19, 8, 0.04) 4%, rgba(26, 19, 8, 0.06) 6%, rgba(26, 19, 8, 0.08) 8%, rgba(26, 19, 8, 0.1) 10%, rgba(26, 19, 8, 0.2) 20%, rgba(26, 19, 8, 0.3) 30%, rgba(26, 19, 8, 0.5) 40%, rgba(26, 19, 8, 0.6) 50%);
  -webkit-backdrop-filter: blur(2.5px);
  backdrop-filter: blur(2.5px);
  padding: 160px 0;
}
@media (min-width: 576px) {
  .page-concept__sec02--bottom {
    padding: 200px 0;
  }
}
@media (min-width: 768px) {
  .page-concept__sec02--bottom {
    padding: 280px 0;
  }
}
.page-concept__sec02--bottom h2 {
  font-size: clamp(2.188rem, 1.38rem + 3.49vw, 4rem);
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-concept__sec02--bottom h2 {
    margin-bottom: 96px;
  }
}
.page-concept__sec02--bottom .text {
  max-width: 600px;
  line-height: 1.8;
  font-size: clamp(0.938rem, 0.854rem + 0.36vw, 1.125rem);
}
@media (min-width: 576px) {
  .page-concept__sec02--bottom .text {
    line-height: 2;
  }
}
.page-concept__sec03--box {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .page-concept__sec03--box {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-concept__sec03--box__inner {
    width: 50%;
  }
}
.page-concept__sec03--box .img-area {
  height: clamp(21.25rem, 11.584rem + 41.8vw, 37.5rem);
}
@media (min-width: 992px) {
  .page-concept__sec03--box .img-area {
    height: auto;
  }
}
.page-concept__sec03--box .img-area img {
  height: 100%;
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media (min-width: 992px) {
  .page-concept__sec03--box .img-area img {
    -o-object-position: center;
       object-position: center;
  }
}
.page-concept__sec03--box .text-area {
  background-color: var(--navy);
  color: white;
  padding: clamp(3.75rem, 2.078rem + 7.23vw, 7.5rem) clamp(1.25rem, -1.536rem + 12.05vw, 7.5rem);
}
.page-concept__sec03--box .text-area .contents-text .title {
  color: var(--orange);
  margin-bottom: 0;
}
.page-concept__sec03--box .text-area .contents-text .title-ja {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.page-concept__sec03--box .text-area .point-text {
  list-style: 1.4;
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
  margin: 40px 0;
}
@media (min-width: 768px) {
  .page-concept__sec03--box .text-area .point-text {
    margin: 55px 0;
  }
}
@media (min-width: 992px) {
  .page-concept__sec03--box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.page-concept__sec03--box:nth-child(even) .text-area {
  background-color: var(--orange);
}
.page-concept__sec03--box:nth-child(even) .text-area .title {
  color: var(--navy);
}

.page-scene__sec--block {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .page-scene__sec--block {
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .page-scene__sec--block {
    margin-bottom: 150px;
  }
}
@media (min-width: 1200px) {
  .page-scene__sec--block {
    margin-bottom: 200px;
  }
}
@media (min-width: 1400px) {
  .page-scene__sec--block {
    margin-bottom: 300px;
  }
}
.page-scene__sec--block:last-child {
  margin-bottom: 0;
}
.page-scene__sec--block__inner {
  position: relative;
  z-index: 1;
  padding-top: 180px;
}
@media (max-width: 400px) {
  .page-scene__sec--block__inner {
    padding-top: 33.5%;
  }
}
@media (min-width: 768px) {
  .page-scene__sec--block__inner {
    padding-top: 250px;
  }
}
@media (min-width: 992px) {
  .page-scene__sec--block__inner {
    padding-top: 380px;
  }
}
@media (min-width: 1400px) {
  .page-scene__sec--block__inner {
    max-width: 1300px;
  }
}
.page-scene__sec--block .block__inner--text .scene-thema {
  position: absolute;
  z-index: 2;
  top: 0;
  mix-blend-mode: plus-lighter;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6vw 3vw;
}
.page-scene__sec--block .block__inner--text .scene-thema > p {
  color: rgba(210, 82, 18, 0.5);
  font-size: clamp(2.5rem, 1.488rem + 4.38vw, 5.625rem);
  line-height: 1.17;
}
@media (min-width: 576px) {
  .page-scene__sec--block .block__inner--text .scene-thema {
    padding: 40px 20px;
  }
}
@media (min-width: 768px) {
  .page-scene__sec--block .block__inner--text .scene-thema {
    padding: 50px 40px;
    top: 20px;
  }
}
@media (min-width: 992px) {
  .page-scene__sec--block .block__inner--text .scene-thema {
    padding: 55px 5.5vw;
  }
}
.page-scene__sec--block .block__inner--text .title-en {
  font-size: clamp(1.438rem, 1.093rem + 1.49vw, 2.5rem);
}
.page-scene__sec--block .block__inner--text .title-ja {
  font-size: clamp(1.75rem, 1.345rem + 1.75vw, 3rem);
}
.page-scene__sec--block .block__inner--text .title {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-scene__sec--block .block__inner--text .title {
    margin-bottom: 40px;
  }
}
.page-scene__sec--block .block__inner--text__wrap {
  width: 92%;
  background-color: #1f3957;
  color: white;
  padding: 60px 20px 40px;
}
@media (min-width: 576px) {
  .page-scene__sec--block .block__inner--text__wrap {
    padding: 40px 20px;
  }
}
@media (min-width: 768px) {
  .page-scene__sec--block .block__inner--text__wrap {
    width: 70%;
    padding: 50px 40px;
  }
}
@media (min-width: 992px) {
  .page-scene__sec--block .block__inner--text__wrap {
    width: 60%;
    padding: 60px 5.5vw;
  }
}
.page-scene__sec--block .block__inner--img {
  position: absolute;
  z-index: 1;
  width: 50%;
  width: 300px;
}
@media (max-width: 400px) {
  .page-scene__sec--block .block__inner--img {
    width: 58%;
  }
}
@media (min-width: 768px) {
  .page-scene__sec--block .block__inner--img {
    z-index: -1;
    width: 62%;
  }
}
.page-scene__sec--block .block__inner--img img {
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  .page-scene__sec--block .block__inner--img img {
    aspect-ratio: 800/600;
  }
}
.page-scene__sec--block:nth-child(odd) .block__inner--img {
  top: 0;
  right: 20px;
}
.page-scene__sec--block:nth-child(even) .block__inner--img {
  top: 0;
  left: 20px;
}
.page-scene__sec--block:nth-child(odd) .block__inner .scene-thema {
  left: 0;
}
.page-scene__sec--block:nth-child(even) .block__inner .scene-thema {
  right: 0;
}
.page-scene__sec--block:nth-child(even) .block__inner--text__wrap {
  margin-left: auto;
}
.page-scene__qa {
  background-color: var(--orange);
  padding: 60px 0;
  color: white;
}
@media (min-width: 576px) {
  .page-scene__qa {
    padding: 80px 0;
  }
}
@media (min-width: 576px) {
  .page-scene__qa {
    padding: 100px 0;
  }
}
.page-scene__qa--title {
  margin-bottom: 55px;
}
@media (min-width: 576px) {
  .page-scene__qa--title {
    margin-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .page-scene__qa--title {
    margin-bottom: 100px;
  }
}
.page-scene__qa--title > p {
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
  color: var(--navy);
}
.page-scene__qa--title > h2 {
  color: white;
  font-size: clamp(1.75rem, 1.345rem + 1.75vw, 3rem);
}
.page-scene__qa--inner .list-dl {
  border-bottom: 3px dashed #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .page-scene__qa--inner .list-dl {
    padding: 40px 20px;
  }
}
@media (min-width: 992px) {
  .page-scene__qa--inner .list-dl {
    padding: 50px 42px;
  }
}
.page-scene__qa--inner .list-dl:first-child {
  border-top: 3px dashed #ffffff;
}
.page-scene__qa--inner .list-dt,
.page-scene__qa--inner .list-dd {
  display: flex;
  align-items: stretch;
  gap: 15px;
}
@media (min-width: 768px) {
  .page-scene__qa--inner .list-dt,
.page-scene__qa--inner .list-dd {
    gap: 30px;
  }
}
.page-scene__qa--inner .list-dt::before,
.page-scene__qa--inner .list-dd::before {
  font-size: clamp(0.938rem, 0.755rem + 0.79vw, 1.5rem);
  line-height: 1;
  width: clamp(2.188rem, 1.884rem + 1.31vw, 3.125rem);
  height: clamp(2.188rem, 1.884rem + 1.31vw, 3.125rem);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-scene__qa--inner .list-dt > p,
.page-scene__qa--inner .list-dd > p {
  flex: 1;
  font-family: var(--tsukushi);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  padding: 8px 0;
}
@media (min-width: 576px) {
  .page-scene__qa--inner .list-dt > p,
.page-scene__qa--inner .list-dd > p {
    padding: 10px 0;
  }
}
.page-scene__qa--inner .list-dt::before {
  content: "Q";
  background-color: var(--navy);
  color: white;
}
.page-scene__qa--inner .list-dd::before {
  content: "A";
  background-color: white;
  color: var(--navy);
}

.page-menu .anchor-link {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .page-menu .anchor-link {
    flex-direction: row;
    gap: 55px;
  }
}
@media (min-width: 992px) {
  .page-menu .anchor-link__box {
    width: calc(50% - 22.5px);
  }
}
.page-menu .anchor-link__box--link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px 30px;
}
@media (min-width: 768px) {
  .page-menu .anchor-link__box--link {
    padding: 70px 20px 17px;
  }
}
.page-menu .anchor-link__box--link::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.page-menu .anchor-link__box--link:hover::after {
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.1);
}
.page-menu .anchor-link__box--link > p {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  text-align: center;
  color: white;
}
.page-menu .anchor-link__box--link > img {
  width: 30px;
  transform: rotate(90deg);
}
.page-menu .menu-header {
  background-color: white;
  padding: 10px 20px;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .page-menu .menu-header {
    padding: 20px 40px;
  }
}
.page-menu .menu-header__wrap {
  display: flex;
  align-items: baseline;
  flex-direction: column-reverse;
  gap: 0;
}
@media (min-width: 768px) {
  .page-menu .menu-header__wrap {
    gap: 12px;
    flex-direction: row;
  }
}
.page-menu .menu-header__wrap > h3, .page-menu .menu-header__wrap > p {
  line-height: 1.34;
}
.page-menu .menu-header__wrap h3 {
  font-size: clamp(1.125rem, 0.68rem + 1.93vw, 2.5rem);
  color: var(--navy);
}
.page-menu .menu-header__wrap > p {
  font-family: var(--ms);
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  color: var(--orange);
}
.page-menu .menu-contents {
  color: white;
}
.page-menu .menu-contents__top {
  position: relative;
  z-index: 1;
  padding: clamp(9.375rem, 7.046rem + 10.07vw, 16.563rem) 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0% 100%);
}
.page-menu .menu-contents__top h2 {
  font-size: clamp(2.188rem, 1.6rem + 2.54vw, 4rem);
  color: white;
}
.page-menu .menu-contents__top::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.page-menu .menu-contents__inner {
  padding: 90px 0;
}
.page-menu .menu-contents__inner--bottom {
  padding: 0 20px;
}
.page-menu .menu-contents__inner--bottom .container {
  background-color: white;
  border-radius: 25px;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .page-menu .menu-contents__inner--bottom .container {
    border-radius: 45px;
    padding: 30px 40px;
  }
}
@media (min-width: 992px) {
  .page-menu .menu-contents__inner--bottom .container {
    padding: 40px 70px;
  }
}
.page-menu .menu-contents__inner--bottom .inner--box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 576px) {
  .page-menu .menu-contents__inner--bottom .inner--box {
    gap: 2.65vw;
    flex-direction: row;
  }
}
.page-menu .menu-contents__inner--bottom .inner--box > img {
  aspect-ratio: 1;
  display: block;
  width: 75%;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .page-menu .menu-contents__inner--bottom .inner--box > img {
    width: calc(33.3333333333% - 2.65vw);
    flex: 1;
  }
}
.page-menu .menu-contents__box {
  margin-bottom: 80px;
}
@media (min-width: 576px) {
  .page-menu .menu-contents__box {
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .page-menu .menu-contents__box {
    margin-bottom: 140px;
  }
}
.page-menu .menu-contents__box--container {
  display: flex;
}
.page-menu .menu-contents__box .box--wrap h4 {
  font-size: clamp(1.375rem, 1.011rem + 1.58vw, 2.5rem);
}
.page-menu .menu-contents__box .box--wrap__price {
  display: flex;
  align-items: baseline;
}
.page-menu .menu-contents__box .box--wrap__price > p:nth-child(1) {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.page-menu .menu-contents__box .box--wrap__price > p:nth-child(2) {
  font-size: clamp(1.375rem, 1.011rem + 1.58vw, 2.5rem);
}
.page-menu .menu-contents__box .tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 999px;
  background-color: var(--orange);
  font-family: var(--tsukushi);
  font-weight: bold;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  text-align: center;
  color: white;
  padding: 5px 40px;
  line-height: 1.34;
}
.page-menu .food-menu {
  color: white;
}
.page-menu .drink-menu {
  color: var(--navy);
}
.page-menu .menu-pickup {
  display: flex;
  flex-direction: column-reverse;
  gap: 38px;
}
@media (min-width: 992px) {
  .page-menu .menu-pickup {
    flex-direction: row;
  }
}
.page-menu .menu-pickup > img {
  margin: 0 auto;
  width: 75%;
}
@media (min-width: 992px) {
  .page-menu .menu-pickup > img {
    width: calc(50% - 19px);
  }
}
@media (min-width: 992px) {
  .page-menu .menu-pickup .box--wrap {
    width: calc(50% - 19px);
  }
}
.page-menu .menu-pickup .appeal-text {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  font-family: var(--tsukushi);
  margin: 25px 0 15px;
  line-height: 1.34;
}
@media (min-width: 768px) {
  .page-menu .menu-pickup .appeal-text {
    margin: 40px 0 20px;
  }
}
.page-menu .menu-pickup .text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.page-menu .select-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.page-menu .select-wrap__box {
  padding: 12px 30px;
  border: solid 1px white;
  border-radius: 13px;
  width: 100%;
}
@media (min-width: 576px) {
  .page-menu .select-wrap__box {
    width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  .page-menu .select-wrap__box {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .page-menu .select-wrap__box {
    width: calc(50% - 10px);
  }
}
.page-menu .select-wrap__box--list {
  display: flex;
  font-family: var(--tsukushi);
}
.page-menu .select-wrap__box--list > p {
  width: 50%;
}
.page-menu .attention {
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  .page-menu .attention {
    font-size: 0.875rem;
  }
}
.page-menu .material-list {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .page-menu .material-list {
    margin-top: 75px;
  }
}
.page-menu .material-list .box {
  padding: 35px 0;
  border-bottom: dotted 2px white;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-menu .material-list .box {
    gap: 80px;
    flex-direction: row;
  }
}
.page-menu .material-list .box:first-child {
  padding-top: 0;
}
.page-menu .material-list .box .tag {
  width: 265px;
}
.page-menu .material-list .box--inner {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 576px) {
  .page-menu .material-list .box--inner {
    flex-direction: row;
    gap: 1.35vw;
  }
}
@media (min-width: 576px) {
  .page-menu .material-list .box--wrap {
    width: calc(50% - 0.7vw);
  }
}
.page-menu .material-list .box .list-dl {
  padding: 5px 0;
}
.page-menu .material-list .box .list-dt,
.page-menu .material-list .box .list-dd {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.page-menu .material-list .box .list-dt {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.page-menu .material-list .box .list-dd {
  width: 100px;
  text-align: right;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
}
.page-menu .course--container {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media (min-width: 992px) {
  .page-menu .course--container {
    gap: 72px;
    flex-direction: row;
  }
}
.page-menu .course--container .box {
  width: 100%;
}
@media (min-width: 992px) {
  .page-menu .course--container .box {
    width: calc(50% - 36px);
  }
}
.page-menu .course--container .box--wrap {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: dotted 2px white;
}
.page-menu .course--container .box--wrap:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.page-menu .course--container .course-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-menu .course--container .course-list {
    flex-direction: row;
  }
}
.page-menu .course--container .course-list > p {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  font-family: var(--tsukushi);
  line-height: 1.34;
}
@media (min-width: 768px) {
  .page-menu .course--container .course-list > p {
    width: 50%;
  }
}
.page-menu .menu-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  gap: 50px;
}
@media (min-width: 768px) {
  .page-menu .menu-box {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-menu .menu-box {
    gap: 80px;
  }
}
.page-menu .menu-box__wrap {
  flex: 1;
}
.page-menu .menu-box__wrap > img {
  display: block;
  max-width: 400px;
  aspect-ratio: 4/3;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-menu .menu-box__wrap > img {
    margin-bottom: 45px;
  }
}
.page-menu .menu-box__wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .page-menu .menu-box__wrap .list-wrap {
    gap: 50px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-menu .menu-box__wrap .list-wrap {
    gap: 100px;
  }
}
.page-menu .menu-box__wrap .list-wrap .lists {
  flex: 1;
}
@media (min-width: 992px) {
  .page-menu .menu-box__wrap .list-wrap .lists {
    width: calc(50% - 25px);
  }
}
@media (min-width: 1200px) {
  .page-menu .menu-box__wrap .list-wrap .lists {
    width: calc(50% - 50px);
  }
}
.page-menu .menu-box__wrap .list-wrap .lists .list-dl {
  flex-direction: column;
  display: flex;
  align-items: stretch;
  padding: 8px 0;
}
@media (min-width: 576px) {
  .page-menu .menu-box__wrap .list-wrap .lists .list-dl {
    gap: 20px;
    flex-direction: row;
  }
}
.page-menu .menu-box__wrap .list-wrap .lists .list-dt,
.page-menu .menu-box__wrap .list-wrap .lists .list-dd {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.page-menu .menu-box__wrap .list-wrap .lists .list-dt {
  flex: 1;
  display: flex;
  align-items: baseline;
}
.page-menu .menu-box__wrap .list-wrap .lists .list-dd {
  text-align: right;
  margin-left: auto;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
}
@media (min-width: 576px) {
  .page-menu .menu-box__wrap .list-wrap .lists .list-dd {
    width: 140px;
  }
}
.page-menu .menu-box__wrap .list-wrap .lists .list-dd:nth-child(n+2) {
  margin-left: 0;
}
.page-menu__sec02 {
  background-color: var(--navy);
}
.page-menu__sec03 .material-list .box {
  border-bottom: dotted 2px var(--navy);
}

.page-products__sec01 {
  padding: 120px 0;
}
@media (min-width: 576px) {
  .page-products__sec01 {
    padding: 150px 0;
  }
}
@media (min-width: 768px) {
  .page-products__sec01 {
    padding: 180px 0;
  }
}
@media (min-width: 992px) {
  .page-products__sec01 {
    padding: 225px 0;
  }
}
.page-products__sec01 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media (min-width: 992px) {
  .page-products__sec01 .container {
    flex-direction: row;
    gap: 6%;
  }
}
@media (min-width: 992px) {
  .page-products__sec01--left {
    width: 47%;
  }
}
.page-products__sec01--left.contents-text .title {
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
  line-height: 1.8;
  color: var(--navy);
  font-family: var(--tem);
  margin-bottom: 45px;
}
.page-products__sec01--left.contents-text .text {
  color: var(--navy);
}
.page-products__sec01--right {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}
@media (min-width: 992px) {
  .page-products__sec01--right {
    width: 47%;
  }
}
.page-products__sec01--right img {
  height: 100%;
}
.page-products__sec02--box {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  /* 画面に入って .is-event が付いたら、画像の形へ */
  /* 角度をブレイクポイントで微調整したいときの例 */
}
@media (min-width: 576px) {
  .page-products__sec02--box {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .page-products__sec02--box {
    padding: 150px 0;
  }
}
@media (min-width: 992px) {
  .page-products__sec02--box {
    padding: 180px 0;
  }
}
.page-products__sec02--box .container {
  gap: 60px;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .page-products__sec02--box .container {
    gap: 4%;
    flex-direction: row;
  }
}
.page-products__sec02--box__left {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}
@media (min-width: 992px) {
  .page-products__sec02--box__left {
    width: 48%;
  }
}
.page-products__sec02--box__left > img {
  aspect-ratio: 571/762;
  height: 100%;
}
@media (min-width: 992px) {
  .page-products__sec02--box__right {
    padding-top: 70px;
    width: 48%;
  }
}
.page-products__sec02--box .products-name {
  color: var(--or);
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .page-products__sec02--box .products-name {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .page-products__sec02--box .products-name {
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .page-products__sec02--box .products-name {
    margin-bottom: 140px;
  }
}
.page-products__sec02--box .products-name > p:nth-child(1) {
  font-size: clamp(1.438rem, 1.093rem + 1.49vw, 2.5rem);
}
.page-products__sec02--box .products-name > p:nth-child(2) {
  font-size: clamp(2.25rem, 1.683rem + 2.45vw, 4rem);
}
.page-products__sec02--box .price {
  font-size: clamp(1.375rem, 1.173rem + 0.88vw, 2rem);
}
.page-products__sec02--box .back-ground {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--navy);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 0.7s ease, -webkit-clip-path 0.7s ease;
  height: 80%;
}
@media (min-width: 992px) {
  .page-products__sec02--box .back-ground {
    height: 700px;
  }
}
.page-products__sec02--box .back-ground.is-event {
  -webkit-clip-path: polygon(0 0, 100% var(--skew), 100% 100%, 0 calc(100% - var(--skew)));
          clip-path: polygon(0 0, 100% var(--skew), 100% 100%, 0 calc(100% - var(--skew)));
}
@media (min-width: 992px) {
  .page-products__sec02--box :root {
    --skew: clamp(16px, 5vw, 120px);
  }
}
.page-products__sec02--box:nth-child(even) .products-name {
  color: var(--navy);
}
@media (min-width: 992px) {
  .page-products__sec02--box:nth-child(even) .container {
    flex-direction: row-reverse;
  }
}
.page-products__sec02--box:nth-child(even) .title {
  color: var(--navy);
}
.page-products__sec02--box:nth-child(even) .back-ground {
  transform: scale(1, -1);
  background-color: var(--orange);
}
.page-products__sec03 {
  padding: 80px 0;
}
@media (min-width: 576px) {
  .page-products__sec03 {
    padding: 100px 0;
  }
}
@media (min-width: 768px) {
  .page-products__sec03 {
    padding: 125px 0;
  }
}
.page-products__sec03 .now-on-sail {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .page-products__sec03 .now-on-sail {
    margin-bottom: 90px;
  }
}
@media (min-width: 768px) {
  .page-products__sec03 .now-on-sail {
    margin-bottom: 125px;
  }
}
.page-products__sec03--bottom {
  background-color: white;
  border-radius: 25px;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .page-products__sec03--bottom {
    border-radius: 55px;
    padding: clamp(1.25rem, 0.136rem + 4.82vw, 4.688rem);
  }
}
.page-products__sec03--bottom .online-sail {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
}
.page-products__sec03--bottom > p {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .page-products__sec03--bottom > p {
    margin-bottom: 50px;
  }
}
.page-products__sec03--bottom .text {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.page-products__sec03--bottom .btn-wrap {
  display: flex;
  justify-content: center;
}
.page-products__sec03--bottom .btn-wrap__link p {
  color: #1f3957;
}
.page-products__sec03--bottom .btn-wrap__link--wrap {
  width: 200px;
}
@media (min-width: 768px) {
  .page-products__sec03--bottom .btn-wrap__link--wrap {
    width: 250px;
  }
}

.form-submit button {
  cursor: pointer;
}
.form-submit .btn-wrap__link--wrap {
  width: 200px;
}
@media (min-width: 576px) {
  .form-submit .btn-wrap__link--wrap {
    width: 270px;
  }
}

iframe {
  border: none;
}

.webgene-pagination ul {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}
@media (min-width: 576px) {
  .webgene-pagination ul {
    gap: 65px;
    flex-direction: row;
  }
}
.webgene-pagination .next,
.webgene-pagination .prev {
  text-align: center;
}
.webgene-pagination .next a,
.webgene-pagination .prev a,
.webgene-pagination .back a {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  width: 215px;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-family: var(--tsukushi);
  border-bottom: dotted 2px var(--orange);
  font-weight: bold;
  line-height: 1.8;
}
.webgene-pagination .prev a::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  transform: scale(-1, 1);
  background: url(../images/arrow_or.svg) center/contain no-repeat;
  transition: all 0.3s ease;
}
.webgene-pagination .prev a:hover::before {
  transition: all 0.3s ease;
  transform: scale(-1, 1) translateX(8px);
}
.webgene-pagination .next a::after,
.webgene-pagination .back a::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../images/arrow_or.svg) center/contain no-repeat;
  transition: all 0.3s ease;
}
.webgene-pagination .next a:hover::after,
.webgene-pagination .back a:hover::after {
  transition: all 0.3s ease;
  transform: translateX(8px);
}
.webgene-pagination .back {
  width: 100%;
}
.webgene-pagination .back > a {
  margin: 0 auto;
}

.back-btn .btn-wrap__link--wrap > p {
  color: var(--navy);
}