@charset "utf-8";

html {
	scroll-behavior: smooth;
}


/* common
-------------------------------------------------------*/

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	/*font-family: 'Noto Sans JP', sans-serif;*/
	background: #fcf2f0;
	color: #000;
	letter-spacing: 1px;
}

#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.area {
	padding: 90px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}


@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 40px 20px;
	}
	.inner {
		max-width: 100%;
	}

}


/* header
-------------------------------------------------------*/

header {
	padding-top: 50px;
	margin-bottom: 40px;
}

header .inner {
	width: 100%;
	max-width: 1200px;
	padding: 0px 20px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items:flex-end;
}

.headerL {
	max-width: 395px;
	text-align: center;
}

.headerL .logo {
	max-width: 263px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.header_cap {
	font-size: 1.5rem;
	font-weight: bolder;
}

.headerR {
	max-width: 760px;
	padding-bottom: 10px;
}

.gnav_pc {
	display: flex;
	justify-content: space-between;
}

.gnav_pc li {
	margin-right: 60px;
}

.gnav_pc li:last-child {
	margin-right: 0px;
}



.nav01 {max-width: 102px;}
.nav02 {max-width: 74px;}
.nav03 {max-width: 109px;}
.nav04 {max-width: 58px;}
.nav05 {max-width: 47px;}
.nav06 {max-width: 73px;}

@media screen and (max-width:768px) {
	
header {
	padding-top: 30px;
	margin-bottom: 30px;
}



.headerL {
	max-width: 100%;
	width: 100%;
	text-align: center;
}

.headerL .logo {
	max-width: 200px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.header_cap {
	font-size: 1.2rem;
}

.headerR {
	display: none;
}

	
	
}

/* nav
-------------------------------------------------------*/
#nav_pc ul  {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
	font-size: 1.4rem;
}
#nav_pc ul li:not(:last-child) {
	margin-right: 30px;
}
.btn_contact a {
	display: block;
	background-color: #222d54;
	padding: 10px 40px;
	color: #fff;
	font-size: 1.2rem;
}
.btn_contact a span {
	position: relative;
}
.btn_contact a span::before {
	position: absolute;
	display: block;
	content: "";
	width: 13px;
	height: 1px;
	left: -25px;
	top: 50%;
	transform: translate(0,50%);
	background-color: #fff;
}
@media screen and (max-width:1090px) {
	#nav_pc ul {
		font-size: 1.2rem;
	}
	#nav_pc ul li:not(:last-child) {
		margin-right: 20px;
	}
	.btn_contact a {
		padding: 10px 35px;
	}
}
@media screen and (max-width:768px) {
	#btn_nav {
		position: fixed;
		top: 14px;
		right: 15px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 16px;
	}
	#btn_nav span {
		display: inline-block;
		background: #333;
		width: 25px;
		height: 1px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		transform: translateY(8px) rotate(225deg);
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-225deg);
	}
	#nav_sp div,
	#nav_sp div::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp div {
		overflow: auto;
		background: #fcf2f0;
		right: -100%;
		z-index: 998;
		transition: .5s;
		padding: 30px 20px;
		box-sizing: border-box;
	}
	#nav_sp div.active {
		right: 0;
	}
	#nav_sp .nav_logo {
		margin: 0 0 30px;
		text-align: center;
	}
	#nav_sp .nav_logo img {
		max-width: 170px;
	}
	#nav_sp ul {
		margin: 0 0 20px;
	}
	
	#nav_sp ul li {
		max-width: 100%;
	}
	
	#nav_sp ul li a {
		padding: 20px 10px;
		display: block;
		border-top: 1px dashed #d5d4d4;
		position: relative;
	}
	#nav_sp ul li a::after {
		position: absolute;
		display: block;
		content: "";
		border-left: 5px solid #d5d4d4;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		right: 10px;
		top: 50%;
		transform: translate(0,-50%);
	}
	#nav_sp ul li:last-child a {
		border-bottom: 1px dashed #d5d4d4;
	}
	#nav_sp .btn_contact a {
		padding: 15px 40px;
		font-size: 1.4rem;
	}
	
	#nav_sp .logo {
		max-width: 150px;
		margin: 0 auto;
		margin-bottom: 40px;
	}
	
	#nav_sp ul li a {
		text-align: center;
	}
	
	#nav_sp ul li.nav01 a img {max-width:102px;}
	#nav_sp ul li.nav02 a img {max-width:74px;}
	#nav_sp ul li.nav03 a img {max-width:109px;}
	#nav_sp ul li.nav04 a img {max-width:58px;}
	#nav_sp ul li.nav05 a img {max-width:47px;}
	#nav_sp ul li.nav06 a img {max-width:73px;}
}

