@charset "utf-8";


/* common
-------------------------------------------------------*/
*{
	box-sizing: border-box;
}

#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.area {
	padding: 80px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 840px;
	margin: 0 auto;
	box-sizing: border-box;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 30px 20px;
	}
	.inner {
		max-width: 100%;
	}
}


/* header
-------------------------------------------------------*/

.header {
	color: #fff;
	background: linear-gradient(90deg, #375d76 0%, #375d76 30%, #343f50 30%, #343f50 100%);
	padding: 0px 20px;
}

.header a {
	color: #fff;
}

.header .inner {
	max-width: 1000px;
	display: flex;
	align-items: center;
	justify-content:space-between;
	
}

.logo_wrap {
	width: 327px;
	background: url("../img/header_bg.png") no-repeat;
	background-size: cover;
	padding: 20px 0px;
}

.logo {
	max-width: 202px;
}

.gnav ul {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
}

.gnav ul li {
	margin-left: 60px;
}

.gnav ul li a {
	position: relative;
	
}

.gnav ul li.nav01 a:before {
	content:"";
	position: absolute;
	background: url("../img/icon01.png") no-repeat;
	width: 28px;
	height: 28px;
	background-size: 28px;
	left: -35px;
	top: 50%;
	margin-top: -14px;
}

.gnav ul li.nav02 a:before {
	content:"";
	position: absolute;
	background: url("../img/icon02.png") no-repeat;
	width: 28px;
	height: 28px;
	background-size: 28px;
	left: -35px;
	top: 50%;
	margin-top: -14px;
}

.gnav ul li.nav03 a:before {
	content:"";
	position: absolute;
	background: url("../img/icon03.png") no-repeat;
	width: 28px;
	height: 28px;
	background-size: 28px;
	left: -35px;
	top: 50%;
	margin-top: -14px;
}

.gnav ul li.nav04 a:before {
	content:"";
	position: absolute;
	background: url("../img/icon04.png") no-repeat;
	width: 28px;
	height: 28px;
	background-size: 28px;
	left: -35px;
	top: 50%;
	margin-top: -14px;
}

@media screen and (max-width:900px) {
	.logo {
		max-width: 150px;
	}

	.logo_wrap {
		width: 290px;
	}

	.gnav ul {
		font-size: 1.2rem;
	}
}


@media screen and (max-width:768px) {
	
	.logo {
		max-width: 150px;
	}

	.gnav ul li.nav01 a:before {
		content:"";
		position: absolute;
		background: url("../img/icon01.png") no-repeat;
		width: 28px;
		height: 28px;
		background-size: 28px;
		left: 0px;
		top: 50%;
		margin-top: -14px;
	}
	
	.gnav ul li.nav02 a:before {
		content:"";
		position: absolute;
		background: url("../img/icon02.png") no-repeat;
		width: 28px;
		height: 28px;
		background-size: 28px;
		left: 0px;
		top: 50%;
		margin-top: -14px;
	}
	
	.gnav ul li.nav03 a:before {
		content:"";
		position: absolute;
		background: url("../img/icon03.png") no-repeat;
		width: 28px;
		height: 28px;
		background-size: 28px;
		left: 0px;
		top: 50%;
		margin-top: -14px;
	}
	
	.gnav ul li.nav04 a:before {
		content:"";
		position: absolute;
		background: url("../img/icon04.png") no-repeat;
		width: 28px;
		height: 28px;
		background-size: 28px;
		left: 0px;
		top: 50%;
		margin-top: -14px;
	}
	
}


/* nav
-------------------------------------------------------*/

.gnav .logo {
	display: none;
}

.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:768px) {

	.gnav .logo {
		display: block;
	}

	#btn_nav {
		position: fixed;
		top: 25px;
		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: #0c6491;
		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: #343f50;
		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: 150px;
	}
	#nav_sp ul {
		display: block;
		margin: 0 0 20px;
	}
	
	#nav_sp ul li {
		max-width: 100%;
		margin-left: 0px;
	}
	
	#nav_sp ul li a {
		padding: 20px 10px;
		display: block;
		border-top: 1px dashed #d5d4d4;
		position: relative;
		padding-left: 45px;
	}
	#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;
		margin-top: 30px;
	}
	
	#nav_sp ul li a {
		text-align: left;
	}
	
	
}



/* visual
-------------------------------------------------------*/

#visual {
	background: url("../img/visual_bg.png") no-repeat center;
	background-size: cover;
}

#visual.area {
	padding: 100px 20px;

}

.visual_img {
	max-width: 522px;
	margin: 0 auto;
}


@media screen and (max-width:768px) {
}



/* area01
-------------------------------------------------------*/

.main_ttl {
	text-align: center;
	margin-bottom: 80px;
	color: #006081;
	font-size: 3rem;
}


@media screen and (max-width:768px) {

	.main_ttl {
		margin-bottom:25px;
		font-size: 2.2rem;
	}
}


/* area02
-------------------------------------------------------*/

.area02 {
	background: #d6dce5;
}

.area02 .main_ttl {
	margin-bottom: 50px;
}

.price_box {

}

.caution {
	font-size: 1.3rem;
	padding-left: 1em;
	text-indent: -1em;
}

.txt_right {
	text-align: right;
}

.caution.txt_right {
	margin-bottom: 10px;
}

.priceTB {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #fff;
	margin-bottom: 30px;
}

.priceTB th {
	background: #006075;
	color: #fff;
	text-align: center;
	padding: 20px;
	width:30%;
	font-size: 2rem;
	line-height: 1.2;
	vertical-align: middle;
}

.priceTB td {
	background: #fff;
	color: #006075;
	text-align: right;
	padding: 20px;
	width:40%;
	font-size: 1.6rem;
	line-height: 1.2;
	vertical-align: middle;
	border-bottom: 1px solid #f2f2f2;
}

.priceTB td .price_txt {
	font-size: 3rem;
}

.priceTB td.border_w {
	border-bottom: 1px solid #fff;
}

.priceTB td.bg_gl {
	color: #000;
	font-size: 1.8rem;
	width:30%;
	border-bottom: 1px solid #fff;
	text-align: center;
	 background: rgb(246,245,245);
background: linear-gradient(90deg, rgba(246,245,245,1) 0%, rgba(194,222,236,1) 0%, rgba(220,234,246,1) 100%); 
}



@media screen and (max-width:768px) {
	
	.area02 .main_ttl {
		margin-bottom: 5px;
	}

	.caution {
		font-size: 1rem;
	}

	.priceTB {
		margin-bottom: 20px;
	}
	
	.priceTB th {
		padding:10px;
		width:35%;
		font-size: 1.4rem;
	}
	
	.priceTB td {
		padding: 10px;
		width:30%;
		font-size: 1.4rem;
	}
	
	.priceTB td .price_txt {
		font-size: 2rem;
	}
	

	
	.priceTB td.bg_gl {
		font-size: 1.4rem;
		width:30%;
		border-bottom: 1px solid #fff;
		text-align: center;
		 background: rgb(246,245,245);
background: linear-gradient(90deg, rgba(246,245,245,1) 0%, rgba(194,222,236,1) 0%, rgba(220,234,246,1) 100%); 
	}
	
}



/* area03
-------------------------------------------------------*/

.news dl {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #d9d9d9;
	line-height: 1.5;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.news dl dt {
	width: 15%;
	color: #006075;
}

.news dl dd {
	width: 83%;
}

/*.news dl dd a {
	text-decoration: underline;
}*/


@media screen and (max-width:768px) {
	.news dl {
		display: block;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	
	.news dl dt {
		width: 100%;
	}
	
	.news dl dd {
		width: 100%;
	}
	
}



/* area04
-------------------------------------------------------*/

.contact_btn_area {
	border-radius: 30px;
	padding: 50px;
	box-shadow: 13px 13px 16px -10px #c0c0c0;
}

.area04 .main_ttl {
	margin-bottom: 30px;
}

.area04 {
	padding-top: 0px;
	margin-top: 0px;
}

.contact_btn_area_inner {
	max-width: 450px;
	margin: 0 auto;
}

.contact_time {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact_time dt {
	font-size: 1.6rem;
	width: 55%;
	text-align: center;
	padding: 5px;
}

.contact_time dd {
	font-size: 1.2rem;
	width: 40%;
	text-align: center;
	background: #d6dce5;
	padding: 5px;
}

.contact_tel {
	color: #23b99c;
	text-align: center;
	font-size: 5.3rem;
	line-height: 1.2;
	margin-bottom: 20px;
}

.contact_tel a {
	color: #006075;
}

.contact_btn a {
	display: block;
	background: #006075;
	padding: 25px;
	border-radius: 10px;
	text-align: center;
	color: #fff;
	font-size: 2.8rem;
	line-height: 1.2;
	position: relative;
}

.contact_btn a:before {
	content:"";
	position: absolute;
	background: url("../img/arrow.png") no-repeat;
	width: 14px;
	height: 22px;
	background-size: 14px 22px;
	right: 30px;
	top: 50%;
	margin-top: -11px;
}


@media screen and (max-width:768px) {

	.contact_btn_area {
		padding: 20px;
	}
	
	.area04 .main_ttl {
		margin-bottom: 10px;
	}
	
	
	.contact_btn_area_inner {
		max-width: 100%;
	}
	
	.contact_time {
		display: block;
		margin-bottom: 10px;
	}
	
	.contact_time dt {
		font-size: 1.4rem;
		width: 100%;
		padding: 5px;
	}
	
	.contact_time dd {
		font-size: 1.2rem;
		width: 100%;
		padding: 5px;
	}
	
	.contact_tel {
		font-size: 3.5rem;
		margin-bottom: 20px;
	}
	
	.contact_tel a {
		color: #006075;
	}
	
	.contact_btn a {
		padding: 15px;
		font-size: 2rem;
	}
	
	.contact_btn a:before {
		content:"";
		position: absolute;
		background: url("../img/arrow.png") no-repeat;
		width: 10px;
		height: 18px;
		background-size: 10px 18px;
		right: 30px;
		top: 50%;
		margin-top: -9px;
	}

}






/* contact
-------------------------------------------------------*/


#visual.contact_visual {
	background: url("../img/contact_bg.png") no-repeat center;
	background-size: cover;
}

.page_ttl {
	color: #006075;
	text-align: center;
	font-size: 5rem;
}

#visual.area {
	padding: 120px 20px;

}

#contact.area {
	padding-bottom: 0;
}

.contact_top_tel_time {
	text-align: center;
}

.contact_top_tel_time span {
	font-size: 1.2rem;
	margin-left: 20px;
}

.contact_top_tel {
	border-radius: 100px;
	     background: rgb(246,245,245);
background: linear-gradient(15deg, rgba(246,245,245,1) 0%, rgba(224,228,235,1) 0%, rgba(255,255,255,1) 58%); 
padding: 30px 100px;
max-width: 700px;
margin: 0 auto;
}

.contact_form_inner {
	border-radius: 30px;
	padding: 50px;
	box-shadow: 13px 13px 16px -10px #c0c0c0;
}

.contact_form_inner dl {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.contact_form_inner dl dt {
	width: 40%;
}

.contact_form_inner dl dd {
	width: 58%;
}

.contact_form_inner input[type="text"],.contact_form_inner textarea  {
	padding: 10px;
	background: #f2f2f1;
	border: none;
	border-radius: 5px;
	width: 100%;
}

.contact_form_inner textarea {
	height: 200px;
}

.contact_form_inner dl dt .caution {
	font-size: 1rem;
}

.hissu {
	position: relative;
}
.hissu:after {
	content:"必須";
	background: #006075;
	position: absolute;
	color: #fff;
	padding: 5px 10px 7px 10px;
	border-radius: 3px;
	right: 0;
	top: 10px;
	font-size: 1.2rem;
	line-height: 1;
}

.privacy_check {
	text-align: center;
}

.contact_btn_form {
	text-align: center;
	margin-top: 50px;
	display: flex;
	justify-content: center;
}


.contact_btn_form .form_btn01 {
	display: block;
	background: #006075;
	padding: 25px;
	border-radius: 10px;
	text-align: center;
	color: #fff;
	font-size: 2.6rem;
	line-height: 1.2;
	position: relative;
	border: none;
	width: 400px;
	margin: 0px 10px;
}

.contact_btn_form .send_icon {
	position: relative;
	display: inline-block;
}


.contact_btn_form .send_icon:before {
	content:"";
	position: absolute;
	background: url("../img/arrow.png") no-repeat;
	width: 14px;
	height: 22px;
	background-size: 14px 22px;
	right: 30px;
	top: 50%;
	margin-top: -11px;
	z-index: 2;
}

.contact_btn_form .form_btn01:hover {
	opacity: .7;
}

.contact_btn_form_check .form_btn01 {
	width: 200px;

}

.contact_btn_form .form_btn02{
	display: block;
	background: #999;
	padding: 25px;
	border-radius: 10px;
	text-align: center;
	color: #fff;
	font-size: 2.6rem;
	line-height: 1.2;
	position: relative;
	border: none;
	width: 150px;
	margin: 0px 10px;
}

.txt_form {
	text-align: center;
}

.back_to_home {
	text-align:center;
	margin-top: 30px;
}

.back_to_home a {
	color: #006075;
}

.g-recaptcha {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.err_msg {
	color: #d93025;
	font-size: smaller;
}

.privacy_check {
	display: flex;
	padding: 1em 0;
	align-items: center;
	justify-content: center;
}
.privacy_check input[type="checkbox"] {
	height: 2em;
	width: 2em;
	margin-right: 0.5em;
	accent-color: #006075;
}
input[type="submit" i]:disabled {
	background-color: lightgray;
	cursor: default;;
}

@media screen and (max-width:768px) {
	.page_ttl {
		font-size: 3.5rem;
	}
	
	#visual.area {
		padding: 80px 20px;
	
	}
	
	
	.contact_top_tel_time span {
		display: block;
		font-size: 1.2rem;
		margin-left: 0px;
	}
	
	.contact_top_tel {
		border-radius: 100px;
		background: rgb(246,245,245);
	background: linear-gradient(58deg, rgba(246,245,245,1) 0%, rgba(246,245,245,1) 0%, rgba(255,255,255,1) 100%);
	padding: 20px 30px;
	max-width: 700px;
	margin: 0 auto;
	}

	.contact_top_tel .contact_tel {
		font-size: 3rem;
		margin-bottom: 0px;
	  }

	
	.contact_form_inner {
		border-radius: 30px;
		padding: 20px;
		box-shadow: 13px 13px 16px -10px #c0c0c0;
	}
	
	.contact_form_inner dl {
		width: 100%;
		display: block;
	}
	
	.contact_form_inner dl dt {
		width: 100%;
		margin-bottom: 10px;
	}
	
	.contact_form_inner dl dd {
		width: 100%;
	}
	
	
	
	.contact_form_inner textarea {
		height: 150px;
	}
	
	.contact_form_inner dl dt .caution {
		font-size: 1rem;
	}
	
	.hissu {
		position: relative;
	}
	.hissu:after {
		content:"必須";
		background: #006075;
		position: absolute;
		color: #fff;
		padding: 5px 10px 7px 10px;
		border-radius: 3px;
		right: 0;
		top: 0px;
		font-size: 1.2rem;
		line-height: 1;
	}
	
	.privacy_check {
		text-align: center;
	}
	
	.contact_btn_form {
		text-align: center;
		margin-top: 30px;
	}
	
	
	.contact_btn_form .form_btn01 {
		display: block;
		background: #006075;
		padding: 15px 25px 15px 25px;
		border-radius: 10px;
		text-align: center;
		color: #fff;
		font-size: 1.8rem;
		line-height: 1.2;
		position: relative;
		border: none;
		width:230px;
		margin: 0px 10px;
	}

	.contact_btn_form_check .form_btn01 {
		width: 130px;
	
	}

	.contact_btn_form .form_btn02{
		display: block;
		background: #999;
		padding: 15px 25px 15px 25px;
		border-radius: 10px;
		text-align: center;
		color: #fff;
		font-size: 1.8rem;
		line-height: 1.2;
		position: relative;
		border: none;
		width: 100px;
		margin: 0px 10px;
	}
	
	.contact_btn_form .send_icon {
		position: relative;
		display: inline-block;
	}
	
	
	.contact_btn_form .send_icon:before {
		content:"";
		position: absolute;
		background: url("../img/arrow.png") no-repeat;
		width: 10px;
		height: 18px;
		background-size: 10px 18px;
		right: 20px;
		top: 50%;
		margin-top: -9px;
		z-index: 2;
	}
	
	.contact_btn_form .form_btn01:hover {
		opacity: .7;
	}
}








/* footer
-------------------------------------------------------*/

.footer {
	background: url("../img/footer_bg_all.png") no-repeat left;
	color: #fff;
	background-size: cover;
	position: relative;
}

.footer a {
	color: #fff;
}

.footer .inner {
	max-width: 90%;
	padding: 60px 20px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.footer_logo {
	max-width: 160px;
}

.fnav {
	margin-left: 20%;
}

.fnav ul {
	display: flex;
}

.fnav ul li {
	margin-left: 60px;
}

.fnav ul li a {
	position: relative;
}

.fnav ul li a:before {
	content:"●";
	position: absolute;
	color: #3e5e69;
	left: -25px;
}

.copy {
	position: absolute;
	bottom: 30px;
	width: 100%;
	text-align: center;
	
}


@media screen and (max-width:850px) {

	
	.fnav ul {
		display: block;
	}
	
	.fnav ul li {
		margin-left: 20px;
	}
}


@media screen and (max-width:768px) {
	
	.footer {
		background: url("../img/footer_bg_all.png") no-repeat left;
		color: #fff;
		background-size: cover;
		position: relative;
		background-position: 15%;
	}
	
	
	.footer .inner {
		max-width: 100%;
		padding: 30px 20px 50px 20px;
		margin: 0 auto;
		display: block;
	}
	
	.footer_logo {
		max-width: 150px;
		margin-bottom: 15px;
	}
	
	.fnav {
		margin-left: 0%;
	}
	
	.fnav ul {
		display: block;
	}
	
	.fnav ul li {
		margin-left: 20px;
	}
	
	.fnav ul li a {
		position: relative;
	}
	
	.fnav ul li a:before {
		content:"●";
		position: absolute;
		color: #334d65;
		left: -25px;
	}
	
	.copy {
		left: 0;
		font-size: 1.2rem;
		bottom: 30px;
	
		
	}	
	
}


.contact_thanks .main_ttl {
	margin-bottom: 40px;
}
.contact_thanks .txt_form {
	margin-bottom: 50px;
}

@media screen and (max-width:768px) {
	.contact_thanks .main_ttl {
	margin-bottom: 20px;
}
	.contact_thanks .txt_form {
	margin-bottom: 30px;
}
}

