@charset "utf-8";

* {
	box-sizing: border-box;
}

body {
	margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #1C1C1C;
    font-size: calc(12px + 0.2vw);
}

@media(min-width:961px) {
	.sponly {
		display: none !important;
	}
}

@media(max-width:960px) {
	.pconly {
		display: none !important;
	}
}

@media(min-width:561px) {
	.show_sp {
		display: none !important;
	}
}

@media(min-width:961px) {
	.show_sptb {
		display: none !important;
	}
}

@media(max-width:560px) {
	.show_tbpc {
		display: none !important;
	}
}

@media(max-width:960px) {
	.show_pc {
		display: none !important;
	}
}

/*変数*/
:root {
	--basecolor: #ff6699;
	/*捕色*/
	--subcolor:#ffebf1;

}

img {
	max-width: 100%;
	vertical-align: bottom;
}


p {
	margin: 0
}

h3 {
	margin: 0;
}

a {
	color: #55321f;
	text-decoration: none;

}

a:visited {
	color: #000;
}

a:hover {
	/*filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;*/
}

.tac {
	text-align: center;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.mg0 {
	margin: 0 auto;
}


.margin1 {
	margin: 10px
}

.margin2 {
	margin: 20px
}

.margin3 {
	margin: 30px
}

.margin4 {
	margin: 40px
}

.margin5 {
	margin: 50px
}

.mgb1 {
	margin-bottom: 10px
}

.mgb2 {
	margin-bottom: 20px
}

.mgb3 {
	margin-bottom: 30px
}

.mgb4 {
	margin-bottom: 40px
}

.mgb5 {
	margin-bottom: 50px
}

.mgt1 {
	margin-top: 10px
}

.mgt2 {
	margin-top: 20px
}

.mgt3 {
	margin-top: 30px
}

.mgt4 {
	margin-top: 40px
}

.mgt5 {
	margin-top: 50px
}

.mgl1 {
	margin-left: 10px
}

.mgl2 {
	margin-left: 20px
}

.mgl3 {
	margin-left: 30px
}

.mgl4 {
	margin-left: 40px
}

.mgl5 {
	margin-left: 50px
}

.mgr1 {
	margin-right: 10px
}

.mgr2 {
	margin-right: 20px
}

.mgr3 {
	margin-right: 30px
}

.mgr4 {
	margin-right: 40px
}

.mgr5 {
	margin-right: 50px
}

.n_mgt5 {
	margin-top: 5%
}

.padding1 {
	padding: 10px
}

.padding2 {
	padding: 20px
}

.padding3 {
	padding: 30px
}

.padding4 {
	padding: 40px
}

.padding5 {
	padding: 50px
}

.pdt1 {
	padding-top: 10px
}

.pdt2 {
	padding-top: 20px
}

.pdt3 {
	padding-top: 30px
}

.pdt4 {
	padding-top: 40px
}

.pdt5 {
	padding-top: 50px
}

.pdt6 {
	padding-top: 60px
}

.pdt7 {
	padding-top: 70px
}

.pdt8 {
	padding-top: 80px
}

.pdt9 {
	padding-top: 90px
}

.pdt10 {
	padding-top: 100px
}

.pdb1 {
	padding-bottom: 10px
}

.pdb2 {
	padding-bottom: 20px
}

.pdb3 {
	padding-bottom: 30px
}

.pdb4 {
	padding-bottom: 40px
}

.pdb5 {
	padding-bottom: 50px
}

.pdb6 {
	padding-bottom: 60px
}

.pdb7 {
	padding-bottom: 70px
}

.pdb8 {
	padding-bottom: 80px
}

.pdb9 {
	padding-bottom: 90px
}

.pdb10 {
	padding-bottom: 100px
}

.pdr5 {
	padding-right: 30%;

}





/*------------*/

.flex {
	display: flex;
}

.flex_wrap_reverse {
	display: flex;
}

/*--------------------------------
       ここまでtemplate
---------------------------------*/

/*sp_menu*/
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive {
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position: fixed;
	z-index: 999;
	top: 0;
	width: 100%;
	height: 100vh;
}

/*丸の拡大*/
.circle-bg {
	position: fixed;
	z-index: 3;
	/*丸の形*/
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #fff;
	/*丸のスタート位置と形状*/
	transform: scale(0);
	/*scaleをはじめは0に*/
	right: -50px;
	top: -50px;
	transition: all .6s;
	/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
	transform: scale(50);
	/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
	display: none;
	/*はじめは表示なし*/
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
	display: block;
	/*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav .spmenu_ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/

    z-index: 999;
   /* top:50%;
    left:50%;
    transform: translate(-50%,-50%);*/
	width: 90%;
	margin: 40px auto 120px;
	list-style: none;
	padding: 0;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
	animation-name:g-naviAnime;
	animation-duration:1s;
	animation-delay:.2s;/*0.2 秒遅らせて出現*/
	animation-fill-mode:forwards;
	opacity:0;
	}
	@keyframes g-naviAnime{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}



/*リストのレイアウト設定*/
#g-nav li{
	text-align: left; 
	list-style: none;

}
.spmenu_ul .sp_menu{
	border-bottom: 1px solid #ccc;
}