/* visual
-------------------------------------------------------*/

#visual {
	background: url("../img/visual.png") no-repeat;
	background-size: cover;
}

#visual .inner {
	max-width: 1000px;
	min-height: 700px;
	position: relative;
}

.visual_txt {
	font-size: 2.5rem;
	font-weight: bolder;
	position: absolute;
	left: 0px;
	top: 100px;
}

.visual_img {
	max-width: 328px;
	position: absolute;
	right: -200px;
	bottom: -100px;
}


@media screen and (max-width:768px) {
	#visual {
	background: none;
}

#visual .inner {
	min-height: auto;

}

}


/* cont01
-------------------------------------------------------*/

.cont01_top_img {
	max-width: 695px;
	margin: 0 auto;
	margin-bottom: 80px;
}



.ttl01 {
	max-width: 128px;
	margin: 0 auto;
	margin-bottom: 0px;
}

.cont01_sub_ttl {
	font-size: 2.2rem;
	font-weight: bolder;
	margin-bottom: 30px;
	text-align: center;
}


.top_read {
	text-align: center;
	font-weight: bolder;
	line-height: 3.3;
	font-size: 1.8;
	margin-bottom: 100px;
	
}

.top_read_out {
	padding: 50px 0px;
	background-image: url(../img/top_bg_left.png),url(../img/top_bg_right.png);
    background-position: center left,center right;
    background-size: 211px,211px;
    background-repeat: no-repeat,no-repeat;
}


.graf {
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 100px;
}

.cont01_box {
	max-width: 960px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 80px;
	background: #fff;
	border-radius: 30px;
	margin-bottom: 50px;
}

.cont01_ttl {
	font-size: 2rem;
	font-weight: bolder;
	padding-left: 140px;
	position: relative;
	
}

.cont01_ttl.cont01_ttl01 {
	margin-bottom: 50px;
}

.cont01_ttl.cont01_ttl02 {
	margin-bottom: 0px;
}

.cont01_ttl.cont01_ttl03 {
	margin-bottom: 0px;
}

.cont01_ttl.cont01_ttl01:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/point01.png") no-repeat;
	width:112px;
	height: 112px;
	background-size: 112px 112px;
	top:50%;
	margin-top:-56px;
	left: 0;
}

.cont01_ttl.cont01_ttl02:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/point02.png") no-repeat;
	width:112px;
	height: 112px;
	background-size: 112px 112px;
	top:50%;
	margin-top:-56px;
	left: 0;
}

.cont01_ttl.cont01_ttl03:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/point03.png") no-repeat;
	width:112px;
	height: 112px;
	background-size: 112px 112px;
	top:50%;
	margin-top:-56px;
	left: 0;
}

.cont01_box .txt {
	margin-bottom: 50px;
	line-height: 1.8;
}

.cont01_box_list {
	display: flex;
	justify-content: space-between;
}

.cont01_box_list li {
	width: 49%;
	padding: 20px 30px;
	box-sizing: border-box;
	border: 1px solid #eaa6ac;
	border-radius: 30px;
}

.cont01_box_list h5 {
	font-weight: bolder;
	text-align: center;
	margin-bottom: 10px;
}

.cont01_box_list_img {
	margin-bottom: 20px;
}

.cont01_box_list li .txt {
	font-size: 1.2rem;
	margin-bottom: 0px;
}

.cont01_box_list02 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.cont01_box_list02_txt {
	width: 56%;
	font-size: 1.5rem;
	line-height: 2;
	margin-top: 50px;
}

.cont01_box_list02_img {
	width: 40%;
}


