@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 1rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #F7F7F7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: #000000;
}

h1 {
  font-size: 3rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 2.125rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.625rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  h6 {
    font-size: 1.125rem;
  }
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.625;
}

a {
  color: #0D4021;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
a:hover {
  color: rgb(23.2345454545, 114.3854545455, 58.98);
  text-decoration: underline;
}
a:focus {
  outline: 2px solid #0D4021;
  outline-offset: 2px;
}

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

ul.list-style-none {
  list-style: none;
}

li {
  margin-bottom: 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #F9FAFB;
}

th {
  font-weight: 600;
  background-color: #F9FAFB;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  background-color: #0D4021;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 0.5rem;
  z-index: 1070;
}

*:focus {
  outline: 2px solid #0D4021;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background-color: #F7F7F7;
  color: #0D4021;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F9FAFB;
}

::-webkit-scrollbar-thumb {
  background: #0D4021;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(23.2345454545, 114.3854545455, 58.98);
}

.color-primary {
  color: #0D4021;
}

.color-secondary {
  color: #146333;
}

#main-content.main {
  background-color: #EFFFF5;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #33322F;
}
#main-content.main img {
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  #main-content.main img:hover {
    opacity: 0.8;
  }
}

.container {
  width: 100%;
  max-width: 1144px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  will-change: transform, background-color;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus {
  outline: 2px solid #0D4021;
  outline-offset: 2px;
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  will-change: transform, background-color;
}
.btn--primary:hover {
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--primary:focus {
  outline: 2px solid #0D4021;
  outline-offset: 2px;
}
.btn--primary {
  background-color: #0D4021;
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: rgb(23.2345454545, 114.3854545455, 58.98);
  color: #FFFFFF;
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  will-change: transform, background-color;
}
.btn--secondary:hover {
  transform: translateY(-2px);
}
.btn--secondary:active {
  transform: translateY(0);
}
.btn--secondary:focus {
  outline: 2px solid #0D4021;
  outline-offset: 2px;
}
.btn--secondary {
  background-color: transparent;
  color: #0D4021;
  border: 2px solid #0D4021;
}
.btn--secondary:hover {
  background-color: #0D4021;
  color: #FFFFFF;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  will-change: transform, background-color;
}
.c-btn:hover {
  transform: translateY(-2px);
}
.c-btn:active {
  transform: translateY(0);
}
.c-btn:focus {
  outline: 2px solid #0D4021;
  outline-offset: 2px;
}
.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 45px;
  padding: 1.19rem 1.875rem;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out, filter 0.15s ease-in-out;
}
.c-btn:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.c-btn:active {
  transform: none;
}
.c-btn:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
}
.c-btn--primary {
  background: linear-gradient(180deg, #0D4021 0%, rgb(23.2345454545, 114.3854545455, 58.98) 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(13, 64, 33, 0.25);
}
.c-btn--external {
  width: 100%;
  max-width: 210px;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (min-width: 1024px) {
  .c-btn--external {
    max-width: 336px;
  }
}
.c-btn--external::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: calc(1.25rem + 14px);
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: translate(40%, -50%) rotate(-45deg);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .c-btn--external::after {
    width: 8px;
    height: 8px;
  }
}

.card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  transition: all 0.3s ease-in-out;
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}
.card__header {
  margin-bottom: 1rem;
}
.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  margin-bottom: 0.5rem;
}
.card__content {
  font-size: 1rem;
  font-weight: 400;
  color: #33322F;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}
.card__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #F9FAFB;
}

.icon {
  display: inline-block;
  flex-shrink: 0;
}
.icon--sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.icon--md {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.icon--lg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.icon--xl {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0D4021;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-header__description {
  font-size: 1.125rem;
  font-weight: 400;
  color: #C1C1C1;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  max-width: 600px;
  margin: 0 auto;
}

.heading-underline {
  position: relative;
  padding-bottom: 2rem;
}
.heading-underline:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-bottom: 3px dashed #0D4021;
}
@media (min-width: 768px) {
  .heading-underline:after:after {
    width: 68%;
  }
}
.heading-underline--center:after {
  left: 50%;
  transform: translateX(-50%);
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  color: #0D4021;
  background: rgba(255, 255, 255, 0.9);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}
.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  background: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.swiper .swiper-button-prev:focus,
.swiper .swiper-button-next:focus {
  outline: 2px solid #0D4021;
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 56px !important;
    height: 56px !important;
  }
  .swiper .swiper-button-prev:after,
  .swiper .swiper-button-next:after {
    font-size: 1.25rem;
  }
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 64, 33, 0.1);
  transition: all 0.3s ease-in-out;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-img {
  height: 40px;
  width: auto;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-item {
  margin: 0;
}
.header__nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
}
.header__nav-link:hover, .header__nav-link:focus {
  background-color: #F7F7F7;
  color: #0D4021;
  text-decoration: none;
}