.sp_ko_menu{
	border-radius: 5px;
	margin: 5px 0;
	background: var(--subcolor);
}
#g-nav .sp_ko_menu a{
	color: #000;
}
#g-nav .spmenu_ul .sp_mago_menu a{
	padding: 0 0 5px 15px;
	position: relative;
	color: #000;
}
#g-nav .spmenu_ul .sp_mago_menu a::after{
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	border: 0.1em solid var(--basecolor);
	border-left: 0;
	border-bottom: 0;
	top: 7px;
    left: 0%;
	transform:rotate(45deg);

}

#g-nav li a,
#g-nav li p{
	color: #000;
	text-decoration: none;
	padding:15px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
#g-nav li ul{
	padding: 0 0 1em 1em;
}


/*========= ボタンのためのCSS ===============*/
.sp_memu {
	position: fixed;
	top: 30px;
	right: 110px;
	z-index: 9999;
	/*ボタンを最前面に*/
}

.sp_memu img {
	width: 60px
}

.openbtn {
	position: fixed;
	top: 20px;
	right: 10px;
	z-index: 9999;
	/*ボタンを最前面に*/
	cursor: pointer;
	width: 40px;
	height: 50px;
}

/*×に変化*/
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 0px;
	height: 3px;
	border-radius: 2px;
	background-color: #000;
	width: 100%;
	text-align: center
}

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

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

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

.openbtn span:nth-of-type(4) {
	bottom: 4px;
	background: none;
	font-size: 12px;
}

.openbtn.active span:nth-of-type(1) {
	top: 8px;
	left: 0px;
	transform: translateY(6px) rotate(-45deg);
	width: 100%;
}

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

.openbtn.active span:nth-of-type(3) {
	top: 20px;
	left: 0px;
	transform: translateY(-6px) rotate(45deg);
	width: 100%;
}







/*site_header*/
.site_header {
	max-width: 1170px;
	width: 95%;
	margin: 35px auto;
}

.site_header.flex {
	align-items: center;
	justify-content: space-between;
}

.site_header .logo img {

}

.gtrans {
	text-align: right;
}
.gtrans .goog-te-gadget-simple{
	font-size: 15px;
}

.logo_wrap{
	width: 55%;

}
.logo{

}
.logo img{
	height: 43px;
	width: auto;

}
.logo_sub{
	margin: 10px 0 0 0px;
}
.logo_sub img{
	height: 45px;
	width: auto;
}

.function_wrap{
	display: flex;
	align-items: flex-start;
	/*border: 1px solid;*/
}

.header_links{
	display: flex;
	margin: 0 -100px 0 100px;
	z-index: 2;
}
.tate2{
	/*border: 1px solid red;*/
	flex: 2;
	text-align: right;
}
.yoko1{
	/*border: 1px solid blue;*/
	flex: 1;
	margin: 0 0 0 10px;
	
}
.header_links .tate2 img,
.header_links .yoko1 img{
	height: 40px;
	width: auto;
}
.tate2 a:nth-child(2) img{
	margin: 10px 0 0;
}
.header_links img{

}
.honyaku{
}

  
/*-------文字サイズの変更------*/
ul#fontSize {
	zoom: 1; /*forIE6,7*/
	margin: 2.1em 0 0 0;
	padding: 0;
	display:block;
	display: flex;
	font-size: 87%;
	align-items: center;
}
@media(max-width:992px){
	ul#fontSize {
        margin: 10px 0;
 }
}

ul#fontSize:after {
	content: "";
	display: block;
	clear: both; 
}
ul#fontSize li a{
	color:#FFF;
}

#fontSize .comment{
	background-color:#FFF;
}
#fontSize .comment:hover{
	background-color:#FFF;
}
ul#fontSize li {
	background-color: #009de5;
	padding: 4px 7px;
	margin-right: 5px;
	display: flex;
}
ul#fontSize li.comment{
	width:125px ;
}
ul#fontSize li:last-child{
	margin: 0;
}
ul#fontSize li:hover {
	background-color: #5dc4f3;
}
ul#fontSize li.active {
	background-color: #a2ddff;
}
ul#fontSize li.active:hover {
	background-color: #ceedff;
}


/*メニュー部分*/

#menubox {
	background-image: url(../img/menu_bg.png);
	background-size: cover;
	background-position: center;
	width: 100%;
	/**max-width: 1100px;*/
	height: 70px;
	font-weight: 600;
}

#menubox a {
	color: #fff;
}





#menubox ul {
	display: flex;
	list-style: none;
	padding: 0;
	max-width: 1100px;
	margin: 0 auto;
	justify-content: space-between
}
#menubox ul .menu02,
#menubox ul .menu06{
	position: relative;
}
#menubox ul .menu02::after,
#menubox ul .menu06::after{
	content: "";
	position: absolute;
	bottom: 13px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(135deg);
	transition: .3s;
	z-index: 40;
}

#menubox ul>li>ul {
	display: none;
	text-align: left;
	box-shadow: 0 2px 3px #00000015, 1px 0 3px #00000015;
}