@media screen and (max-width:768px) {
	
.cont01_top_img {
	margin-bottom: 60px;
}


.cont01_sub_ttl {
	font-size: 1.5rem;
	margin-bottom: 20px;
}


.top_read {
	line-height: 3.3;
	font-size: 1.2rem;
	margin-bottom: 30px;
	
}

.top_read_out {
	padding: 30px 0px;
	background-image: url(../img/top_bg_sp.png);
    background-position:top center;
    background-size:100%;
    background-repeat:repeat-y;
}


.graf {
	margin-bottom: 50px;
}

.cont01_box {
	padding: 30px;
	border-radius: 30px;
	margin-bottom: 30px;
}

.cont01_ttl {
	font-size: 1.4rem;
	padding-left: 0px;
	padding-top: 80px;
	
}

.cont01_ttl.cont01_ttl01 {
	margin-bottom: 20px;
}

.cont01_ttl.cont01_ttl02 {
	margin-bottom: 20px;
}

.cont01_ttl.cont01_ttl03 {
	margin-bottom: 20px;
}

.cont01_ttl.cont01_ttl01:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/point01.png") no-repeat;
	width:70px;
	height: 70px;
	background-size: 70px 70px;
	top:0%;
	margin-top:auto;
	left: 50%;
	margin-left: -35px;
}

.cont01_ttl.cont01_ttl02:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/point02.png") no-repeat;
	width:70px;
	height: 70px;
	background-size: 70px 70px;
	top:0%;
	margin-top:auto;
	left: 50%;
	margin-left: -35px;
}

.cont01_ttl.cont01_ttl03:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/point03.png") no-repeat;
	width:70px;
	height: 70px;
	background-size: 70px 70px;
	top:0%;
	margin-top:auto;
	left: 50%;
	margin-left: -35px;
}

.cont01_box .txt {
	margin-bottom: 30px;
	line-height: 1.8;
	font-size: 1.3rem;
}

.cont01_box_list {
	display: block;
}

.cont01_box_list li {
	width: 100%;
	padding: 15px 20px;
	box-sizing: border-box;
	border: 1px solid #eaa6ac;
	border-radius: 30px;
	margin-bottom: 15px;
}

.cont01_box_list h5 {
	font-weight: bolder;
	text-align: center;
	margin-bottom: 10px;
}

.cont01_box_list_img {
	margin-bottom: 20px;
}

.cont01_box_list li .txt {
	font-size: 1.2rem;
	margin-bottom: 0px;
}

.cont01_box_list02 {
	display: block;

}

.cont01_box_list02_txt {
	width: 100%;
	font-size: 1.2rem;
	line-height: 2;
	margin-bottom: 30px;
	margin-top: 0px;
}

.cont01_box_list02_img {
	width: 100%;
}

	

}


/* cont02
-------------------------------------------------------*/

.ttl02 {
	max-width: 92px;
	margin: 0 auto;
	margin-bottom: 100px;
}

.staff {
	display: flex;
	justify-content: space-between;
	max-width: 960px;
	margin: 0 auto;
	margin-bottom: 150px;
}

.staffL {
	width: 38%;
}

.staffR {
	width: 55%;
}

.staffL .img {
	margin-bottom: 10px;
}

.name_wrap {
	width: 90%;
	margin: 0 auto;
}

.name {
	font-size: 2rem;
	font-weight: bolder;
	margin-bottom: 20px;
}

.name span {
	font-size: 1.5rem;
	margin-right: 15px;
}

.staffL .txt {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 40px;
}

.staff_btn {
	margin-bottom: 20px;
}

.staff_btn a {
	display: block;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #201f1f;
	background: #eaf1fa;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bolder;
	border-radius: 100px;
}

.staff_btn.yel a {
	background: #fff5e0;
}

.mes {
	border-bottom: 1px solid #1b1a19;
	padding-bottom: 10px;
	margin-bottom: 20px;
	font-size: 1.2rem;
	font-weight: bolder;
}

.staffR .txt {
	font-size: 1.4rem;
	line-height: 2;
	margin-bottom: 30px;
}

.taiou {
	background: #fff;
	padding: 40px 10px;
	box-sizing: border-box;
	border-radius: 30px;
}

.taiou h5 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: bolder;
	color: #eaa6ac;
	margin-bottom: 20px;
	
}

.taiou h6 {
	text-align: center;
	font-size: 1.3rem;
	font-weight: bolder;
	margin-bottom: 10px;
}

.taiou ul {
	display: flex;
}

.taiou ul li {
	width: 48%;
	font-size: 1.2rem;
	border-right: 1px solid #eaa6ac;
	padding: 0px 20px;
	box-sizing: border-box;
	font-weight: bolder;
}