.p-subnav {
  background-color: #0D4021;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2rem 1rem;
}
.p-subnav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
}
.p-subnav__list > li {
  margin-bottom: 0;
}
.p-subnav__link {
  position: relative;
  display: inline-block;
  color: #FFFFFF;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.009375em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease-in-out;
}
.p-subnav__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.15s ease-in-out;
}
.p-subnav__link:hover, .p-subnav__link:focus-visible {
  color: #FFFFFF;
  text-decoration: none;
}
.p-subnav__link:hover::before, .p-subnav__link:focus-visible::before {
  transform: scaleX(1);
}
.p-subnav__sep {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-subnav.p-lp-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1020;
    transition: transform 0.3s ease-in-out;
    padding: 0.75rem 0;
    background: linear-gradient(180deg, rgb(23.2345454545, 114.3854545455, 58.98) 0, #0D4021 100%);
    border-bottom: none;
  }
  .p-subnav.p-lp-nav.is-hidden {
    transform: translateY(100%);
    pointer-events: none;
  }
  .p-subnav.p-lp-nav .p-subnav__list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    max-width: none;
    margin: 0;
    padding: 0 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
    text-align: center;
  }
  .p-subnav.p-lp-nav .p-subnav__list::-webkit-scrollbar {
    display: none;
  }
  .p-subnav.p-lp-nav .p-subnav__link {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: clamp(0.8125rem, 2.8vw, 0.9375rem);
    line-height: 1.5;
    letter-spacing: 0.04em;
    padding: 0.75rem 0.5rem;
    white-space: nowrap;
  }
  .p-subnav.p-lp-nav .p-subnav__sep {
    align-self: center;
    width: 1px;
    height: 1.75rem;
    flex-shrink: 0;
    opacity: 0.65;
  }
}

body {
  background: linear-gradient(180deg, #CBEAFB 0%, #E8F6FC 89.637%, #E8F6FC 100%);
}

.l-container {
  width: 100%;
  max-width: 1112px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.l-section {
  position: relative;
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .l-section {
    padding: 3rem 0;
  }
}

.p-mv {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: clamp(335px, 52vw, 1000px);
}
.p-mv::before, .p-mv::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 590px;
  height: 100%;
  z-index: 2;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-mv::before, .p-mv::after {
    width: 200px;
    height: 335px;
    background-size: contain;
  }
}
.p-mv::before {
  left: 0;
  background-image: url("../img/bg-mv-left.png");
  background-position: left center;
}
@media (max-width: 767px) {
  .p-mv::before {
    background-position: -20px center;
  }
}
.p-mv::after {
  right: 0;
  background-image: url("../img/bg-mv-right.png");
  background-position: right center;
}
@media (max-width: 767px) {
  .p-mv::after {
    background-position: 40px center;
  }
}
.p-mv__swiper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.p-mv__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-mv__title {
  position: absolute;
  top: 2rem;
  left: 3.5rem;
  z-index: 3;
  margin: 0;
  padding: 0;
  transform: skewX(-14deg);
  transform-origin: top left;
}
@media (min-width: 768px) {
  .p-mv__title {
    top: clamp(1.5rem, 4vw, 73px);
    left: 10.5rem;
  }
}
.p-mv__line {
  display: block;
  width: max-content;
  position: relative;
  padding: 0.5rem clamp(0.5rem, 3vw, 4rem);
  margin-bottom: 0.5rem;
  background: #FFFFFF;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 7vw, 7.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  background-clip: border-box;
  color: transparent;
  background-image: linear-gradient(90deg, #004139 0%, #146333 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.p-mv__line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  z-index: -1;
}
.p-mv__line:last-child {
  margin-bottom: 0;
}
.p-mv__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.5rem !important;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .p-mv__pagination {
    bottom: 2rem !important;
  }
}
.p-mv__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}
.p-mv__pagination .swiper-pagination-bullet-active {
  background: #FFFFFF;
}

