@charset "utf-8";

/**********************************************
        Base
 **********************************************/
:root{
  --main-inner: min(100vw - 8rem - var(--scrollbar-width), 120rem);
  --side-margin: calc( (100vw - var(--scrollbar-width) - var(--main-inner)) / 2 );
  --color-orange: #F37639;
  --color-blue: #508FCC;
  --color-black: #000;
  --color-white: #fff;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --scrollbar-width: 17px;
}
html{
  font-size: 62.5%;
  scroll-snap-type: y proximity;
	scroll-padding-top: 100px;
  scroll-behavior: smooth;
}
body{
  min-width: 108rem;
  color: var(--color-black);
  font-size: 1.6em;
  line-height: 1.5;
  font-family: "Noto Sans JP", 'ヒラギノ角ゴシック','Hiragino Sans', sans-serif;
  font-weight: var(--font-weight-regular);
}
a{
  color: inherit;
  text-decoration: none;
}
ul{
  margin: 0;
  padding: 0;
}
img{
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  :root{
    --scrollbar-width: 0px;
    --main-inner: calc(100vw - var(--scrollbar-width) - 2.2rem);
    --inner-padding: 0.8rem;
  }
  body{
    min-width: 0;
  }
}

/**********************************************
        Layout
 **********************************************/
.l-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100% - 4rem);
  padding: 1.1rem;
  position: fixed;
  top: 1rem;
  left: 2rem;
  z-index: 5000;
  background-color: var(--color-white);
  border-radius: 10rem;
}
.l-header__logo{
  flex-shrink: 0;
  width: 22.3rem;
  margin-left: 3rem;
}
.l-header__nav-trigger{
  display: none;
  text-indent: 100vw;
  white-space: nowrap;
  overflow: hidden;
}
.l-header__nav-trigger > span{
  display: inline-block;
  width: 100%;
}
.l-header__nav-list{
  display: flex;
  align-items: center;
  gap: min(2.5vw, 4rem);
  height: 5.8rem;
  list-style-type: none;
}
.l-header__nav-item a{
  font-size: 1.7rem;
  font-weight: var(--font-weight-medium);
}
.l-header__nav-item--normal a{
  color: inherit;
}
.l-header__nav-item--membership{
  height: 100%;
}
.l-header__nav-item--membership a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 3rem;
  color: var(--color-white);
  background-color: var(--color-orange);
  border-radius: 5rem;
}

.l-footer{
  padding: 10rem var(--side-margin) 11.7rem;
  position: relative;
  background-color:var(--color-black);
  color: var(--color-white);
}
.l-footer__logo{
  width: 22.3rem;
  margin-bottom: 5.5rem;
}
.l-footer__inner{
  display: flex;
  position: relative;
}
.l-footer__address{
  flex-basis: 35.416%;
  padding-right: 4.6rem;
}
.l-footer__address > p + p{
  margin-top: 0.5rem;
}
.l-footer__address-detail{
  line-height: 1.75;
}
.l-footer__about{
  flex-basis: 64.584%;
  display: grid;
  grid-template-columns: [term] max-content [description] 1fr;
  gap: 1rem 2.5rem;
  padding: 0 5.5rem;
  font-size: 1.5rem;
  
  border-left: 1px solid currentColor;
}
.l-footer__about-term{
  grid-column: term;
  text-align: center;
  font-weight: var(--font-weight-regular);
}
.l-footer__about-description{
  grid-column: description;
}

.l-footer__pagetop{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
  
}
.l-footer__pagetop > span{
  display: block;
  width: 0;
  white-space: nowrap;
  text-indent: 100vw;
}
.l-footer__pagetop::before{
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  position: relative;
  top: 0.2rem;
  background: url(../images/arrow-w.png) no-repeat center / contain;
}

