@charset "UTF-8";


/* # =================================================================
   # 共通タイトル
   # ================================================================= */
.main-title{
	font-family: 'Inter',system-ui;
	font-size:60px;
	font-weight:700;
	font-style: italic;
	color:var(--color-base);
	line-height:1;
	text-align:center;
	text-transform: capitalize;
	margin-bottom:50px;
}

.main-title span{
	display:block;
	font-style: normal;
	font-size:16px;
	font-weight:900;
	color:var(--color-white);
	margin-top:15px;
}

.txt-c-gd{
	background: rgb(255,0,102);
	background: linear-gradient(90deg, rgba(255,0,102,1) 0%, rgba(255,51,255,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.txt-c-bk{
	color:var(--color-bk);
}

.txt-c-wh{
	color:var(--color-white);
}

.txt-c-base{
	color:var(--color-base);
}

.txt-bold{
	font-weight:700;
}

.txt-box{
	width:100%;
	line-height:2rem;
	text-align:left;
}


@media screen and (max-width:599px){
.main-title{font-size:50px;}
.main-title span{font-size:14px;}
}


/* # =================================================================
   # 共通背景
   # ================================================================= */

.bg-gray{background-color:var(--color-gray5);}




/* # =================================================================
   # ファーストビュー
   # ================================================================= */
 
.fv-area {
	position: relative;
	width:100%;
	overflow:hidden;
	background-image: url(../img/fv_bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	z-index:-1;
}


.fv-box {
	width: 85%;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	padding:350px 0 80px 0;
}

.fv-txt{
	font-size:70px;
	font-weight:900;
	line-height:1.5em
	letter-spacing:.1em;
	margin-bottom:20px;
	transform: rotate(-5deg);
}

.fv-txt span{background-color:rgba(0, 0, 0, 0.8);padding:0 .5em;}

.fv-copy{
	font-size:30px;
	font-weight:900;
	line-height:2em;
	font-style: italic;
	margin-bottom:30px;
}

.fv-img-box img{width:100%}


@media screen and (max-width: 900px) {
	.fv-txt{font-size:60px;}
}

@media screen and (max-width: 768px) {
	.fv-box {width: 90%;}
	.fv-txt{font-size:55px;}
	.fv-copy{font-size:25px;}
}

@media screen and (max-width: 599px) {
	.fv-box {padding:200px 0 50px 0;}
	.fv-copy{font-size:20px;}
}





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

#nayami .nayami-title {
    display: flex;
    align-items: center;
	font-size:20px;
	font-weight:700;
	line-height:1.5em;
	color:var(--color-base);
	margin-bottom:40px;
}

#nayami .nayami-title:before,
#nayami .nayami-title:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: var(--color-base);
}

#nayami .nayami-title:before {
    margin-right: 1rem;
}

#nayami .nayami-title:after {
    margin-left: 1rem;
}


#nayami .flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:space-between;
    flex-wrap:wrap;
	list-style-type: none;
}

#nayami .gap1{row-gap:20px;}

#nayami .flex li {
  position: relative;
  font-size:18px;
  font-weight:800;
  color:var(--color-bk);
  text-align:left;
  line-height: 1.5em;
  width:49%;
  background-color:var(--color-white);
  padding:10px 20px 10px 50px;
  border:solid 1px #e6f0f1;
  border-radius:.5em;
}


#nayami .flex li::before,
#nayami .flex li::after {
    position: absolute;
    top: 50%;
    height: 1em;
    content: '';
}
#nayami .flex li::before {
    left: 15px;
    transform: translateY(-50%);
    width: 1em;
    border: 1px solid var(--color-base);
}
#nayami .flex li::after {
    left: 1.2em;
    transform: translateY(-75%) rotate(45deg);
    width: 0.5em;
    border-bottom: 3px solid var(--color-base);
    border-right: 3px solid var(--color-base);
}

#nayami .flex-item{
	width:48.5%;
	color:var(--color-white);
	background-color:var(--color-green);
	border-radius:15px;
	text-align:center;
	display: flex;
	flex-direction: column;
}

#nayami .imgbox{margin-top: 40px;}
#nayami .imgbox img{width:60%;}


@media screen and (max-width:900px){
	#nayami .flex li {width:100%;}
	#nayami .gap1{row-gap:10px;}
	#nayami .imgbox img{width:80%;}
}



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


.howto-bg {
	background: #FF0066;
	background: linear-gradient(90deg, rgba(255, 0, 102, 1) 0%, rgba(255, 0, 202, 1) 100%);
	padding:80px 0 60px 0;
	position:relative;
}

.howto-head{
	position:absolute;
	top:-1px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.howto-head img{width:100px;}


#howto .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;
}