.p-intro {
  padding: clamp(3rem, 7vw, 7.5rem) 0 clamp(2rem, 7vw, 7.5rem);
}
@media (max-width: 767px) {
  .p-intro {
    padding: 2.5rem 0 1.5rem;
  }
}
.p-intro__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.71fr) minmax(0, 1.45fr) minmax(0, 2fr);
  gap: clamp(1.5rem, 7vw, 7.5rem);
  align-items: center;
}
@media (max-width: 1023px) {
  .p-intro__inner {
    grid-template-columns: 1fr;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 1023px) {
  .p-intro__text {
    order: -1;
  }
}
.p-intro__heading {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  color: #0D4021;
  font-size: clamp(1.25rem, 3.2vw, 2rem);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
@media (max-width: 1023px) {
  .p-intro__heading {
    margin-bottom: 0.5rem;
  }
}
.p-intro__body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  color: #0D4021;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.p-intro__gallery-left, .p-intro__gallery-right {
  display: block;
  min-width: 0;
}
@media (max-width: 767px) {
  .p-intro__gallery-left {
    display: none;
  }
}
.p-intro__photo {
  display: block;
  width: 100%;
  height: clamp(240px, 26vw, 540px);
  object-fit: cover;
  border-radius: 0.5rem;
}
.p-intro__photo--tall {
  height: clamp(240px, 26vw, 540px);
}

.p-tabs {
  padding: 0;
}
@media (max-width: 767px) {
  .p-tabs {
    padding-bottom: 1.5rem;
  }
}
.p-tabs__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .p-tabs__inner {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}
.p-tabs__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .p-tabs__list {
    display: contents;
  }
}
.p-tabs__list li {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-tabs__list li:nth-child(1) {
    order: 1;
  }
  .p-tabs__list li:nth-child(2) {
    order: 3;
  }
  .p-tabs__list li:nth-child(3) {
    order: 5;
  }
  .p-tabs__list li:nth-child(4) {
    order: 7;
  }
  .p-tabs__list li {
    margin-top: 1rem;
  }
}
.p-tabs__btn {
  width: 100%;
  min-height: 108px;
  padding: 1.5rem 0.75rem;
  background: #E4E4E4;
  color: #C1C1C1;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.4vw, 1.25rem);
  line-height: 1.2;
  text-align: center;
  border: none;
  border-radius: 0.5rem 0.5rem 0 0;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
.p-tabs__btn:hover {
  background: rgb(218.88, 218.88, 218.88);
}
@media (max-width: 767px) {
  .p-tabs__btn {
    min-height: 96px;
    border-radius: 0;
    text-align: left;
    padding: 1.5rem 2rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}
.p-tabs__btn.is-active {
  background: #146333;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .p-tabs__btn .p-tabs__btn-arrow--inactive {
    display: inline-block;
  }
  .p-tabs__btn .p-tabs__btn-arrow--active {
    display: none;
  }
  .p-tabs__btn.is-active .p-tabs__btn-arrow--inactive {
    display: none;
  }
  .p-tabs__btn.is-active .p-tabs__btn-arrow--active {
    display: inline-block;
  }
}
.p-tabs__btn-label span {
  display: block;
}
@media (max-width: 767px) {
  .p-tabs__btn-label {
    flex: 1;
    min-width: 0;
  }
}
@media (min-width: 768px) {
  .p-tabs__btn-icons {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-tabs__btn-icons {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
  }
}
.p-tabs__panel {
  display: none;
  background: #0D7234;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: clamp(1rem, 3vw, 2.5rem);
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .p-tabs__panel {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0;
    border-radius: 0;
    scroll-margin-top: 1.5rem;
    transition: grid-template-rows 0.42s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.28s ease;
    opacity: 0;
    pointer-events: none;
  }
  .p-tabs__panel:nth-of-type(1) {
    order: 2;
  }
  .p-tabs__panel:nth-of-type(2) {
    order: 4;
  }
  .p-tabs__panel:nth-of-type(3) {
    order: 6;
  }
  .p-tabs__panel:nth-of-type(4) {
    order: 8;
  }
  .p-tabs__panel.is-active {
    display: grid;
    grid-template-rows: 1fr;
    opacity: 1;
    pointer-events: auto;
    margin-top: -1px;
  }
}
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .p-tabs__panel {
    transition: none;
  }
}
@media (min-width: 768px) {
  .p-tabs__panel.is-active {
    display: block;
  }
}
.p-tabs__panel-head {
  display: grid;
  grid-template-columns: minmax(0, 385px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: self-start;
}
@media (max-width: 767px) {
  .p-tabs__panel-head {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
  }
  .p-tabs__panel-head .p-tabs__panel-copy {
    display: contents;
  }
  .p-tabs__panel-head .p-tabs__panel-copy > * + *:not(.p-tabs__panel-cta) {
    margin-top: 0;
  }
  .p-tabs__panel-head .p-tabs__panel-title {
    order: 1;
  }
  .p-tabs__panel-head .p-tabs__panel-media {
    order: 2;
  }
  .p-tabs__panel-head .p-tabs__panel-time {
    order: 3;
  }
  .p-tabs__panel-head .p-tabs__panel-text {
    order: 4;
    margin-bottom: 2.5rem;
  }
  .p-tabs__panel-head .p-tabs__panel-text:has(+ .p-tabs__panel-cta) {
    margin-bottom: 0;
  }
  .p-tabs__panel-head .p-tabs__panel-cta {
    order: 5;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .p-tabs__panel-head .p-tabs__panel-cta .c-btn--cta-orange {
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  .p-tabs__panel-copy {
    margin-top: 0;
  }
}
.p-tabs__panel-title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: clamp(2rem, 3vw, 2rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #FFFFFF;
  max-width: max-content;
}
@media (max-width: 767px) {
  .p-tabs__panel-title {
    max-width: 100%;
    margin: 2rem 0 0;
  }
}
.p-tabs__panel-time {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .p-tabs__panel-time {
    margin-bottom: 0;
  }
}
.p-tabs__panel-time span {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  color: #146333;
  font-size: clamp(1.25rem, 1.2vw, 1.25rem);
  line-height: 1.7;
  background-color: #FFFFFF;
  padding: 0.25rem 1rem;
}
.p-tabs__panel-text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: clamp(1.25rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  margin: 0 0 2rem;
}
@media (max-width: 767px) {
  .p-tabs__panel-text {
    margin-bottom: 0;
  }
}
.p-tabs__panel-cta {
  margin-top: 1.5rem;
}
.p-tabs__panel-media {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 592/460;
}
@media (max-width: 767px) {
  .p-tabs__panel-media {
    aspect-ratio: 4/2.85;
  }
}
.p-tabs__panel-media .swiper,
.p-tabs__panel-media .swiper-wrapper,
.p-tabs__panel-media .swiper-slide {
  width: 100%;
  height: 100%;
}
.p-tabs__panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-tabs__panel-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.5rem !important;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .p-tabs__panel-pagination {
    bottom: 1rem !important;
  }
}
.p-tabs__panel-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
}
.p-tabs__panel-pagination .swiper-pagination-bullet-active {
  background: #FFFFFF;
}

.c-btn--cta-orange {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 260px;
  width: 100%;
  max-width: 335px;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #E25C00 0%, #F2AD3F 100%);
  color: #FFFFFF;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  text-decoration: none;
  border: 2px solid #FFFFFF;
  border-radius: 131.5px;
  box-shadow: 0 4px 14px rgba(226, 92, 0, 0.3);
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out, filter 0.15s ease-in-out;
  justify-content: center;
}
.c-btn--cta-orange::after {
  content: "▶";
  font-size: 0.8em;
  line-height: 1;
}
.c-btn--cta-orange:hover {
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(226, 92, 0, 0.4);
  filter: brightness(1.05);
}

.icon-arrow-right {
  display: inline-block;
  font-style: normal;
  line-height: 1;
}
.icon-arrow-right::before {
  content: "▶";
  font-size: 0.8em;
  line-height: 1;
}

.icon-arrow-down {
  display: inline-block;
  font-style: normal;
  line-height: 1;
}
.icon-arrow-down::before {
  content: "▼";
  font-size: 0.65em;
  line-height: 1;
  vertical-align: middle;
}

.p-restaurant__cta {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 1rem 3rem;
  background: #0D7234;
  border: none;
  box-shadow: 0 4px 14px rgba(13, 64, 33, 0.25);
  justify-content: center;
  gap: 1.5rem;
}
.p-restaurant__cta::after {
  content: none;
}
.p-restaurant__cta:hover {
  box-shadow: 0 8px 20px rgba(13, 64, 33, 0.35);
  filter: brightness(1.1);
}

.p-points {
  padding: clamp(4rem, 8vw, 7.5rem) 0 0;
}
@media (max-width: 767px) {
  .p-points {
    padding-top: 1.5rem;
    margin-top: -1px;
  }
}

.p-points:not(.is-active) {
  display: none;
}

.p-point {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
}
@media (max-width: 767px) {
  .p-point {
    gap: 1.5rem;
    margin: 0 1rem 3rem;
  }
  .p-point:last-child {
    margin-bottom: 0;
  }
}
.p-point--img-right {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
}
@media (max-width: 767px) {
  .p-point {
    grid-template-columns: 1fr;
  }
}
.p-point__media {
  position: relative;
  width: 100%;
  aspect-ratio: 933/452;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-point__media {
    aspect-ratio: 4/2.9;
  }
}
.p-point__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-point__content {
  max-width: 612px;
}
.p-point__head {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-point__head {
    gap: 1rem;
    margin-bottom: 0;
  }
}
.p-point__badge {
  position: relative;
  flex-shrink: 0;
  width: clamp(80px, 8vw, 120px);
  height: clamp(80px, 8vw, 120px);
  border-radius: 50%;
  background: linear-gradient(180deg, #0F8DB7 0%, #079AA3 100%);
  border: 4px solid #FFFFFF;
  color: #FFFFFF;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.p-point__badge-label {
  font-size: clamp(0.875rem, 1.2vw, 1.25rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.p-point__badge-num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.p-point__title {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  color: #0F8DB7;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.7;
  transform: skewX(-12deg);
  transform-origin: left center;
  display: inline-block;
}
.p-point__body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  color: #33322F;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.7;
  margin: 0 0 0.75rem;
}
@media (max-width: 767px) {
  .p-point__body {
    margin-bottom: 0;
  }
}
.p-point__cta {
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 767px) {
  .p-point__cta {
    margin-top: 1rem;
  }
}
.p-point__cta a {
  width: 283px;
  min-width: 283px;
  padding: 0.563rem 2.5rem;
  box-shadow: none;
}
@media (max-width: 767px) {
  .p-point__cta a {
    width: 100%;
    max-width: 100%;
  }
}
.p-point__note {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  color: #33322F;
  font-size: 0.75rem;
  line-height: 1.7;
  margin: 0;
}
.p-point--img-left .p-point__media {
  order: 1;
  justify-self: start;
}
.p-point--img-left .p-point__content {
  order: 2;
}
@media (min-width: 768px) {
  .p-point--img-left .p-point__media {
    width: calc(100% + 1rem);
    max-width: 900px;
  }
}
.p-point--img-right .p-point__content {
  order: 1;
  justify-self: end;
}
@media (max-width: 767px) {
  .p-point--img-right .p-point__content {
    order: 2;
  }
}
.p-point--img-right .p-point__media {
  order: 2;
  justify-self: end;
}
@media (max-width: 767px) {
  .p-point--img-right .p-point__media {
    order: 1;
  }
}
@media (min-width: 768px) {
  .p-point--img-right .p-point__media {
    width: calc(100% + 1rem);
    margin-right: -1rem;
    max-width: 933px;
  }
}

@media (max-width: 767px) {
  #points01.p-points .p-point__content {
    display: contents;
    max-width: none;
  }
  #points01.p-points .p-point__head {
    order: 1;
  }
  #points01.p-points .p-point__body {
    order: 2;
  }
  #points01.p-points .p-point__note {
    order: 3;
  }
  #points01.p-points .p-point__media {
    order: 4;
    justify-self: stretch;
    width: 100%;
  }
  #points01.p-points .p-point--img-left .p-point__media,
  #points01.p-points .p-point--img-right .p-point__media {
    order: 4;
  }
}