#menubox ul>li:hover .sub_box_2 {
	z-index: 50;
	display: block;
	position: absolute;
	width: 18em;
	margin: 0px 0 0;
	top: 4em;
	left: 0;
	list-style-type: none;
	background-color: #fff;
}
#menubox ul li .sub_box_2 a {
    padding: 10px 1vw 10px;
}
#menubox ul li .sub_box_2 a{
	color: #333;
	display: block;
	text-align: left;
	

}
.nav li ul li{
	width: 100%;
	border-bottom:1px solid #ccc;
	margin: 0;
}
.nav li ul li a{
	display: inline-block;
	height: auto;

}
.nav li a:hover {
    text-decoration: none;
    background-color: #eee;
	color:#009de5;
}
#menubox a:hover {
    color:#009de5;
}


.nav li {
	position: relative;
	display: block;
	font-size: 15px;
	width: 14%
}

.nav li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	text-align: center;
	margin: 0;
}

#menubox ul>li:hover .sub_box_wrap {
	z-index: 50;
	display: block;
	position: absolute;
	width: 50em;
	padding: 20%;
	margin: 0px 0 0;
	top: 4em;
	left: -0px;
	list-style-type: none;
	background-color: #fff;
}
#menubox .sub_box_wrap a{
	color: #000;
	height: auto;
	justify-content: left;
}
.sub_box div a:nth-child(n+2){
	padding: 10px 0 10px 15px;
	margin: 0 0 0 0px;
}
.sub_box div a:nth-child(n+2) i{
	font-size: 55%;
	font-style: unset;
	margin: 0 5px 0 0px;
	color: var(--basecolor);
}
.sub_box.flex{

}
.sub_box.flex div{
	flex: 1;

}
.sub_box.flex div:nth-child(1){
	margin-right: 3em;
	position: relative;
}
.sub_box.flex div:nth-child(2){
	margin-right: 3em;
	position: relative;
}
.sub_box.flex div:nth-child(1)::after{
    position: absolute;
    top: 0;
    left: 100%;
    margin: 0 1.5rem;
    content: "";
    width: 1px;
    height: 100%;
    border-left: solid 1px #ccc;
}
.sub_box.flex div:nth-child(2)::after{
    position: absolute;
    top: 0;
    left: 100%;
    margin: 0 1.5rem;
    content: "";
    width: 1px;
    height: 100%;
    border-left: solid 1px #ccc;
}

#menubox .sub_box_wrap .sub_box_ttl{
	padding: 5px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--subcolor);
}
.sub_box_wrap .sub_box_ttl span{
	display: inline-block;
	width: 18px;
    height: 18px;
    background: url(../img/link_arrow.png) no-repeat;
    background-size: contain;
	margin: 0 0 0 5px;
}
.sub_box_wrap .sub_box .sub_box_ttl:hover{
	background: #fff;
	color: var(--basecolor);
}

/*hero_img*/
.hero_img{
	width: 1170px;
	height: 658px;
	max-width: 95vw;
	max-height: 53.4vw;
	margin: 20px auto;
}
.hero_img img{
	width:100%;
	height:100%;
	object-fit:cover;
}



/*汎用*/
.section_box {
    margin: 30px auto 0;
    position: relative;
}
.contents_wrap {
    max-width: 1150px;
    width: 90%;
    margin: 0 auto;
}
.noto-serif {
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-style: normal;
}
.font_color{
	color: var(--basecolor);
}

/* ボタン共通設定 */
.btn {
	/*影の基点とするためrelativeを指定*/
	position: relative;
	/*ボタンの形状*/
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	background: transparent;
	border-radius: 5px;
	border: solid 1px var(--basecolor);
	outline: none;
	/*アニメーションの指定*/
	transition: all 0.2s ease;
}

/*hoverをした後のボタンの形状*/
.btn:hover {
	border-color: transparent;
}


/*== 右下に押し込まれる（立体が平面に） */

/*影の設定*/
.pushright:before {
	content: "";
	/*絶対配置で影の位置を決める*/
	position: absolute;
	z-index: 0;
	top: 4px;
	left: 4px;
	/*影の形状*/
	width: 100%;
	height: 100%;
	border-radius: 5px;
	border: 1px solid var(--basecolor);
}

/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover span {
	background-color: #fff;
	color: var(--basecolor);
	transform: translate(5px, 5px);
}

/*ボタン色が変わる*/
.colorchange {
	margin: 2% 0%;
	text-align: center;
	width: 45%;
	height: 60px;
}

.colorchange span {
	text-align: left;
	position: relative;
	z-index: 2;
	/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	/*テキストの形状*/
	display: block;
	padding: 0px 30px;
	height: 100%;
	border-radius: 5px;
	background: #fff;
	color: #000;
	display: flex;
	align-items: center;

	/*アニメーションの指定*/
	transition: all 0.3s ease;
}

.colorchange span::before {
	content: '';
	/*絶対配置で矢印の位置を決める*/
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	/*矢印の形状*/
	width: 18px;
	height: 18px;
	background: url(../img/link_arrow.png) no-repeat;
	background-size:contain;

}



/*キャッチコピー*/
.catchcopy_box .noto-serif{
	color: var(--basecolor);
	text-align: center;
	font-size: 220%;
}
.catchcopy_box .noto-serif span{
	display:inline-block
}
.subject_ttl{
	background: var(--basecolor);
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 50px;
	margin: 0;
}

/*サービスのご案内*/
.back_nami{
	padding: 20px;
	border-radius: 5px;
	margin: 20px 0;
}
.back_nami.yellow{
	background: url(../img/yellow_back.jpg);

}
.back_nami.blue{
	background: url(../img/mizuiro_back.jpg);
}