#howto .flex-item-img{width:30%;}
#howto .flex-item-txt{width:65%;}

#howto .flex-item-img img{width:100%;}
#howto .howto-title{
	font-size:25px;
	font-weight:700;
	line-height:1.5em;
	margin-bottom:20px;
	text-align:left;
	color:var(--color-white);
}
#howto .howto-txt{
	font-size:16px;
	font-weight:700;
	line-height:2em;
	text-align:left;
	color:var(--color-white);
}


@media screen and (max-width:768px){
	#howto .flex-item-img{width:100%;}
	#howto .flex-item-txt{width:100%;}
	#howto .flex-item-img img{width:70%;margin-bottom:40px;}
}


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

#about .title-img{text-align:center;margin-bottom:40px;}
#about .title-img img{width:200px;}

#about .flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:space-between;
    flex-wrap:wrap;
	row-gap:1.5em;
}

#about .flex_last::after {
	display: block;
	content:"";
	width:32%;
}

#about .flex-item{width:32%;background-color:var(--color-gray2);border-radius:1em;}
#about .flex-item img{width:100%;}

#about .flex-item-head{
	position: relative;
	background-color:var(--color-base);
	color:var(--color-white);
	font-size:18px;
	font-weight:700;
	line-height:1.5em;
	padding:1em;
	border-radius:1em 1em 0 0;
}

#about .flex-item-head:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: var(--color-base) transparent transparent transparent;
  border-width: 15px 15px 0 15px;
}

#about .flex-item-txt{
	font-size:16px;
	font-weight:700;
	text-align:left;
	line-height:1.8em;
	padding:1em;
	padding-top:20px;
}

#about .flex-item-txt span{
	color:var(--color-base);
}



/*-------スマホ表示-------------*/

@media screen and (max-width:768px){
	#about .flex_last::after {display: block;content:"";width:48%;}
	#about .flex-item{width:48%;}
}

@media screen and (max-width:599px){
	#about .flex{row-gap:1em;}
	#about .flex-item{width:100%;}
	#about .flex-item img{width:130px;}
	#about .flex-item-txt{margin-top:auto;}
}

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

#line .head-img{margin-bottom:40px;}
#line .head-img img{width:120px;}

#line .head-txt{
	font-size:45px;
	line-height:3rem;
	font-style:italic;
	font-weight:900;
	margin-bottom:20px;
}

#line .btn-lineimg img{
	width:50%;
	max-width:550px;
	transition: all .5s;
}

#line .flex{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap:wrap;
	align-items:center;
	justify-content: center;
	margin-top:20px;
}

#line .flex-item{
	padding:20px;
	text-align:left;
}

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

@media screen and (max-width:768px){
	#line .btn-lineimg img{width:100%;;}
}

@media screen and (max-width:599px){
	#line .flex-item{width:75%;padding:10px;text-align:left;}
}


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

.work-bg{
	background-image: url(../img/index_work_bg.webp);
	background-repeat: no-repeat;
	background-size:100%;
	background-position: top center;
}


#work .flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
}


#work .flex-item{
	width:49%;
	padding:30px;
	background-color:rgba(0,0,0,.9);
	display: flex;
	flex-direction: column;
}


#work .flex-row1{row-gap:20px;}

#work .flex-row2{row-gap:5px;}

#work .work-omote{
	border:solid 1px var(--color-base);
}

#work .work-ura{
	border:solid 1px var(--color-green2);
}

#work .work-img{width:49%;margin-bottom:20px;}

#work .work-img img{width:100%;}

#work .work-icon{
	width:32.5%;
	background-color:var(--color-white);
	padding:8px 3px;
	text-align:center;
	font-size:14px;
	font-weight:700;
	color:var(--color-bk);
	border-radius:5px;
}

#work .work-title{
	font-size:25px;
	font-weight:700;
	line-height:1.5rem;
	text-align:left;
	margin-bottom:30px;
}

#work .work-title span{
	font-size:40px;
	font-style:italic;
}

#work .f-c1{color:var(--color-base);}
#work .f-c2{color:var(--color-green);}


#work .sub-title{
    display: flex;
    align-items: center;
	font-size:16px;
	font-weight:700;
	margin:20px 0 10px 0;
}

#work .sub-title-line1:before,
#work .sub-title-line1:after{
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: var(--color-base);
}

#work .sub-title-line2:before,
#work .sub-title-line2:after{
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: var(--color-green);
}

#work .sub-title:before{
    margin-right: 1rem;
}

#work .sub-title:after{
    margin-left: 1rem;
}

#work .checklist{margin-bottom:20px;}