.p-points--women {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1192px;
  margin: 0 auto;
  padding: 7.5rem 0;
}
@media (max-width: 767px) {
  .p-points--women {
    padding: 2.5rem 1rem 1.5rem;
  }
}

.p-point--women {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding: 0;
  background: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  min-height: clamp(360px, 38vw, 566px);
}
@media (max-width: 767px) {
  .p-point--women {
    min-height: 0;
    margin: 0;
  }
}
.p-point--women .p-point__content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 543px);
  gap: 4.75rem;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 4rem 3.75rem;
}
@media (max-width: 767px) {
  .p-point--women .p-point__content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem 1rem 1rem;
  }
}
.p-point--women .p-point__content {
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(0.75rem, 1.2vw, 1rem);
}
.p-point--women .p-point__title {
  transform: none;
  color: #0D4021;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.7;
  margin: 0;
}
.p-point--women .p-point__body {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}
.p-point--women .p-point__note {
  color: #33322F;
  font-size: 0.75rem;
  line-height: 1.7;
  margin: 0;
}
.p-point--women .p-point__media {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.p-point--women .p-point__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-point--women .p-point__slider {
  height: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
}
.p-point--women .p-point__slider .swiper-wrapper,
.p-point--women .p-point__slider .swiper-slide {
  height: 100%;
}
.p-point--women .p-point__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-point--women .p-point__slider .swiper-pagination {
  bottom: 0.75rem;
}
.p-point--women .p-point__slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  margin: 0 5px !important;
}
.p-point--women .p-point__slider .swiper-pagination-bullet-active {
  background: #FFFFFF;
}