.taisyo{
	display: flex;
	align-items: center;
	margin: 0px 0 5px 0;
}
.taisyo h2{
	margin: 0;
	font-size: 120%;
	color: #c00000;
	margin: 0 0 0 20px;
}
.taisyo h3{
    background: #d00e31;
    padding: 2px 2px;
    color: #fff;
    font-weight: normal;
    border-radius: 45px;
    width: 70px;
    width: 10%;
    text-align: center;
}

/*施設概要*/
.facility_guidance{
	border: 1px solid #e5e5e5;
	border-bottom:none ;
	margin: 20px 0;
}
.facility_guidance dl{
	display: flex;
	margin: 0;

}
/*.facility_guidance dt span{
	display: block;
    width: 20px;
    height: 100%;
    margin: 0 5px 0 0;
    background: var(--basecolor);
}*/
.facility_guidance dt{
	position: relative;
	width: 15%;
	background: #f5f5f5;
	padding: 10px 0 10px 30px;
	border-bottom: 3px solid #fff;
	display: flex;
	align-items: center;
}
.facility_guidance dt::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 100%;
	background: var(--basecolor);
}
.facility_guidance dd{
	width: 85%;
	margin: 0;
	padding: 10px 0 10px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.facility_guidance dl:last-child dt{
	border-bottom:none
}

/*アクセス*/
.map_wrap{
	margin: 20px 0 ;
}
.map_wrap iframe{
	width: 100%;
	height: 400px;
}
.route{
	display: flex;
	font-size: 130%;
}
.route p img{
	height:25px;
	width: auto;
}


/*------------- footer -------------*/
footer{
	margin:150px 0 ;
}
footer .tac{
	margin:0 0 50px
}
footer .tac img{
	width:500px;
	max-width: 255px;
}
footer .tac h2{
	margin:30px 0 10px;
	font-size: 18px;
}
footer .tac a{
	font-size: 18px;
	font-weight:bold
}
.copyright{
	background:#d00e31;
	color:#fff;
	text-align:center;
	padding:30px 0
}
.footer_logo{
	max-width: 400px;
	margin: 40px auto ;
	padding: 30px 0 0;
	border-top: 7px solid var(--basecolor);
}



/*ギャラリーページ*/
.gallery_wrap.flex{
	flex-wrap: wrap;
	margin: 2% 0 0 0;
}
.gallery_wrap.flex div{
	width: 23.5%;
	margin: 0 2% 2% 0;
}
.gallery_wrap.flex div:nth-child(4n){
	margin: 0 0 2% 0;
}




/*--------------- お問い合わせ ---------------*/
.madoguti_txt{
	margin: 20px 0;
	font-size: 120%;
}

.madoguti_box_wrap{
	background: var(--subcolor);
	padding: 1%;
	border-radius: 10px;
	position: relative;
}
.madoguti_box{
	flex-grow: 1;
    padding: 2%;
	background: #fff;
	text-align: center;
}
.madoguti_box:nth-child(1),
.madoguti_box:nth-child(2){
	margin-right: 1em;
    position: relative;
}
/*.madoguti_box:nth-child(1)::after,
.madoguti_box:nth-child(2)::after{
    position: absolute;
    top: 0;
    left: 100%;
    margin: 0 0.5rem;
    content: "";
    width: 1px;
    height: 100%;
    border-left: solid 4px #deebf7;
}*/
.madoguti_box div{
	text-align: center;
}
.madoguti_box div img {
    width: 70px;
}
.madoguti_box span {
    display: block;
    text-align: center;
	margin: 10px 0;
	font-size: 110%;
}
.madoguti_box h3{
    margin-top: 10px;
    color: #000;
}
.madoguti_box .telphone{
	display: block;
    color: #e46d9c;
	font-weight: bold;
    margin: 10px 0 0 0;
    text-align: center;
    font-size: 150%;
}
.madoguti_box .faxphone {
    display: block;
    color: #f5a538;
	font-weight: bold;
    margin: 10px 0 0 0;
    text-align: center;
    font-size: 150%;
}
.madoguti_box .mail_address {
    display: block;
    color: #448fce;
	font-weight: bold;
    margin: 10px 0 0 0;
    text-align: center;
    font-size: 150%;
}
.madoguti_box .mail {
    display: inline-block;
    color: #448fce;
    margin: 10px auto 0 0;
    text-align: center;
    font-size: 120%;
    padding: 5px 20px;
    border-radius: 25px;
    border: 3px solid #448fce;
}

.mail_form_wrap h2{
	display: inline-block;
    color: #448fce;
    margin: 10px 0 20px 0;
    text-align: center;
    font-size: 120%;
    padding: 5px 30px;
    border-radius: 25px;
    border: 3px solid #448fce;
}

.mail_flow{
	margin: 30px 0;
	text-align: center;
}




.form {
	max-width: 900px;
	margin: 0 auto;
	width: 90%;
}

input[type=text], input[type=radio], select, textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
input[type=text], input[type=radio], textarea,
input[type=email]{
	width: 100%;
	border-top:none;
	border-right:none;
	border-left: none;
	height: 50px;
	border:  solid 1px transparent;
	background-color: #f1f1f1;
	padding: 0.5em;
}
input[type="radio"]{
	width: fit-content;
}
input[type="checkbox"]{
	transform: scale(1.6);
	margin-right:8px;
}



.co_table{
	display: flex;
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
	border-bottom: 1px solid #ccc;
}
.co_table dt{
	width: 25%;
	display: flex;
	align-items: center;
}
.co_table dd{
	width: 75%;
	margin: 0;
}
.label-danger{
	font-size: 0.7em;
    display: inline-block;
    vertical-align: middle;
	background-color: #d9534f;
	border-radius: 5px;
	padding: 0px 5px;
	color: #fff;
	margin: 0 0 0 5px;
}

.radio-wrap {
display: flex;
flex-wrap: wrap;
}
.radio-wrap label {
	padding-right:20px;
}

.radio-wrap label input[type="radio"] {
	opacity: 0;
	height: auto;
	appearance: none;
	position: absolute;
}
.radio-wrap label .radio_txt {
	display: inline-block; 
	position: relative;
	padding-left: 26px;
	line-height: 1.5;

}
.radio-wrap label .radio_txt::before {
	position: absolute;
	top: 2px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #eee;
	background: #fff;
	content: "";
	border-radius: 50%;
}

.radio-wrap label .radio_txt::after {
	position: absolute;
	top: 6px;
	left: 4px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #bf0000;
	content: "";
	opacity: 0;
	transition: all 0.3s;
}
.radio-wrap label input:focus + span::before {
	box-shadow: 0 0 4px #bf0000;
}
.radio-wrap label input:checked + span::after {
	opacity: 1;
}
.co_table .short {
    width: 200px;
    margin-bottom: 10px;
}

.submit_tac{
	text-align: center;
}
input[type="submit"], a.back {
    width: auto;
    height: auto;
    text-align: center;
    border: 0px solid;
    padding: 10px 20px;
	background-color: #23a879;
    border: 2px solid #23a879;
    color: #ffffff;
    font-size: 16px;
    margin-top:40px;
    min-width:200px;
	display:inline-block;
	cursor:pointer;
}


/*サービスページ*/
.facility_name{
	border: 3px solid var(--basecolor);
	border-radius: 10px;
	margin: 20px 0;
}
.facility_name h2{
	text-align: center;
}
.facility_name.yellow{
	background: url(../img/yellow_back.jpg);
}
.facility_name.blue{
	background: url(../img/mizuiro_back.jpg);
}

/*サービストップ画像*/
.facility_name.blue + div:not(.noexpand),
.facility_name.yellow + div:not(.noexpand){
	width: 1120px;
	height: 747px;
	max-width: 86vw;
	max-height: 57.3vw;
	margin: 20px auto;
}
.facility_name.yellow + div img,
.facility_name.blue + div img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.facility_guide_link_wrap{
	max-width: 900px;
	margin: 30px auto 50px;
}
.facility_guide_link_wrap.btn_2ver{
	max-width: 450px;
}
.facility_guide_link_wrap.btn_3ver{
	max-width: 700px;
}
.facility_guide_link_wrap .colorchange{
	width: 100%;
}
.facility_wrap h4{
	margin:10px 0 0px 0;
	color:var(--basecolor)
}
.guide_links.flex{
	justify-content: space-between;
}
.mihara_links .flex{
	flex-wrap:wrap;
	justify-content:flex-end;
	margin:0 10px 10px
}

.guide_links .flex{
	border: 1px solid var(--basecolor);
	padding: 10px 30px;
	border-radius: 50px;
	transition: all 0.3s;
}
.guide_links .flex img{
	width: 20px;
	margin: 0 0 0 10px;
}
.guide_links .flex:hover{
	background: var(--basecolor);
	color: #fff;
}
.guide_links .flex:hover img{
	filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);

}
.block_ttl{
	position: relative;
	align-items:center;
	justify-content:space-between;
	margin:20px 0
}
.block_ttl::after{
	content:"";
	position:absolute;
	width: 100%;
	height:5px;
	bottom:0;
	right: -2px;
	background:var(--basecolor);
	border-bottom:1px solid #fff;
	border-left:1px solid #fff;
	border-right:1px solid #fff;
	border-top:none;
	box-shadow:1px 1px 0px #000
}
.block_ttl h2{
	margin:0;
	background:var(--basecolor);
	color:#fff;
	padding:10px 20px;
	border-radius: 10px 10px 0 0px;
	letter-spacing:1.2px;
	border:1px solid #fff;
	box-shadow:1px 1px 0px #000
}