.taiou ul li:last-child {
	border-right:none;
}

.taiou ul li p {
	margin-bottom: 5px;
}



@media screen and (max-width:768px) {
	
.ttl02 {
	max-width: 92px;
	margin: 0 auto;
	margin-bottom: 40px;
}

.staff {
	display: block;
	margin-bottom: 80px;
}

.staffL {
	width: 100%;
	margin-bottom: 40px;
}

.staffR {
	width: 100%;
	
}

.staffL .img {
	width: 80%;
	margin: 0 auto;
	margin-bottom: 10px;
}

.name_wrap {
	width: 90%;
	margin: 0 auto;
}

.name {
	font-size: 2rem;
	margin-bottom: 10px;
}

.name span {
	font-size: 1.5rem;
	margin-right: 15px;
}

.staffL .txt {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 40px;
}

.staff_btn {
	margin-bottom: 20px;
}

.staff_btn a {
	display: block;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #201f1f;
	background: #eaf1fa;
	text-align: center;
	font-size: 1.3rem;
	font-weight: bolder;
	border-radius: 100px;
}

.staff_btn.yel a {
	background: #fff5e0;
}

.mes {
	border-bottom: 1px solid #1b1a19;
	padding-bottom: 10px;
	margin-bottom: 20px;
	font-size: 1.2rem;
	font-weight: bolder;
}

.staffR .txt {
	font-size: 1.4rem;
	line-height: 2;
	margin-bottom: 30px;
}

.taiou {
	background: #fff;
	padding: 30px 10px 10px 10px;
	box-sizing: border-box;
	border-radius: 30px;
}

.taiou h5 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	
}

.taiou h6 {
	text-align: center;
	font-size: 1.3rem;
	font-weight: bolder;
	margin-bottom: 10px;
}

.taiou ul {
	display: block;
}

.taiou ul li {
	width: 100%;
	font-size: 1.2rem;
	border-right: none;
	border-bottom: 1px solid #eaa6ac;
	padding: 20px 20px;
}

.taiou ul li:last-child {
	border-bottom:none;
}

.taiou ul li p {
	margin-bottom: 5px;
}	

}


/* cont03
-------------------------------------------------------*/


#cont03.area {
  padding: 0px 20px 90px 20px;
  box-sizing: border-box;
}

.ttl03 {
	max-width: 92px;
	margin: 0 auto;
	margin-bottom: 60px;
}

.news_top {
	text-align: center;
	font-size: 2.2rem;
	font-weight: bolder;
	margin-bottom: 40px;
}

.news_btn {
	max-width: 618px;
	margin: 0 auto;
}



@media screen and (max-width:768px) {
#cont03.area {
  padding: 0px 20px 40px 20px;
}

.ttl03 {
	margin-bottom: 30px;
}

.news_top {
	font-size: 1.5rem;
	margin-bottom: 40px;
}
}


/* cont04
-------------------------------------------------------*/


/*#cont04.area {
  padding: 0px 20px 90px 20px;
  box-sizing: border-box;
}*/

.ttl04 {
	max-width: 75px;
	margin: 0 auto;
	margin-bottom: 60px;
}

.price_wrap {
	max-width: 800px;
	background: #fff;
	border-radius: 30px;
	padding: 40px;
	box-sizing: border-box;
	margin: 0 auto;
}

.table_wrap {
	max-width: 620px;
	margin: 0 auto;
	margin-bottom: 50px;
}

.priceTB01 {
	width: 100%;
}

.bottom_bo {
	border-bottom: 1px solid #4d4d4d;
}

.priceTB01 th {
	font-size: 1.7rem;
	font-weight: bolder;
	text-align: center;
	padding: 10px;
	vertical-align: middle;
}

.priceTB01 td {
	font-size: 1.5rem;
	font-weight: bolder;
	text-align: center;
	padding: 20px 10px 10px 10px;
	vertical-align: middle;
}

.priceTB01 td.tbten {
	padding: 0px;
	width: 114px;
	padding-top: 10px;
	text-align: center;
}

.priceTB01 td.tbten img {
	vertical-align: middle;
}

.priceTB01 td.tbbgp {
	padding: 0px;
	padding-left: 20px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 10px;
	width: 80px;
}

