@charset "UTF-8";
/* CSS Document */

/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	font-family: vdl-v7mincho, sans-serif;
	line-height: 1.7;
	color: #8C6600;
	font-size: 16px;
	font-weight: normal;
	background: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
}
a{
	text-decoration: none;
	color: #8C6600;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
.img{
	min-height: 0%;
}
.img img{
	display: block;
	width: 100%;
}
.img a{
	display: block;
	width: 100%;
	background: #fff;
}
.img a:hover img{
	opacity: .8;
}

.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

/*flexbox*/
.flexbox{
	display: flex;
	justify-content: space-between;
}

.mg80{
	margin-bottom: 80px !important;
}
.mg60{
	margin-bottom: 60px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg10{
	margin-bottom: 10px !important;
}
.lh2{
	line-height: 2;
}
.pmg p{
	margin-bottom: 10px;
}
.pmg15 p{
	margin-bottom: 15px;
}


/*Title*/
h2.title{
	margin-bottom: 60px;
}
h2.title span.en{
	display: block;
	font-family: sheila, sans-serif;
	font-weight: 400;
	font-size: 3rem;
	text-transform: capitalize;
	line-height: 1;
	color: #D8A300;
	margin-bottom: 10px;
}
h2.title span.ja{
	display: flex;
  	align-items: center;
  	justify-content: center;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 0.8rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.05em;
}
h2.title span.ja::before{
	content: '';
	border-top: 1px solid #8C6600;
	width: 2em;
	margin-right: .5em;
	opacity: 0.6;
}
h2.title.center span.ja{
	width: 100%;
}
h2.title.center span.ja::before{
	display: none;
}
h2.title.white span.en,
h2.title.white span.ja{
	color: #fff;
}


/*mtitle*/
.mtitle{
	border: 1px solid #c2c2c2;
	border-left: 10px solid rgba(226,0,4,.9);
	font-size: 1.5rem;
	font-weight: bold;
	padding: 10px;
	margin-bottom: 40px;
	background: #fff;
}

/*stitle*/
.stitle{
	position: relative;
  	font-size: 1.2rem;
	font-weight: bold;
	border-bottom: 1px solid #eee;
	border-bottom: 1px solid #f2acb2;
	margin-bottom: 20px;
}
.stitle::before{
	content: '';
	position: absolute;
	bottom: -1px;
	width: 100px;
	height: 1px;
	background: #f2acb2;
	background: rgba(226,0,4,.9);
}

/*dtitle*/
.dtitle{
	font-weight: bold;
	font-size: 1.4rem;
	text-align: center;
}
.dtitle::after{
	content: '';
	display: block;
	width: 150px;
	height: 1px;
	background: #000;
	margin: 20px auto 40px;
}
@media (max-width: 750px){
	.dtitle{
		font-size: 1.2rem;
	}
}

.ntitle{
	font-size: 1.2rem;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}
.ntitle::before{
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 10px;
	color: #f2acb2;
}

.center{
	text-align: center;
}
.bold{
	font-weight: bold;
	font-size: 1.2rem;
}


/*ボタン*/
.sbtn{
	text-align: center;
}
.sbtn a{
	display: block;
	border: 1px solid #D8A300;
	margin: 0 auto;
	text-align: center;
	width: 300px;
	padding: 15px 0;
	border-radius: 40px;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 0.8rem;
	color: #fff;
	transition: all .5s ease;
	background: #D8A300;
}
.sbtn a:hover{
	background:#fff;
	color: #D8A300;
}
.sbtn.left a{
	margin: 0 auto 0 0;
}

.sbtn.white a{
	background:#fff;
	color: #D8A300;
}
.sbtn.white a:hover{
	color: #fff;
	background: #D8A300;
}

.m_contact a{
	min-width: 280px;
}

.sbtn2{
	max-width: 750px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
@media (max-width: 750px){
	.sbtn2{
		display: block;
	}
	.sbtn2 .sbtn:first-child a{
		margin-bottom: 10px;
	}
}


/*2行の基本Table*/
.info_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr{
	border: 2px solid #f5f5f5;
}
.info_table th {
	background: #f2acb2;
	color: #fff;
	width: 30%;
	border-right: 2px solid #f5f5f5;
}
.info_table th,
.info_table td {
	padding: 15px 0;
}
.info_table td{
	padding-left: 10px;
}
.info_table td {
	background: #fff;
	width: 70%;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}

/*スタイリッシュver*/
.info_table02{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table02 tr{
	border-bottom: 2px solid #f5f5f5;
}
.info_table02 th{
	width: 30%;
	border-bottom: 2px solid #D8A300;
}
.info_table02 th,
.info_table02 td {
	padding: 15px 0;
}
.info_table02 td{
	padding-left: 10px;
}
.info_table02 td{
	width: 70%;
}


/*改行*/
@media (min-width: 451px){
	br.only450{
		display: none;
	}
}

@media (max-width: 450px){
	br.not450{
		display: none;
	}
}

span.ib{
	display: inline-block;
}


/*list*/
ul.check_list li{
}
ul.check_list li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	display: inline-block;
	color: #D8A300;
	margin-right: .5em;
	font-size: .9em;
}

ul.dot_list li{
	margin-bottom: 5px;
}
ul.dot_list li::before{
	content: '・';
	color: #D8A300;
	margin-right: 5px;
}

ul.care_list li{
	margin-bottom: 5px;
}
ul.care_list li::before{
	content: '※';
	color: #f05742;
	font-weight: bold;
}

/*===info_flexbox======*/
/*画像 + テキスト 通常のflex*/
.info_flexbox{
	display: flex;
	justify-content: space-between;
}
.info_flexbox .img{
	width: 48%;
}
.info_flexbox .text{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox{
		display: block;
	}
	.info_flexbox .img{
		width: 100%;
	}
	.info_flexbox .text{
		width: 100%;
	}
}

/*画像 + テキスト 上下逆転のflex*/
.info_flexbox_reverse{
	display: flex;
	justify-content: space-between;
}
.info_flexbox_reverse .text{
	width: 48%;
}
.info_flexbox_reverse .img{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox_reverse{
		flex-direction: column-reverse;
	}
	.info_flexbox_reverse .text{
		width: 100%;
	}
	.info_flexbox_reverse .img{
		width: 100%;
	}
}

.img_wrap3{
	display: flex;
	justify-content: space-between;
}
.img_wrap3 .img{
	width: 32%;
}


/*テキストリンク*/
a.t_link{
	color: #f05742;
	background-image: linear-gradient(to right, #f2acb2, #f2acb2);
	background-position: 0 100%;
	background-position: bottom left;
	background-size: 100% 1px;
    background-repeat: no-repeat;
	transition: 0.4s;
}
a.t_link:hover{
	opacity: 0.6;
    background-size: 0% 1px;
}

.red{
	color: #f05742;
}

/*===// 共通部分ここまで ===========*/






/*===ヘッダー==============================*/
.site_header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
}
.site_header .container{
	border-radius: 0 0 50px 50px;
	box-shadow: 3px 3px rgb(0 0 0 / 10%);
	padding: 20px 40px;
	background: #fff;
}
.site_header .container .flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site_header .container .flex .pre_flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: calc(100% - 220px);
	flex-wrap: wrap;
}

.site_header h1{
	width: 400px;
}
.site_header h1 a{
	display: block;
	width: 100%;
}
.site_header h1 a img{
	display: block;
	width: 100%;
}
.site_header h1 a:hover{
	opacity: 0.7;
}

.global_nav{
	margin: 0 0 0 auto;
}
.global_nav ul{
	display: flex;
}
.global_nav ul li{
	margin: 0 10px;
}
.global_nav ul li a{
	display: block;
	text-align: center;
	white-space: nowrap;
}
.global_nav ul li a::before{
	content: url(../img/arrow02.png);
	color: #D8A300;
	display: block;
	opacity: 0.6;
	transition: 0.8s;
}
.global_nav ul li a span{
	display: block;
	font-family: sheila, sans-serif;
	text-transform: capitalize;
	letter-spacing: 0.1em;
	color: #D8A300;
	font-size: 0.8rem;
}
.global_nav ul li a:hover{
	opacity: 0.8;
}
.global_nav ul li a:hover::before{
	transform: translateY(6px);
}

.site_header .tr{
	width: 200px;
}
.site_header .tr .tel_btn a{
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 5px;
}
.site_header .tr .tel_btn a:hover{
	opacity: 0.7;
}
.site_header .tr .sns_wrap .sns a{
	display: block;
	width: 100%;
	color: #fff;
	border-radius: 20px;
	padding: 0 15px;
	font-weight: bold;
	text-align: center;
}
.site_header .tr .sns_wrap .sns.insta a{
	background: #D8A300;
	border: 1px solid #D8A300;
	margin-bottom: 5px;
}
.site_header .tr .sns_wrap .sns.fb a{
	background: #8C6600;
	border: 1px solid #8C6600;
}
.site_header .tr .sns_wrap .sns a:hover{
	background: #fff;
}
.site_header .tr .sns_wrap .sns.insta a:hover{
	color: #D8A300;
}
.site_header .tr .sns_wrap .sns.fb a:hover{
	color: #8C6600;
}

@media (max-width: 960px){
	.global_nav,
	.site_header .tr{
		display: none;
	}
	.site_header .container .flex .pre_flex{
		width: 100%;
	}
	.site_header h1{
		width: 300px;
	}
}
@media (max-width: 450px){
	.site_header h1{
		width: 240px;
	}
}


.mobile_sns{
	display: flex;
}
.mobile_sns a{
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-left: 10px;
}
.mobile_sns .sns_fa a{
	background: #8C6600;
}
.mobile_sns .sns_in a{
	background: #D8A300;
}
.mobile_sns a i{
	color: #fff;
	font-size: 20px;
}
.mobile_sns a:hover{
	transform: scale(0.95);
	opacity: 0.8;
}


/*===サイドSNSボタン==============================*/
.side_sns{
	position: fixed;
	top: 45%;
	right: 0;
	z-index: 50;
	display: none;
}
.side_sns a{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #d4ab37;
	color: #fff;
	font-weight: normal;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 15px;
	transition: .3s;
}
.side_sns a:nth-child(2){
	top: calc(32px + 12px);
}
.side_sns a i{
	display: inline-block;
	line-height: 32px;
	font-size: 16px;
}
.side_sns a span{
	display: none;
	font-weight: bold;
	white-space: nowrap;
	font-size: 14px;
	line-height: 32px;
	margin-left: 15px;
}

.side_sns a:hover{
	width: 150px;
	border-radius: 16px 0 0 16px;
	right: 0;
}
.side_sns a:hover span{
	display: inline-block;
}
@media (max-width: 960px){
	.side_sns{
		display: block;
	}
}


/*==kv==============================*/
.kv_wrapper{
	padding: 250px 0;
	background: #fbf9f3;
	overflow: hidden;
}
#kv{
	position: relative;
}
#kv .kv_bg{
	position: relative;
	width: 600px;
	height: 600px;
	margin: 0 auto;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #fff;
	transition: background-image 0.3s;
	border-radius: 50%;
	pointer-events: none;
}
#kv .kv_bg .wrap{
	display: block;
	width: 100%;
}
#kv .kv_bg .deco01{
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-4%, -4%);
	z-index: 2;
}
#kv .kv_bg .deco02{
	display: block;
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translate(10%, 10%);
	z-index: 2;
}