#work .checklist li{
  position: relative;
  font-size:16px;
  font-weight:800;
  color:var(--color-white);
  text-align:left;
  line-height: 1.8;
  padding:5px 0 5px 35px;
}


#work .checklist li::before,
#work .checklist li::after{
    position: absolute;
    top: 50%;
    height: 10px;
    content: '';
}
#work .checklist1 li::before{
    left: 0;
    transform: translateY(-50%);
    width:25px;
	height:25px;
	border-radius:5px;
    background-color: var(--color-base);
}
#work .checklist1 li::after{
    left: .6em;
    transform: translateY(-75%) rotate(45deg);
    width: 6px;
    border-bottom: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
}

#work .checklist2 li::before{
    left: 0;
    transform: translateY(-50%);
    width:25px;
	height:25px;
	border-radius:5px;
    background-color: var(--color-green);
}
#work .checklist2 li::after{
    left: .6em;
    transform: translateY(-75%) rotate(45deg);
    width: 6px;
    border-bottom: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
}

#work .btn-box{
	width:100%;
	margin-top: auto;
}


@media screen and (max-width:1100px){
#work .work-icon{width:49%;}
}

@media screen and (max-width:768px){
	#work .flex-item{width:100%;padding:25px 15px 15px 15px;}
	#work .work-title{font-size:20px;text-align:center;}
	#work .work-title span{font-size:30px;}
	#work .main__btn__txt{font-size:14px;}
}



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

.trial_bg{
	background-image: url(../img/trial_bg.webp);
	background-repeat: no-repeat;
	background-size:100%;
	background-position: bottom center;
}

#trial .head-title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 1;
  font-size:18px;
  font-weight:700;
  color: var(--color-white);
  margin-bottom:15px;
}

#trial .head-title::before,#trial .head-title::after {
  width: 1px;
  height: 20px;
  content: "";
  background-color: var(--color-white);
}

#trial .head-title::before {
  margin-right: 1em;
  transform: rotate(-30deg);
}

#trial .head-title::after {
  margin-left: 1em;
  transform: rotate(30deg);
}


#trial .head-title2 {
  font-size:60px;
  font-weight:700;
  line-height:1.2em;
  padding-bottom:20px;
  margin-bottom:30px;
}

#trial .head-title2 span{
	display:block;
  font-size:25px;
  line-height:1.5em;
  font-weight:700;
}

#trial .icon-img{margin-bottom:30px;}
#trial .icon-img img{width:200px;}

#trial .flex{
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap:30px;
}

#trial .flex-item{
	width:32%;
	border-radius:10px;
}

#trial .flex-item-bg2{background-color:var(--color-bk);border:solid 1px var(--color-base);}


#trial .flex-img{overflow:hidden;}
#trial .flex-img img{
	width:100%;
	height:150px;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

#trial .flex-catch{
	font-size:20px;
	font-weight:700;
	color: var(--color-base);
	margin:15px 0;
	text-align:left;
}

#trial .flex-catch span{font-size:30px;font-style:italic;}

#trial .txt-waku{width:80%;margin-left:auto;margin-right:auto;padding-bottom:25px;}

#trial .point-flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	align-items:center;
	column-gap:20px;
	row-gap:20px;
	border-bottom:solid 1px var(--color-gray3);
	border-top:solid 1px var(--color-gray3);
	padding:20px 0;
	margin:50px 0;
}

#trial .point-icon{width:100px;}
#trial .point-icon img{width:100%;}
#trial .point-txt{
	flex:1;
	text-align:left;
}


/*-------スマホ表示-------------*/
@media screen and (max-width:768px){
	#trial .flex-item{width:100%;}
}

@media screen and (max-width:599px){
	#trial .head-title2 {font-size:35px;}
	#trial .head-title2 span{font-size:18px;}
	#trial .point-icon{width:100%;}
	#trial .point-icon img{width:100px;}
	#trial .point-txt{width:100%;}
}

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

.flow-bg{background-color:var(--color-green);}

#flow .flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
}

#flow .flex-item{
	width:22%;
	background-color:var(--color-bk);
	border-radius:15px;
}

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

#flow .txt-frame{
	padding:30px;
	text-align:left;
}

#flow .flow-no{
	font-style: italic;
	font-size:16px;
	font-weight:700;
	line-height:1.2rem;
	color:var(--color-green2);
	text-align:left;
}

#flow .flow-no span{font-size:25px;}

#flow .flow-title{
	position: relative;
	font-size:18px;
	font-weight:700;
	line-height:2rem;
	color:var(--color-green2);
	text-align:left;
	margin:10px 0 20px 0;
	padding-bottom:20px;
}

#flow .flow-title::before{
    position: absolute;
    bottom: 0;
    content: '';
    width: 30px;
	border-bottom: 1px solid var(--color-green2);
}

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