.bgp {
	width: 80px;
	background: #eaa6ac;
	border-radius: 100px;
	color: #fff;
	text-align: center;
	padding: 5px;
	font-size: 1.5rem;
}

.ten {
	max-width: 114px;
}

.price_sub {
	border-bottom: 1px solid #4d4d4d;
	padding-bottom: 10px;
	font-size: 1.7rem;
	font-weight: bolder;
	text-align: center;
	margin-bottom: 30px;
}

.priceTB02 {
	/*padding: 0px 20px;*/
	padding: 0px 10px;
}

.priceTB02 dl {
	display: flex;
	justify-content: space-between;
	font-size: 1.5rem;
	font-weight: bolder;
	margin-bottom: 15px;
}

.priceTB02 dl dt {
	width: 70%;
	background: url("../img/ten.png") repeat-x;
	background-position:center;
	background-size: 114px;
}

.priceTB02 dl dt span {
	display: inline-block;
	background: #fff;
	padding-right: 5px;
}

.priceTB02 dl dd {
	width: 30%;
	text-align: right;
	word-break: break-all;
}


@media screen and (max-width:768px) {
	
	
.ttl04 {
	margin-bottom: 30px;
}

.price_wrap {
	padding: 40px 20px 20px 20px;
}

.table_wrap {
	max-width: 100%;
	margin-bottom: 50px;
}

.priceTB01 {
	width: 100%;
}

.bottom_bo {
	border-bottom: 1px solid #4d4d4d;
}

.priceTB01 th {
	font-size: 1.5rem;
	padding: 10px;
}

.priceTB01 td {
	font-size: 1.3rem;
	font-weight: bolder;
	text-align: center;
	padding: 10px 5px 10px 5px;
	vertical-align: middle;
}

.priceTB01 td.tbten {
	width: 1px;
	padding: 0px;
	padding-top: 0px;

}

.priceTB01 td.tbten img {
	display: none;
}

.priceTB01 td.tbbgp {
	padding: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 50px;
}

.bgp {
	width: 50px;
	background: #eaa6ac;
	border-radius: 100px;
	color: #fff;
	text-align: center;
	padding: 3px;
	font-size: 1.1rem;
}

.ten {
	max-width: 114px;
}

.price_sub {
	padding-bottom: 10px;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.priceTB02 {
	padding: 0px 20px;
}

.priceTB02 dl {
	display: block;
	justify-content: space-between;
	font-size: 1.3rem;
	font-weight: bolder;
	margin-bottom: 15px;
}

.priceTB02 dl dt {
	width: 100%;
	background:none;;
}

.priceTB02 dl dt span {
	display: inline-block;
	background: #fff;
	padding-right: 5px;
}

.priceTB02 dl dd {
	width: 100%;
	text-align: left;
}
}


/* cont05
-------------------------------------------------------*/


.ttl05 {
	max-width: 169px;
	margin: 0 auto;
	margin-bottom: 60px;
}

.conatct_txtbot {
	margin-bottom: 100px;
}


/* タブ*/
.tab-container{ width: 100%; }
.tab-togle-group{
	display: flex;
	justify-content: space-between;
}
.tab-toggle{
    width: 48.5%;
    text-align: center;
    padding: 20px;
    cursor: pointer;
	font-size: 2rem;
	font-weight: bolder;
	box-sizing: border-box;
}
.tab-toggle:first-child{ border-radius: 15px 15px 0px 0; }
.tab-toggle:last-child{ border-radius: 15px 15px 0 0; }

.tab-toggle:nth-of-type(1){ background-color: #fff5e0; }
.tab-toggle:nth-of-type(2){ background-color: #eaf1fa; }

.tab-content{
    text-align: center;
    display: none;
	padding: 60px;
	box-sizing: border-box;
	border-radius: 0px 0 15px 15px ;
}
.tab-content.show{
    display: block;
}

.tab-content:nth-of-type(1){ background-color: #fff5e0; }
.tab-content:nth-of-type(2){ background-color: #eaf1fa; }



.tab_inner {

}

.contact_top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.contact_top li {
	width: 48%;
	background: #fff;
	border-radius: 15px;
	padding: 30px;
	box-sizing: border-box;
}

.tab_inner h3 {
	font-size: 1.8rem;
	font-weight: bolder;
	position: relative;
	padding-left: 25px;
	display: inline-block;
	margin-bottom: 30px;
}

.c_tel:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/tel.icon.png") no-repeat;
	width:15px;
	height: 29px;
	background-size: 15px 29px;
	top:50%;
	margin-top:-14px;
	left: 0;
}

.tab_inner h3.c_line {
	padding-left: 35px;
}
.c_line:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/line_icon.png") no-repeat;
	width:29px;
	height: 29px;
	background-size: 29px 29px;
	top:50%;
	margin-top:-14px;
	left: 0;
}

.tab_inner h3.c_mail {
	padding-left: 40px;
}
.c_mail:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/mai_icon.png") no-repeat;
	width:35px;
	height: 23px;
	background-size: 35px 23px;
	top:50%;
	margin-top:-12px;
	left: 0;
}

.tel {
	/*font-size: 3.3rem;*/
	font-size: 3rem;
	font-weight: bolder;
	margin-bottom: 10px;
	word-break: keep-all;
}

.time {
	font-size: 1.8rem;
	font-weight: bolder;
}

.line_txt {
	font-size: 1.5rem;
	font-weight: bolder;
	margin-bottom: 20px;
}

.line_img {
	max-width: 100px;
	margin: 0 auto;
}

.form_wrap {
	background: #fff;
	padding: 30px;
	box-sizing: border-box;
	border-radius: 15px;
}


@media screen and (max-width:768px) {
	
	#cont05.area {
		padding: 40px 0px 0px 0px;
	}
	
	
	
	.ttl05 {
	margin-bottom: 30px;
}

.conatct_txtbot {
	margin-bottom: 50px;
		padding: 0px 20px 0px 20px;
}


/* タブ*/
.tab-container{ width: 100%; }
.tab-togle-group{
	display: flex;
	justify-content: space-between;
}
.tab-toggle{
    padding: 15px 10px;
	font-size: 1.5rem;
}
.tab-toggle:first-child{ border-radius: 15px 15px 0px 0; }
.tab-toggle:last-child{ border-radius: 15px 15px 0 0; }

.tab-toggle:nth-of-type(1){ background-color: #fff5e0; }
.tab-toggle:nth-of-type(2){ background-color: #eaf1fa; }

.tab-content{
    text-align: center;
    display: none;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 0px 0 15px 15px ;
}
.tab-content.show{
    display: block;
}

.tab-content:nth-of-type(1){ background-color: #fff5e0; }
.tab-content:nth-of-type(2){ background-color: #eaf1fa; }



.tab_inner {

}

.contact_top {
	display: block;
	margin-bottom: 20px;
}

.contact_top li {
	width: 100%;
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.tab_inner h3 {
	font-size: 1.5rem;
	font-weight: bolder;
	position: relative;
	padding-left: 25px;
	display: inline-block;
	margin-bottom: 10px;
}

.c_tel:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/tel.icon.png") no-repeat;
	width:15px;
	height: 29px;
	background-size: 15px 29px;
	top:50%;
	margin-top:-14px;
	left: 0;
}

.tab_inner h3.c_line {
	padding-left: 35px;
}
.c_line:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/line_icon.png") no-repeat;
	width:29px;
	height: 29px;
	background-size: 29px 29px;
	top:50%;
	margin-top:-14px;
	left: 0;
}

.tab_inner h3.c_mail {
	padding-left: 40px;
}
.c_mail:before {
	content:"";
	position: absolute;
	display: block;
	background: url("../img/mai_icon.png") no-repeat;
	width:35px;
	height: 23px;
	background-size: 35px 23px;
	top:50%;
	margin-top:-12px;
	left: 0;
}

.tel {
	font-size: 2.5rem;
	font-weight: bolder;
	margin-bottom: 5px;
}

.time {
	font-size: 1.3rem;
	font-weight: bolder;
}

.line_txt {
	font-size: 1.3rem;
	font-weight: bolder;
	margin-bottom: 10px;
}

.line_img {
	max-width: 100px;
	margin: 0 auto;
}

.form_wrap {
	background: #fff;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 15px;
}
}

/* contact
-------------------------------------------------------*/

#contact {
	background: #fff;
}


#contact.area {
	padding: 100px 20px 170px;
}
#contact .inner {
	max-width: 800px;
}
#contact .ttl_en img {
	max-width: 209px;
}
#contact .info_box {
	margin: 0 auto 70px; 
	background-color: #f3f3f3;
	padding: 40px 20px;
}
#contact .info_box .tel {
	text-align: center;
	margin: 0 0 20px;
}
#contact .info_box .tel a img {
	max-width: 305px;
}
#contact .info_box .tel span {
	font-size: 1.4rem;
	margin: 0 0 0 10px;
}
#contact .info_box dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
#contact .info_box dl dt {
	font-size: 1.4rem;
	line-height: 2.2;
	margin: 0 50px 0 0;
}
#contact .info_box dl dd img {
	max-width: 120px;
}
#contact .top_txt {
	text-align: center;
	font-size: 2rem;
	letter-spacing: 0.1em;
	margin: 0 0 40px;
}
#contact .table_temp {
	width: 95%;
	margin: 0 auto;
	font-size: 1.4rem;
}
#contact.contact_after  {
	padding: 170px 20px 170px;
}
#contact tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
#contact tr>* {
	display: table-cell;
	vertical-align: top;
	padding: 10px 10px;
	box-sizing: border-box;
	line-height: 1;
}
#contact tr th {
	width: 180px;
	text-align: left;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