#kv .kv_bg{
	background-image: url(../img/kv_bg_default.jpg);
}
#kv.bg1 .kv_bg{
	background-image: url(../img/logo01.png);
	background-size: 70%;
}
#kv.bg2 .kv_bg{
	background-image: url(../img/logo02.png);
	background-image: url(../img/logo06.png);
	background-size: 70%;
}
#kv.bg3 .kv_bg{
	background-image: url(../img/logo03.png);
	background-size: 70%;
}
#kv.bg4 .kv_bg{
	background-image: url(../img/kv_bg04.jpg);
}
#kv.bg5 .kv_bg{
	background-image: url(../img/logo05.png);
	background-size: 70%;
}
#kv .kv_list{
}
#kv .kv_list .list_item{
	position: absolute;
	z-index: 3;
}

#kv .kv_list .list_item a{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	color: #fff;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	box-shadow: 3px 3px rgb(0 0 0 / 10%);
	background: url(../img/pastel01.png);
}
#kv .kv_list .list_item a::before{
	content: url(../img/arrow02_wh.png);
	color: #D8A300;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translate(-50%, 0);
	animation: flowX 1.5s ease-in-out infinite alternate;
	opacity: 0.9;
}
@keyframes flowX {
	0% {
		transform: translate(-50%, -5px);
	}
	100% {
		transform: translate(-50%, 5px);
	}
}

