@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(--or);
  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;
}

.typein-char {
  opacity: 0;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.typein-char.is-show {
  opacity: 1;
}

body {
  font-family: var(--kinto);
  color: var(--brown);
  background-color: var(--base);
}

.kinto {
  font-family: "kinto-sans", sans-serif;
}

.quadra {
  font-family: "ab-quadra", sans-serif;
}

:root {
  --kinto: "kinto-sans", sans-serif;
  --quadra: "ab-quadra", sans-serif;
}

:root {
  --base: #fff9ec;
  --red: #f52900;
  --wine: #c82d07;
  --orange: #fb5c22;
  --green: #73ab65;
  --brown: #492810;
}

.text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  font-weight: bold;
  letter-spacing: 2.4px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .text {
    line-height: 2;
  }
}

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

.section-title h2 {
  font-size: clamp(3.438rem, 0.846rem + 11.21vw, 11.438rem);
  font-family: var(--kinto);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.contents-title h3,
.contents-title h2 {
  font-size: clamp(1.375rem, 0.93rem + 1.93vw, 2.75rem);
  font-family: var(--quadra);
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.insta-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--orange);
  border-radius: 999px;
  border: solid 2px white;
  padding: 18px 50px;
  gap: 17px;
  color: white;
}
.insta-link > img {
  width: 24px;
}
.insta-link:hover {
  color: #fdbba4;
}