#contact tr th b {
	font-weight:bolder;
	font-size: 1.4rem;
}
#contact tr.hissu th b::after,
#contact tr.nini th b::after {
	color: #fff;
	font-weight: 500;
	font-size: 1.2rem;
	width: 50px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.hissu_i {
	display: inline;
	color: #ff0000;
	font-weight: bolder;
	font-size: 1rem;
	margin-left: 10px;
}
#contact tr.nini th b::after {
	content: "任意";
	background: #5e5e5e;
}
#contact.contact_after tr {
	border-bottom: 1px solid #ccc;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}
#contact.contact_after tr th {
	color: #aaa;
}
#contact.contact_after tr td {
	font-weight: 500;
}
.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type="text"],
#contact select,
#contact textarea {
	width: 100%;
	border: 1px solid #d6d6d6;
}
#contact input[type="text"],
#contact select {
	height: 30px;
}
#contact textarea {
	min-height: 150px;
	resize: vertical;
}
#contact .radio_area label,
#contact .check_area label {
	display: inline-block;
	margin: 5px 5px 5px 0;
	line-height: 1.3;
}
#contact .txt_form {
	text-align: center;
	line-height: 1.3;
}
#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #ccc;
}
#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .form_btn01,
#contact .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 250px;
	height: 40px;
	border: none;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	color: #fff;
	line-height: 1;
    text-align: center;
	letter-spacing: 0.1rem;
	border-radius: 100px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bolder;
}
#contact .form_btn01 {
	background: #eaa6ac;
}
#contact .form_btn02 {
	background: #333;
}
/* table_temp end */
@media screen and (max-width:768px) {
	
	

	
	
	
	#contact.area {
		padding: 40px 20px 40px;
	}
	#contact.contact_after  {
		padding: 100px 20px 100px;
	}
	#contact .ttl_en img {
		max-width: 146px;
	}
	#contact .info_box {
		margin: 0 auto 40px; 
		padding: 30px 20px;
	}
	#contact .info_box .tel {
		text-align: center;
		margin: 0 0 20px;
	}
	#contact .info_box .tel a img {
		max-width: 305px;
	}
	#contact .info_box .tel span {
		display: block;
		margin: 10px 0 0;
	}
	#contact .info_box dl {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#contact .info_box dl dt {
		font-size: 1.4rem;
		line-height: 2;
		margin: 0 0 20px;
	}
	#contact .info_box dl dd img {
		max-width: 100px;
	}
	#contact .top_txt {
		font-size: 1.8rem;
		margin: 0 0 30px;
	}
	/* table_temp start */
	#contact.contact_after tr:first-child {
		margin: 20px 0 0;
	}
	#contact tr>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}
	#contact tr th {
		width: 100%;
		font-size: 100%;
	}
	#contact tr td {
		padding-top: 0;
	}
	#contact tr.hissu th b::after,
	#contact tr.nini th b::after {
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	#contact .radio_area label,
	#contact .check_area label {
		display: flex;
		align-items: center;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .form_btn01,
	#contact .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
	/* table_temp end */
}



