/* 基本設定 */
:root{
  --main-color:rgb(251, 177, 66);
  --accent-color:rgb(0, 145, 255);
  --white:rgb(255, 255, 255);
  --gray:rgb(151, 151, 151);


  --subnav-color:rgba(245, 236, 214, 0.8);
  --subnav-border:rgba(255, 255, 255, 0.8);

  --sidenav-main:rgba(251, 177, 66, .5);

  --faq-box:rgb(204, 204, 204);
  --faq-text:rgb(255, 0, 0);

  --contact-input-field:rgb(255, 225, 181);

  --right-menu-main:rgba(0, 145, 255, 0.5);
  --right-menu-text:rgb(13, 35, 91);
  --right-menu-gray:rgb(151, 151, 151, 0.6);

  --bigtext:rgb(0, 0, 0);
  --stdtext:rgb(51, 51, 51);
  --subtext:rgb(102, 102, 102);
}



html{
  font-size: 10px;
  color: var(--stdtext);
  /* pc: 16px-18px
  タブレット: 15-17px
  スマホ: 14-16px */
}

html, body{
  overflow-x: hidden;
  /* font */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  /* end-font */
}

/* h1を70pxとする */
h1{
  font-size: 7rem;
}
/* h2を70pxとする */
h2{
  font-size: 2rem;
}
/* 以下は16pxとする */
p, ul, ol, span, label, input, textarea, summary, div{
  font-size: 1.6rem;
}
/* 中黒の非表示 */
ul, ol {
  list-style: none;
}
/* 下線の有無 */
a{
  text-decoration: none;
  color: inherit;
}
/* //基本設定 */


/* スクロールフェード */
section{
  opacity: 0;
}

section.fadeIn{
  opacity: 1;
  transition: all 1.5s;
}
/* //スクロールフェード */



/* ヘッダー位置を指定 */
/* メインビジュアル内の六角形の背景画像の基点 */
#header{
  position: absolute;
  top: 0;
  overflow: hidden;

  width: 100%;
  height: 650px;
}

/* メインビジュアル内の六角形の背景画像の擬似クラス */
#header::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background-image: url("../images/bgi-haikei.png"), url("../images/bgi-haikei.png"), url("../images/bgi-haikei.png");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: -3% 80%, 99% 20%, 115% 105%;
  background-size: 150px 150px, 100px 100px, 300px 300px;
}


/* PC用ヘッダー配置 */
#header-pc{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  width: 100%;
}

/* ロゴ（h1タグ） */
#logo-container{
  margin: 0;
}

/* ロゴ（aタグ） */
.logo-container__link{
  display: block;
}

/* ロゴ（imgタグ） */
.logo-container__link > img{
  width: 150px;
  margin:20px;

  border: solid 15px var(--white);
}


#nav{
  margin-top: 35px;
  margin-right: 9%;
}

/* PC用ナビの配置 */
#nav > ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* PC用ナビ（aタグ） */
.nav__item > a{
  position: relative;

  display: block;
  padding: 7px 25px;

  transition: all .6s;
}

/* ナビ（aタグの擬似クラス） */
.nav__item > a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;

  width: 0;
  height: 1px;
  background: var(--main-color);

  opacity: 0;
}

/* ナビ（aタグの擬似クラス） */
.nav__item.current > a::after,
.nav__item > a:hover::after {
  width: 100%;

  opacity: 1;
  animation: bgappear 0.5s forwards;
}

@keyframes bgappear{
0% {
  width: 0%;
  height: 1px;
}
50% {
  width: 100%;
  height: 1px;
}
100% {
  width: 100%;
  height: 100%;
  background: var(--main-color);
}
}

/* ナビ項目「ホーム」、その他の項目はホバーしたら
テキスト色を白にする */
.nav__item.current > a,
.nav__item > a:hover{
  color: var(--white);
  z-index: 1;
}



/* ナビ（spanタグ） */
.en,
.ja,
.fa-chevron-down{
  display: block;
  text-align: center;
  margin-top: 10px;
}
.en,
.en--toggle{
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.7rem;
}
.ja,
.ja--toggle{
  font-size: 1.3rem;
  font-weight: 350;
}

/* PC用ナビ１段目のnav-inner-toggle内aタグの疑似クラス */
/* ダミーの空白範囲を設ける */
.nav__item.nav--toggle > a::before{
  content: '';
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 1;

  width: 100%;
  height: 10px;

  background: transparent;
}