.p-point--women .p-point__badge.p-point__badge--pill {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: clamp(160px, 16vw, 238px);
  height: clamp(60px, 6vw, 86px);
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 0.8vw, 0.75rem);
  border: 0;
  border-radius: 0;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background: var(--p-point-badge-bg, #EA5C30);
  color: #FFFFFF;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}
.p-point--women .p-point__badge.p-point__badge--pill .p-point__badge-label {
  font-size: clamp(0.875rem, 1.2vw, 1.25rem);
  letter-spacing: 0.04em;
  margin: 0;
}
.p-point--women .p-point__badge.p-point__badge--pill .p-point__badge-num {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
}

.p-point--badge-orange {
  --p-point-badge-bg: #EA5C30;
}

.p-point--badge-amber {
  --p-point-badge-bg: #EA9C30;
}

.p-point--badge-green {
  --p-point-badge-bg: #4BA01E;
}

.p-point--badge-blue {
  --p-point-badge-bg: #4279DF;
}

.p-point__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-point__tags li {
  padding: 0.5rem 1.5rem;
  background: #0D4021;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-points--restaurant {
  display: flex;
  flex-direction: column;
  max-width: 1112px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 7rem) 1rem 0;
}
@media (max-width: 767px) {
  .p-points--restaurant {
    padding-bottom: 1.5rem;
  }
}
.p-points--restaurant .p-notice {
  text-align: left;
  margin: 0 auto;
}