#kv .kv_list .list_item a:hover{
	opacity: 0.7;
}


#kv .kv_list .list_item01{
	top: 5%;
	left: 50%;
	transform: translateX(calc(-50% - 420px));
}
#kv .kv_list .list_item02{
	bottom: 0%;
	left: 50%;
	transform: translateX(calc(-50% - 310px));
}
#kv .kv_list .list_item03{
	top: 0%;
	left: 50%;
	transform: translateX(calc(-50% + 200px)) translateY(-30%);
}
#kv .kv_list .list_item04{
	bottom: -5%;
	left: 50%;
	transform: translateX(calc(-50% + 400px));
}
#kv .kv_list .list_item05{
	top: 20%;
	left: 50%;
	transform: translateX(calc(-50% + 330px));
}

#kv .kv_list .list_item01 a{
	width: 210px;
	height: 210px;
}
#kv .kv_list .list_item02 a{
}
#kv .kv_list .list_item03 a{
	width: 210px;
	height: 210px;
}
#kv .kv_list .list_item04 a{
}

@media (max-width: 960px){
	.kv_wrapper{
		padding: 180px 0;
	}
	#kv .kv_bg{
		width: 400px;
		height: 400px;
		margin-bottom: 60px;
	}
	#kv .kv_list{
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
	}
	#kv .kv_list .list_item{
		position: static;
		transform: none;
	}
	#kv .kv_list .list_item a{
		width: 170px;
		height: 170px;
		margin-bottom: 20px;
	}
}
@media (max-width: 750px){
	.kv_wrapper{
		padding: 140px 0;
	}
	#kv .kv_bg{
		width: 320px;
		height: 320px;
	}
	#kv .kv_list .list_item a{
		width: 180px;
		height: 180px;
	}
}
@media (max-width: 450px){
	#kv .kv_list .list_item a{
		width: 170px;
		height: 170px;
	}
}