/*一日の流れ*/
.day_flow_wrap,.day_flow_txt,.case_wrap{
	max-width: 600px;
	width: 90%;
	margin: 0 auto 3em;
}

.day_flow_wrap .flex{
	margin: 0 0 1.5em;
}
.day_flow_wrap .flex img{
	width: 50px;

}
.day_flow_wrap .flex div{
	margin: 0 2% 0 0%;
}
.day_flow_wrap .flex dl{
	display: flex;
	width: 97%;
	font-size: 120%;
	font-weight: bold;
	margin: 0;
}
.day_flow_wrap .flex dl dt{
	position: relative;
	background: #c5e0b4;
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: center;

}
.day_flow_wrap .flex dl dt::after{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: -1em;
	left: 2em;
	border-style: solid;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 15px solid var(--basecolor);
	border-bottom: 0;
}
.day_flow_wrap .flex:last-child dl dt::after{
	content: "";
	position: absolute;
	border: none;
}
.day_flow_wrap .flex dl dd{
	margin: 0;
	background: #fff2cc;
	padding: 0 0 0 20px;
	width: 60%;
	display: flex;
	align-items: center;
}
.day_flow_txt h2{
	margin: 0;
	font-size:120%
}

/*一日の流れの下部画像*/
.day_flow_txt + div{
	width: 640px;
	height: 427px;
	max-width:84vw;
	max-height:56vw;
	margin: 0 auto 50px;
}
.day_flow_txt + div img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.green{
	color: var(--basecolor);
}
.sonota_flow{
	background-image:linear-gradient(to right, #000 3px, transparent 3px);
	background-size: 15px 3px;
	background-position:0 12px;
	background-repeat: repeat-x; 
	display:flex;
	margin:0 auto 0%;
	font-size:120%;
	font-weight:bold;
	align-items:baseline
}
.sonota_flow div:first-child{
	width:25%;

}
.sonota_flow div:first-child span{
	background:#fff;
	padding:0 5px 0 0
}
.sonota_text{
	width:75%;
	background:#fff
}


/*費用*/
.tongaru {
	position: relative;
	padding: 5px 0px 2px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	margin: 0 0 30px 0;
}
.tongaru::after{
	content: "";
    position: absolute;
    right: 0;
    bottom: -19px;
    left: 0;
    width: 100%;
    height: 20px;
    margin: auto;
    background: #f7f7f7;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.cost_colortxt{
	color: red;
	font-size: 100%;
}
.tongaru p{
	font-size: 130%;
}
.tongaru.blue{
	background: #2e75b6;
}
.tongaru.blue::after{
	background: #2e75b6;
}
.tongaru.brown{
	background: #c55a11;
	margin: 30px 0 30px 0;

}
.tongaru.brown::after{
	background: #c55a11;
}
.case_wrap .flex{
	margin: 0;
}
.case_wrap .flex dt{
	width: 10%;
	padding: 10px;
}
.case_wrap .flex dd{
	width: 90%;
	margin: 0;
	padding: 10px;
	font-size: 120%;
	font-weight: bold;
}
.case_wrap .flex.color dt{
	background: var(--basecolor);
	text-align: center;
	color: #fff;
	font-size: 130%;
}
.case_wrap .flex.color dd,
.case_wrap .flex.color_2 dd{
	background: #fff2cc;
	text-align: left;
}
.case_wrap .flex.color_2 dt{
	background: #fff2cc;
}

.case_wrap .flex.white dd{
	text-align: right;
	padding: 10px 20px 10px 0;
	font-size: 120%;
	font-weight: bold;
}
.case_wrap .flex.white span{
	color: red;
}

.room_price_sonota{
	background-image:linear-gradient(to right, #000 3px, transparent 3px);
	background-size: 15px 3px;
	background-position:0 12px;
	background-repeat: repeat-x; 
	font-size:110%
}
.room_category{
	width:70%;
	
}
.room_category span{
	background: #fff;
    padding: 0 5px 0 0;
}
.room_text{
	width:30%;

	text-align:right;
	
}
.room_text span{
	background:#fff;
	padding:0 0 0 10px
}
.room_text b{
	color:red
}
.case_wrap h2{
	margin:1em 0 10px;
	font-size: 120%;
}
.cost_wrap a{
	text-decoration:underline
}
.cost_wrap a:hover{
	color:var(--basecolor)
}

/*費用ここまで*/
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 100%;
    margin:0 auto;
	padding:0
}

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



/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    padding: 0% 0% 0% 0px;
    transition: all .5s ease;
	color: #cf3e3e;
	font-weight: bold;
}
/*アイコンの＋と×*/
/*.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 3px;
    background-color:#333;
    transition: all 0.3s;
}
.title::before{
    top:48%;
    right: 0px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    right: 0px;
    transform: rotate(90deg);

}*/
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}