.p-restaurant__list {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
@media (max-width: 767px) {
  .p-restaurant__list {
    gap: 3rem;
  }
}

.p-restaurant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.p-restaurant__banner {
  position: relative;
  width: 100%;
}
.p-restaurant__banner:has(.p-restaurant__banner-pagination:not([hidden])) {
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-restaurant__banner:has(.p-restaurant__banner-pagination:not([hidden])) {
    padding-bottom: 2rem;
  }
}
.p-restaurant__banner.has-bullets {
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-restaurant__banner.has-bullets {
    padding-bottom: 2rem;
  }
}
.p-restaurant__banner-slider {
  width: 100%;
  aspect-ratio: 1080/480;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-restaurant__banner-slider {
    aspect-ratio: 6/6.2;
  }
}
.p-restaurant__banner-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-restaurant__banner-slider .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.p-restaurant__banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-restaurant__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.75rem;
  background: #0D4021;
  color: #FFFFFF;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  border-bottom-right-radius: 0.5rem;
}
.p-restaurant__desc {
  position: absolute;
  left: clamp(1rem, 2.5vw, 1.5rem);
  right: clamp(1rem, 2.5vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 2;
  margin: 0;
  color: #FFFFFF;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 1.7;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .p-restaurant__desc {
    line-height: 1.7;
  }
}
.p-restaurant__banner-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem !important;
  width: 100%;
  height: 3rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-restaurant__banner-pagination {
    height: 2rem;
  }
}
.p-restaurant__banner-pagination[hidden] {
  display: none;
}
.p-restaurant__banner-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C1C1C1;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
  border: 0;
  padding: 0;
}
.p-restaurant__banner-bullet:hover {
  background: #0D7234;
}
.p-restaurant__banner-bullet--active {
  background: #0D7234;
  transform: scale(1.15);
}
.p-restaurant__menu {
  position: relative;
  width: 100%;
}
.p-restaurant__slider {
  width: 100%;
  overflow: hidden;
}
.p-restaurant__card {
  display: grid;
  grid-template-columns: minmax(0, 440fr) minmax(0, 640fr);
  align-items: stretch;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #FFFFFF;
}
@media (max-width: 767px) {
  .p-restaurant__card {
    grid-template-columns: 1fr;
  }
}
.p-restaurant__photo {
  position: relative;
  aspect-ratio: 440/239;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-restaurant__photo {
    aspect-ratio: 4/2.5;
  }
}
.p-restaurant__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .p-restaurant__photo img {
    border-radius: 0.5rem;
  }
}
.p-restaurant__info {
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.p-restaurant__dish {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #0D4021;
  color: #0D4021;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.7;
  max-width: max-content;
}
.p-restaurant__dish-subtitle {
  color: #E25C00;
  margin-bottom: 0;
}
.p-restaurant__dish-price {
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.p-restaurant__sub {
  margin: 0;
  color: #33322F;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.7;
}
.p-restaurant__sub span {
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.p-restaurant__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #0D7234;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
}
@media (max-width: 767px) {
  .p-restaurant__nav {
    top: 30%;
    transform: translateY(-30%);
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
}
.p-restaurant__nav:hover {
  background: #0D4021;
  transform: translateY(-50%) scale(1.05);
}
.p-restaurant__nav:disabled, .p-restaurant__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.p-restaurant__nav[hidden] {
  display: none;
}
.p-restaurant__nav--prev {
  left: -24px;
}
@media (max-width: 767px) {
  .p-restaurant__nav--prev {
    left: 0;
  }
}
.p-restaurant__nav--next {
  right: 0;
}
@media (max-width: 767px) {
  .p-restaurant__nav--next {
    right: 0;
  }
}
.p-restaurant__pagination {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1;
}
.p-restaurant__pagination[hidden] {
  display: none;
}
.p-restaurant__bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E4E4E4;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
  border: 0;
  padding: 0;
}
.p-restaurant__bullet:hover {
  background: #0D7234;
}
.p-restaurant__bullet--active {
  background: #0D4021;
  transform: scale(1.15);
}
.p-restaurant__cta {
  min-width: 0;
  width: clamp(260px, 32vw, 415px);
  max-width: 100%;
}
@media (max-width: 767px) {
  .p-restaurant__cta {
    width: 100%;
  }
}

.p-points--courses {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1112px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 1rem 0;
}
.p-points--courses .p-notice {
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .p-points--courses .p-notice {
    padding-top: 1rem;
  }
}

.p-courses__list {
  display: flex;
  flex-direction: column;
  gap: 7rem;
  margin-bottom: 7rem;
}
@media (max-width: 767px) {
  .p-courses__list {
    gap: 3rem;
    margin-bottom: 2.5rem;
  }
}

.p-course {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-course__media {
  width: 100%;
}
.p-course__video {
  position: relative;
  width: 100%;
  aspect-ratio: 720/405;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #000000;
}
@media (max-width: 767px) {
  .p-course__video {
    aspect-ratio: 3.9/2.2;
  }
}
.p-course__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-course__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.p-course__video:has(img)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}
.p-course__video-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: #0D4021;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  letter-spacing: 0.04em;
  border-radius: 0.5rem;
  white-space: nowrap;
}
.p-course__info {
  display: grid;
  grid-template-columns: minmax(0, 400fr) minmax(0, 537fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 3rem);
  background: #FFFFFF;
  border-radius: 0.5rem;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p-course__info {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
    border-radius: 0.5rem;
  }
}
.p-course__cta {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-course__cta {
    margin-top: 1rem;
  }
}
.p-course__cta a {
  width: 100%;
  max-width: 335px;
  padding: 0.875rem 2.5rem;
  box-shadow: none;
}
@media (max-width: 767px) {
  .p-course__cta a {
    width: 100%;
    max-width: 100%;
  }
}
.p-course__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.p-course__logo {
  display: inline-block;
  max-width: 400px;
}
.p-course__logo img {
  width: 100%;
  height: auto;
  max-height: 49px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.p-course__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 639px) {
  .p-course__meta {
    gap: 0.75rem;
    flex-direction: column;
    justify-self: start;
    align-items: flex-start;
  }
}
.p-course__address {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #000000;
}
.p-course__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-course__socials li {
  line-height: 0;
}
.p-course__socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  transition: opacity 0.2s ease;
}
.p-course__socials a:hover {
  opacity: 0.8;
}
.p-course__socials a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-course__desc {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #000000;
}