.btn-wrap__link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  background-color: white;
  color: var(--wine);
  border: solid 2px var(--wine);
  border-radius: 999px;
  padding: 15px 35px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .btn-wrap__link {
    font-size: 1.25rem;
    min-width: 240px;
    padding: 15px 20px;
  }
}
.btn-wrap__link > p {
  color: var(--wine);
  font-weight: bold;
  margin-right: 20px;
}
.btn-wrap__link > img {
  width: 22px;
  transition: all 0.3s ease;
}
.btn-wrap__link:hover > img {
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .l-header {
    padding: 18px 22px;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
}
.l-header__logo {
  transform: translateY(-150%);
  transition: all 0.3s ease;
  max-width: 140px;
}
@media (min-width: 576px) {
  .l-header__logo {
    max-width: 180px;
  }
}
.l-header__logo.is-active {
  transform: translateY(0);
  transition: all 0.3s ease;
}
.l-header__logo > a > img {
  filter: drop-shadow(2px 0 0 var(--orange)) drop-shadow(-2px 0 0 var(--orange)) drop-shadow(0 2px 0 var(--orange)) drop-shadow(0 -2px 0 var(--orange)); /* 上 */
}
.l-header__nav {
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 9998;
  background-color: white;
  border-radius: 20px;
  border: solid 4px var(--orange);
  top: 0;
  transition: all 0.5s ease-in-out;
  transform: translateY(-100%);
  min-width: auto;
  width: 80%;
  max-height: 85vh;
  padding: 40px 30px;
  overflow-y: auto;
}
.l-header__nav::-webkit-scrollbar {
  width: 10px;
}
.l-header__nav::-webkit-scrollbar-thumb {
  border-radius: 13px;
  background-color: var(--brown);
}
.l-header__nav::-webkit-scrollbar-track {
  background-color: transparent;
  margin: 8px 0;
}
@media (min-width: 576px) {
  .l-header__nav {
    min-width: 375px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 30px 80px;
  }
}
@media (max-height: 700px) {
  .l-header__nav {
    max-height: 75vh;
    right: 20px;
  }
}
.l-header__nav.open {
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
  top: 75px;
}
@media (min-width: 576px) {
  .l-header__nav.open {
    top: 100px;
  }
}
.l-header__nav__wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.l-header__nav__link {
  position: relative;
  font-family: var(--quadra);
  font-size: 1.2rem;
}
.l-header__nav__link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: var(--brown);
  bottom: -1px;
  border-radius: 5px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.l-header__nav__link:hover:after {
  transform: scale(1, 1);
}
.l-header__nav .insta-link {
  font-family: var(--kinto);
  font-weight: bold;
}
.l-header__nav .insta-link::after {
  display: none;
}
.l-header__btn-wrap {
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  gap: 10px;
}
@media (min-width: 576px) {
  .l-header__btn-wrap {
    flex-direction: row;
    justify-content: end;
    gap: 15px;
  }
}
.l-header__reservation__btn > *, .l-header__menu__btn > * {
  color: white;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  height: 100%;
}
@media (min-width: 576px) {
  .l-header__reservation__btn > *, .l-header__menu__btn > * {
    padding: 8px 20px;
  }
}
.l-header__reservation__btn > a {
  background-color: var(--red);
  border: solid 2px white;
  display: inline-block;
}
.l-header__reservation__btn > a:hover p,
.l-header__reservation__btn > a:hover span {
  color: #fdbba4 !important;
  transition: all 0.3s ease;
}
.l-header__reservation__btn a,
.l-header__reservation__btn p,
.l-header__reservation__btn span {
  color: white;
  transition: all 0.3s ease;
}
.l-header__reservation__btn p {
  font-size: clamp(0.813rem, 0.671rem + 0.61vw, 1.25rem);
}
.l-header__reservation__btn p > span {
  font-size: clamp(0.813rem, 0.63rem + 0.79vw, 1.375rem);
}
.l-header__menu__btn > div {
  cursor: pointer;
  background-color: var(--brown);
  border: solid 2px white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__menu__btn > div > p {
  transition: all 0.15s ease;
  font-size: clamp(1.125rem, 0.882rem + 1.05vw, 1.875rem);
  border-bottom: solid 1.5px white;
  padding-bottom: 6px;
}
.l-header__menu__btn .text-open {
  opacity: 1;
  display: inline;
}
.l-header__menu__btn .text-close {
  opacity: 0;
  display: none;
}

.js_action_nav .l-header__menu__btn .text-open {
  opacity: 0;
  display: none;
}
.js_action_nav .l-header__menu__btn .text-close {
  opacity: 1;
  display: inline;
}

.l-footer {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .l-footer {
    padding-top: 96px;
  }
}
@media (min-width: 768px) {
  .l-footer {
    padding-top: 150px;
  }
}
@media (min-width: 1200px) {
  .l-footer {
    padding-top: 241px;
  }
}
@media (min-width: 1400px) {
  .l-footer {
    padding-top: 12.7vw;
  }
}
.l-footer::before {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  top: 0;
  width: 576px;
  height: 73px;
  background: url(../images/wave.svg) center/contain no-repeat;
}
@media (min-width: 576px) {
  .l-footer::before {
    height: 97px;
    width: 768px;
  }
}
@media (min-width: 768px) {
  .l-footer::before {
    height: 151px;
    width: 1200px;
  }
}
@media (min-width: 1200px) {
  .l-footer::before {
    height: 242px;
    width: 1920px;
  }
}
@media (min-width: 1400px) {
  .l-footer::before {
    height: 13vw;
    width: 100vw;
  }
}
.l-footer p,
.l-footer a,
.l-footer span {
  color: white;
}
.l-footer__wrap {
  background-color: var(--brown);
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .l-footer__wrap {
    padding: 80px 20px;
  }
}
@media (min-width: 992px) {
  .l-footer__wrap {
    padding: 100px 20px 140px;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .l-footer__inner {
    justify-content: space-between;
    flex-direction: row;
    gap: 140px;
  }
}
.l-footer__left {
  flex: 1;
}
.l-footer__logo {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .l-footer__logo {
    margin-bottom: 50px;
  }
}
.l-footer__logo > img {
  max-width: 357px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.l-footer__address {
  font-weight: bold;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  margin-bottom: 50px;
  text-align: center;
}
@media (min-width: 1200px) {
  .l-footer__address {
    margin-bottom: 35px;
    text-align: left;
  }
}
.l-footer__copyright {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  text-align: center;
  order: 5;
}
@media (min-width: 1200px) {
  .l-footer__copyright {
    text-align: left;
  }
}
.l-footer__right {
  width: 630px;
}
.l-footer__nav__wrap {
  max-height: 160px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
.l-footer__nav__link {
  font-family: var(--quadra);
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  height: 30px;
  text-align: center;
}
@media (min-width: 1200px) {
  .l-footer__nav__link {
    text-align: left;
  }
}
.l-footer .btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
@media (min-width: 1200px) {
  .l-footer .btn-wrap {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.l-footer .insta-link {
  border: none;
  font-family: var(--kinto);
  font-weight: 600;
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  letter-spacing: 0.12em;
  padding: 15px 55px;
}
@media (min-width: 768px) {
  .l-footer .insta-link {
    padding: 20px 70px;
  }
}
.l-footer .insta-link:hover {
  background-color: #ff875c;
}
.l-footer__left, .l-footer__right {
  display: contents;
}
@media (min-width: 1200px) {
  .l-footer__left, .l-footer__right {
    display: block;
  }
}

.link-contents {
  position: relative;
  z-index: 1;
  padding: 90px 0;
  overflow: clip;
}
.link-contents .back-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 65%;
}
@media (min-width: 992px) {
  .link-contents .back-img {
    left: 0;
    right: auto;
  }
}
.link-contents .back-img .inner {
  position: relative;
  height: 100%;
}
.link-contents .back-img .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(73, 40, 16, 0.5);
}
.link-contents .back-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.link-contents .container {
  display: flex;
  gap: 50px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .link-contents .container {
    gap: 35px;
    flex-direction: row;
  }
}
.link-contents__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 992px) {
  .link-contents__title {
    width: 52%;
  }
}
.link-contents__title > h2 {
  font-weight: 900;
  font-size: clamp(1.875rem, 1.207rem + 2.89vw, 3.938rem);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.link-contents__title > h2 > span {
  background-color: white;
  padding: 20px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.link-contents__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .link-contents__list {
    gap: 50px;
  }
}
.link-contents__link {
  border-radius: 10px;
  border: 4px solid #fb5c22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  width: 100%;
  max-width: 340px;
  padding: 15px 20px;
}
@media (min-width: 576px) {
  .link-contents__link {
    width: 80%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .link-contents__link {
    padding: 27px 25px;
    width: 450px;
  }
}
@media (min-width: 1200px) {
  .link-contents__link {
    width: 560px;
  }
}
.link-contents__link > img {
  width: 35px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .link-contents__link > img {
    width: 50px;
  }
}
.link-contents__link:hover > img {
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}
.link-contents__wrap {
  display: flex;
  flex-direction: column;
  color: var(--orange);
}
.link-contents__wrap > h3 {
  font-family: var(--quadra);
  font-size: clamp(1.563rem, 0.955rem + 2.63vw, 3.438rem);
  letter-spacing: 6.626px;
  line-height: 1;
  margin-bottom: 8px;
}
.link-contents__wrap > p {
  font-family: var(--kinto);
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-weight: bold;
}

.top-fv {
  padding: 30px 20px;
  height: 100vh;
  min-height: 600px;
}
@media (min-width: 768px) {
  .top-fv {
    padding: 45px 20px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .top-fv {
    min-height: 390px;
    padding: 15px 20px;
  }
}
.top-fv__inner {
  position: relative;
  z-index: 1;
  background-color: var(--orange);
  border-radius: 20px;
  overflow: clip;
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 75px 0px 70px 25px;
  height: 100%;
}
@media (min-width: 768px) {
  .top-fv__inner {
    padding: 75px 0px 70px 60px;
  }
}
@media (min-width: 1400px) {
  .top-fv__inner {
    max-width: 94%;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .top-fv__inner {
    padding: 30px 0 30px 25px;
  }
}
.top-fv__text {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: -170px;
}
@media (min-width: 576px) {
  .top-fv__text {
    margin-right: -100px;
  }
}
@media (min-width: 768px) and (max-height: 1000px) {
  .top-fv__text {
    padding-top: 100px;
  }
}
@media (min-width: 768px) and (max-height: 800px) {
  .top-fv__text {
    display: flex;
    align-items: flex-end;
    gap: 50px;
    min-height: 390px;
  }
}
.top-fv__text > a {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 30px;
  max-width: 120px;
  margin-bottom: 35px;
  filter: drop-shadow(2px 0 0 var(--orange)) drop-shadow(-2px 0 0 var(--orange)) drop-shadow(0 2px 0 var(--orange)) drop-shadow(0 -2px 0 var(--orange));
}
@media (min-width: 576px) {
  .top-fv__text > a {
    max-width: 180px;
  }
}
@media (min-width: 768px) {
  .top-fv__text > a {
    top: 80px;
    left: 75px;
    max-width: 216px;
    filter: none;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .top-fv__text > a {
    max-width: 120px;
    margin-bottom: 25px;
  }
}
.top-fv__text > h1 {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white !important;
  font-family: var(--quadra);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .top-fv__text > h1 {
    text-shadow: none;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .top-fv__text > h1 {
    text-align: left;
  }
}
.top-fv__text > h1 > span {
  color: white !important;
  transition: all 0.6s ease;
  display: block;
}
.top-fv__text > h1 > span:first-child {
  font-size: clamp(2.625rem, 2.058rem + 2.45vw, 4.375rem);
  letter-spacing: 0.5rem;
}
@media (min-width: 768px) {
  .top-fv__text > h1 > span:first-child {
    letter-spacing: 0.7rem;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .top-fv__text > h1 > span:first-child {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-height: 800px) {
  .top-fv__text > h1 > span:first-child {
    font-size: 3.4375rem;
    letter-spacing: 0.5rem;
  }
}
.top-fv__text > h1 > span:last-child {
  font-size: clamp(3.125rem, 2.113rem + 4.38vw, 6.25rem);
  letter-spacing: 1.8rem;
}
@media (min-width: 768px) {
  .top-fv__text > h1 > span:last-child {
    letter-spacing: 2.8rem;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .top-fv__text > h1 > span:last-child {
    font-size: 2.8125rem;
  }
}
@media (min-width: 768px) and (max-height: 800px) {
  .top-fv__text > h1 > span:last-child {
    font-size: 4.375rem;
    letter-spacing: 1.8rem;
  }
}
.top-fv__text > h1::before, .top-fv__text > h1::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 46%;
  left: 46%;
  height: 2px;
  background-color: white;
  width: 50px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 576px) {
  .top-fv__text > h1::before, .top-fv__text > h1::after {
    left: 50%;
  }
}
@media (min-width: 768px) {
  .top-fv__text > h1::before, .top-fv__text > h1::after {
    width: 80px;
    box-shadow: none;
  }
}
@media (min-width: 992px) {
  .top-fv__text > h1::before, .top-fv__text > h1::after {
    width: 130px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .top-fv__text > h1::before, .top-fv__text > h1::after {
    top: 48%;
    left: 44%;
    width: 35px;
  }
}
.top-fv__text > h1::before {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}
.top-fv__text > h1::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.top-fv__text > h1.is-event > span:first-child {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .top-fv__text > h1.is-event > span:first-child {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .top-fv__text > h1.is-event > span:first-child {
    padding-bottom: 20px;
  }
}
.top-fv__text > h1.is-event > span:last-child {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .top-fv__text > h1.is-event > span:last-child {
    padding-top: 60px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .top-fv__text > h1.is-event > span:last-child {
    padding-top: 20px;
  }
}
.top-fv__text > h1.is-event::before {
  -webkit-animation: cross-event-left 0.6s ease 1s forwards;
          animation: cross-event-left 0.6s ease 1s forwards;
}
.top-fv__text > h1.is-event::after {
  -webkit-animation: cross-event-right 0.6s ease 1s forwards;
          animation: cross-event-right 0.6s ease 1s forwards;
}
@-webkit-keyframes cross-event-left {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes cross-event-left {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@-webkit-keyframes cross-event-right {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@keyframes cross-event-right {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.top-fv__text > p {
  position: relative;
  z-index: 1;
  font-size: clamp(1.125rem, 0.68rem + 1.93vw, 2.5rem);
  font-family: var(--quadra);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: white;
  margin-top: 40px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .top-fv__text > p {
    margin-top: 50px;
    text-shadow: none;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .top-fv__text > p {
    font-size: 1.125rem;
    letter-spacing: 0.6rem;
    line-height: 1.3;
    margin-top: 25px;
  }
}
@media (min-width: 768px) and (max-height: 800px) {
  .top-fv__text > p {
    font-size: 1.75rem;
    line-height: 1.4;
    letter-spacing: 0.12em;
  }
}
.top-fv .swiper-wrapper {
  display: flex;
  z-index: 0;
}
.top-fv .fade-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 5s ease-in-out;
  display: block;
}
.top-fv .fade-slider .swiper-slide-active img {
  transform: scale(1);
}
.top-fv__img {
  flex: 1;
  height: auto;
  border-radius: 40px 0 0 40px;
  overflow: clip;
  width: 75%;
}
.top-fv__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.top-concept {
  position: relative;
  padding-top: clamp(5rem, 3.785rem + 5.25vw, 8.75rem);
  padding-bottom: clamp(3.125rem, 2.113rem + 4.38vw, 6.25rem);
}
.top-concept .section-title {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 5vw;
}
@media (min-width: 768px) {
  .top-concept .section-title {
    left: 11vw;
  }
}
.top-concept .section-title h2 {
  color: var(--green);
}
.top-concept__inner {
  position: relative;
  z-index: 1;
}
.top-concept .back-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 95%;
  height: 80%;
  background-color: var(--orange);
  border-radius: 0 40px 40px 0;
}
@media (min-width: 768px) {
  .top-concept .back-ground {
    height: 70%;
  }
}
.top-concept__top {
  display: flex;
  gap: 20px;
}
@media (min-width: 576px) {
  .top-concept__top {
    gap: 35px;
  }
}
@media (min-width: 992px) {
  .top-concept__top {
    gap: 65px;
  }
}
.top-concept__top__con:first-child {
  width: 58.4%;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .top-concept__top__con:first-child {
    margin-bottom: 0;
  }
}
.top-concept__top__con:first-child > img {
  border-radius: 0 40px 40px 0;
  min-height: 325px;
}
@media (min-width: 768px) {
  .top-concept__top__con:first-child > img {
    min-height: auto;
  }
}
.top-concept__top__con:last-child {
  width: 39.3%;
  display: flex;
}
.top-concept__top__con:last-child > img {
  margin-top: auto;
  border-radius: 40px 0 0 40px;
  min-height: 221px;
}
@media (min-width: 768px) {
  .top-concept__top__con:last-child > img {
    min-height: auto;
  }
}
.top-concept__top__con > img {
  display: block;
  overflow: hidden;
}
.top-concept__bottom {
  display: flex;
  padding-top: 60px;
  padding-left: 20px;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 576px) {
  .top-concept__bottom {
    padding-left: 40px;
  }
}
@media (min-width: 768px) {
  .top-concept__bottom {
    align-items: flex-end;
    flex-direction: row;
    padding-left: 60px;
    gap: 0;
  }
}
@media (min-width: 992px) {
  .top-concept__bottom {
    padding-top: 100px;
    padding-left: 100px;
  }
}
.top-concept__bottom__con {
  color: white !important;
}
@media (min-width: 768px) {
  .top-concept__bottom__con:first-child {
    margin-bottom: 140px;
    width: 48%;
  }
}
.top-concept__bottom__con:first-child .text {
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.12em;
  margin: 45px 0;
}
.top-concept__bottom__con:last-child {
  width: 75%;
  margin-left: auto;
}
@media (min-width: 768px) {
  .top-concept__bottom__con:last-child {
    margin-left: -5%;
    width: 57%;
  }
}

#heroSwiper {
  background-color: var(--green);
  padding: 60px 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #heroSwiper {
    padding: 80px 20px;
  }
}
#heroSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
#heroSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.top-scene {
  padding-top: 90px;
}
.top-scene__top {
  justify-content: space-between;
  margin-bottom: -18vw;
}
@media (min-width: 768px) {
  .top-scene__top {
    margin-bottom: -13vw;
  }
}
.top-scene__top .section-title {
  margin-left: 6vw;
  margin-right: -100px;
  flex: 1;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-scene__top .section-title {
    margin-left: 11vw;
  }
}
.top-scene__top .section-title h2 > span {
  font-size: clamp(2.813rem, 1.294rem + 6.57vw, 7.5rem);
  letter-spacing: 0.2em;
  vertical-align: middle;
}
.top-scene__top__con {
  width: 57%;
  padding-top: 90px;
}
@media (min-width: 768px) {
  .top-scene__top__con {
    padding-top: 0;
  }
}
.top-scene__bottom {
  background-color: var(--orange);
  padding-top: 100px;
  display: flex;
  align-items: flex-end;
  flex-direction: column-reverse;
  color: white;
}
@media (min-width: 768px) {
  .top-scene__bottom {
    flex-direction: row;
  }
}
.top-scene__bottom__con:first-child {
  width: 75%;
}
@media (min-width: 768px) {
  .top-scene__bottom__con:first-child {
    width: 60%;
  }
}
.top-scene__bottom__con:first-child > img {
  transform: scale(-1, 1);
}
@media (min-width: 768px) {
  .top-scene__bottom__con:first-child > img {
    transform: none;
  }
}
.top-scene__bottom__con:last-child {
  flex: 1;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .top-scene__bottom__con:last-child {
    max-width: 600px;
    margin-left: -8%;
    margin-bottom: 8vw;
    padding-left: 0;
  }
}
.top-scene__bottom .text {
  font-weight: 700;
  margin-top: 45px;
  line-height: 2;
  max-width: 610px;
}
@media (min-width: 768px) {
  .top-scene__bottom .text {
    line-height: 2.5;
  }
}

.top-menu {
  padding-top: 80px;
  overflow: hidden;
}
.top-menu__top {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  margin-bottom: -18vw;
}
@media (min-width: 768px) {
  .top-menu__top {
    margin-bottom: -8vw;
  }
}
.top-menu__top .section-title {
  margin-left: 6vw;
  margin-right: -330px;
  padding-top: 50px;
  flex: 1;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-menu__top .section-title {
    margin-left: 11vw;
  }
}
.top-menu__top .section-title h2 > span {
  font-size: clamp(2.813rem, 1.294rem + 6.57vw, 7.5rem);
  letter-spacing: 0.2em;
  vertical-align: middle;
}
.top-menu__top__con {
  width: 70%;
  padding-top: 90px;
}
@media (min-width: 768px) {
  .top-menu__top__con {
    padding-top: 0;
  }
}
.top-menu__bottom {
  position: relative;
  z-index: 0;
  background-color: var(--green);
  padding-top: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  color: white;
  gap: 20px;
}
@media (min-width: 768px) {
  .top-menu__bottom {
    padding-top: 11vw;
    flex-direction: row;
    gap: 0;
  }
}
@media (max-width: 500px) {
  .top-menu__bottom {
    padding-top: 90px;
  }
}
.top-menu__bottom__con:first-child {
  padding: 0 20px;
  flex: 1;
}
@media (min-width: 768px) {
  .top-menu__bottom__con:first-child {
    margin-left: 5vw;
    max-width: 785px;
    padding: 0 20px 18vw;
  }
}
.top-menu__bottom__con:last-child {
  width: 55%;
  position: relative;
  z-index: -1;
}
@media (min-width: 768px) {
  .top-menu__bottom__con:last-child {
    width: 40%;
    margin-left: -18vw;
  }
}
@media (min-width: 992px) {
  .top-menu__bottom__con:last-child {
    margin-left: -15vw;
  }
}
@media (min-width: 1400px) {
  .top-menu__bottom__con:last-child {
    width: 50%;
    margin-left: -10vw;
  }
}
.top-menu__bottom .contents-title {
  max-width: 100%;
}
@media (max-width: 500px) {
  .top-menu__bottom .contents-title {
    max-width: 60%;
  }
}
@media (max-width: 400px) {
  .top-menu__bottom .contents-title {
    max-width: 70%;
  }
}
.top-menu__bottom .text {
  font-weight: 700;
  margin-top: 30px;
  line-height: 2;
}
@media (min-width: 768px) {
  .top-menu__bottom .text {
    line-height: 2.5;
    margin-top: 45px;
    max-width: 450px;
  }
}
@media (min-width: 992px) {
  .top-menu__bottom .text {
    max-width: 530px;
  }
}
@media (min-width: 1200px) {
  .top-menu__bottom .text {
    max-width: 700px;
  }
}
.top-menu__links {
  padding: 40px 20px 50px;
}
@media (min-width: 768px) {
  .top-menu__links {
    padding: 100px 20px;
  }
}
.top-menu__links .container {
  background-color: var(--orange);
  border-radius: 20px;
  padding: 50px 30px;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 768px) {
  .top-menu__links .container {
    border: 40px;
    padding: 80px 60px;
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .top-menu__links .container {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .top-menu__links .container {
    padding: 100px;
    gap: 50px;
  }
}
.top-menu__links__box {
  background-color: white;
}
@media (min-width: 992px) {
  .top-menu__links__box {
    width: calc(33.3333333333% - 14px);
  }
}
@media (min-width: 1200px) {
  .top-menu__links__box {
    width: calc(33.3333333333% - 34px);
  }
}
.top-menu__links__box > h3 {
  position: relative;
  z-index: 1;
  font-family: var(--quadra);
  color: white;
  display: flex;
  align-items: center;
  justify-self: center;
  padding: clamp(1.25rem, 0.643rem + 2.63vw, 3.125rem);
  font-size: clamp(1.25rem, 0.643rem + 2.63vw, 3.125rem);
  line-height: 1.2;
  letter-spacing: 6px;
  width: 100%;
  min-height: 290px;
}
.top-menu__links__box > h3::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(251, 92, 34, 0.56);
  transition: all 0.3s ease;
}
.top-menu__links__box:has(.btn-wrap__link:hover) h3 {
  text-shadow: 0 0 8px rgb(251, 92, 34);
}
.top-menu__links__box:has(.btn-wrap__link:hover) h3::before {
  transition: all 0.3s ease;
  background-color: transparent;
}
.top-menu__links__box .btn-wrap {
  padding: 35px 20px;
  margin: 0 auto;
  justify-content: center;
}
.top-menu__links__box .btn-wrap__link {
  max-width: 280px;
  min-width: auto;
  width: 95%;
}
@media (min-width: 768px) {
  .top-menu__links__box .btn-wrap__link {
    width: 90%;
  }
}

.top-access {
  display: flex;
  position: relative;
  z-index: 1;
  background-color: white;
}
@media (min-width: 768px) {
  .top-access {
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .top-access {
    gap: 80px;
  }
}
.top-access__back {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .top-access__back {
    position: static;
    width: 25%;
  }
}
.top-access__back__wrap {
  position: relative;
  z-index: 1;
  height: 100%;
}
.top-access__back__wrap::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 86, 18, 0.5);
  pointer-events: none;
}
@media (min-width: 768px) {
  .top-access__back__wrap::before {
    background-color: rgba(115, 171, 101, 0.5);
  }
}
.top-access__back__wrap > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-access__inner {
  flex: 1;
  padding: 100px 20px;
}
@media (min-width: 992px) {
  .top-access__inner {
    padding: 130px 50px;
  }
}
.top-access .section-title {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .top-access .section-title {
    margin-bottom: 77px;
  }
}
.top-access .section-title h2 {
  color: white;
  text-align: center;
}
@media (min-width: 768px) {
  .top-access .section-title h2 {
    color: var(--orange);
    text-align: left;
  }
}
.top-access .contents-title {
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .top-access .contents-title {
    margin-bottom: 77px;
  }
}
.top-access .contents-title h3,
.top-access .contents-title span {
  color: white !important;
}
@media (min-width: 768px) {
  .top-access .contents-title h3,
.top-access .contents-title span {
    color: var(--brown) !important;
  }
}
.top-access .contents-title h3 {
  text-align: center;
}
@media (min-width: 768px) {
  .top-access .contents-title h3 {
    text-align: left;
  }
}
.top-access .contents-title h3 > span {
  display: block;
}
@media (min-width: 768px) {
  .top-access .contents-title h3 > span {
    display: inline-block;
  }
}
.top-access .list-wrap {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media (min-width: 992px) {
  .top-access .list-wrap {
    gap: 55px;
  }
}
.top-access .list-wrap__dl {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 992px) {
  .top-access .list-wrap__dl {
    flex-direction: row;
  }
}
.top-access .list-wrap__dt {
  padding-bottom: 8px;
  font-size: 1.125rem;
}
@media (min-width: 992px) {
  .top-access .list-wrap__dt {
    width: 200px;
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .top-access .list-wrap__dt {
    font-size: 1rem;
  }
}
.top-access .list-wrap__dd {
  flex: 1;
  font-size: 1rem;
}
@media (max-width: 500px) {
  .top-access .list-wrap__dd {
    font-size: 0.875rem;
  }
}
.top-access .list-wrap__dd > a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top-access .list-wrap__dd > a:hover {
  color: var(--orange);
}
.top-access .list-wrap__dt, .top-access .list-wrap__dd {
  font-weight: bold;
  color: white;
  text-align: center;
}
@media (min-width: 768px) {
  .top-access .list-wrap__dt, .top-access .list-wrap__dd {
    color: var(--brown);
    text-align: left;
  }
}
@media (min-width: 992px) {
  .top-access .list-wrap__dt, .top-access .list-wrap__dd {
    font-size: 1.25rem;
  }
}

.top-news {
  padding: 80px 0;
}
@media (min-width: 576px) {
  .top-news {
    padding: 100px 0;
  }
}
@media (min-width: 768px) {
  .top-news {
    padding: 140px 0;
  }
}
@media (min-width: 992px) {
  .top-news {
    padding: 150px 0 170px;
  }
}
.top-news .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .top-news .section-title {
    gap: 75px;
    flex-direction: row;
    align-items: flex-end;
  }
}
@media (min-width: 992px) {
  .top-news .section-title .btn-wrap {
    padding-bottom: 30px;
  }
}
.top-news .section-title .btn-wrap__link {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.top-news .text {
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 768px) {
  .top-news .text {
    line-height: 2;
  }
}
@media (min-width: 992px) {
  .top-news .text {
    text-align: left;
  }
}
.top-news .contents-title {
  margin-bottom: 50px;
}
.top-news .contents-title h3 {
  color: var(--orange);
  font-size: clamp(1.125rem, 0.599rem + 2.28vw, 2.75rem);
  text-align: center;
}
@media (min-width: 992px) {
  .top-news .contents-title h3 {
    text-align: left;
  }
}
.top-news .insta-link {
  max-width: 320px;
  width: 100%;
  padding: 15px 60px;
  margin: 0 auto;
  border: none;
  font-family: var(--kinto);
  font-weight: 600;
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  letter-spacing: 0.12em;
}
@media (min-width: 768px) {
  .top-news .insta-link {
    max-width: 410px;
    padding: 15px 80px;
  }
}
@media (min-width: 992px) {
  .top-news .insta-link {
    margin: 0;
  }
}
.top-news .insta-link > img {
  width: clamp(1.25rem, 0.643rem + 2.63vw, 3.125rem);
}
.top-news .insta-link:hover {
  background-color: #ff875c;
}
.top-news .insta-link > p {
  color: white;
}

.top-recruit {
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .top-recruit {
    padding-bottom: 150px;
  }
}
.top-recruit .section-title {
  margin-bottom: 30px;
}
.top-recruit .section-title h2 {
  font-size: clamp(2.813rem, 1.78rem + 4.47vw, 6rem);
  margin-bottom: 20px;
}
.top-recruit .section-title > p {
  font-size: clamp(1.125rem, 0.761rem + 1.58vw, 2.25rem);
  font-weight: bold;
}
.top-recruit .section-title > p > span {
  display: inline-block;
}
.top-recruit .section-title > h2, .top-recruit .section-title > p {
  text-align: center;
}
@media (min-width: 992px) {
  .top-recruit .section-title > h2, .top-recruit .section-title > p {
    text-align: left;
  }
}
.top-recruit .text {
  margin-bottom: 55px;
  text-align: center;
}
@media (min-width: 992px) {
  .top-recruit .text {
    text-align: left;
  }
}
.top-recruit .btn-wrap {
  justify-content: center;
}
@media (min-width: 992px) {
  .top-recruit .btn-wrap {
    justify-content: flex-start;
  }
}

.page-fv {
  padding: 30px 20px;
  height: 100vh;
  min-height: 600px;
}
@media (min-width: 768px) {
  .page-fv {
    padding: 45px 20px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .page-fv {
    min-height: 390px;
    padding: 15px 20px;
  }
}
.page-fv__inner {
  position: relative;
  z-index: 1;
  background-color: var(--orange);
  border-radius: 20px;
  overflow: clip;
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 75px 0px 70px 25px;
  height: 100%;
}
@media (min-width: 768px) {
  .page-fv__inner {
    padding: 75px 0px 70px 60px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .page-fv__inner {
    padding: 30px 0 30px 25px;
  }
}
@media (min-width: 1400px) {
  .page-fv__inner {
    max-width: 94%;
  }
}
.page-fv__text {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  margin-right: -170px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .page-fv__text {
    margin-right: -100px;
    padding-bottom: 50px;
  }
}
.page-fv__text > a {
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 25px;
  max-width: 120px;
  filter: drop-shadow(2px 0 0 var(--orange)) drop-shadow(-2px 0 0 var(--orange)) drop-shadow(0 2px 0 var(--orange)) drop-shadow(0 -2px 0 var(--orange));
}
@media (min-width: 576px) {
  .page-fv__text > a {
    top: 80px;
    max-width: 180px;
  }
}
@media (min-width: 768px) {
  .page-fv__text > a {
    max-width: 216px;
    filter: none;
    top: 80px;
    left: 60px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .page-fv__text > a {
    max-width: 120px;
    top: 25px;
    left: 25px;
    margin-bottom: 25px;
  }
}
.page-fv__text > h1 {
  position: relative;
  z-index: 1;
  color: white !important;
  text-align: center;
  font-size: clamp(2.25rem, 0.347rem + 8.23vw, 8.125rem);
  font-family: var(--quadra);
  line-height: 1;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .page-fv__text > h1 {
    text-shadow: none;
  }
}
.page-fv__text > p {
  position: relative;
  z-index: 1;
  font-size: clamp(1.125rem, 0.68rem + 1.93vw, 2.5rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: white;
  margin-top: 15px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .page-fv__text > p {
    margin-top: 50px;
    text-shadow: none;
    font-weight: 900;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .page-fv__text > p {
    font-size: 1.125rem;
    letter-spacing: 0.6rem;
    line-height: 1.3;
    margin-top: 25px;
  }
}
.page-fv__img {
  border-radius: 40px 0 0 40px;
  overflow: clip;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 80%;
  height: 75%;
  max-height: 736px;
}
@media (min-width: 576px) {
  .page-fv__img {
    width: 65%;
    height: 86%;
  }
}
@media (min-width: 1400px) {
  .page-fv__img {
    width: 70%;
  }
}
.page-fv__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.page-pickup .page-fv__inner,
.page-food .page-fv__inner,
.page-drink .page-fv__inner,
.page-party .page-fv__inner {
  background-color: var(--green);
}

.page-concept .page-fv__inner,
.page-scene .page-fv__inner,
.page-floor .page-fv__inner,
.page-recruit .page-fv__inner,
.page-news .page-fv__inner {
  background-color: var(--brown);
}

.menu-point-contents {
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .menu-point-contents {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .menu-point-contents {
    margin-bottom: 130px;
  }
}
.menu-point-contents .box {
  color: white;
  width: 95%;
  padding: 40px 0;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .menu-point-contents .box {
    padding: 70px 50px;
  }
}
@media (min-width: 768px) {
  .menu-point-contents .box {
    margin-bottom: 80px;
    padding: 100px 80px;
  }
}
.menu-point-contents .box:last-child {
  margin-bottom: 0;
}
.menu-point-contents .box:nth-child(odd) {
  background-color: var(--orange);
  border-radius: 0 40px 40px 0;
}
.menu-point-contents .box:nth-child(even) {
  background-color: var(--green);
  border-radius: 40px 0 0 40px;
  margin-left: auto;
}

.menu-header {
  background-color: var(--brown);
  color: white;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .menu-header {
    font-weight: 900;
    padding: 13px 25px;
  }
}
.menu-header > * {
  font-size: clamp(1.188rem, 0.6rem + 2.54vw, 3rem);
  font-weight: bold;
}
.menu-header > *:nth-child(2) {
  padding-left: 30px;
}

.menu-contents {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .menu-contents {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .menu-contents {
    padding: 55px;
  }
}
.menu-contents .list-dl {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .menu-contents .list-dl {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }
}
.menu-contents .list-dt,
.menu-contents .list-dd {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-weight: 500;
}
.menu-contents .list-dt {
  flex: 1;
}
.menu-contents .list-dd {
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .menu-contents .list-dd {
    width: 220px;
  }
}
.menu-contents .food-image {
  aspect-ratio: 16/6.9;
}

.page-concept .page-fv__inner {
  background-color: var(--brown);
}
.page-concept__sec01 {
  padding: 40px 0 80px;
}
@media (min-width: 768px) {
  .page-concept__sec01 {
    padding: 70px 0;
  }
}
.page-concept__sec01 .container {
  position: relative;
  z-index: 1;
  padding-bottom: 50%;
}
@media (min-width: 576px) {
  .page-concept__sec01 .container {
    padding-bottom: 36%;
  }
}
@media (min-width: 768px) {
  .page-concept__sec01 .container {
    padding-bottom: 32%;
  }
}
.page-concept__sec01--box:first-child {
  background-color: var(--orange);
  color: white;
  width: 90%;
  padding: 40px 20px;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .page-concept__sec01--box:first-child {
    width: 86%;
    padding: 40px 30px;
  }
}
@media (min-width: 768px) {
  .page-concept__sec01--box:first-child {
    border-radius: 40px;
    width: 77%;
    padding: 50px;
  }
}
@media (min-width: 992px) {
  .page-concept__sec01--box:first-child {
    width: 65%;
    padding: 65px 50px;
  }
}
@media (min-width: 1200px) {
  .page-concept__sec01--box:first-child {
    width: 68%;
    padding: 100px 110px;
  }
}
.page-concept__sec01--box:first-child > p {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  line-height: 1.8;
  margin-top: 40px;
}
.page-concept__sec01--box:last-child {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 20px;
  width: 73%;
  overflow: clip;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .page-concept__sec01--box:last-child {
    right: 0;
  }
}
@media (min-width: 768px) {
  .page-concept__sec01--box:last-child {
    border-radius: 40px;
  }
}
.page-concept__sec01--box:last-child > img {
  aspect-ratio: 3/2.5;
}
.page-concept__sec01--box .contents-title h2 {
  font-family: var(--quadra);
  font-size: clamp(1.25rem, 0.683rem + 2.45vw, 3rem);
  line-height: 1.8;
  letter-spacing: 0.12em;
}
.page-concept__sec02 {
  position: relative;
  z-index: 1;
  padding-bottom: 1px;
}
.page-concept__sec02--topImg {
  position: -webkit-sticky;
  position: sticky;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
}
.page-concept__sec02--topImg > img {
  height: inherit;
}
.page-concept__sec02__inner {
  background-color: white;
  padding: 100px 0;
  margin-bottom: 500px;
}
.page-concept__sec02__inner--wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-concept__sec02__inner--wrap {
    flex-direction: row;
  }
}
.page-concept__sec02__inner--wrap > div {
  width: 100%;
}
@media (min-width: 992px) {
  .page-concept__sec02__inner--wrap > div {
    width: 50%;
  }
}
.page-concept__sec02__inner--topText {
  text-align: center;
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 45px;
}
.page-concept__sec02__inner--wrap__left {
  font-size: clamp(2rem, 1.352rem + 2.8vw, 4rem);
  font-weight: 900;
  color: var(--green);
  text-align: center;
  padding: 45px 3vw;
}
@media (min-width: 992px) {
  .page-concept__sec02__inner--wrap__left {
    text-align: left;
  }
}
.page-concept__sec02__inner--wrap__right {
  background-color: var(--green);
  padding: 40px 20px;
  color: white;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .page-concept__sec02__inner--wrap__right {
    padding: 50px 40px;
  }
}
@media (min-width: 1200px) {
  .page-concept__sec02__inner--wrap__right {
    padding: 80px 4.25vw;
  }
}
.page-concept__sec03 .container {
  background-color: var(--orange);
}
.page-concept__sec04 .container {
  background-color: var(--green);
}
.page-concept__sec03, .page-concept__sec04 {
  color: white;
  padding: 60px 20px;
  background-color: var(--base);
}
@media (min-width: 576px) {
  .page-concept__sec03, .page-concept__sec04 {
    padding: 80px 20px;
  }
}
@media (min-width: 768px) {
  .page-concept__sec03, .page-concept__sec04 {
    padding: 115px 20px;
  }
}
.page-concept__sec03 .container, .page-concept__sec04 .container {
  border-radius: 20px;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .page-concept__sec03 .container, .page-concept__sec04 .container {
    padding: 60px 30px;
    border-radius: 40px;
  }
}
@media (min-width: 992px) {
  .page-concept__sec03 .container, .page-concept__sec04 .container {
    padding: 80px 50px;
  }
}
@media (min-width: 1200px) {
  .page-concept__sec03 .container, .page-concept__sec04 .container {
    padding: 100px;
  }
}
.page-concept .section-title {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-concept .section-title {
    margin-bottom: 45px;
  }
}
.page-concept .section-title .point-text {
  font-size: clamp(1.563rem, 1.178rem + 1.66vw, 2.75rem);
  line-height: 1.3;
  font-weight: bold;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-concept .section-title .point-text {
    line-height: 1.8;
    font-weight: 900;
  }
}
.page-concept .text {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-concept .text {
    margin-bottom: 85px;
  }
}
.page-concept .f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-template-rows: 150px 200px auto;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media (min-width: 576px) {
  .page-concept .f-grid {
    grid-template-rows: 200px 290px auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media (min-width: 768px) {
  .page-concept .f-grid {
    grid-template-rows: 320px 520px auto;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    max-height: 870px;
  }
}
.page-concept .f-grid .box:nth-child(1), .page-concept .f-grid .box:nth-child(2) {
  max-height: 320px;
}
.page-concept .f-grid .box:nth-child(3), .page-concept .f-grid .box:nth-child(4) {
  max-height: 520px;
}
.page-concept .f-grid .box:nth-child(1) {
  grid-area: 1/1/2/3;
}
.page-concept .f-grid .box:nth-child(2) {
  grid-area: 1/3/2/4;
}
.page-concept .f-grid .box:nth-child(3) {
  grid-area: 2/1/4/2;
}
.page-concept .f-grid .box:nth-child(4) {
  grid-area: 2/2/4/4;
}
.page-concept .f-grid .box img {
  height: 100%;
}
.page-concept__sec04 .f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-template-rows: 150px 200px auto;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media (min-width: 576px) {
  .page-concept__sec04 .f-grid {
    grid-template-rows: 200px 290px auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media (min-width: 768px) {
  .page-concept__sec04 .f-grid {
    grid-template-rows: 320px 520px auto;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    max-height: 870px;
  }
}
.page-concept__sec04 .f-grid .box:nth-child(1), .page-concept__sec04 .f-grid .box:nth-child(2) {
  max-height: 320px;
}
.page-concept__sec04 .f-grid .box:nth-child(3), .page-concept__sec04 .f-grid .box:nth-child(4) {
  max-height: 520px;
}
.page-concept__sec04 .f-grid .box:nth-child(1) {
  grid-area: 1/1/1/2;
}
.page-concept__sec04 .f-grid .box:nth-child(2) {
  grid-area: 1/2/2/4;
}
.page-concept__sec04 .f-grid .box:nth-child(3) {
  grid-area: 2/1/3/3;
}
.page-concept__sec04 .f-grid .box:nth-child(4) {
  grid-area: 2/3/4/4;
}
.page-concept__sec04 .f-grid .box img {
  height: 100%;
}

.page-pickup__top--text {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .page-pickup__top--text {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}
.page-pickup__top--text > p {
  font-size: clamp(2.188rem, 0.952rem + 5.34vw, 6rem);
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-pickup__top--text > p {
    font-weight: 900;
  }
}
.page-pickup__sec01 {
  margin-bottom: 80px;
}
@media (min-width: 576px) {
  .page-pickup__sec01 {
    margin-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .page-pickup__sec01 {
    margin-bottom: 160px;
  }
}
.page-pickup__sec01 .pickup-box {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .page-pickup__sec01 .pickup-box {
    margin-bottom: 80px;
  }
}
.page-pickup__sec01 .pickup-box:last-child {
  margin-bottom: 0;
}
.page-pickup__sec01 .pickup-box__top {
  display: flex;
  align-items: flex-end;
  max-width: 1360px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-pickup__sec01 .pickup-box__top {
    margin-left: 12vw;
  }
}
.page-pickup__sec01 .pickup-box__top .number {
  font-family: var(--quadra);
  font-size: clamp(4.375rem, 2.512rem + 8.06vw, 10.125rem);
  line-height: 1;
  margin-bottom: -12px;
}
@media (min-width: 768px) {
  .page-pickup__sec01 .pickup-box__top .number {
    margin-bottom: -20px;
  }
}
.page-pickup__sec01 .pickup-box__img {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: 73%;
  margin-right: -20px;
}
@media (min-width: 768px) {
  .page-pickup__sec01 .pickup-box__img {
    margin-right: 0;
  }
}
.page-pickup__sec01 .pickup-box__img > img {
  aspect-ratio: 3/2.1;
  margin-bottom: -60px;
}
@media (min-width: 768px) {
  .page-pickup__sec01 .pickup-box__img > img {
    margin-bottom: -100px;
  }
}
.page-pickup__sec01 .pickup-box__inner {
  width: 95%;
  border-radius: 0 20px 20px 0;
  color: white;
  padding: 60px 20px;
}
@media (min-width: 576px) {
  .page-pickup__sec01 .pickup-box__inner {
    padding: 80px 30px;
  }
}
@media (min-width: 768px) {
  .page-pickup__sec01 .pickup-box__inner {
    border-radius: 0 40px 40px 0;
    padding: 90px 60px;
  }
}
@media (min-width: 1400px) {
  .page-pickup__sec01 .pickup-box__inner {
    padding: 90px 5vw 90px 14vw;
  }
}
.page-pickup__sec01 .pickup-box .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0;
}
@media (min-width: 992px) {
  .page-pickup__sec01 .pickup-box .container {
    flex-direction: row;
    align-items: center;
    gap: 8vw;
  }
}
.page-pickup__sec01 .pickup-box__title h2 {
  font-size: clamp(2.375rem, 1.525rem + 3.68vw, 5rem);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 9.6px;
}
@media (min-width: 768px) {
  .page-pickup__sec01 .pickup-box__title h2 {
    font-weight: 900;
  }
}
.page-pickup__sec01 .pickup-box:nth-child(odd) .number {
  color: var(--orange);
}
.page-pickup__sec01 .pickup-box:nth-child(odd) .pickup-box__inner {
  background-color: var(--orange);
}
.page-pickup__sec01 .pickup-box:nth-child(even) .number {
  color: var(--green);
}
.page-pickup__sec01 .pickup-box:nth-child(even) .pickup-box__inner {
  background-color: var(--green);
}
.page-pickup__sec01 .pickup-box.box03 .container, .page-pickup__sec01 .pickup-box.box04 .container {
  gap: 40px;
}
.page-pickup__sec02 {
  background-color: var(--brown);
  color: white;
  padding: 80px 0 180px;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .page-pickup__sec02 {
    padding: 100px 0 320px;
  }
}
@media (min-width: 768px) {
  .page-pickup__sec02 {
    padding: 120px 0;
    margin-bottom: 130px;
  }
}
.page-pickup__sec02 .contents-title span {
  display: inline-block;
}
.page-pickup__sec02 .text {
  margin: 40px 0 60px;
}
.page-pickup__sec02__imgs {
  margin-top: 50px;
}
.page-pickup__sec02__imgs--box:first-child {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 70%;
}
@media (min-width: 768px) {
  .page-pickup__sec02__imgs--box:first-child {
    width: 48%;
  }
}
.page-pickup__sec02__imgs--box:last-child {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}
@media (min-width: 768px) {
  .page-pickup__sec02__imgs--box:last-child {
    width: 50%;
    margin-right: 100px;
  }
}
.page-pickup .btn-wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-pickup .btn-wrap {
    display: block;
  }
}

.page-food__sec01 {
  margin-bottom: 60px;
}
.page-food__sec01__wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .page-food__sec01__wrap {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .page-food__sec01__wrap {
    padding: 55px;
    gap: 37px;
  }
}
.page-food__sec01 .food-pickup {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
}
@media (min-width: 992px) {
  .page-food__sec01 .food-pickup {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
@media (min-width: 992px) {
  .page-food__sec01 .food-pickup__left {
    padding-right: 40px;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .page-food__sec01 .food-pickup__left {
    padding-right: 4vw;
  }
}
.page-food__sec01 .food-pickup__title, .page-food__sec01 .food-pickup__price {
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-food__sec01 .food-pickup__title, .page-food__sec01 .food-pickup__price {
    font-weight: 900;
  }
}
.page-food__sec01 .food-pickup__title {
  font-size: clamp(1.375rem, 1.011rem + 1.58vw, 2.5rem);
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .page-food__sec01 .food-pickup__title {
    margin-bottom: 25px;
  }
}
.page-food__sec01 .food-pickup__price {
  font-size: clamp(1.125rem, 0.761rem + 1.58vw, 2.25rem);
  text-align: right;
}
@media (min-width: 992px) {
  .page-food__sec01 .food-pickup__price {
    text-align: left;
  }
}
.page-food__sec01 .food-pickup__right {
  flex: 1;
}
.page-food__sec01 .food-pickup__right > img {
  aspect-ratio: 4/2.7;
}
.page-food__sec02 {
  background-color: white;
  padding: 60px 0;
}
@media (min-width: 576px) {
  .page-food__sec02 {
    padding: 100px 0;
  }
}
@media (min-width: 768px) {
  .page-food__sec02 {
    padding: 120px 0;
  }
}
.page-food__sec03 {
  padding: 60px 0;
}
@media (min-width: 576px) {
  .page-food__sec03 {
    padding: 100px 0;
  }
}
@media (min-width: 768px) {
  .page-food__sec03 {
    padding: 120px 0;
  }
}

.page-party__sec01 {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .page-party__sec01 {
    padding: 70px 20px;
  }
}
.page-party__sec01 .container {
  background-color: var(--brown);
  border-radius: 20px;
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .page-party__sec01 .container {
    border-radius: 40px;
    padding: 50px;
  }
}
@media (min-width: 1200px) {
  .page-party__sec01 .container {
    max-width: 94%;
    padding: 100px 5.5vw;
  }
}
.page-party__sec01--top {
  color: white;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .page-party__sec01--top {
    margin-bottom: 75px;
  }
}
.page-party__sec01 .contents-title {
  margin-bottom: 35px;
}
.page-party__sec01--bigTxt {
  font-size: clamp(1.75rem, 0.9rem + 3.68vw, 4.375rem);
  margin-bottom: 25px;
  font-family: var(--quadra);
}
.page-party__sec01--inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}
@media (min-width: 992px) {
  .page-party__sec01--inner {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .page-party__sec01--inner {
    gap: 50px;
  }
}
.page-party__sec01--inner__box {
  text-align: center;
  background-color: white;
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-party__sec01--inner__box {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .page-party__sec01--inner__box {
    width: calc(50% - 15px);
    padding: 50px 40px;
  }
}
@media (min-width: 1200px) {
  .page-party__sec01--inner__box {
    width: calc(50% - 25px);
    padding: 50px 60px;
  }
}
.page-party__sec01--inner__box:nth-child(odd) {
  border: solid 2px var(--green);
}
.page-party__sec01--inner__box:nth-child(odd) .plan-text,
.page-party__sec01--inner__box:nth-child(odd) .plan-price {
  color: var(--green);
}
.page-party__sec01--inner__box:nth-child(even) {
  border: solid 2px var(--orange);
}
.page-party__sec01--inner__box:nth-child(even) .plan-text,
.page-party__sec01--inner__box:nth-child(even) .plan-price {
  color: var(--orange);
}
.page-party__sec01--inner__box .plan-text {
  font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
  font-weight: bold;
}
.page-party__sec01--inner__box .plan-price {
  font-size: clamp(2.188rem, 1.6rem + 2.54vw, 4rem);
  font-weight: bold;
  margin: auto 0 8px;
  padding-top: 5px;
}
@media (min-width: 1200px) {
  .page-party__sec02 .container {
    max-width: 94%;
  }
}
.page-party__sec02--box {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-party__sec02--box {
    border-radius: 40px;
  }
}
.page-party__sec02--box__inner {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
}
.page-party__sec02--box__top {
  color: white;
  padding: 40px 30px;
}
@media (min-width: 768px) {
  .page-party__sec02--box__top {
    padding: 70px 50px;
  }
}
.page-party__sec02--box__top > .wrap {
  max-width: 710px;
  margin: 0 auto;
}
.page-party__sec02--box__top--text, .page-party__sec02--box__top--title {
  text-align: center;
}
.page-party__sec02--box__top--text {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-party__sec02--box__top--text {
    font-weight: 900;
  }
}
.page-party__sec02--box__top--title {
  font-size: clamp(2.375rem, 1.201rem + 5.08vw, 6rem);
  font-weight: bold;
  margin-bottom: 15px;
}
.page-party__sec02--box__top .tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .page-party__sec02--box__top .tag {
    gap: 20px;
  }
}
.page-party__sec02--box__top .tag p {
  border: solid 2px white;
  border-radius: 999px;
  font-size: clamp(1.125rem, 0.761rem + 1.58vw, 2.25rem);
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-party__sec02--box__top .tag p {
    font-weight: 900;
    border: solid 4px white;
    padding: 0 40px;
  }
}
.page-party__sec02--box:nth-child(odd) .page-party__sec02--box__top {
  background-color: var(--green);
}
.page-party__sec02--box:nth-child(odd) .recommendation-info {
  color: var(--green);
  border: solid 2px var(--green);
}
.page-party__sec02--box:nth-child(odd) .plan-contents__name {
  background-color: var(--green);
}
.page-party__sec02--box:nth-child(even) .page-party__sec02--box__top {
  background-color: var(--orange);
}
.page-party__sec02--box:nth-child(even) .recommendation-info {
  color: var(--orange);
  border: solid 2px var(--orange);
}
.page-party__sec02--box:nth-child(even) .plan-contents__name {
  background-color: var(--orange);
}
.page-party__sec02--box__bottom {
  padding: 30px 20px 60px;
}
@media (min-width: 768px) {
  .page-party__sec02--box__bottom {
    padding: 50px 40px 80px;
  }
}
@media (min-width: 992px) {
  .page-party__sec02--box__bottom {
    padding: 65px 60px 100px;
  }
}
@media (min-width: 1200px) {
  .page-party__sec02--box__bottom {
    padding: 65px 9vw 100px;
  }
}
.page-party__sec02--box__bottom .recommendation-info {
  text-align: center;
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  font-weight: bold;
  border-radius: 999px;
  display: block;
  padding: 5px 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-party__sec02--box__bottom .recommendation-info {
    font-weight: 900;
    margin-bottom: 65px;
  }
}
.page-party__sec02--box__bottom .plan-contents {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  gap: 60px;
}
@media (min-width: 992px) {
  .page-party__sec02--box__bottom .plan-contents {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .page-party__sec02--box__bottom .plan-contents {
    gap: 70px;
  }
}
.page-party__sec02--box__bottom .plan-contents__box {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-party__sec02--box__bottom .plan-contents__box {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1200px) {
  .page-party__sec02--box__bottom .plan-contents__box {
    width: calc(50% - 35px);
  }
}
.page-party__sec02--box__bottom .plan-contents__purpose {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  text-align: center;
  font-weight: bold;
  margin: 25px 0 35px;
}
@media (min-width: 768px) {
  .page-party__sec02--box__bottom .plan-contents__purpose {
    margin: 38px 0 60px;
    font-weight: 900;
  }
}
.page-party__sec02--box__bottom .plan-contents__name {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
}
@media (min-width: 768px) {
  .page-party__sec02--box__bottom .plan-contents__name {
    gap: 30px;
    padding: 14px;
  }
}
.page-party__sec02--box__bottom .plan-contents__name > img {
  width: clamp(1.875rem, 1.187rem + 2.98vw, 4rem);
}
.page-party__sec02--box__bottom .plan-contents__name > h3 {
  font-size: clamp(1.125rem, 0.761rem + 1.58vw, 2.25rem);
  font-weight: bold;
  color: white;
}
@media (min-width: 768px) {
  .page-party__sec02--box__bottom .plan-contents__name > h3 {
    font-weight: 900;
  }
}
.page-party__sec02--box__bottom .plan-contents__text {
  font-weight: bold;
  font-size: clamp(0.938rem, 0.755rem + 0.79vw, 1.5rem);
  line-height: 1.8;
  margin-top: 35px;
}
@media (min-width: 768px) {
  .page-party__sec02--box__bottom .plan-contents__text {
    line-height: 2;
  }
}
.page-party__sec02--box .annotation {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}
@media (min-width: 768px) {
  .page-party__sec02--box .annotation {
    padding: 55px 30px;
  }
}
@media (min-width: 1200px) {
  .page-party__sec02--box .annotation {
    padding: 55px;
  }
}
.page-party .link-contents {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .page-party .link-contents {
    margin-bottom: 100px;
  }
}

.page-scene .anchor-links {
  padding: 60px 0;
  background-color: white;
}
.page-scene .anchor-links__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 576px) {
  .page-scene .anchor-links__wrap {
    gap: 32px;
  }
}
@media (min-width: 992px) {
  .page-scene .anchor-links__wrap {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .page-scene .anchor-links__wrap {
    gap: 32px;
  }
}
.page-scene .anchor-links__box {
  width: 100%;
  min-height: auto;
}
@media (min-width: 576px) {
  .page-scene .anchor-links__box {
    width: calc(50% - 16px);
    min-height: 350px;
  }
}
@media (min-width: 992px) {
  .page-scene .anchor-links__box {
    width: calc(25% - 15px);
  }
}
@media (min-width: 1200px) {
  .page-scene .anchor-links__box {
    width: calc(25% - 24px);
  }
}
.page-scene .anchor-links__box__link {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (min-width: 576px) {
  .page-scene .anchor-links__box__link {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .page-scene .anchor-links__box__link {
    padding: 27px;
  }
}
.page-scene .anchor-links__box__link::before, .page-scene .anchor-links__box__link::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
}
.page-scene .anchor-links__box__link::before {
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.page-scene .anchor-links__box__link:hover::before {
  transition: all 0.3s ease;
}
.page-scene .anchor-links__box__link::after {
  z-index: -1;
  bottom: 10px;
  right: 4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 12px solid #ffffff;
  border-top: 0;
  transform: rotate(135deg);
}
.page-scene .anchor-links__box__link > p {
  color: white;
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  font-weight: bold;
}
@media (min-width: 576px) {
  .page-scene .anchor-links__box__link > p {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .page-scene .anchor-links__box__link > p {
    font-weight: 900;
  }
}
.page-scene .anchor-links__box:nth-child(odd) .anchor-links__box__link::before {
  background-color: rgba(251, 92, 34, 0.85);
}
.page-scene .anchor-links__box:nth-child(odd) .anchor-links__box__link:hover::before {
  background-color: rgba(251, 92, 34, 0.4);
}
.page-scene .anchor-links__box:nth-child(even) .anchor-links__box__link::before {
  background-color: rgba(115, 171, 101, 0.85);
}
.page-scene .anchor-links__box:nth-child(even) .anchor-links__box__link:hover::before {
  background-color: rgba(115, 171, 101, 0.4);
}
.page-scene .anchor-links__box__title {
  color: white;
}
.page-scene .anchor-links__box__title > p {
  font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-scene .anchor-links__box__title > p {
    font-weight: 900;
  }
}
.page-scene .anchor-links__box__title > h2 {
  font-size: clamp(3.125rem, 2.113rem + 4.38vw, 6.25rem);
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-scene .anchor-links__box__title > h2 {
    font-weight: 900;
  }
}
.page-scene__sec01 {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .page-scene__sec01 {
    padding: 90px 0;
  }
}
.page-scene__sec01__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 576px) {
  .page-scene__sec01__inner {
    gap: 80px;
  }
}
@media (min-width: 768px) {
  .page-scene__sec01__inner {
    gap: 130px;
  }
}
.page-scene__sec01__box {
  gap: 40px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-scene__sec01__box {
    gap: 50px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-scene__sec01__box {
    gap: 85px;
  }
}
@media (min-width: 768px) {
  .page-scene__sec01__box--left {
    width: 43%;
  }
}
.page-scene__sec01__box--left .scene-thema {
  margin: 15px 0;
  font-size: clamp(1.25rem, 0.845rem + 1.75vw, 2.5rem);
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-scene__sec01__box--left .scene-thema {
    font-weight: 900;
    margin: 30px 0;
  }
}
.page-scene__sec01__box:nth-child(odd) .anchor-links__box__title,
.page-scene__sec01__box:nth-child(odd) .scene-thema {
  color: var(--orange);
}
@media (min-width: 768px) {
  .page-scene__sec01__box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.page-scene__sec01__box:nth-child(even) .anchor-links__box__title,
.page-scene__sec01__box:nth-child(even) .scene-thema {
  color: var(--green);
}
.page-scene__sec01__box--right {
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-scene__sec01__box--right {
    width: 50%;
    border-radius: 40px;
  }
}
.page-scene__sec01__box--right > img {
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  .page-scene__sec01__box--right > img {
    aspect-ratio: 566/592;
  }
}

.page-floor__sec01 .floor-title, .page-floor__sec03 .floor-title {
  color: var(--orange);
}
.page-floor__sec01 .page-floor__sec--bottom, .page-floor__sec03 .page-floor__sec--bottom {
  background-color: var(--orange);
}
.page-floor__sec02 .floor-title, .page-floor__sec04 .floor-title {
  color: var(--green);
}
.page-floor__sec02 .page-floor__sec--bottom, .page-floor__sec04 .page-floor__sec--bottom {
  background-color: var(--green);
}
.page-floor__sec {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .page-floor__sec {
    padding: 80px 0;
  }
}
.page-floor__sec--top {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .page-floor__sec--top {
    padding-bottom: 80px;
  }
}
.page-floor__sec .floor-title {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 0;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .page-floor__sec .floor-title {
    flex-direction: row;
    gap: 35px;
  }
}
.page-floor__sec .floor-title h2,
.page-floor__sec .floor-title p {
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-floor__sec .floor-title h2,
.page-floor__sec .floor-title p {
    font-weight: 900;
  }
}
.page-floor__sec .floor-title > h2 {
  font-size: clamp(2.813rem, 1.78rem + 4.47vw, 6rem);
}
.page-floor__sec .floor-title > p {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
}
.page-floor__sec--bottom {
  color: white;
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .page-floor__sec--bottom {
    padding: 60px 30px;
  }
}
@media (min-width: 768px) {
  .page-floor__sec--bottom {
    padding: 80px 30px;
  }
}
@media (min-width: 992px) {
  .page-floor__sec--bottom {
    padding: 80px 50px;
  }
}
@media (min-width: 1200px) {
  .page-floor__sec--bottom {
    padding: 80px 100px;
  }
}
.page-floor__sec--bottom .contents-title {
  margin-bottom: 50px;
}
.page-floor__sec--bottom__box {
  margin-bottom: 50px;
}
.page-floor__sec--bottom__box:last-child {
  margin-bottom: 0;
}
.page-floor__sec--bottom__box > h4 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  font-weight: bold;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-floor__sec--bottom__box > h4 {
    font-weight: 900;
    margin-bottom: 35px;
  }
}
.page-floor__sec--bottom__box .img-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 576px) {
  .page-floor__sec--bottom__box .img-box {
    gap: 32px;
    flex-direction: row;
  }
}
.page-floor__sec--bottom__box .img-box > img {
  aspect-ratio: 640/520;
}
@media (min-width: 576px) {
  .page-floor__sec--bottom__box .img-box > img {
    width: calc(50% - 16px);
  }
}

.page-recruit__sec {
  padding: 40px 0 100px;
}
@media (min-width: 576px) {
  .page-recruit__sec {
    padding: 80px 0 120px;
  }
}
@media (min-width: 768px) {
  .page-recruit__sec {
    padding: 100px 0 150px;
  }
}
@media (min-width: 992px) {
  .page-recruit__sec {
    padding: 120px 0 180px;
  }
}
.page-recruit__sec__link {
  border-radius: 10px;
  background-color: white;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .page-recruit__sec__link {
    padding: 40px;
  }
}
.page-recruit__sec__link > h3 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  margin-bottom: 15px;
  font-weight: bold;
}
.page-recruit__sec__link > p {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  margin-bottom: 25px;
  font-weight: bold;
}
.page-recruit__sec__link .btn-wrap {
  display: flex;
  justify-content: center;
}
.page-recruit__sec__link .btn-wrap__link {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  padding: 7px 20px;
  gap: 15px;
}
@media (min-width: 576px) {
  .page-recruit__sec__link .btn-wrap__link {
    gap: 25px;
  }
}
.page-recruit__sec__link .btn-wrap__link > img {
  width: clamp(1.75rem, 1.548rem + 0.88vw, 2.375rem);
}
.page-recruit__comment {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-recruit__comment {
    margin-bottom: 80px;
  }
}
.page-recruit__comment h2 {
  font-size: clamp(1.563rem, 1.218rem + 1.49vw, 2.625rem);
  font-weight: bold;
  line-height: 1.8;
}
.page-recruit__inner > h3 {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--brown);
}
.page-recruit__inner .recruit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .page-recruit__inner .recruit-list {
    padding: 60px 15px;
    gap: 35px;
  }
}
@media (min-width: 992px) {
  .page-recruit__inner .recruit-list {
    padding: 75px 25px;
  }
}
.page-recruit__inner .recruit-list .list-dl {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-recruit__inner .recruit-list .list-dl {
    flex-direction: row;
    gap: 35px;
  }
}
.page-recruit__inner .recruit-list .list-dt {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .page-recruit__inner .recruit-list .list-dt {
    width: 185px;
  }
}
.page-recruit__inner .recruit-list .list-dt p {
  font-weight: bold;
}
.page-recruit__inner .recruit-list .list-dd {
  flex: 1;
}
.page-recruit__inner .recruit-list .list-dd p {
  font-size: 0.875rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-recruit__inner .recruit-list .list-dd p {
    font-weight: bold;
  }
}
.page-recruit__inner .recruit-list .list-dt p,
.page-recruit__inner .recruit-list .list-dd p {
  letter-spacing: 2.4px;
  line-height: 1.8;
}
@media (min-width: 576px) {
  .page-recruit__inner .recruit-list .list-dt p,
.page-recruit__inner .recruit-list .list-dd p {
    font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  }
}

.page-news__sec {
  padding: 60px 0;
}
@media (min-width: 576px) {
  .page-news__sec {
    padding: 90px 0;
  }
}
@media (min-width: 768px) {
  .page-news__sec {
    padding: 135px 0;
  }
}
.page-news__sec--top {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-direction: column;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .page-news__sec--top {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .page-news__sec--top {
    margin-bottom: 130px;
  }
}
@media (min-width: 1200px) {
  .page-news__sec--top {
    gap: 60px;
    flex-direction: row;
  }
}
.page-news__sec--top > p {
  flex: 1;
  font-size: clamp(1.188rem, 0.924rem + 1.14vw, 2rem);
  line-height: 1.5;
  letter-spacing: 3.84px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .page-news__sec--top > p {
    line-height: 1.8;
  }
}
@media (min-width: 992px) {
  .page-news__sec--top > p {
    line-height: 2;
  }
}
@media (min-width: 1200px) {
  .page-news__sec--top > p {
    line-height: 2.5;
    text-align: left;
  }
}
.page-news__sec--top > img {
  aspect-ratio: 418/291;
  max-width: 95%;
}
@media (min-width: 768px) {
  .page-news__sec--top > img {
    max-width: 60%;
  }
}
@media (min-width: 1200px) {
  .page-news__sec--top > img {
    max-width: 35%;
  }
}

.news-list__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: solid 1px var(--brown);
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .news-list__link {
    flex-direction: row;
    align-items: center;
    gap: 35px;
    padding: 40px 20px;
  }
}
.news-list__date {
  color: var(--orange);
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
@media (min-width: 768px) {
  .news-list__date {
    width: 165px;
  }
}
.news-list__title {
  flex: 1;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}

.news-detail__category {
  display: inline-block;
  background-color: var(--orange);
  color: white;
  font-weight: bold;
  font-size: clamp(1rem, 0.676rem + 1.4vw, 2rem);
  border-radius: 10px;
  line-height: 1;
  padding: 7px 15px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .news-detail__category {
    padding: 10px 25px;
    margin-bottom: 40px;
  }
}
.news-detail__date {
  font-size: clamp(0.938rem, 0.755rem + 0.79vw, 1.5rem);
  font-weight: bold;
  color: var(--orange);
  margin-bottom: 15px;
}
.news-detail__title {
  font-size: clamp(1.375rem, 1.092rem + 1.23vw, 2.25rem);
  font-weight: bold;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .news-detail__title {
    margin-bottom: 50px;
  }
}
.news-detail__img {
  aspect-ratio: 1112/711;
}
.news-detail__meta {
  font-weight: bold;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  line-height: 1.5;
  margin-top: 30px;
}
@media (min-width: 576px) {
  .news-detail__meta {
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .news-detail__meta {
    line-height: 2;
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .news-detail__meta {
    line-height: 2.5;
  }
}

.webgene-pagination {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .webgene-pagination {
    margin-top: 120px;
  }
}
.webgene-pagination ul {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (min-width: 768px) {
  .webgene-pagination ul {
    flex-direction: row;
  }
}
.webgene-pagination ul .prev,
.webgene-pagination ul .next {
  text-align: center;
  min-width: 160px;
}
.webgene-pagination ul .prev a,
.webgene-pagination ul .next a {
  display: block;
  background-color: white;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 2.88px;
  padding: 15px 17px;
  color: var(--wine);
  border-radius: 999px;
  border: 2px solid var(--wine);
}
@media (min-width: 768px) {
  .webgene-pagination ul .prev a,
.webgene-pagination ul .next a {
    border: 3px solid var(--wine);
  }
}
.webgene-pagination ul .prev {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .webgene-pagination ul .prev {
    text-align: right;
    margin-left: 0;
    margin-right: auto;
  }
}
.webgene-pagination ul .next {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .webgene-pagination ul .next {
    text-align: left;
    margin-left: auto;
    margin-right: 0;
  }
}
.webgene-pagination .back {
  width: 100%;
  display: flex;
  justify-content: center;
}
.webgene-pagination .back > a {
  text-align: center;
  margin: 0 auto;
  display: block;
  background-color: var(--wine);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 2.88px;
  padding: 15px 17px;
  color: white;
  border-radius: 999px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 160px;
}
@media (min-width: 768px) {
  .webgene-pagination .back > a {
    min-width: 296px;
  }
}

.page-newsdetail {
  padding: 100px 0;
}
@media (min-width: 768px) {
  .page-newsdetail {
    padding: 180px 0 100px;
  }
}
@media (min-width: 992px) {
  .page-newsdetail {
    padding: 230px 0 130px;
  }
}
.page-newsdetail .newsdetail__date {
  color: var(--or);
  line-height: 1;
  font-weight: 500;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.page-newsdetail .newsdetail__title {
  font-size: clamp(1.5rem, 1.338rem + 0.7vw, 2rem);
  font-weight: 600;
  line-height: 1.88;
  margin-bottom: 30px;
}
.page-newsdetail .newsdetail__image {
  margin-bottom: 35px;
}
.page-newsdetail .newsdetail__image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.page-newsdetail .newsdetail__text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  font-weight: 500;
  line-height: 1.8;
}