.l-footer__copyright{
  position: absolute;
  right: min(1vw * 1.2, 2rem);
  bottom: 2rem;
  z-index: 5;
  font-size: 1.2rem;
  writing-mode: vertical-rl;
}
.l-footer__copyright > span:first-of-type{
  display: inline-block;
  rotate: 90deg;
}
@media screen and (max-width: 768px) {
  .l-header{
    width: var(--main-inner);
    padding: 1rem;
    top: 2rem;
    left: var(--side-margin);
  }
  .l-header__logo{
    width: 14.1rem;
    margin-left: 1.4rem;
    position: relative;
    z-index: 2500;
  }
  .l-header__nav-trigger{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 4.1rem;
    position: relative;
    z-index: 3000;
    background-color: var(--color-blue);
    border-radius: 10rem;
  }
  .l-header__nav-trigger::before,
  .l-header__nav-trigger::after,
  .l-header__nav-trigger > span::before{
    content: "";
    display: block;
    width: 2.2rem;
    height: 2px;
    position: absolute;
    left: 2.4rem;
    background-color: var(--color-white);
    border-radius: 1rem;
  }
  .l-header__nav-trigger::before{
    top: 1.3rem;
  }
  .l-header__nav-trigger > span::before{
    top: calc(50% - 0.1rem);
    opacity: 1;
  }
  .l-header__nav-trigger::after{
    top: calc(100% - 1.5rem);
  }
  .menu-open .l-header__nav-trigger::before{
    width: 2.4rem;
    top: calc(50% - 0.1rem);
    rotate: 30.963deg;
  }
  .menu-open .l-header__nav-trigger::after{
    width: 2.4rem;
    top: calc(50% - 0.1rem);
    rotate: -30.963deg;
  }
  .menu-open .l-header__nav-trigger > span::before{
    opacity: 0;
  }
  .l-header__nav{
    width: var(--main-inner);
    height: calc(100dvh - 4rem);
    padding-top: 13.1rem;
    position: fixed;
    top: 2rem;
    left: var(--side-margin);
    z-index: 1500;
    background-color: var(--color-white);
    border-radius: 3.2rem;
  }
  body:not(.menu-open) .l-header__nav{
    display: none;
  }
  .l-header__nav-list{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3.5rem;
    height: auto;
  }
  .menu-open .l-header::before{
    content: "";
    display: block;
    width: calc(100% + var(--scrollbar-width) + 4rem);
    height: 100lvh;
    position: absolute;
    top: -2rem;
    left: -2rem;
    z-index: -5;
    background-color: rgb(0 0 0 / 0.3);
  }
  .l-header__nav-item a{
    font-size: 1.8rem;
  }
  .l-header__nav-item--membership{
    margin-top: 1rem;
  }
  .l-header__nav-item--membership a{
    height: 5.8rem;
  }

  .l-footer{
    padding: 8rem calc(var(--side-margin) + var(--inner-padding)) 3rem;
  }
  .l-footer__inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .l-footer__logo{
    margin-bottom: 3.5rem;
  }
  .l-footer__address{
    flex-basis: auto;
    padding-right: 0;
    font-size: 1.5rem;
  }
  .l-footer__address > p + p{
    margin-top: 1rem;
  }
  .l-footer__about{
    flex-basis: auto;
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    padding-right: 0;
    padding-left: 0;
    font-size: 1.5rem;
    border-top: 1px solid var(--color-white);
    border-left: none;
  }
  .l-footer__about-term{
    grid-column: 1;
    margin-top: 1.5rem;
    text-align: left;
  }
  .l-footer__about-description{
    grid-column: 1;
    padding-left: 1rem;
  }
  .l-footer__pagetop{
    margin: 7rem auto 0;
    position: relative;
    right: auto;
    bottom: auto;
  }
  .l-footer__copyright{
    margin-top: 3rem;
    position: relative;
    right: auto;
    bottom: auto;
    text-align: center;
    writing-mode: horizontal-tb;
  }
  .l-footer__copyright > span:first-of-type{
    rotate: 0deg;
  }
}

/**********************************************
        Page
 **********************************************/