/*===メイン==============================*/
main{
	display: block;
	position: relative;
}
main section{
	padding: 140px 0;
	position: relative;
}
@media (max-width: 750px){
	main section{
		padding: 60px 0;
	}
}

/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(20px);
	transition: 1.5s;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}

.bg01{
	background: #f2acb2;
}
.bg02{
	background: linear-gradient(-90deg,rgba(215,21,24,.3),rgba(215,21,24,.8) 50%,rgba(226,0,4,.9));
	color: #fff;
}
@media (max-width: 750px){
	.bg02{
		background: linear-gradient(-45deg,rgba(215,21,24,.3),rgba(215,21,24,.8) 50%,rgba(226,0,4,.9));
	}
}
.bg03{
	background: url(../img/basic05.png);
}

/*==catch==============================*/
.catch_wrapper{
	background:  #fbf9f3;
	padding-bottom: 400px;
}
.catch{
	width: 90%;
	max-width: 500px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}
.catch img{
	display: block;
	width: 100%;
}
.catch_wrapper .deco{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
}
.catch_wrapper .deco02{
	position: absolute;
	width: 300px;
	left: 16%;
	bottom: 25%;
	opacity: 0.6;
}
.catch_wrapper .deco03{
	position: absolute;
	top: -260px;
	right: 0;
	opacity: 0.6;
	overflow: hidden;
}
.catch_wrapper .deco03{
	width: 600px;
}
@media (max-width: 950px){
	.catch_wrapper .deco02{
		left: 20px;
	}
	.catch_wrapper .deco03{
		top: -200px;
		opacity: 0.5;
	}
}
@media (max-width: 750px){
	.catch_wrapper .deco02{
		width: 200px;
	}
}