/* PC用ナビ２段目（ulタグ） */
/* PC用ナビ２段目（ulタグ）を非表示にする */
.sub-nuv{
  position: absolute;
  top: 127px;
  z-index: 1;

  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
}

/* PC用ナビ１段目のnav-inner-toggleをホバーした時の
PC用ナビ２段目（ulタグ）の処理 */
/* PC用ナビ２段目（ulタグ）を表示する */
.nav__item.nav--toggle:hover > .sub-nuv{
  opacity: 1;
  visibility: visible;
}

/* PC用ナビ２段目（liタグ） */
.sub-nav__item{
  background-color: var(--subnav-color);
  border-bottom: solid 1.5px var(--subnav-border);
}

/* PC用ナビ２段目（liタグ） */
.sub-nav__item:last-child{
  border-bottom-style: none;
}

/* PC用ナビ２段目（aタグ） */
.sub-nav__item > a{
  display: block;

  padding: 15px 25px;

  color: var(--stdtext);
  background-color: var(#f5ecd7d6);
  
  transition: all 0.5s ease;
}

/* PC用ナビ２段目（aタグ）をホバーした時の処理 */
.sub-nav__item > a:hover{
  color: var(--white);
  background-color: var(--right-menu-gray);
}

/* //PC用ヘッダー */


/* メインビジュアル */
/* 画像、キャッチコピーの基点 */
#main-visual{
  position: relative;

  width: 90%;
  height: 650px;
  margin-top: 125px;
  margin-left: auto;
  margin-right: auto;
}

/* メインビジュアル画像 */
#mv{ 
  position: absolute;
  top: 0px;
  z-index: -1;
  
  width: 100%;
  height: 100%!important;
}

/* キャッチコピーのコンテナ */
#catchcopy{
  position: absolute;
  top: 25%;

  width: 90%;
  height: 100%;
  margin-left: 10%;
}

/* メインビジュアルのキャッチコピー(英語) */
.catchcopy-eng{
  display: inline-block;

  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 5vw;
  color: var(--white);
  mix-blend-mode: difference;

  line-height: 1.3;
}

/* メインビジュアルのキャッチコピー（日本語） */
.catchcopy-jp{
  margin-top: 20px;

  font-size: 2.5vw;
  color: var(--white);

  mix-blend-mode: difference;
}
/* //メインビジュアル */



/* section共通設定 */
/* タイトル等の基本設定 */
.article-wrapper{
  margin-top: 100px;
  margin-bottom: 250px;
}

.article-title{
  margin-bottom: 70px;
}

.title-eng{
  font-family: "Anton", sans-serif;
  font-weight: 200;
  font-style: normal;
  text-align: center;
}

.title-jp{
  font-size: 2rem;
  text-align: center;
  margin-top: 10px;
}
/* //section共通設定 */



/* Infomation */
#info-container{
  width: 70%;
  margin-left: 30%;
}

.sub-info-container{
  display: flex;
  flex-direction: wrap;
  align-items: center;

  margin-bottom: 30px;
}
.sub-info-container p{
  display: inline-block;
}

.info__upper p:last-child{
  padding: 5px 5px;
  border: 1px solid var(--gray);
  margin-left: 20px;
  margin-right: 20px;
}



/* //Infomation */


/* Join */
#join-outer{
  position: relative;
}

#join-outer::after{
  content:"";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    rgba(255, 255, 255, 0.7), 
    rgba(255, 255, 255, 0.5)),
    url("../images/join_fitness.jpg");
  background-repeat: no-repeat;
  background-size: 140%;
  background-position: -50px center;
}

#join-step{
  padding-top: 30px;
  padding-bottom: 30px;

  text-align: center;
}

.join-step-child > img{
  width: 100px;
}

.join-step-child > h2{
  margin-top: 10px;
  margin-bottom: 10px;
}

.join-step-child > h2 span{
  padding-right: 5px;

  font-size: 2.8rem;
}

.join-step-child__arrow{
  display: inline-block;

  width: 30px;
  margin-top: 10px;
  margin-bottom: 20px;
}
/* end-Join */


/* banner */
#banner{
  margin-top: 50px;

  text-align: center;
}

#banner > h2:nth-of-type(1){
  position: relative;

  padding-top: 20px;

  font-size: 4rem;
}