/* Mainvisual */
.p-top-mv{
  --section-height: max(108rem, 191.735svh);
  display: grid;
  grid-template-rows: 2.374fr 1fr;
  align-items: flex-end;
  height: var(--section-height);
  position: relative;
}
.p-top-mv > hgroup{
  height: 100%;
  padding-bottom: 7.4rem;
  position: relative;
}
.p-top-mv__copy{
  justify-self: center;
  align-self: flex-start;
  position: sticky;
  top: 22.933svh;
  left: 0;
  z-index: 10;
  width: 100%;
  font-size: 8rem;
  color: var(--color-white);
  text-align: center;
  font-weight: 700;
}
.p-top-mv__text{
  align-self: flex-end;
  height: 100%;
  padding-bottom: 13.533svh;
  position: relative;
  z-index: 5;
  font-size: 2rem;
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
  text-align: center;
  line-height: 2.2;
}
.p-top-mv__text::before{
  content: "";
  display: block;
  width: 100%;
  height: var(--section-height);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -5;
  background-image: linear-gradient(to bottom, rgb(0 0 0 / 0)0%, rgb(0 0 0 / 0.251) 50%, rgb(0 0 0 / 0.8));
}
.p-top-mv__text > p + p:not([class]){
  margin-top: 2em;
}
.p-top-mv__text-strong{
  margin: 3em 0;
  font-size: 2.8rem;
  line-height: 1.571;
  font-weight: var(--font-weight-bold);
}
.p-top-mv__bg{
  width: 100%;
  height: 100lvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -5;
  background: transparent url(../images/mv.webp) no-repeat center / cover;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .p-top-mv{
    --section-height: max(108rem, 200lvh);
    grid-template-rows: 1fr max-content;
  }
  .p-top-mv > hgroup{
    padding-bottom: 4rem;
    
  }
  .p-top-mv__copy{
    top: 24svh;
    font-size: min(13.866vw, 5.2rem);
  }
  .p-top-mv__text{
    padding-right: var(--side-margin);
    padding-bottom: 7.5rem;
    padding-left: var(--side-margin);
    font-size: min(3.8vw + 0.1rem, 1.6rem);
  }
  .p-top-mv__text-strong{
    margin-top: 4rem;
    margin-bottom: 4rem;
    font-size: calc(1em + 0.4rem);
  }
  .p-top-mv__text::before{
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 0)0%, rgb(0 0 0 / 0.251) 32.1%, rgb(0 0 0 / 0.8));
  }
  .p-top-mv__bg{
    height: 100lvh;
  }
}

/* Toppage common */
.p-top-section{
  background-color: var(--color-white);
  overflow: hidden;
}
.p-top__link{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
  width: 24.5rem;
  height: 7.5rem;
  font-size: 1.7rem;
  font-weight: var(--font-weight-medium);
  border-radius: 10rem;
  border: 2px solid currentColor;
}
.p-top__link::before{
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-top__link{
    column-gap: 1rem;
    width: 21.8rem;
    height: 5rem;
    font-size: 1.4rem;
  }
  .p-top__link::before{
    width: 1.1rem;
    height: 1.1rem;
  }
}