/*==新着情報==============================*/
.news{
}

/*==welcome==============================*/
.welcome{
}
.welcome .text{
	width: 50%;
	padding-bottom: 60px;
}
.welcome .text p{
	line-height: 2.5;
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.welcome .logo_mark{
	position: absolute;
	bottom: 10%;
	right: 10%;
	width: 300px;
	opacity: 0.6;
}
@media (max-width: 750px){
	.welcome .text{
		width: 100%;
		padding-bottom: 20px;
	}
	.welcome .text p{
		line-height: 2.5;
		font-size: 1.1rem;
		font-weight: bold;
		margin-bottom: 20px;
	}
	.welcome .logo_mark{
		position: static;
		width: 70%;
		max-width: 300px;
		margin: 0 0 0 auto;
	}
}


/*===各施設サービスついて==============================*/
.t_service{
	overflow: hidden;
}
.t_service .deco{
	position: absolute;
	top: 0;
	left: 0;
	width: 500px;
}
.t_service .flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.t_service .flex .box{
	width: 48%;
	margin-bottom: 80px;
}
.t_service .flex .box p{
	text-align: center;
}
.t_service .flex .box .img{
	width: 100%;
	margin: 0 auto 15px;
	max-width: 500px;
	overflow: hidden;
}
.t_service .flex .box:nth-child(1) .img{
	border-radius: 80% 30% 50% 50%/50%;
}
.t_service .flex .box:nth-child(2) .img{
	border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
}
.t_service .flex .box:nth-child(3) .img{
	border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
}
.t_service .flex .box:nth-child(4) .img{
	border-radius: 80% 30% 50% 50%/50%;
}
@media (max-width: 960px){
	.t_service .deco{
		width: 400px;
	}
}
@media (max-width: 750px){
	.t_service .deco{
		width: 300px;
		opacity: 0.6;
	}
	.t_service p{
		text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
	}
}
@media (max-width: 450px){
	.t_service .deco{
		width: 200px;
	}
	.t_service .flex .box{
		width: 100%;
		margin-bottom: 40px;
	}
}

/*===Hot Yoga Studio Padma==============================*/
.hs .deco{
	position: absolute;
	bottom: 5%;
	right: 0;
	width: 400px;
}
@media (max-width: 960px){
	.hs .deco{
		width: 300px;
		opacity: 0.6;
	}
	.hs p{
		text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
	}
}
.img2{
	display: flex;
	justify-content: space-around;
	margin: 0 auto 40px;
	max-width: 750px;
}
.img2 .img{
	width: 48%;
}


/*===フッター==============================*/
.footer_top{
	background: #f2acb2;
	padding: 60px 0;
	color: #fff;
	text-align: center;
}
.footer_top .btn_wrap{
	display: flex;
	justify-content: space-around;
}
.footer_top .btn_wrap .btn{
	width: 360px;
}
.footer_top .btn_wrap .btn a{
	display: block;
	width: 100%;
	background: #D8A300;
	color: #fff;
	padding: 20px 0;
	font-size: 1.5rem;
	border: 1px solid #D8A300;
}
.footer_top .btn_wrap .btn a:hover{
	background: #fff;
	color: #D8A300;
}

.footer_middle{
	text-align: center;
	padding: 60px 0 20px;
}
.footer_middle h3{
	width: 80%;
	max-width: 400px;
	margin: 0 auto 10px;
}
.footer_middle h3 a{
	display: block;
	width: 100%;
}
.footer_middle h3 a img{
	display: block;
	width: 100%;
}
.footer_middle h3 a:hover img{
	opacity: 0.7;
}
.footer_middle p{
	font-size: 0.8rem;
}

.footer_bottom{
	background: rgba(226,0,4,.9);
	text-align: center;
	padding: 10px 0;
	color: #fff;
}
@media (max-width: 750px){
	.footer_top .btn_wrap{
		display: block;
	}
	.footer_top .btn_wrap .btn{
		width: 100%;
		margin-bottom: 20px;
	}
}


/*トップに戻る*/
.page_top{
	opacity: 0;
	pointer-events: none;
  	width: 50px;
  	height: 50px;
  	position: fixed;
  	right: 10px;
  	bottom: 10px;
	border-radius: 50%;
	opacity: 0;
	transition: 1s;
  	background: rgba(226,0,4,.9);
  	z-index: 50;
}
.page_top a{
	display: block;
	position: relative;
	z-index: 10;
  	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.page_top a i{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  	font-weight: 900;
  	font-size: 25px;
  	color: #fff;
}
.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
	opacity: .6;
}
.page_top.is_animation:hover{
	opacity: 1;
	transform: translateY(-10px);
}


/*=================================*/
/*===下層ページ===============================================================*/
/*下層トップ*/
.kasou_top{
	background: url(../img/kasou_top.jpg);
	background-size: cover;
	background-position: center;
	width: 95%;
	box-shadow: rgb(255, 255, 255) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
	margin: 0 0 0 auto;
	padding: 200px 0;
	margin-top: 100px;
}
.kasou_top h2{
	font-weight: bold;
	color: #fff;
	text-shadow: rgba(51, 51, 51, 0.5) 0px 0px 6px;
	padding-left: 60px;
}
.kasou_top h2 .en{
	font-size: 3rem;
	display: block;
	text-transform: capitalize;
	letter-spacing: 3px;
	font-family: sheila, sans-serif;
}
.kasou_top h2 .ja{
	font-size: 1.8rem;
	display: block;
}

@media (max-width: 750px){
	.kasou_top{
		padding: 150px 0;
		margin-top: 40px;
	}
	.kasou_top h2{
		padding-left: 20px;
	}
}
@media (max-width: 450px){
	.kasou_top{
		padding: 100px 0;
	}
	.kasou_top h2 .en{
		font-size: 2.5rem;
	}
	.kasou_top h2 .ja{
		font-size: 1.5rem;
	}
}


/*パンくず*/
.breadcrumb{
	z-index: 1;
	font-size: 12px;
	color: #444;
	font-family: 'Noto Serif JP', serif;
	padding: 5px;
	text-align: right;
}
.breadcrumb li {
	display: inline;
	list-style: none;
	font-weight: normal;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	font-size: 1.1em;
	color: #D8A300;
	font-weight: bolder;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
}
.breadcrumb li a:hover{
	opacity: 0.6;
}

/*===施設紹介ページ==============================*/
.cb_in{

}
.cb_in .lede{
	max-width: 750px;
	margin: 0 auto 40px;
}
.cb_in .lede .img{
	width: 90%;
	max-width: 500px;
	margin: 0 auto;
	opacity: 0.8;
}
.cb_in .list ul{
	margin: 0 auto;
	max-width: 750px;
}
.cb_in .list ul li{
	border-bottom: 1px dashed #f2acb2;
	padding: 10px 0 10px 10px;
	font-size: 1.1rem;
}
.cb_in .list ul li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f4ad";
	font-weight: bold;
	margin-right: 10px;
	color: #f2acb2;
}
.cb_in .deco01{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 300px;
}
.cb_in .deco02{
	position: absolute;
	top: 0;
	right: 0;
	width: 397px;
}
.cb_in .deco03{
	position: absolute;
	top: 0;
	left: 0;
	width: 397px;
}
@media (max-width: 750px){
	.cb_in .deco01{
		width: 150px;
	}
	.cb_in .deco02{
		width: 200px;
	}
	.cb_in .deco03{
		width: 160px;
	}
}