.p-notice {
  padding: 6rem 1rem 6rem;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .p-notice {
    padding: 1.5rem 1rem 2.5rem;
  }
}
.p-notice__list {
  margin: 0;
  list-style: none;
  text-align: left;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
}
@media (max-width: 767px) {
  .p-notice__list {
    max-width: 100%;
  }
}
.p-notice__list li {
  margin-bottom: 0.25rem;
  padding-left: 1.2rem;
  position: relative;
}
.p-notice__list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.5rem;
  height: 0.5rem;
}

.p-intro,
.p-tabs,
.p-points,
.p-notice {
  transition: background-color 0.3s ease;
}

body[data-active-tab=tab-season] .p-intro,
body[data-active-tab=tab-season] .p-tabs,
body[data-active-tab=tab-season] .p-points,
body[data-active-tab=tab-season] .p-notice {
  background-color: #CBEAFB;
}

.footer {
  background: #0D4021;
  color: #FFFFFF;
  padding: 5rem 0 0;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 4rem;
  }
}
.footer__inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  .footer__inner {
    padding: 0 1rem;
    gap: 2.5rem;
  }
}
.footer__row {
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 5rem);
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}
.footer__brand {
  flex-shrink: 0;
  width: clamp(120px, 12vw, 177px);
}
.footer__brand-img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 512px));
  gap: clamp(1rem, 3vw, 3.5rem);
}
@media (max-width: 767px) {
  .footer__logos {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 400px;
  }
}
.footer__logo-item {
  background: #FFFFFF;
  border-radius: 131.5px;
  padding: 2.43rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-decoration: none;
}
@media (max-width: 767px) {
  .footer__logo-item {
    padding: 0.5rem 2rem;
    min-height: 70px;
  }
}
.footer__logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.footer__logo-item img {
  display: block;
  max-width: 100%;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .footer__logo-item img {
    max-height: 36px;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    gap: 0;
  }
}
.footer__nav a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: #FFFFFF;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.7;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footer__nav a:hover {
  color: #FFFFFF;
  opacity: 0.8;
}
.footer__sep {
  width: 1px;
  height: 20px;
  background: #FFFFFF;
  display: inline-block;
}
@media (max-width: 639px) {
  .footer__sep {
    display: none;
  }
}
.footer__copyright {
  margin-top: 4rem;
  margin-bottom: 0;
  padding: 1rem;
  background: #FFFFFF;
  color: #0D4021;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 2rem;
  }
}