/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    padding: 10px 5px ;
}
.box .flex {

}
.answer {
	width: 5%;
	text-align: center;
}
.answer p{
	background: var(--basecolor);
	color: #fff;
	padding: 10px ;
	font-weight: bold;
	font-size: 120%;
}
.answer_txt{
	width: 94%;
	margin: 0 0 0 1%;
}
.answer_txt a{
	text-decoration:underline
}
.answer_txt a:hover{
	color:var(--basecolor)
}



.title.close .and_more span::after{
	transform: rotate(-45deg);
	top:4px
}

.and_more.flex{
	justify-content: space-between;
	padding: 3px 0px 5px 0px;
	position:relative;
	align-items: baseline;
}
.and_more.flex .q_txt{
	position:relative
}
.and_more.flex .q_txt::after{
	content:"";
	position:absolute;
	width:7px;
	height:7px;
	border-top: 3px solid;
	border-right: 3px solid;
	transform: rotate(135deg);
	top:6px;
	right:-20px;
	color:#333;
	transition:all 0.3s
}
.title.close .and_more.flex .q_txt::after{
	transform: rotate(-45deg);
	top:8px
}

.chapter_ttl{
	border-bottom: 2px solid var(--basecolor);
}
.chapter_ttl span{
	color: var(--basecolor);
	display: inline-block;
	margin: 0 5px 0 0;
}
.qa_comment{
	color: #cf3e3e;
	font-weight: :bold;
}