/* Service */
.p-top-service{
  --contents-column-gap: min(6vw, 10rem);
  --heading-inner-padding: 1.5rem;
  padding: 16rem 0 6rem;
}
.p-top__heading--service{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: var(--main-inner);
  margin-bottom: 5.9rem;
  margin-left: var(--side-margin);
}
.p-top__heading--service > span:first-of-type{
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
}
.p-top__heading--service > span:nth-of-type(2){
  width: 14.9rem;
}
.p-top-service__inner{
  display: grid;
  grid-template-rows: auto 1fr;
}
.p-top-service__inner + .p-top-service__inner{
  margin-top: 10rem;
}
.p-top-service__inner--odd{
  grid-template-columns: var(--side-margin) 1.4fr 1fr var(--side-margin);
  grid-template-areas:
    ". heading img img"
    ". body img img";
}
.p-top-service__inner--even{
  grid-template-columns: var(--side-margin) 1fr 1.4fr var(--side-margin);
  grid-template-areas:
    "img img heading ."
    "img img body .";
}
.p-top-service__heading{
  grid-area: heading;
  margin-top: 3.8rem;
  margin-bottom: 1.8rem;
  padding-top: 2.8rem;
  padding-bottom: 1.9rem;
  padding-left: var(--heading-inner-padding);
  position: relative;
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
}
.p-top-service__heading > span:not([class]){
  position: relative;
}
.p-top-service__heading-number{
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.p-top-service__heading-number > img{
  width: auto;
  height: 100%;
}
.p-top-service__inner--even > .p-top-service__heading{
  margin-left: var(--contents-column-gap);
}
.p-top-service__image{
  grid-area: img;
}
.p-top-service__image > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-service__image--1 > img{
  object-position: left;
}
.p-top-service__body{
  grid-area: body;
  padding-left: var(--heading-inner-padding);
  font-size: 1.7rem;
  line-height: 2.235;
}
.p-top-service__inner--odd > .p-top-service__body{
  padding-right: var(--contents-column-gap);
}
.p-top-service__inner--even > .p-top-service__body{
  padding-left: calc(var(--contents-column-gap) + var(--heading-inner-padding));
}
@media screen and (max-width: 768px) {
  .p-top-service{
    --contents-column-gap: 0;
    --heading-inner-padding: 1.8rem;
    padding-top: 12.1rem;
    padding-bottom: 4rem;
  }
  .p-top__heading--service{
    margin-bottom: 3rem;
    margin-left: calc(var(--side-margin) + var(--inner-padding));
  }
  .p-top__heading--service > span:first-of-type{
    font-size: 1.7rem;
  }
  .p-top__heading--service > span:nth-of-type(2){
    width: 11.9rem;
  }
  .p-top-service__inner{
    column-gap: 0;
    grid-template-columns: var(--side-margin) 1fr var(--side-margin);
    grid-template-areas: 
      ". heading ."
      ". body ."
      "img img img";
  }
  .p-top-service__inner + .p-top-service__inner{
    margin-top: 3rem;
  }

  .p-top-service__heading,
  .p-top-service__inner--even > .p-top-service__heading{
    min-height: 7.8rem;
    margin-top: 0;
    margin-left: var(--inner-padding);
    padding-bottom: 0;
    font-size: 2.6rem;
    line-height: 1.23;
  }
  .p-top-service__heading--1 > .p-top-service__heading-number,
  .p-top-service__heading--2 > .p-top-service__heading-number{
    height: 8.1rem;
  }
  .p-top-service__body,
  .p-top-service__inner--even > .p-top-service__body{
    padding-right: var(--inner-padding);
    padding-bottom: 2.6rem;
    padding-left: var(--inner-padding);
    font-size: 1.6rem;
    line-height: 2.125;
  }
}

/* Works */
.p-top-works{
  padding: 10rem 0;
}
.p-top-works__gallery-area{
  width: 100%;
}
.p-top-works__gallery{
  --this-gap: 2rem;
  display: grid;
  grid-template-columns: repeat(8, 48.6rem);
  align-items: stretch;
  column-gap: var(--this-gap);
  width: max-content;
  padding-left: var(--this-gap);
  will-change: translate;
  backface-visibility: hidden;
}
.p-top-works__gallery.slider-initialized{
  animation: gallerySlider linear 25s 0s infinite forwards;
}
.p-top-works__gallery-item{
  transform: translate3d(0, 0, 0);
}
@keyframes gallerySlider {
  0%{
    translate: 0 0;
  }
  100%{
    translate: -50% 0;
  }
}
.p-top-works__more-text{
  margin-top: 8.9rem;
  font-size: 1.7rem;
  text-align: center;
}
.p-top-works__link{
  margin: 4rem auto 0;
  color: #0866FF;
}
.p-top-works__link::before{
  background-image: url(../images/arrow-bl.png);
}
@media screen and (max-width: 768px) {
  .p-top-works{
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
  .p-top-works__gallery{
    --this-gap: 0.5rem;
    grid-template-columns: repeat(8, max(14rem, 37.333vw));
  }
  .p-top-works__more-text{
    width: var(--main-inner);
    margin: 4rem auto 0;
    padding: 0 var(--inner-padding);
    font-size: 1.6rem;
    line-height: 1.875;
  }
  .p-top-works__link{
    margin-top: 2rem;
  }
}

/* Contact */
.p-top-contact{
  padding-top: 12rem;
  padding-bottom: 10rem;
  background-color: #F8F8F8;
}
.p-top-contact__text{
  width: var(--main-inner);
  margin: 0 auto;
  font-size: 3.2rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}
.p-top-contact__text p + p{
  margin-top: 5.4rem;
}
.p-top-contact__banner{
  width: var(--main-inner);
  margin: 2.5rem auto 0;
  border-radius: 3.8rem;
  overflow: hidden;
  background: url(../images/contact-img.jpg) no-repeat center / cover;
}
.p-top-contact__link{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12rem 0 12rem 11rem;
  position: relative;
  color: var(--color-white);
}
.p-top-contact__link::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(0 0 0 / 0.55);
}
.p-top-contact__link > span{
  position: relative;
}
.p-top-contact__link > span:first-of-type{
  font-size: 2.6rem;
  font-weight: var(--font-weight-medium);
}
.p-top-contact__link > span:nth-of-type(2){
  margin-top: -0.2em;
  font-size: 7.2rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 768px) {
  .p-top-contact{
    padding-top: 5rem;
    padding-bottom: 5.5rem;
  }
  .p-top-contact__text{
    padding: 0 var(--inner-padding);
    font-size: 2.2rem;
    line-height: 1.636;
  }
  .p-top-contact__text p + p{
    margin-top: 4.6rem;
  }
  .p-top-contact__link{
    padding: 13.597% 2.8rem 13.314%;
  }
  .p-top-contact__banner{
    margin-top: 1.9rem;
    background-image: url(../images/contact-img_sp.jpg);
    background-position: right center;
  }
  .p-top-contact__link > span:first-of-type{
    font-size: 1.4rem;
  }
  .p-top-contact__link > span:nth-of-type(2){
    top: 0;
    font-size: 4.2rem;
  }
}

/* Membership Club */
.p-top-club{
  --this-contents-gap: min(6vw, 10rem);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "img heading"
    "img body";
  padding: 19.4rem var(--side-margin) 23rem;
}
.p-top-club__image{
  grid-area: img;
  margin-top: 2.5rem;
}
.p-top__heading--club{
  grid-area: heading;
  margin-bottom: 4.2rem;
  padding-left: var(--this-contents-gap);
}
.p-top__heading--club > span:first-of-type{
  display: block;
  width: 20rem;
}
.p-top__heading--club > span:nth-of-type(2){
  font-size: 3.6rem;
  font-weight: var(--font-weight-bold);
}
.p-top__heading--club > span:nth-of-type(2) > span{
  display: inline-block;
}
.p-top-club__body{
  grid-area: body;
  padding-left: var(--this-contents-gap);
}
.p-top-club__body > p:not([class]){
  font-size: 1.7rem;
  line-height: 2.176;
}
.p-top-club__body > p + p{
  margin-top: 4rem;
}
.p-top-club__link{
  margin-top: 6rem;
}
.p-top-club__link::before{
  background-image: url(../images/arrow-or.png);
}
@media screen and (max-width: 768px) {
  .p-top-club{
    --this-contents-gap: 0;
    grid-template-columns: 1fr;
    grid-template-areas: 
      "heading"
      "img"
      "body";
    padding: 3.9rem calc(var(--side-margin) + var(--inner-padding)) 5.5rem;
  }
  .p-top__heading--club{
    margin-bottom: 3rem;
  }
  .p-top__heading--club > span:first-of-type{
    width: 16rem;
  }
  .p-top__heading--club > span:nth-of-type(2){
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 2.8rem;
    line-height: 1.357;
  }
  .p-top-club__image{
    width: min(100% - 3rem, 42rem);
    margin: 0 auto;
  }
  .p-top-club__body{
    margin-top: 4rem;
  }
  .p-top-club__body > p:not([class]){
    font-size: 1.6rem;
  }
  .p-top-club__body > p + p{
    margin-top: 2.6rem;
  }
  .p-top-club__link{
    margin: 3.6rem auto 0;
  }
}

/**********************************************
    Utility
 **********************************************/
.u-color-orange{
  color: var(--color-orange);
}
.u-color-blue{
  color: var(--color-blue);
}
.u-visible-sp{
  display: none;
}
@media screen and (max-width: 768px) {
  .u-visible-sp{
    display: block;
  }
}