.back-to-top {
  position: fixed;
  bottom: 3.75rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  padding: 0;
  background: linear-gradient(160deg, #0D4021 0%, rgb(27.6207792208, 135.9792207792, 70.1142857143) 100%);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.92);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 14px rgba(13, 64, 33, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .back-to-top {
    width: 56px;
    height: 56px;
    right: 3rem;
    bottom: 4rem;
  }
}
.back-to-top:hover {
  transform: translateY(-3px) scale(1);
  box-shadow: 0 8px 24px rgba(13, 64, 33, 0.4), 0 4px 10px rgba(0, 0, 0, 0.15);
}
.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}
@media (min-width: 768px) {
  .back-to-top__icon {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition-duration: 0.01ms;
  }
  .back-to-top:hover {
    transform: translateY(0) scale(1);
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.justify-evenly {
  justify-content: space-evenly !important;
}

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

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

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

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

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-xs {
  font-size: 0.75rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-base {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

.text-4xl {
  font-size: 2.25rem !important;
}

.text-5xl {
  font-size: 3rem !important;
}

.text-6xl {
  font-size: 3.75rem !important;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.text-primary {
  color: #0D4021 !important;
}

.text-primary-light {
  color: rgb(23.2345454545, 114.3854545455, 58.98) !important;
}

.text-secondary {
  color: #146333 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-black {
  color: #000000 !important;
}

.text-gray {
  color: #33322F !important;
}

.text-gray-dark {
  color: #C1C1C1 !important;
}

.bg-primary {
  background-color: #0D4021 !important;
}

.bg-primary-light {
  background-color: rgb(23.2345454545, 114.3854545455, 58.98) !important;
}

.bg-primary-lighter {
  background-color: #F7F7F7 !important;
}

.bg-secondary {
  background-color: #146333 !important;
}

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

.bg-gray {
  background-color: #33322F !important;
}

.bg-gray-light {
  background-color: #F9FAFB !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.m-12 {
  margin: 3rem !important;
}

.m-16 {
  margin: 4rem !important;
}

.m-20 {
  margin: 5rem !important;
}

.m-24 {
  margin: 6rem !important;
}

.m-32 {
  margin: 8rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mt-24 {
  margin-top: 6rem !important;
}

.mt-32 {
  margin-top: 8rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.mb-24 {
  margin-bottom: 6rem !important;
}

.mb-32 {
  margin-bottom: 8rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.ml-16 {
  margin-left: 4rem !important;
}

.ml-20 {
  margin-left: 5rem !important;
}

.ml-24 {
  margin-left: 6rem !important;
}

.ml-32 {
  margin-left: 8rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.mr-16 {
  margin-right: 4rem !important;
}

.mr-20 {
  margin-right: 5rem !important;
}

.mr-24 {
  margin-right: 6rem !important;
}

.mr-32 {
  margin-right: 8rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.p-12 {
  padding: 3rem !important;
}

.p-16 {
  padding: 4rem !important;
}

.p-20 {
  padding: 5rem !important;
}

.p-24 {
  padding: 6rem !important;
}

.p-32 {
  padding: 8rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pt-24 {
  padding-top: 6rem !important;
}

.pt-32 {
  padding-top: 8rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.pb-24 {
  padding-bottom: 6rem !important;
}

.pb-32 {
  padding-bottom: 8rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.pl-10 {
  padding-left: 2.5rem !important;
}

.pl-12 {
  padding-left: 3rem !important;
}

.pl-16 {
  padding-left: 4rem !important;
}

.pl-20 {
  padding-left: 5rem !important;
}

.pl-24 {
  padding-left: 6rem !important;
}

.pl-32 {
  padding-left: 8rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.pr-10 {
  padding-right: 2.5rem !important;
}

.pr-12 {
  padding-right: 3rem !important;
}

.pr-16 {
  padding-right: 4rem !important;
}

.pr-20 {
  padding-right: 5rem !important;
}

.pr-24 {
  padding-right: 6rem !important;
}

.pr-32 {
  padding-right: 8rem !important;
}

.w-auto {
  width: auto !important;
}

.w-full {
  width: 100% !important;
}

.w-screen {
  width: 100vw !important;
}

.w-min {
  width: min-content !important;
}

.w-max {
  width: max-content !important;
}

.w-fit {
  width: fit-content !important;
}

.h-auto {
  height: auto !important;
}

.h-full {
  height: 100% !important;
}

.h-screen {
  height: 100vh !important;
}

.h-min {
  height: min-content !important;
}

.h-max {
  height: max-content !important;
}

.h-fit {
  height: fit-content !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

.static {
  position: static !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-visible {
  overflow: visible !important;
}

.rounded-none {
  border-radius: 0 !important;
}

.rounded-sm {
  border-radius: 0.25rem !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

.rounded-md {
  border-radius: 0.75rem !important;
}

.rounded-lg {
  border-radius: 1rem !important;
}

.rounded-xl {
  border-radius: 1.5rem !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-10 {
  z-index: 10 !important;
}

.z-20 {
  z-index: 20 !important;
}

.z-30 {
  z-index: 30 !important;
}

.z-40 {
  z-index: 40 !important;
}

.z-50 {
  z-index: 50 !important;
}

@media (max-width: 767px) {
  .md\:d-none {
    display: none !important;
  }
  .md\:d-block {
    display: block !important;
  }
  .md\:d-flex {
    display: flex !important;
  }
  .md\:d-grid {
    display: grid !important;
  }
  .md\:text-left {
    text-align: left !important;
  }
  .md\:text-center {
    text-align: center !important;
  }
  .md\:text-right {
    text-align: right !important;
  }
  .md\:flex-column {
    flex-direction: column !important;
  }
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:justify-start {
    justify-content: flex-start !important;
  }
  .md\:justify-center {
    justify-content: center !important;
  }
  .md\:justify-end {
    justify-content: flex-end !important;
  }
  .md\:justify-between {
    justify-content: space-between !important;
  }
  .md\:items-start {
    align-items: flex-start !important;
  }
  .md\:items-center {
    align-items: center !important;
  }
  .md\:items-end {
    align-items: flex-end !important;
  }
}
@media (min-width: 768px) {
  .md\:d-none {
    display: none !important;
  }
  .md\:d-block {
    display: block !important;
  }
  .md\:d-flex {
    display: flex !important;
  }
  .md\:d-grid {
    display: grid !important;
  }
  .md\:text-left {
    text-align: left !important;
  }
  .md\:text-center {
    text-align: center !important;
  }
  .md\:text-right {
    text-align: right !important;
  }
  .md\:flex-column {
    flex-direction: column !important;
  }
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:justify-start {
    justify-content: flex-start !important;
  }
  .md\:justify-center {
    justify-content: center !important;
  }
  .md\:justify-end {
    justify-content: flex-end !important;
  }
  .md\:justify-between {
    justify-content: space-between !important;
  }
  .md\:items-start {
    align-items: flex-start !important;
  }
  .md\:items-center {
    align-items: center !important;
  }
  .md\:items-end {
    align-items: flex-end !important;
  }
}
.u-text-center {
  text-align: center;
}

.u-mt-lg {
  margin-top: 2rem;
}

.p-point,
.p-intro__text,
.p-intro__gallery-left,
.p-intro__gallery-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.p-point.is-inview,
.p-intro__text.is-inview,
.p-intro__gallery-left.is-inview,
.p-intro__gallery-right.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  img {
    max-width: 100% !important;
  }
}

/*# sourceMappingURL=main.css.map */