/* footer
-------------------------------------------------------*/


#footer .inner {
	max-width: 800px;
	margin: 0 auto;
}

#footer.area {
	padding: 0px;
	padding-top: 40px;
}

#footer .logo {
	max-width: 263px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.footer_cap {
	font-weight: bolder;
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 40px;
}

.footer_cont {
	display: flex;
	justify-content: space-between;
}

.footer_contL {
	width: 48%;
}

.footer_contR {
	width: 48%;
}

.eigyo_ttl {
	background: #eaa6ac;
	padding: 2px 10px;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bolder;
	text-align: center;
	border-radius: 100px;
	margin-bottom: 20px;
}

.cal {
	margin-bottom: 20px;
}

.cal_time {
}

.cal_time dl {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 10px;
	align-items: center;
}

.cal_time dl dt {
	width: 25%;
	margin-right: 10px;
}

.cal_time dl dt p {
	background: #eaa6ac;
	padding: 2px 10px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bolder;
	text-align: center;
	border-radius: 100px;
}

.cal_time dl dd {
	width: 35%;
	text-align: right;
	font-size: 1.7rem;
	font-weight: bolder;
	word-break: keep-all;
}

.cal_cap {
	font-size: 1.1rem;
	margin-bottom: 60px;
	margin-top: 30px;
	font-weight: bolder;
}

