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

html {
  font-size: 62.5%;
}

:root {
  --font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  --header-height: 0px;
}

body {
  background: #d5dfd1;
  color: #475950;
  font-size: var(--font-size);
  font-weight: 400;
  font-family: "M PLUS 1", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0em;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-width: 100%;
  width: 100%;
  padding-top: var(--header-height);
}

ul {
  list-style: none;
}

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

a {
  display: block;
  color: #475950;
  text-decoration: none;
}

h2 {
  color: #888;
  font-weight: 500;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.c-wrapper--800 {
  margin: 0 auto;
  width: min(92%, 800px);
}

.c-wrapper--900 {
  margin: 0 auto;
  width: min(92%, 900px);
}

.c-wrapper--1000 {
  margin: 0 auto;
  width: min(92%, 1000px);
}

.c-wrapper--1200 {
  margin: 0 auto;
  width: min(92%, 1200px);
}

.c-wrapper--1400 {
  margin: 0 auto;
  width: min(92%, 1400px);
}

.c-card {
  padding-top: clamp(5rem, 10vw, 10rem);
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.c-mb {
  margin-bottom: 15rem;
}
@media screen and (max-width: 440px) {
  .c-mb {
    margin-bottom: 10rem;
  }
}

body.is-locked {
  overflow: hidden;
}

.l-navi {
  position: fixed;
  top: 3vh;
  left: 0;
  z-index: 999;
  width: 100%;
}
@media screen and (max-width: 440px) {
  .l-navi {
    top: 0;
  }
}
.l-navi__toggle {
  position: relative;
  z-index: 1001;
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px 16px;
  margin-left: auto;
}
@media screen and (max-width: 440px) {
  .l-navi__toggle {
    display: block;
  }
}
.l-navi__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: #6d7975;
  transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
  transform-origin: center;
}
.l-navi ul {
  position: relative;
  z-index: 1000;
  display: flex;
  font-size: calc(var(--font-size) * 0.8);
}
@media screen and (max-width: 440px) {
  .l-navi ul {
    align-items: stretch;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, max-height 0.35s ease;
  }
}
.l-navi ul li {
  display: block;
  margin: 0;
  padding-right: 3rem;
}
@media screen and (max-width: 440px) {
  .l-navi ul li {
    background: #fff;
    padding-right: 0;
    text-align: center;
    width: 100%;
    opacity: 0;
    transform: translateX(24px);
    transition: transform 0.35s ease, opacity 0.35s ease;
    transition-delay: 0s;
  }
}
.l-navi ul li:nth-of-type(1) {
  padding-left: 5rem;
  text-align: center;
}
@media screen and (max-width: 440px) {
  .l-navi ul li:nth-of-type(1) {
    padding-left: 0;
  }
}
.l-navi ul li a {
  position: relative;
  display: inline-block;
}
.l-navi ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.l-navi ul li a:hover::after {
  transform: scaleX(1);
}
@media screen and (max-width: 440px) {
  .l-navi ul li a {
    display: block;
    color: inherit;
    padding: 2rem 0;
    width: 100%;
  }
  .l-navi ul li a:hover {
    background: #c3d5c7;
    color: #fff;
  }
}
.l-navi ul li i {
  transform: translateY(5px);
}
@media screen and (max-width: 440px) {
  .l-navi ul li i {
    transform: translateY(0);
  }
}
.l-navi__overlay {
  display: none;
}
@media screen and (max-width: 440px) {
  .l-navi__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    display: none;
  }
}
@media screen and (max-width: 440px) {
  .l-navi.is-open .l-navi__toggle span {
    background: #fff;
  }
  .l-navi.is-open .l-navi__toggle span:nth-of-type(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .l-navi.is-open .l-navi__toggle span:nth-of-type(2) {
    opacity: 0;
  }
  .l-navi.is-open .l-navi__toggle span:nth-of-type(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .l-navi.is-open ul {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .l-navi.is-open ul li {
    opacity: 1;
    transform: translateX(0);
  }
  .l-navi.is-open ul li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  .l-navi.is-open ul li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  .l-navi.is-open ul li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  .l-navi.is-open ul li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  .l-navi.is-open ul li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  .l-navi.is-open ul li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  .l-navi.is-open ul li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  .l-navi.is-open ul li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  .l-navi.is-open .l-navi__overlay {
    display: block;
  }
}

.l-slidepic {
  overflow: hidden;
  width: 100%;
  background: #fff;
}
.l-slidepic__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  opacity: 0.7;
  animation: marquee 120s linear infinite;
}
.l-slidepic__track__group {
  display: flex;
}
.l-slidepic img {
  height: 300px;
  width: auto;
  flex: 0 0 auto;
}
@media screen and (max-width: 440px) {
  .l-slidepic img {
    height: 200px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.l-titlebox {
  position: relative;
  margin-bottom: 20rem;
}
@media screen and (max-width: 440px) {
  .l-titlebox {
    margin-bottom: 15rem;
  }
}
.l-titlebox ul {
  position: absolute;
  top: -10rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: min(70%, 400px);
  padding: 5rem 0;
  background: #fff;
  box-shadow: 0 0 0 1px #b0c2a7, 0 0 0 6px #fff;
}
.l-titlebox ul li {
  color: #6d7975;
  letter-spacing: 0.2em;
  text-align: center;
}

.l-history ul li:nth-of-type(2) {
  font-size: calc(var(--font-size) * 0.8);
}
.l-history ul li:nth-of-type(2) dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-history ul li:nth-of-type(2) dl:not(:last-of-type) {
  padding-bottom: 2rem;
}
.l-history ul li:nth-of-type(2) dl dt {
  width: 15%;
}
@media screen and (max-width: 440px) {
  .l-history ul li:nth-of-type(2) dl dt {
    width: 100%;
  }
}
.l-history ul li:nth-of-type(2) dl dd {
  width: 70%;
}
@media screen and (max-width: 440px) {
  .l-history ul li:nth-of-type(2) dl dd {
    width: 100%;
  }
}

.l-skill ul li:nth-of-type(2) {
  font-size: calc(var(--font-size) * 0.8);
}
.l-skill ul li:nth-of-type(2) dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-skill ul li:nth-of-type(2) dl:not(:last-of-type) {
  padding-bottom: 2rem;
}
.l-skill ul li:nth-of-type(2) dl dt {
  width: 15%;
}
@media screen and (max-width: 440px) {
  .l-skill ul li:nth-of-type(2) dl dt {
    width: 100%;
  }
}
.l-skill ul li:nth-of-type(2) dl dd {
  width: 70%;
}
@media screen and (max-width: 440px) {
  .l-skill ul li:nth-of-type(2) dl dd {
    width: 100%;
  }
}

@media screen and (max-width: 440px) {
  .l-package01 ul.caption li:nth-of-type(1) {
    background: none;
  }
}
.l-package01 ul.caption li:nth-of-type(1) img {
  margin: 0 auto clamp(2rem, 2vh, 10rem);
}
.l-package01 ul.caption li:nth-of-type(2), .l-package01 ul.caption li:nth-of-type(3) {
  margin: 0 auto;
  width: min(92%, 1000px);
}
.l-package01 ul.caption li:nth-of-type(2) {
  margin-bottom: 2rem;
}
.l-package01 ul.caption li:nth-of-type(3) {
  margin-bottom: 5rem;
}

.l-package02 {
  background: #fff;
}

.l-lp ul {
  display: flex;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .l-lp ul {
    flex-wrap: wrap;
  }
}
.l-lp ul li:nth-of-type(1) {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .l-lp ul li:nth-of-type(1) {
    width: 100%;
  }
}
.l-lp ul li:nth-of-type(1) img {
  margin: 0 auto;
  width: min(100%, 770px);
}
.l-lp ul li:nth-of-type(2) {
  padding: 2rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .l-lp ul li:nth-of-type(2) {
    width: 100%;
  }
}

.l-site__banner {
  margin-top: clamp(2rem, 4vw, 4rem);
}

.l-movie__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.l-movie__thumb {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.l-movie__thumb img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.l-movie__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.l-movie__modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 99999;
}
.l-movie__modal.is-open {
  display: block;
}
.l-movie__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}
.l-movie__panel {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(960px, 100vw - 32px);
  z-index: 1;
}
.l-movie__stage {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.l-movie__stage video {
  width: 100%;
  height: 100%;
  display: block;
}
.l-movie__close {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  cursor: pointer;
}

.l-footer {
  font-size: calc(var(--font-size) * 0.8);
  text-align: center;
  padding: 0.2em;
  text-align: center;
}

.p-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.p-fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.p-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.p-gallery .thumb {
  width: 100%;
  height: 120px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}
.p-gallery .thumb img {
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.15s ease;
}
.p-gallery .thumb:hover img, .p-gallery .thumb:focus-visible img {
  transform: scale(1.04);
}

/* =========================
   Global Lightbox（body直下の #globalLightbox 用）
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.lightbox.is-open {
  display: block;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.lightbox__panel {
  position: relative;
  width: min(1100px, 100% - 32px);
  height: min(90vh, 800px);
  margin: 5vh auto 0;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 10px;
}
.lightbox__figure {
  margin: 0;
  display: grid;
  justify-items: center;
  align-items: center;
}
.lightbox .js-lb-img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: block;
}
.lightbox .js-lb-video[hidden] {
  display: none !important;
}
.lightbox .js-lb-video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
}
.lightbox__cap {
  margin-top: 1rem;
  font-size: var(--font-size);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}
@media (max-width: 768px) {
  .lightbox__cap {
    margin-top: 0.4rem;
    font-size: calc(var(--font-size) * 0.9);
  }
}

.lightbox__figure .js-lb-video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80vh;
}

/* buttons（これもグローバル） */
.lb-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: calc(var(--font-size) * 2);
  line-height: 1;
  padding: 0;
}
.lb-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lb-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}
.lb-btn span {
  display: block;
  transform: translateY(-5px);
}

button.thumb {
  border: 0;
  padding: 0;
  background: transparent;
  outline: none;
  box-shadow: none;
}

.thumb {
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  border-radius: 12px;
}
.thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
  transform: scale(1);
}
.thumb:hover img, .thumb:focus-visible img {
  transform: scale(1.03);
}

.lb-close {
  position: absolute;
  top: calc(var(--font-size) * -0.4);
  right: calc(var(--font-size) * -0.4);
  width: calc(var(--font-size) * 2.2);
  height: calc(var(--font-size) * 2.2);
  font-size: calc(var(--font-size) * 2);
}

.p-box {
  margin-bottom: 4rem;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .u-mb30 {
    margin-bottom: 15px;
  }
}

.u-mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .u-mb40 {
    margin-bottom: 20px;
  }
}