#banner > h2:nth-of-type(1)::before{
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);

  width: 65px;
  height: 40px;
  background-image: url("../images/crown.png");
  background-repeat: no-repeat;
  background-size: contain;
}

#banner > h2:nth-of-type(2){
  margin-top: 10px;
  margin-bottom: 20px;

  font-size: 2rem;
}

#slider img{
  width: 100%;
  height: auto;
}

.slider_sub > p{
  color: var(--gray);
}

/* slickでスライダー */
/* スライド左右の余白調整 */
#slider .slick-slide{
  margin:0 50px;
}
/* //banner */


/* price */
#price-img{
  display: flex;
  justify-content: center;
}

.price-img-sub{
  width: 20%;
  margin-left: 30px;
  margin-right: 30px;
}
/* //price */


/* facilities */
#facilities{
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.facilities-sub-sub{
  display: flex;
  justify-content: center;

  margin-bottom: 120px;
}

.facilities-img {
  width: 350px;

  transition: transform 0.4s ease-in-out;
}

.facilities-img:hover {
  transform: scale(1.1);
}

.facilities-text {
  margin-left: 30px;
}

.facilities-text > h2 {
  position: relative;

  margin-bottom: 20px;
  padding: 0 0 10px 35px;
  border-bottom: 1px solid var(--main-color);

  font-weight: 500;
}

/* ひし形 */
.facilities-text > h2:before,
.facilities-text > h2:after {
  content: '';
  position: absolute;
  top: 5%;

  width: 17px;
  height: 17px;
  transform: rotate(45deg);
}

/* 左のひし形 */
.facilities-text > h2:before {
  left: 3px;

  border: 2px solid var(--main-color);
}

/* 右のひし形 */
.facilities-text > h2:after {
  left: 10px;

  background: var(--main-color);
  opacity: 0.5;
}

.facilities-text > p{
  line-height: 1.4;
}
/* //facilities */



/* FAQ */
/* アコーディオン全体 */
.accordion-area{
  width: 96%;
  max-width: 900px;
  margin:0 auto;

  list-style: none;
}

.accordion-area li{
  margin: 10px 0;
}

.accordion-area section {
  border: 1px solid var(--faq-box);
}

/*アコーディオンタイトル*/
.title {
  /* [+記号]の位置基準とするためrelative指定 */
  position: relative;
  
  padding: 3% 3% 3% 50px;
  font-weight: normal;
  cursor: pointer;
  
  transition: all .5s ease;
}

/* アイコンの[＋記号]と[×記号] */
.title::before,
.title::after{
  position: absolute;
  content:'';

  width: 15px;
  height: 2px;

  background-color: var(--gray);
}

.title::before{
  top:48%;
  left: 15px;

  transform: rotate(0deg);
}

.title::after{    
  top:48%;
  left: 15px;

  transform: rotate(90deg);
}

/*　jsでcloseクラスを付与した時の処理　*/
.title.close::before{
  transform: rotate(45deg);
}

/*　jsでcloseクラスを付与した時の処理　*/
.title.close::after{
  transform: rotate(-45deg);
}

/* アコーディオンカーテンで現れるエリア */
.box {
  display: none;

  margin:0 3% 3% 3%;
  padding: 3%;

  background: var(--subnav-color);
}
/* //FAQ */


/* //問い合わせフォーム */
/* フォーム全体 */
#contact-wrapper{
  width: 70%;
  margin-left: 350px;
}

/* 個々のフォーム */
.sub-contact{
  display: flex;
  flex-wrap: wrap;

  margin-bottom: 30px;
}

/* 見出し */
.heading{
  width: 200px;
}

/* 見出し（labelタグ） */
.heading__label{
  margin-right: 20px;
}

/* 見出し（spanタグ） */
.heading__span{
  margin-left: 10px;
  font-size: 1.4rem;
  color: #DE2F41;
}

/* 入力欄（inputタグ） */
/* inputタグが対象だが、ラジオボタンは除く */
.input-form__textbox{
  width: 350px;
  height: 35px;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
}

/* 入力欄（textareaタグ） */
.input-form__textarea{
  width: 500px;
  height: 250px;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
}

/* プライバシーポリシー */
#privacyPolicy{
  width: 700px;
  line-height: 1.3;

  overflow-wrap: break-word
}

/* プライバシーポリシー（pタグ） */
#privacyPolicy > p{
  margin-top: 10px;
}

/* プライバシーポリシー（olタグ） */
#privacyPolicy > ol{
  margin-top: 10px;
  margin-left: 30px;
  list-style: decimal;
}