.map {
	margin-top: -10px;
	margin-bottom: 10px;
}

.map_cap {
	font-size: 1.1rem;
	margin-bottom: 20px;
	font-weight: bolder;
}

.footer_btn {
	display: flex;
	justify-content: space-between;
}

.footer_btn li {
	width: 48%;
}

.footer_btn li a {
	display: block;
	border-radius: 100px;
	color: #fff;
	text-align: center;
	font-weight: bolder;
	font-size: 1.2rem;
	background: #eaa6ac;
	line-height: 1.2;
	padding: 10px;
	box-sizing: border-box;
}

.copy {
	background: #eaa6ac;
	text-align: center;
	font-size: 1.2rem;
	padding: 40px 20px;
	margin-top: 150px;
	font-weight: bolder;
}

@media screen and (max-width:768px) {
	


#footer.area {
	padding: 0px;
	padding-top: 40px;
}

#footer .logo {
	max-width: 180px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.footer_cap {
	font-weight: bolder;
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 40px;
}

.footer_cont {
	display: block;
	padding: 0px 20px;

}

.footer_contL {
	width: 100%;
	margin-bottom: 40px;
}

.footer_contR {
	width: 100%;
}

.eigyo_ttl {
	padding: 2px 10px;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.cal {
	margin-bottom: 20px;
}

.cal_time {
}

.cal_time dl {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 10px;
	align-items: center;
}

.cal_time dl dt {
	width: 35%;
	margin-right: 10px;
}

.cal_time dl dt p {
	background: #eaa6ac;
	padding: 2px 10px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bolder;
	text-align: center;
	border-radius: 100px;
}

.cal_time dl dd {
	width: 35%;
	text-align: right;
	font-size: 1.3rem;
	font-weight: bolder;
}

.cal_cap {
	font-size: 1.1rem;
	margin-bottom: 30px;
	margin-top: 30px;
	font-weight: bolder;
}

.map {
	margin-top: -10px;
	margin-bottom: 10px;
}

.map_cap {
	font-size: 1.1rem;
	margin-bottom: 20px;
	font-weight: bolder;
}

.footer_btn {
	display: flex;
	justify-content: space-between;
}

.footer_btn li {
	width: 48%;
}

.footer_btn li a {
	display: block;
	border-radius: 100px;
	color: #fff;
	text-align: center;
	font-weight: bolder;
	font-size: 1.2rem;
	background: #eaa6ac;
	line-height: 1.2;
	padding: 10px;
	box-sizing: border-box;
}

.copy {
	background: #eaa6ac;
	text-align: center;
	font-size: 1rem;
	padding: 30px 20px;
	margin-top: 40px;
	font-weight: bolder;
}

}


.map {
	position: relative;
	background: #fff;
	border-radius: 10px;
	padding: 40px 20px 20px 20px;
	box-sizing: border-box;
}

.map iframe {
	width: 100%;
	height: 200px;
}

.map_txt {
	font-size: 80%;
	text-align: center;
}

.map_ttl {
	max-width: 70px;
	position: absolute;
	top: -10px;
	left: 30px;
}