/*スリック*/
.slick_wrap.flex{
	align-items:center
}
.gallery_box{
	width:63%;
	margin:0 2% 0 0
}
.room_type_txt{
	width:35%
}
/*選択するサムネイル画像の設定*/
.choice-btn{
	padding: 0;
}
.topics_thumb{
	margin: 2.5vw 0;
}

.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#FFF;
	width:33.3% !important;
	height:5vw;
	max-height:85px;
	list-style:none;
}
.choice-btn.topics_thumb li{
	width:20% !important;
	height:13vw;
	max-height:100px;
	list-style:none;
}
.choice-btn li img{
	transition: all 0.3s;
	object-fit:cover;
	height:100%;
	width:100%;
}

.choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}
.choice-btn li:hover img{
	opacity: 0.6
}
.choice-btn .slick-track {
	transform: unset !important;/*画面幅サイズ変更に伴うサムネイル固定*/
	width:100% !important;
}
.article .slick-track{
	display: flex;
    align-items: center;
}

.slide_txt{
	margin:0 0 50px
}
.room_price{
	color:red;
	
}
.room_price span{
	display:inline-block;
	margin:0 10px 0 0;
	font-size:13px;
	color:#333;
}
.slick_wrap{
	border-bottom:1px solid
}

.slick-arrow{
	background-color: var(--basecolor);
	bottom: 0;
	margin: auto;
	position: absolute;
	top: 0;
	width: 30px;
	height:30px;
	border-radius:45px;
	z-index:2;
}
.slick-slider{
	padding:0 20px
}

.slick-next{
	right:20px
}
.slick-prev{
	left:20px
}
.slick-next span{
	display:inline-block;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 10px solid #ffffff;
	border-right: 0;
	position:absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.slick-prev span{
	display:inline-block;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 10px solid #fff;
	border-left: 0;
		position:absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}




/*画像の大きさ*/
body .slick-slide{
	height:400px;
}
body .slick-slide img{
	width:100%;
	height:100%;
    object-fit: contain;
}

.room_number{
	max-width:700px;
	width:100%;
	margin:50px auto 0
}
.room_number div{
	margin:0 0 30px
}

/*共有設備*/
.room_kyouyu .flex div{
	margin:0 2% 0 0 
}
.room_kyouyu .flex div:nth-child(4){
	margin:0
}


/*特長*/
.tokutyo_wrap h3{
	color:var(--basecolor)
}
.tokutyo_wrap p{
	margin:0 0 10px 0
}

/*訪問看護サービス*/
#houmon_kango_service .flex{
	align-items:center
}
.homon_kango_box{
	width:50%

}
.homon_kango_img{
	width:50%
}
.homon_kango_box h3{

}

/*--------------SP--------------■■■■■■■■■■■*/
@media(max-width:1100px) {



	/*-------- contact page ----------*/



}