.hana_in01 .deco01{
	position: absolute;
	top: 0;
	left: 0;
	width: 600px;
	opacity: 0.6;
}
.hana_in02 .deco01{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 600px;
	opacity: 0.6;
}
.hana_in p{
	text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
}
@media (max-width: 750px){
	.hana_in01 .deco01{
		width: 300px;
		opacity: 0.5;
	}
	.hana_in02 .deco01{
		width: 300px;
		opacity: 0.5;
	}
}

.sub_logo{
	margin: 0 auto 80px;
	width: 300px;
}
.sub_logo_wrap .sub_logo{
	width: 90%;
	max-width: 750px;
	max-width: 600px;
}


/*===サービス内容ページ==============================*/
.tab{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.tab li{
	width: 49%;
	margin-bottom: 20px;
}
.tab li a{
	display: block;
	text-align: center;
	width: 100%;
	padding: 15px 5px;
	border-radius: 400px;
	letter-spacing: 0.2em;
	border: 1px solid #D8A300;
	background:#D8A300;
	color: #fff;
	transform: translateY(2px);
}
.tab li a:hover{
	opacity: 0.6;
}
.tab li.active a{
	background: transparent;
	color: #D8A300;
}
.tab_area{
	display: none;
	opacity: 0;
}
.tab_area.is-active{
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@media (max-width: 750px){
	.tab li{
		width: 100%;
		margin-bottom: 10px;
	}
}
























.service_link .flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.service_link .flex .box{
	width: 24%;
	width: 31%;
}
.service_link .flex .box .sbtn a{
	width: 100%;
}
@media (max-width: 960px){
	.service_link .flex .box{
		width: 100%;
		margin: 0 auto 30px;
	}
}

.t_flex{
	display: flex;
	justify-content: space-between;
}
.t_flex .text{
	width: 48%;
}
@media (max-width: 750px){
	.t_flex{
		display: block;
	}
	.t_flex .text{
		width: 100%;
	}
}

.service_cb .flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.service_cb .flex .box{
	width: 48%;
	margin-bottom: 60px;
}
.service_cb .flex .box > p{
	line-height: 2;
}
.service_cb .flex .box .items{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.service_cb .flex .box .items .cell{
	width: 48%;
	margin-bottom: 20px;
}
@media (max-width: 960px){
	.service_cb .flex .box{
		width: 100%;
	}
}


.cost .cost_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cost .cost_flex .box{
	width: 48%;
	line-height: 2;
}
.cost .table{
	font-weight: bold;
}
@media (max-width: 960px){
	.cost .cost_flex{
		display: block;
	}
	.cost .cost_flex .box{
		width: 100%;
	}
}

.flow_list .item{
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
}
.flow_list .item .time{
	color: #f2acb2;
	margin-right: 0.5em;
	width: 50%;
	order: -1;
}
.flow_list .item .time .in{
	width: 50%;
}
.flow_list .item .time::before{
	font-family: "Font Awesome 5 Free";
	content: "\f017";
	font-weight: bold;
	margin-right: 10px;
}
@media (max-width: 750px){
	.flow_list .item{
		padding: 15px 0;
		font-size: 1rem;
	}
}







/*===会社概要ページ==============================*/
.mission{
	background: url(../img/misson_bg.png);
	background-size: cover;
	background-position: center;
}

.vision{
	
}
.vision .stitle{
	text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
	border-bottom: 1px solid #eee;
	margin-bottom: 40px;
}

.values .inner{
	max-width: 960px;
}
.values .dtitle::after{
	width: 150px;
	height: 1px;
	background: #fff;
	margin: 20px auto 30px;
}

.clear5 .flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.clear5 .flex .box{
	width: 160px;
	height: 160px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(-90deg,rgba(215,21,24,.3),rgba(215,21,24,.8) 50%,rgba(226,0,4,.9));
	margin-bottom: 20px;
}
.clear5 .flex .box p{
    color: #fff;
	font-weight: bold;
	font-size: 1.1rem;
}


/*===お問い合わせページ==============================*/
.contact .tel_contact{
	text-align: center;
	display: inline-block;
	border-top: 3px solid #D8A300;
	border-bottom: 3px solid #D8A300;
	padding: 15px 80px;
	line-height: 1.5;
}
.contact .tel_contact a{
	display: block;
	font-size: 2rem;
	margin-bottom: 3px;
	white-space: nowrap;
}
.contact .tel_contact a span{
	font-size: 0.9em;
	margin-right: 5px;
}
.contact .tel_contact p{
	font-size: .8rem;
}
@media (max-width: 750px){
	.contact .tel_contact{
		padding: 10px 60px;
	}
}
@media (max-width: 450px){
	.contact .tel_contact a{
		font-size: 1.6rem;
	}
}

.no_wrap{
	position: relative;
	padding: 10px;
}
.no_wrap::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.5);
	z-index: 1;
	-ms-backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}


/*メールフォーム*/
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 20%;
	font-weight: bold;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.normal{
	font-weight: normal !important;
}
.mailform .row span{
  	color: #fff;
  	background: #D8A300;
  	padding: 5px;
  	margin-right: 5px;
  	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform .postal_btn{
	padding: 2px 10px;
	background: #73C89C;
	color: white;
	border-radius: 2px;
	margin-top: 5px;
	border: 1px solid #73C89C;
}
.mailform .postal_btn:hover{
	background: #73C89C;
	opacity: 0.9;
}
.mailform button{
	display: block;
	color: #111;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: bold;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #D8A300;
	border: 1px solid #D8A300;
	border-radius: 25px;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: #D8A300;
}
.mailform button::before{
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #D8A300;
    border-bottom: 3px solid #D8A300;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
@media (max-width: 750px){
	input[type=checkbox] + label{
		display: block;
	}
}

.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
}

/*プライバシーポリシー*/
.privacy_flame{
	height: 250px;
	overflow-y: scroll;
	background: #fff;
}
.privacy_flame p{
	padding: 10px;
}
.privacy p span{
	font-weight: bold;
	font-size: 1rem;
	display: block;
}
/*スクロールバー全体*/
.privacy_flame::-webkit-scrollbar {
    width: 5px;
}

/*スクロールバーの軌道*/
.privacy_flame::-webkit-scrollbar-track {
  	border-radius: 10px;
  	box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
.privacy_flame::-webkit-scrollbar-thumb {
  	background-color: rgba(0, 0, 0, .5);
  	border-radius: 10px;
  	box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}

/*===サンクスページ===*/
.thanks .inner .small p{
	font-size: 0.8rem;
}
.thanks .sbtn a{
	margin-bottom: 20px;
}

/*===倉庫==============================*/
@media (max-width: 960px){
}
@media (max-width: 750px){
}
@media (max-width: 450px){
}

/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root .class{
	background-attachment: scroll;
}


/*=== 230721更新分 ==============================*/
.list_item_note {
	position: absolute;
	background: #d494d4;
	width: 100%;
	max-width: 105px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	font-size: 0.9rem;
}
.list_item_note p {
	margin-bottom: 0;
}
.list_item_note br {
	display: none;
}
/*ホームヘルプサービスHana 経営者募集中 位置左下*/
.notelb {
	left: -48px;
	bottom: -26px;
}
/*訪問介護事務所Hana 経営者募集中 位置右下*/
.noterb {
	right: -48px;
	bottom: -36px;
}
/*Hot Yoga Studio Padma 移転休業中 位置右上*/
.notert {
	top: -36px;
	right: -58px;
}
@media (max-width: 1175px) {
	/*Hot Yoga Studio Padma 移転休業中 位置右上*/
	.notert {
		top: auto;
		right: auto;
		bottom: -38px;
		left: -48px;
	}
}
@media (max-width: 960px) {
	.list_item_note {
		max-width: 65px;
		line-height: 1.35;
		font-size: 0.8rem;
	}
	.list_item_note br {
		display: block;
	}
	/*ホームヘルプサービスHana 経営者募集中 位置左下*/
	.notelb {
		left: 8px;
		bottom: -13px;
	}
	/*訪問介護事務所Hana 経営者募集中 位置右下*/
	.noterb {
		right: 8px;
		bottom: -13px;
	}
	/*Hot Yoga Studio Padma 移転休業中 位置右上*/
	.notert {
		right: auto;
		left: 8px;
		bottom: -13px;
	}
}
.waku{
	border-color: #E8C882;
	border-style: solid;
	border-width: 1px;
	margin-bottom: 20px;
	padding: 10px;
	text-align: center;
}
.poinsettia_bg{
	background-image: url("../img/bg001.jpg");
	background-size: cover;
	height: 100%;
	
}



/* 250227更新分 メールフォーム　チェックボックスの位置調整 ============*/
input[type=checkbox] + label::before {
  top: 0.4em;
  transform: translate(0, 0);
}
input[type=checkbox] + label::after {
  top: 0.4em;
  left: 5px;
  margin-top: 0;
}