/* 個人情報の取り扱い同意 */
#agreePrivacy{
  margin-top: 10px;
}

/* 送信ボタン */
#submit{
  position: relative;

  display: block;

  width: 100px;
  height: 40px;
  padding: 8px 20px;
  margin-top: 30px;
  border-radius: 5px;;
  border: none;

  background-image: linear-gradient( 86.9deg,  rgba(253,189,38,1) 60%, rgba(253,109,38,1) 150% );
  box-shadow: 0px 4px 0px #7D6A51;
  color: var(--stdtext);

  transition: all .5s;

  text-decoration: none;
  outline: none;
  overflow: hidden;

  top: 0;
}

/* 送信ボタン（疑似クラスで光る線を演出） */
#submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;

  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255 ,0) 0%, rgba(255,255,255,.3) 100%);
  
  transform: skewX(-25deg);
}

/* 送信ボタン（ホバーした時の疑似クラスのアニメーション） */
#submit:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
#submit:hover {
  background-image: linear-gradient( 86.9deg,  rgba(253,189,38,1) 60%, rgba(253,109,38,1) 150% );
  box-shadow: 0px 2px 0px #7D6A51;
  transition: all .5s;
  top: 2px;
}
/* ////問い合わせフォーム */




/* 企業名、アドレス、マップ */
#contact-info{
  display: flex;
  justify-content: left;
  
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

#contact-info-sub{
  margin-right: 30px;
}

#contact-info-sub > p {
  margin-bottom: 8px;
}

#contact-info-sub > p:nth-of-type(1){
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--main-color);
  
  font-size: 2rem;
  font-weight: 600;
}
/* //企業名、アドレス、マップ */
    

  
/* footer-------------------------- */
#footer{
  position: relative;

  width: 100%;
  padding-top: 120px;

  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),url("../images/footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  -webkit-clip-path: ellipse(120% 100% at 50% 100%);
  clip-path: ellipse(120% 100% at 50% 100%);
}

#sub-footer{
  display: flex;
  justify-content: center;
}

/* ロゴとsnsアイコンの親要素 */
#sub-footer__left{
  text-align: center;
  margin-right: 8%;
}

/* ロゴ */
#footer-logo img{
  width: 150px;
}

/* アイコン */
#footer-sns{
  display: flex;
  justify-content: center;

  margin-top:15px;
}

/* アイコン（aタグ） */
.footer-sns__link{
  margin-left: 15px;
  margin-right: 15px;

  font-size: 27px;

  transition: all .3s ease;
}

/* アイコン（aタグ）ホバー時の処理 */
.footer-sns__link:hover{
  color: var(--main-color);

  transform: scale(1.3);
}


/* ナビ（ulタグ） */
#footer-nav > ul{
  margin-left: 8%;
}

/* ナビ（liタグ） */
#footer-nav li{
  position: relative;

  border-top: solid 1px var(--gray);
}

/* ナビ（liタグ）_疑似クラスで記号を設ける */
#footer-nav li::before{
  content: '';
  position: absolute;

  width: 6px;
  height: 6px;
  border-top: 2px solid;
  border-right: 2px solid;

  transform: rotate(45deg);
}

/* ナビ１段目（liタグ）_疑似クラスで記号の配置を設定 */
.footer-nav__item::before {
  top: 15px;
  left: 12px;
}

/* ナビ２段目（liタグ）_疑似クラスで記号の配置を設定 */
.footer-sub-nav__item::before {
  top: 15px;
  left: 32px;
}

/* ナビ１段目（liタグ）_ラストのliにボーダーを設ける */
.footer-nav__item:last-child{
  border-bottom: solid 1px var(--gray);
}


/* ナビ（aタグ） */
#footer-nav a{
  display: block;

  white-space: nowrap;
  transition: transform .3s ease;
}

/* ナビ（aタグ） ホバー時の処理 */
#footer-nav a:hover {
  transform: translateX(5px);
}

/* ナビ１段目（aタグ） */
.footer-nav__item > a{
  padding: 10px 30px;
}

/* ナビ２段目（aタグ） */
.footer-sub-nav__item > a{
  padding: 10px 50px;
}


/* ナビ（spanタグ） */
#footer-nav span{
  display: inline;
}


/* コピーライト */
.copyright{
  padding-top: 40px;
  padding-bottom: 20px;

  text-align: center;
}
/* //footer-------------------------- */




/* 隠し要素-------------------------- */

/* ハンバーガーメニュー */
.openbtn-pc{
  display: none;

  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 9999;

  width: 50px;
  height:50px;

  background: var(--main-color);
  border-radius: 5px;

  cursor: pointer;
}

/*ボタン内側*/
.openbtn-pc span{
  display: inline-block;

  position: absolute;
  left: 14px;

  width: 45%;
  height: 2px;

  background: #fff;
  border-radius: 5px;
 
  transition: all .4s;
}

.openbtn-pc span:nth-of-type(1) {
  top:13px; 
}

.openbtn-pc span:nth-of-type(2) {
  top:19px;
}

.openbtn-pc span:nth-of-type(3) {
  top:25px;
}

.openbtn-pc span:nth-of-type(3)::after {
  content:"Menu";
  position: absolute;
  top:5px;
  left:-1px;

  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn-pc.active-pc span:nth-of-type(1) {
  top: 14px;
  left: 18px;

  width: 30%;

  transform: translateY(6px) rotate(-45deg);
}

.openbtn-pc.active-pc span:nth-of-type(2) {
  opacity: 0;
}

.openbtn-pc.active-pc span:nth-of-type(3){
  top: 26px;
  left: 18px;
  
  width: 30%;

  transform: translateY(-6px) rotate(45deg);
}

.openbtn-pc.active-pc span:nth-of-type(3)::after {
  content:"Close";

  top: 5px;
  left: 4px;

  transform: translateY(0) rotate(-45deg);
}

/* PC用ハンバーガーメニューのアニメーション */
.fadeDown-pc {
  display: block;
  opacity: 0;

  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* //ハンバーガーメニュー */


/* 隠しナビ */
/* 隠しナビ（SP）の非表示 */
#header-side-sp{
  display: none;
}

/* 隠しナビ（PC）のロゴ非表示 */
#header-side > h1{
  display: none;
}

/* 隠しナビ（navタグ） */
.nav-side{
  position: fixed;
  top: 0px;
  right: -400px;
  /* overflow: scroll; */
  overflow: hidden;
  z-index: 2000;

  width: 400px;
  height: 100vh;
  backdrop-filter: blur(10px);
  background-color: var(--sidenav-main);
  transition: all 1s;  
}

/* 隠しナビ（navタグ） */
/* jsで移動するアニメーション */
.nav-side.panelactive{
  right: 0px;
}

/* 隠しナビ（ulタグ） */
.nav-side-list{
  position: absolute;
  top: 200px;
  left: 45%;

  transform: translateX(-50%);
}

/* 隠しナビ（liタグ） */
.nav-side-list li{
  position: relative;
}

/* 隠しナビ（liタグ）_疑似クラスで記号を設ける */
.nav-side-list li::before {
  content: '';
  position: absolute;

  width: 6px;
  height: 6px;
  border-top: 2px solid;
  border-right: 2px solid;

  transform: rotate(45deg);
}

/* 隠しナビ１段目（liタグ）_疑似クラスで記号の配置を設定 */
.nav-side-list > li::before {
  top: 26px;
  left: 0px;
}

/* 隠しナビ２段目（liタグ）_疑似クラスで記号の配置を設定 */
.nav-side-sublist > li::before {
  top: 26px;
  left: 15px;
}

/* 隠しナビ（aタグ） */
.nav-side-list a {
  display: block;

  white-space: nowrap;
  transition: transform .3s ease;
}

/* 隠しナビ（aタグ）_ホバーの処理 */
.nav-side-list a:hover {
  transform: translateX(5px);
}

/* 隠しナビ１段目（aタグ） */
.nav-side-list > li > a {
  padding: 10px 15px;
}

/* 隠しナビ２段目（aタグ） */
.nav-side-sublist > li > a {
  padding: 10px 30px;
}

/* 隠しナビ（spanタグ） */
.nav-side-list span{
  display: inline-block;
}

/* 隠しナビ（spanタグ）日本語 */
.nav-side-list span.ja{
  font-size: 1.2rem;
}



/* ページトップボタン */
/* ページトップボタン（pタグ） */
/* 初期値を隠し状態に設定 */
#page-top {
  position: fixed;
  right: 50px;
  bottom: 30px;
  z-index: 1000;

  opacity: 0;
  transform: translateY(100px);
}

/* jsで可視状態にする */
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* jsで隠し状態にする */
#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  opacity: 1;
  transform: translateY(0);
  }
  to {
  opacity: 1;
  transform: translateY(100px);
  }
}

/* ページトップボタン（aタグ） */
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;

  width: 60px;
  height: 60px;

  background: var(--accent-color);
  border-radius: 5px;

  font-size: 1.4rem;
  color: var(--white);
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;

  transition:all 0.3s;
}

/* ページトップボタン（aタグ）_ホバー時の処理 */
#page-top a:hover{
  background: var(--gray);
}
/* //ページトップボタン */


  
/* サイドインフォメニュー */
/* サイドインフォメニュー(ulタグ) */
/* 初期値を隠し状態に設定 */
#sideinfo-list {
  position: fixed;
  right: 0px;
  top:100px;
  z-index: 1000;
  background-image: radial-gradient( circle 404px at 20.3% 15.9%,  rgba(0,79,255,.3) 0%, rgba(0,240,255,.3) 90% );

  opacity: 0;
  transform: translateX(0px);
}

/* jsで可視状態にする */
#sideinfo-list.LeftMove{
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime{
  from {
    opacity: 0;
    /* 400pxの値はaタグの幅380pxに余裕を持たせたもの */
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/* jsで隠し状態にする */
#sideinfo-list.RightMove{
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
    opacity: 1;
    transform: translateX(0px);
  }
  to {
    opacity: 1;
    /* 400pxの値はaタグの幅380pxに余裕を持たせたもの */
    transform: translateX(400px);
  }
}

/* サイドインフォメニュー（aタグ） */
#sideinfo-list a{
  display: flex;
  justify-content:left;
  align-items:center;

  width: 350px;
  height: 60px;
  padding-left: 30px;

  text-transform: uppercase; 
  text-decoration: none;

  transition:all 0.3s;
}

/* サイドインフォメニュー（aタグ）_ホバー時の処理 */
#sideinfo-list a:hover{
  background: var(--right-menu-gray);
}

/* サイドインフォメニュー（iタグ） */
#sideinfo-list .info-icon{
  color: var(--right-menu-text);
  font-size: 25px;
  margin-right: 10px;
}
/* //サイドインフォメニュー */

/* //隠し要素-------------------------- */




/* SP用ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 1030px){

/* 基本設定 */
h1{
  font-size: 4.5rem;
}

h2{
  font-size: 1.75rem;
}

p, ul, ol, span, label, input, textarea, summary, div{
  font-size: 1.4rem;
}
/* //基本設定 */



/* ヘッダー位置を指定 */
/* メインビジュアル内の六角形の背景画像の基点 */
#header{
  position: absolute;
  top: 0;
  /* overflow: hidden; */

  width: 100%;
  height: 550px;
}



/* ナビ設定 */
/* ナビ（spanタグ） */
.en,
.ja{
  display: inline;
}
.en,
.en--toggle{
  font-size: 1.4rem;
}
.ja,
.ja--toggle{
  font-size: 1.2rem;
}
/* //ナビ設定 */


/* メインビジュアル */
/* 画像、キャッチコピーの基点 */
#main-visual{
  height: 550px!important;
  margin-top: 16px;
}

/* キャッチコピーのコンテナ */
#catchcopy{
  top: 0%;
}




/* カルーセル内キャッチコピー(英語) */
.catchcopy-eng{
  margin-top: 170px;

  font-weight: normal;
  font-size: 7vw;
}

/* カルーセル内キャッチコピー（日本語） */
.catchcopy-jp{
  font-size: 4vw;
}
/* //メインビジュアル */



/* section共通設定 */
/* タイトル等の基本設定 */
.article-wrapper{
  margin-bottom: 180px;
}
/* //section共通設定 */


/* Infomation */
#info-container{
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.sub-info-container{
  display: block;
  margin-bottom: 35px;
}

.info__upper{
  margin-bottom: 7px;
}

.info__upper p:last-child{
  margin-left: 10px;
  margin-right: 10px;
}

/* //Infomation */



/* Join */
#join-outer::after{
  background-size: 177%;
}

.join-step-child > h2 span{
  font-size: 2.4rem;
}
/* //Join */


/* banner */
#banner > h2:nth-of-type(1){
  font-size: 3rem;
}

#banner > h2:nth-of-type(2){
  font-size: 1.5rem;
}

#slider .slick-slide{
  margin:0px 5px;
}
/* //banner */



/* price */
#price-img{
  display: block;

  text-align: center;
}

.price-img-sub{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
/* //price */



/* facilities */
#facilities{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.facilities-sub-sub{
  display: block;
  margin-bottom: 70px;

  text-align: center;
}

.facilities-img{
  width: 70%;
}

.facilities-img:hover {
  transform: scale(1.05);
}

.facilities-text{
  width: 90%;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

.facilities-text > h2{
  display: inline-block;

  margin-left: auto;
  margin-right: auto;
}

.facilities-text > p{
  margin-left: auto;
  margin-right: auto;

  text-align: justify;
}
/* //facilities */


/* //問い合わせフォーム */
/* フォーム全体 */
#contact-wrapper{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* 個々のフォーム */
.sub-contact{
  display: block;
}

/* 見出し */
.heading{
  width: 100%;
  margin-bottom: 7px;
}

/* 入力欄（inputタグ） */
/* inputタグが対象だが、ラジオボタンは除く */
.input-form__textbox{
  width: 100%;
}

/* 入力欄（textareaタグ） */
.input-form__textarea{
  width: 100%;
}

/* プライバシーポリシー */
#privacyPolicy{
  width: 100%;
}
/* ////問い合わせフォーム */


/* 企業名、アドレス、マップ */
#contact-info{
  display: block;

  width: 90%;
}
#contact-info-sub{
  margin-right: 0px;
}
#contact-info > iframe{
  width: 100%;
  margin-top: 10px;
}
/* //企業名、アドレス、マップ */



/* footer */
#footer{
  padding-top: 100px;

  -webkit-clip-path: none;
  clip-path: none;
}

#sub-footer{
  display: flex;
  flex-direction:  column-reverse;
  align-items: center;
}

/* ロゴとsnsアイコンの親要素 */
#sub-footer__left{
  margin-top: 30px;
  margin-right: 0;
}

/* ロゴ */
#footer-logo img{
  width: 125px;
}

/* ナビ（ulタグ） */
#footer-nav{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* コピーライト */
.copyright{
  padding-top: 100px;
  padding-bottom: 25px;
  text-align: center;
}
/* //footer */



/* 隠し要素 */
/* ハンバーガーメニュー */
.openbtn-pc{
  display: none;
}

.openbtn-sp{
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 9999;

  width: 50px;
  height:50px;

  background: var(--main-color);
  border-radius: 5px;
  
  cursor: pointer;
}

/*ボタン内側*/
.openbtn-sp span{
  display: inline-block;

  position: absolute;
  left: 14px;

  width: 45%;
  height: 2px;

  background: #fff;
  border-radius: 5px;

  transition: all .4s;/*アニメーションの設定*/
}

.openbtn-sp span:nth-of-type(1){
  top:13px; 
}

.openbtn-sp span:nth-of-type(2){
  top:19px;
}

.openbtn-sp span:nth-of-type(3){
  top:25px;
}

.openbtn-sp span:nth-of-type(3)::after {
  content:"Menu";
  position: absolute;
  top:5px;
  left:-1px;

  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn-sp.active-pc span:nth-of-type(1) {
  top: 14px;
  left: 18px;

  width: 30%;

  transform: translateY(6px) rotate(-45deg);
}

.openbtn-sp.active-pc span:nth-of-type(2) {
  opacity: 0;
}

.openbtn-sp.active-pc span:nth-of-type(3){
  top: 26px;
  left: 18px;

  width: 30%;

  transform: translateY(-6px) rotate(45deg);
}

.openbtn-sp.active-pc span:nth-of-type(3)::after {
  content:"Close";

  top: 5px;
  left: 4px;

  transform: translateY(0) rotate(-45deg);
}
/* //ハンバーガーメニュー */



/* PC用ナビの非表示 */
#header-pc{
  display: none;
}

/* 隠しナビ（PC）の非表示 */
#header-side{
  display: none;
}

/* 右のアニメーション付きのインフォメーションを非表示 */
#sideinfo-list{
  display: none;
}

/* 隠しナビ（SP）を表示する */
#header-side-sp{
  display: block;
}

/* ロゴを左上に表示する */
#header-side-sp > h1{
  display: block;

  position: absolute;
  top: 0;
  left: 0;
}

/* ロゴの設定 */
#header-side-sp img{
  margin: 0;

  width: 120px;
  border: solid 15px var(--white);
}
/* //隠し要素 */

}