@media(max-width: 950px) {

	/*------共通---------*/
	.flex_wrap_reverse {
		flex-wrap: wrap-reverse;
	}

	.flex {
		flex-wrap: wrap;
	}

	/*------ sp menu --------*/
	.openbtn span:nth-of-type(2){
		top: 10px;
	}
	.openbtn span:nth-of-type(3){
		top: 21px;
	}
	.openbtn span:nth-of-type(4){
		font-size: 9px;
		bottom: 18px;
	}

	/*ヘッダー*/
	.site_header{
		margin: 20px auto 10px;
	}
	.site_header.flex{
		align-items: flex-end;
	}
	.header_links{
		margin: 10px 0 0;
	}
	.header_links a{
		margin: 0 10px 0 0;
	}
	.header_links a:last-child{
		margin: 0;
	}
	.gtrans .goog-te-gadget-simple{
		font-size: 10px;
	}
	.logo{
		box-shadow: 0px 3px 0 var(--basecolor) ;
		padding: 0 0 5px ;
	}
	.logo_wrap{
		width: 65%;
	}
	.logo img{
		height: 42px;
	}
	.logo_sub{
		position: relative;
		overflow: hidden;
	}
	.logo_sub img{
		position: relative;
		height: 25px;
		left: -16px;
	}
	.hero_img{
		margin: 10px auto;
	}
	
	/*―――トップページイントロ―――*/
	.catchcopy_box .noto-serif{
		font-size: 160%;
	}


	/*----汎用----*/
	.contents_wrap.back_100{
		width: 100%;
	}
	.colorchange{
		width: 100%;
		height: 40px;
	}
	.back_nami{
		margin: 10px 0;
	}
	.back_nami.yellow,
	.back_nami.blue,
	.facility_name.yellow,
	.facility_name.blue{
		background-size: 140%;
	}


	/*トップページサービス内容*/
	.taisyo{
		align-items: baseline;
		margin: 6px 0;
	}
	.taisyo h3{
		width: 60px;
		text-align: center;
		font-size: 100%;
		font-weight: bold;
		padding: 2px;
	}
	.taisyo h2{
		width: 90%;
		margin: 0 0 0 10px;
	}
	/*トップページ施設概要*/
	.facility_guidance{
		border: none;
	}
	.facility_guidance dl{
		flex-wrap: wrap;
	}
	.facility_guidance dt,
	.facility_guidance dd{
		width: 100%;
	}
	.facility_guidance dt{
		padding: 10px 0 10px 20px;
		border-radius: 0 45px 45px 0;
	}
	.facility_guidance dd{
		padding: 10px 0 10px 20px;
		border: none;
	}
	.facility_guidance dt::after{
		width: 7px;
	}
	.day_flow_wrap,  .case_wrap{
		width: 100%;
	}


	/*別ページ　特別養護老人ホーム*/
	.guide_links.flex{
		justify-content: flex-start;
	}
	.mihara_links{
		max-width:600px
	}
	.mihara_links .guide_links.flex{
		justify-content:center;
	}
	.mihara_links .guide_links .flex{
		width:300px;
		justify-content:space-between;
	}
	.guide_links .flex{
		padding: 10px 20px;
		margin: 5px;
	}

	/*特別養護老人ホーム一日の流れ*/
	.day_flow_wrap .flex div img{
		width: 60px;
	}
	.day_flow_wrap .flex{
		flex-wrap: nowrap;
	}
	.and_more.flex{
		justify-content: unset;
		flex-wrap: nowrap;
		position:relative
	}
	
	.day_flow_txt{
		width:100%
	}
	.sonota_flow{
		font-size:110%
	}
	.sonota_flow{
	    background-image: linear-gradient(to right, #000 2px, transparent 2px);
	    background-size: 8px 2px;
	    background-position: 0 10px;
		margin:0 0 10px
	}
	.sonota_flow div:first-child{
		width:35%;
	}
	.sonota_text{
		width:65%;
		padding:0 0 0 5px
	}
	.day_flow_wrap .flex dl dd,
	.day_flow_wrap .flex dl dt{
		font-size: 90%;
		padding:0 0 0 10px
	}
	.day_flow_wrap .flex dl dt::after{
		bottom:-1.2em;
		border-right: 8px solid transparent;
		border-left: 8px solid transparent;
		border-top: 13px solid var(--basecolor);
	}
	.day_flow_txt h2{
		font-size: 120%;
	}
	.q_txt{
		width: 90%;
	}
	.box .flex{
		flex-wrap: nowrap;
	}
	.answer{
		width: 35px;
	}
	.answer_txt{
		margin: 0 0 0 10px;
	}

	.room_price_sonota{
		background:none
	}
	.room_category{
		width:100%;
		padding:0px 0 0
	}
	.room_text{
		width:100%;
		border-bottom:1px solid;
		padding:10px 0 10px
	}
	.room_kyouyu .flex div{
		width:48%
	}

	/*写真集*/
	.gallery_wrap.flex div{
		width: 49%;
		margin: 0 1% 2% 0;

	}
	.gallery_wrap.flex div:nth-child(2n){
		margin: 0 0 2% 1%;
	}
	.gallery_wrap.flex div:nth-child(4n){
		margin: 0 0 2% 1%;
	}


	/*コンタクトフォーム*/
	.mail_form_wrap div{
		text-align: center;
	}
	.madoguti_box{
		width: 100%;
	}
	.madoguti_box_wrap{
		padding: 3%;
	}
	.madoguti_box:nth-child(1),
	.madoguti_box:nth-child(2){
		margin-right: 0;
		margin-bottom: 1em;
	}
	.form{
		width: 100%;
	}
	.co_table{
		flex-wrap: wrap;
	}
	.co_table dt,
	.co_table dd{
		width: 100%;
	}
	.co_table dt{
		margin: 0 0 10px 0;
	}
	.radio-wrap label{
		margin: 0 0 5px;
	}


	/*footer*/
	footer{
		margin: 70px 0;
	}
	footer .tac img {
		width: 60%;
	}
	footer .tac h2 {
		font-size: 110%;
		margin: 20px 0 5px;
	}
	footer .tac a {
		font-size: 110%;
	}
	.copyright {
		font-size: 11px;
		padding: 15px 0;
	}
	.footer_logo{
		max-width: 300px;
		margin: 30px auto;
		border-top: 5px solid var(--basecolor);
	}
}

@media(max-width: 768px) {
	.gallery_box{
		width:100%
	}
	.slick-slider{
		padding:0
	}
	.room_type_txt{
		width:100%;
	}
	.choice-btn li{
		height:13vw;
		max-height:unset;
	}
	.choice-btn li{
		height: 21vw;
		max-height:unset;
	}
	body .slick-slide{
		max-height:350px;
	}
	.slick-next{
		right:0px
	}
	.slick-prev{
		left:0px
	}
	/*訪問看護*/
	#houmon_kango_service h3{
		font-size:110%
	}
	#houmon_kango_service .flex{
		flex-wrap:wrap
	}
	.homon_kango_box{
		width:100%
	}
	.homon_kango_img{
		width:100%;
		text-align:center;
		margin:3% 0 0 0
	}
}

@media(max-width: 680px) {
	.mihara_links .guide_links .flex{
		width:300px;
		justify-content:space-between
	}
}
@media(max-width: 550px) {
	.guide_links.flex{
		justify-content:center
	}
		.guide_links .flex{
		width:250px;
		justify-content:center
	}

	.logo_sub.long img{
		left:-10px
	}
}