/* 矢印のスタイル */
#flow .arrow {
    position: relative;
    width: 30px;
    height: 30px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#flow .arrow::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: var(--color-bk) transparent transparent transparent;
    transform: rotate(-90deg);
}

@media screen and (max-width:950px){
	#flow .flex{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}
	#flow .flex-item{
		width:100%;
		background-color:var(--color-bk);
		border-radius:15px;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	}
	#flow .flow-img{width:35%;overflow:hidden;border-radius:15px 0 0 15px;transition: all .5s;}
	#flow .flow-img img{
		width:100%;
		height:100%;
		object-fit: cover;
		transition: all .5s;
	}
	#flow .txt-frame{
		width:65%;
		padding:25px;
		text-align:left;
	}
	#flow .arrow::after {
		content: '';
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 15px 10px 0 10px;
		border-color: var(--color-bk) transparent transparent transparent;
		transform: rotate(0deg);
	}
}


/* # =================================================================
   # 施設一覧
   # ================================================================= */

#list .list-title{
	font-size:40px;
	font-weight:800;
	font-style: italic;
	color:var(--color-base);
	line-height:1.5em;
	text-align:center;
	margin-bottom:50px;
}


#list .flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
	row-gap:20px;
}

#list .flex::after{
  content:"";
  display: block;
  width:32%;
}

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

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

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

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

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

#list .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);
}

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

#list .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;
}


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

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

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

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


@media screen and (max-width:1000px){
	#list .flex::after{content:"";display: block;width:48.5%;}
	#list .flex-item{width:48.5%;}
	#list .link-btn-txt{font-size:16px;}
}

@media screen and (max-width:599px){
	#list .list-title{font-size:30px;}
	#list .flex{row-gap:15px;}
	#list .link-btn-txt{font-size:14px;}
	#list .txt-frame{padding:10px 10px 0 10px;}
	#list .facility-cat{font-size:10px;}
	#list .facility-txt{font-size:12px;line-height:1.5rem;}
	#list .sns-box{flex-wrap: wrap;row-gap:5px;padding:10px;}
	#list .sns-box-item{width:100%;}
	#list .line-btn, #list .tel-btn{font-size:12px;line-height:1rem;padding:5px 10px 5px 40px;border-radius:5px;}
}



/* # =================================================================
   # FAQ
   # ================================================================= */
#kaiwa .balloon-fuki {
margin-bottom: 2em;
position: relative;
}
#kaiwa .balloon-fuki:before,
#kaiwa .balloon-fuki:after {
clear: both;
content: "";
display: block;
}
#kaiwa .balloon-fuki figure {
width: 80px;
height: 80px;
}
#kaiwa .balloon-image-left {
float: left;
margin-right: 20px;
}
#kaiwa .balloon-image-right {
float: right;
margin-left: 20px;
}
#kaiwa .balloon-fuki figure img {
width: 100%;
height: 100%;
border-radius: 50%;
margin: 0;
}
#kaiwa .balloon-text-right,
#kaiwa .balloon-text-left {
position: relative;
color:#000000;
font-size:16px;
line-height:2rem;
text-align:left;
padding: 20px;
border: 1px solid;
border-radius: 10px;
max-width: -webkit-calc(100% - 120px);
max-width: calc(100% - 120px);
display: inline-block;
}
#kaiwa .balloon-text-right {
border-color: #ccff66;
background-color: #ccff66;
}
#kaiwa .balloon-text-left {
border-color: #99ffff;
background-color: #99ffff;
font-weight:700;
}
#kaiwa .balloon-text-right span{
font-weight:700; 
color:var(--color-base);
}
#kaiwa .balloon-text-right {
float: left;
}
#kaiwa .balloon-text-left {
float: right;
}
#kaiwa .balloon-fuki p {
margin: 0 0 20px;
}
#kaiwa .balloon-fuki p:last-child {
margin-bottom: 0;
}
/* 三角部分 */
#kaiwa .balloon-text-right:before {
position: absolute;
content: '';
border: 10px solid transparent;
border-right: 10px solid #ccff66;
top: 15px;
left: -20px;
}
#kaiwa .balloon-text-right:after {
position: absolute;
content: '';
border: 10px solid transparent;
border-right: 10px solid #ccff66;
top: 15px;
left: -19px;
}
#kaiwa .balloon-text-left:before {
position: absolute;
content: '';
border: 10px solid transparent;
border-left: 10px solid #99ffff;
top: 15px;
right: -20px;
}
#kaiwa .balloon-text-left:after {
position: absolute;
content: '';
border: 10px solid transparent;
border-left: 10px solid #99ffff;
top: 15px;
right: -19px;
}