.u-mb50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .u-mb50 {
    margin-bottom: 25px;
  }
}

.u-mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .u-mb60 {
    margin-bottom: 30px;
  }
}

.u-mb70 {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .u-mb70 {
    margin-bottom: 35px;
  }
}

.u-mb80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .u-mb80 {
    margin-bottom: 40px;
  }
}

.u-mb90 {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .u-mb90 {
    margin-bottom: 45px;
  }
}

.u-mb100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .u-mb100 {
    margin-bottom: 50px;
  }
}

.u-mb110 {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .u-mb110 {
    margin-bottom: 55px;
  }
}

.u-mb120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .u-mb120 {
    margin-bottom: 60px;
  }
}

.u-mb130 {
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .u-mb130 {
    margin-bottom: 65px;
  }
}

.u-mb140 {
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .u-mb140 {
    margin-bottom: 70px;
  }
}

.u-mb150 {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .u-mb150 {
    margin-bottom: 75px;
  }
}

.u-mb160 {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .u-mb160 {
    margin-bottom: 80px;
  }
}

.u-mb170 {
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .u-mb170 {
    margin-bottom: 85px;
  }
}

.u-mb180 {
  margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .u-mb180 {
    margin-bottom: 90px;
  }
}

.u-mb190 {
  margin-bottom: 190px;
}
@media screen and (max-width: 768px) {
  .u-mb190 {
    margin-bottom: 95px;
  }
}

.u-mb200 {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .u-mb200 {
    margin-bottom: 100px;
  }
}

.u-br--pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .u-br--pc {
    display: none;
  }
}
.u-br--xl {
  display: block;
}
@media screen and (max-width: 440px) {
  .u-br--xl {
    display: none;
  }
}
.u-br--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-br--sp {
    display: block;
  }
}
.u-br--sm {
  display: none;
}
@media screen and (max-width: 440px) {
  .u-br--sm {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */