@charset "UTF-8";

/* # =================================================================
   # フォント設定
   # ================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
  min-width: 320px
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # 共通カラー / font-size
   # ================================================================= */

:root {
	--color-bk: #000000;
	--color-white: #ffffff;
	--color-gray1: #212121;
	--color-gray2: #424242;
	--color-gray3: #757575;
	--color-gray4: #DBDBDB;
	--color-gray5: #f0f4f5;
	--color-gray6: #f7f7f7;
	--color-gray7: #F8F5F0;
	--color-base: #ff0066;
	--color-red: #ff0066;
	--color-green: #38d430;
	--color-green2: #99ff00;
	--color-blue: #3333ff;
	scroll-padding-top: 180px;
	scroll-behavior: smooth;
}

@media screen and (max-width:768px){
:root {scroll-behavior: auto;}
}



/* # =================================================================
   # 共通設定
   # ================================================================= */
body {
	font-family: 'Inter' ,'Noto Sans JP' ,system-ui;
	font-optical-sizing: auto;
	font-display: swap;
	font-size: 16px;
	letter-spacing: 1px;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility
	-webkit-overflow-scrolling: touch;
	background-color:var(--color-bk);
	color:var(--color-white);
}

img, svg {
  vertical-align: middle
}

ol, ul {
  list-style: none
}

body>img {
  display: block;
  height: 0!important;
  font-size: 0
}


main {
	text-align:center;
	width:100%;
	margin-left:auto;
	margin-right:auto;
}


/*-----セクション幅----*/
.sec-content{background-color: transparent;width:100%;margin-left:auto;margin-right:auto;vertical-align: middle;}
.sec-content1{background-color: transparent;width:85%;margin-left:auto;margin-right:auto;vertical-align: middle;max-width:1400px;}
.sec-content2{background-color: transparent;width:90%;margin-left:auto;margin-right:auto;vertical-align: middle;max-width:1400px;}

.page-space-top{padding-top:100px;}
.page-space-btm{padding-bottom:100px;}

.space-block-top30{margin-top:30px;}
.space-block-btm30{margin-bottom:30px;}

.space-block-top50{margin-top:50px;}
.space-block-btm50{margin-bottom:50px;}

.space-block-top80{margin-top:80px;}
.space-block-btm80{margin-bottom:80px;}



.copy-l{text-align:left;}
.copy-r{text-align:right;}
.copy-c{text-align:center;}

.line200{line-height:200%;}
.line150{line-height:150%;}


/*-----改行----*/
.br-pc-sp{display:block;}
.br-pc-mb{display:block;}
.br-sp{display:none;}
.br-mb{display:none;}

/*-----ルビ----*/
ruby{
    ruby-position:under;
}

/*-----インデント----*/
p.indent-br {
	padding-left:1em;
	text-indent:-1em;
}

/*-----ページ内リンク----*/
a.anchor{
    display: block;
    padding-top: 180px;
    margin-top: -180px;
}

/*-----------スマホ設定-----------------*/


@media screen and (max-width:900px){
	.br-pc-sp{display:none;}
	.br-sp{display:block;}
	.page-space-top{padding-top:120px;}
	.page-space-btm{padding-bottom:120px;}
	a.anchor{
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}
}

@media screen and (max-width:599px){
	.sec-content1{width:90%;}
	.br-pc-mb{display:none;}
	.br-mb{display:block;}
	.page-space-top{padding-top:80px;}
	.page-space-btm{padding-bottom:80px;}
}

/* # =================================================================
   #order
   # ================================================================= */
@media screen and (max-width:768px){
	.order1{order:1;}
	.order2{order:2;}
	.order3{order:3;}
	.order4{order:4;}
	.order5{order:5;}
	.order6{order:6;}
	.order7{order:7;}
	.order8{order:8;}
	.order9{order:9;}
	.order10{order:10;}
}


   
/* # =================================================================
   # gsap
   # ================================================================= */
.trigger-area-load-head{opacity: 0;}
.trigger-area-load{opacity: 0;}
.trigger-area-feed{opacity: 0;}
.trigger-area-title{opacity: 0;}

/* # =================================================================
   # 画像loop
   # ================================================================= */

/* CSS: 無限ループアニメーション */
.loop_wrap {
  display: flex;
  width: 100%;
  height: 25vw;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.loop {
  display: flex;
  width: auto; /* クローン後の幅を自動調整 */
}

.loop img {
  width: auto;
  height: 100%;
}

@keyframes loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* 画像の半分を移動 */
  }
}



@media screen and (max-width: 768px) {
.loop_wrap{height: 40vw;}
}

/* # =================================================================
   # 共通ボタン
   # ================================================================= */

.btn-L{
	margin-left:0;
	margin-right:auto;
}

.btn-R{
	margin-left:auto;
	margin-right:0;
}

.btn-C{
	margin-left:auto;
	margin-right:auto;
}

.btn-L-R{
	margin-left:0;
	margin-right:auto;
}

.btn-R-C{
	margin-left:auto;
	margin-right:0;
}

@media screen and (max-width:768px){
.btn-L-R{
	margin-left:auto;
	margin-right:auto;
}
.btn-R-C{
	margin-left:auto;
	margin-right:auto;
}
}


.btn-box{width:100%;}

.lp-cta-btn{
	display:block;
	cursor:pointer;
	display:flex;
    align-items: center;
	justify-content: end;
	color: var(--color-white);
	background: var(--color-base);
	text-decoration:none;
	padding:15px 20px;
	line-height:1.5rem;
	border-radius:50px;
	box-shadow: 4px 5px 8px 0px rgba(0, 0, 0, 0.3);
	transition: all .5s;
}

@media screen and (max-width: 599px) {
	.lp-cta-btn{padding:20px 20px;}
}


.lp-cta-btn:hover{
	color: var(--color-white) !important;
	text-decoration:none;
}

.lp-cta-btn__txt{
	text-align:center;
	font-size:20px;
	line-height:1;
	font-weight:Bold;
	flex:1;
}

/* # ========== btn テキスト ============ */
   
.hover-scroll {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.hover-scroll__text {
  display: inline-block;
  padding: 0.6em 0;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1), opacity 0.4s;
}
.hover-scroll__text:nth-child(2) {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
}

@media (hover: hover) {
  a:hover .hover-scroll__text {
    opacity: 0;
    transform: translateY(-100%);
  }
  a:hover .hover-scroll__text:nth-child(2) {
    opacity: 1;
  }
}

/* # ====================== */


.c-arw {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 1/1;
}

.c-arw::before {
    transition: all .4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transition-property: transform, background;
    box-sizing: border-box;
    content: "";
    display: block;
    position: absolute;
    inset: 0;
}

.c-arw .arw {
    transition: fill .4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    display: block;
    position: relative;
    z-index: 1;
    aspect-ratio:1/1
}

@media (hover: hover) {
    a:hover .c-arw .arw--r {
        animation:arw-r .4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s
    }
	
	.linkbox:hover .c-arw .arw--r {
        animation:arw-r .4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s
    }
}

@media (hover: hover) {
	.lp-cta-btn:hover .c-arw .arw {fill:var(--color-white)}
}

.lp-cta-btn .c-arw {
    width:2rem
}

.lp-cta-btn .c-arw .arw {
    width: 1rem;
    fill:var(--color-white)
}

@keyframes arw-r {
    0% {
        transform: translateX(0);
        opacity:1
    }

    50% {
        transform: translateX(100%);
        opacity:0
    }

    50.1% {
        transform: translateX(-100%);
        opacity:0
    }

    100% {
        transform: translateX(0);
        opacity:1
    }
}


/* # =================================================================
   # btn
   # ================================================================= */

.line-btn{
	display:block;
	background-image: url(../img/icon_line.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position:left 10px center;
	font-size:14px;
	font-weight:800;
	text-align:center;
	padding:10px 15px 10px 40px;
	background-color: var(--color-green);
	color: var(--color-white) !important;
	transition: all .5s;
	text-decoration:none;
	line-height:1.2rem;
	border-radius:10px;
	opacity: 1;
	transition: all .5s;
}

.line-btn:hover{
	opacity: .8;
}

.tel-btn{
	display:block;
	background-image: url(../img/icon_tel.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position:left 10px center;
	font-size:14px;
	font-weight:800;
	text-align:center;
	padding:10px 15px 10px 40px;
	background-color: var(--color-blue);
	color: var(--color-white) !important;
	transition: all .5s;
	text-decoration:none;
	line-height:1.2rem;
	border-radius:10px;
	opacity: 1;
	transition: all .5s;
}

.tel-btn:hover{
	opacity: .8;
}

.tel-btn span{font-size:10px;}

.mail-btn{
	display:block;
	background-image: url(../img/icon_mail_bk.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position:left 10px center;
	font-size:14px;
	font-weight:800;
	text-align:center;
	padding:10px 15px 10px 40px;
	background-color: var(--color-white);
	color: var(--color-bk) !important;
	transition: all .5s;
	text-decoration:none;
	line-height:1.2rem;
	border-radius:10px;
	opacity: 1;
	transition: all .5s;
}

.mail-btn:hover{
	opacity: .8;
}

.btn-lineimg{
	text-align:center;
}
.btn-lineimg img{
	width:400px;
	transition: all .5s;
}

.btn-lineimg a:hover img{
	transform: scale(1.1);
}

@media screen and (max-width:768px){
	.btn-lineimg img{width:100%;}
	.btn-lineimg a:hover img{transform: scale(1);}
}

/* # =================================================================
   # header
   # ================================================================= */

header{
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

.header-btn-box{display:block; position:fixed; top:0; left:0; z-index:100; width:100%; }

.head-menu{
    display:flex;
	align-items: end;
	justify-content: flex-end;
	width:90%;
	max-width:1400px;
	margin-left:auto;
	margin-right:auto;
}


.head-menu-logo{
	width:90%;
	max-width:1400px;
	padding:30px;
	text-align:left;
	margin-left:auto;
	margin-right:auto;
}	

.head-menu-logo img {
	width: 150px;
}

.head-nav-trial{
	display:block;
	background:var(--color-base);
	text-decoration:none;
	opacity:1;
	font-size:16px;
	font-weight:Bold;
	color:var(--color-white) !important;
	padding:10px 35px 0 35px;
	border-radius:0 0 15px 15px;
	opacity:1;
	transition: all .3s;
}






@media screen and (max-width:599px){
.head-menu{width:100%;}
.head-menu-logo img {width: 100px;}
.head-nav-trial{padding:10px 15px 0 15px;border-radius:0 0 0 15px;}
.head-menu-logo{padding:20px 10px;}	
}


/* # =================================================================
   # footer
   # ================================================================= */
   
footer {
	padding-bottom: 80px;
	font-size: 14px;
	background-color:var(--color-gray1);
}

footer a{color:var(--color-white);}
footer a:hover{color:var(--color-base);}

.footer-txt{
	line-height:180%;
	text-align:center;
}



.footer-logo{text-align:center;margin-bottom:40px;}
.footer-logo img{width:180px;}

.footer-logo span{
	display:block;
	font-size:22px;
	font-weight:700;
	color:var(--color-base);
	margin-top:20px;
}


.footer-copy{
	font-size:12px;
	color:var(--color-white);
	text-align:center;
	margin-top:50px;
}


/*-----------スマホ設定-----------------*/
@media screen and (max-width:599px){
	.footer-logo img{width:150px;}
}

/* # =================================================================
   # CTA
   # ================================================================= */


.follow-bg{
	background: #FF0066;
	background: linear-gradient(90deg, rgba(255, 0, 102, 1) 0%, rgba(255, 0, 202, 1) 100%);
}

.follow-title img{width:60%;}

#follow{
	padding:100px 0;
	color:var(--color-bk);
}



#follow .cta-title{
	font-size:40px;
	line-height:1;
	font-weight:700;
	text-align:center;
	text-transform: uppercase;
	margin-bottom:40px;
}

#follow .cta-title span{display:block;font-size:20px;padding-bottom:20px;}




/*-----------タブ-----------------*/

#follow .tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items:center;
}

#follow .tab_label {
  height: 60px;
  line-height: 60px;
  color: var(--color-bk);
  background: var(--color-gray4);
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 0 0 auto;
}

/* 各タブの幅を個別に設定 */
#follow .tab_label_w {
	font-size:16px;
	width: 200px;
}

#follow .tab_label:not(:last-of-type) {
  margin-right: 5px;
}

#follow .tab_content {
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius:1em;
}

/* アクティブタブ */
#follow .tab_active:checked + .tab_label {
  color: var(--color-bk);
  background-color: var(--color-white);
}

#follow .tab_active:checked + .tab_label + .tab_content {
  height: auto;
  overflow: auto;
  padding: 50px 0;
}

/* ラジオボタン非表示 */
#follow .tab_active {
  display: none;
}




/*----------- cta button -----------------*/

#follow .btn-cta{
	text-align:center;
}
#follow .btn-cta img{
	width:65%;
	max-width:700px;
	transition: all .5s;
}

#follow .btn-cta a:hover img{
	transform: scale(1.1);
}


#follow .flex{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap:wrap;
	align-items:center;
	justify-content: center;
}

#follow .flex-item{
	padding:20px;
}

#follow .flex ol{
	list-style-type: decimal;
	padding-left:2rem;
}

#follow .cta-lineimg{text-align:center;}
#follow .cta-lineimg img{width:65%;max-width:700px;}

@media screen and (max-width:768px){
	#follow .cta-title{font-size:30px;line-height:1.2;}
	#follow .cta-title span{font-size:18px;}	
	#follow .tab_label_w {width: 30%;font-size:14px;}
	#follow .btn-cta img{width:100%;}
	#follow .cta-lineimg img{width:100%;}
}

@media screen and (max-width:599px){
	#follow .btn-cta a:hover img{transform: scale(1);}
	#follow .flex-item{width:100%;padding:10px;}
}


/* # =================================================================
   # CTA
   # ================================================================= */


.cta-bg {
	background-color: #fadce2;
	padding:50px 0;
}


.cta-flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:space-between;
	align-items:center;
    flex-wrap:wrap;
	column-gap:1em;
}

.cta-flex-item-img{width:200px;}
.cta-flex-item-txt{flex:1;}

.cta-flex-item-img img{width:100%;}
.cta-txt{
	font-size:20px;
	font-weight:700;
	line-height:1.5em;
	margin-bottom:20px;
}


@media screen and (max-width:599px){
	.cta-bg {padding:40px 0;}
	.cta-flex-item-img{width:100%;}
	.cta-flex-item-txt{flex:1;}
	.cta-flex-item-img img{width:150px;margin-bottom:20px;}
}

/* # =================================================================
   # footer 施設
   # ================================================================= */

.facility-bg{
	border-top:solid 1px var(--color-gray1);
	background: rgb(0,0,0);
background: linear-gradient(45deg, rgba(0,0,0,1) 70%, rgba(51,51,255,1) 100%);
}

#facility .flex-item{
	background-color:var(--color-white);
	border-radius:15px;
	border:solid 1px var(--color-gray2);
	height:100%;
	display: flex;
	flex-direction: column;
}

#facility .facility-img{overflow:hidden;border-radius:15px 15px 0 0;transition: all .5s;}
#facility .facility-img img{
	width:100%;
	height:auto;
	object-fit: cover;
	transition: all .5s;
}

#facility .linkbox:hover .facility-img img{
	transform: scale(1.1);
}

#facility .txt-frame{
	padding:20px 20px 0 20px;
	text-align:left;
}

#facility .facility-pref{
	font-size:12px;
	font-weight:700;
	background-color:var(--color-base);
	color:var(--color-white);
	padding:5px 10px;
	border-radius:5px;
}

#facility .facility-cat{
	font-size:12px;
	background-color:var(--color-gray1);
	color:var(--color-white);
	padding:5px 10px;
	border-radius:5px;
}

#facility .facility-title{
	font-size:18px;
	font-weight:Bold;
	line-height:2rem;
	color:var(--color-bk);
	text-align:left;
	padding-bottom:5px;
	margin-bottom:15px;
	margin-top:20px;
	border-bottom:solid 1px var(--color-bk);
}

#facility .facility-txt{
	font-size:14px;
	line-height:1.5rem;
	color:var(--color-bk);
	text-align:left;
}

#facility .link-btn{
	display:block;
	display:flex;
    align-items: center;
	justify-content: end;
	color: var(--color-bk);
	text-decoration:none;
	line-height:1.5rem;
	transition: all .5s;
}


#facility .link-btn:hover{
	color: var(--color-bk) !important;
	background-color:none;
	text-decoration:none;
}

#facility .link-btn-txt{
	text-align:left;
	font-size:18px;
	font-weight:Bold;
	color: var(--color-bk);
	line-height:1.2em;
	flex:1;
}

#facility .sns-box{
	display:flex;
	justify-content: space-between;
	flex-wrap: no-wrap;
	column-gap:10px;
	margin-top:auto;
	padding:20px;
}

#facility .sns-box-item{width:49%;}


/* # =================================================================
   # div link
   # ================================================================= */

.linkbox {
    position: relative;
	cursor: pointer;
}

.linkbox .divlink{
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
	z-index:3;
}

.linkbox .faclink{
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    height:calc(100% - 110px);
    width: 100%;
	z-index:1;
}


/* # =================================================================
   # form
   # ================================================================= */
   
.wp-gray-bg{border:solid 1px var(--color-white);;padding:20px;}
   
.wp-contact-tel-flex{
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap:30px;
}
.wp-contact-tel{
	font-size:35px;
	line-height:1;
	font-weight:Bold;
	color:var(--color-white);
	text-align:center;
}

.wp-contact-tel span{font-size:20px;}


@media screen and (max-width:599px){
.wp-contact-tel-flex{
	display:flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
	row-gap:10px;
}
.wp-contact-tel{font-size:30px;}
.wp-contact-tel span{font-size:20px;}
}



table.form-tbl {
  border-collapse: collapse;
  width: 100%;
}
table.form-tbl th,
table.form-tbl td {
  padding: 10px;
  border: 1px solid var(--color-gray4);
  line-height:150%;
  font-size:14px;
}
table.form-tbl th {
  background-color: var(--color-gray5);
  text-align: center;
  vertical-align:middle;
  width: 30%;
}

table.form-tbl td {
  text-align: left;
  background-color: var(--color-white);
}


.form-hissu{
	display: inline-block;
	font-size:12px;
	background-color: var(--color-red);
	color:var(--color-white);
	padding:0 5px;
	border-radius: 5px;
	margin-left:5px;
}


.forbu{width:200px;margin:0 auto;}



@media screen and (max-width: 768px) {
  table.form-tbl {
   border-top: 1px solid var(--color-gray4);
  }
  table.form-tbl td {
    display: block;
    text-align: left;
  }
  table.form-tbl th {
    display: block;
    border-top: none;
    border-bottom: none;
    width: 100%;
  }
}

/* # =================================================================
   # wp form
   # ================================================================= */

.wpcf7{border:0;padding:0;margin:0;width:100%;}

.wpcf7 .wpcf7-list-item input[type=checkbox] {
	width: auto !important;
	display: inline-block !important;
}
.wpcf7 .wpcf7-list-item input[type=radio] {
	width: auto !important;
	display: inline-block !important;
}
.wpcf7 textarea {
        width: 100% !important
}

.wpcf7 p {padding-top:20px;}

.wpcf7 .menupage-box p{font-size:16px;line-height:1.5;}

.wpcf7 input, .wpcf7 textarea { font-size:16px;border: 1px solid #ccc; line-height: 1.2; padding: 8px; width: 100% !important; width: auto; }

.wpcf7 .wpcf7-submit{width:200px;padding:15px;background-color:var(--color-base);}

/* # =================================================================
   # policy
   # ================================================================= */


.poricy-title{
	font-size: 18px;
	line-height:2em;
	font-weight: bold;
	padding-bottom: 5px;
	text-align:left;
	margin-bottom:30px;
	border-bottom:dotted 1px var(--color-gray2);
}

.poricy-txt-box{
	line-height:2.2em;
	text-align:left;
}

.poricy-txt-box span{
	display:block;
	font-size:18px;
	font-weight:Bold;
	line-height:1;
	text-align:left;
	padding:35px 0 15px 0;
}

.poricy-ul{
	list-style: square;
	text-align:left;
	padding-left:20px;
	margin-top:10px;
}

.poricy-ol{
	list-style-type: decimal;
	text-align:left;
	padding-left:20px;
	margin-top:10px;
}
.poricy-ul li{padding-bottom:5px;}
.poricy-ol li{padding-bottom:5px;}

