@charset "utf-8";

/*====================================================================================

		basic layout

====================================================================================*/

body {
	color: #525252;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	line-height: 1.8;
}

body * {
	box-sizing: border-box;
}

.serif {
	font-family: 'Noto Serif JP', serif;
}

#page_top {
	clear: both;
	margin: 0;
	text-align: right;
}

img {
	vertical-align: top;
}

a {
	color: #525252;
	border: none;
	text-decoration: none;
	transition: all .3s;
}

a:hover {
	filter: brightness(140%);
}


/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, a:hover {
		opacity: 0.8;
	}
}


em {
	font-style: normal;
	font-weight: bold;
}

p#page_top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
}

.pc_none {
	display: none;
}

.sp_none {
	display: inline;
}

img.sp {
	display: none;
}

ul#sp_float_btn {
	display: none;
}


@media screen and (max-width: 768px){
	body {
		font-size: 16px;
	}
	
	.sp_none {
		display: none;
	}
	
	.pc_none {
		display: inline;
	}
	
	img {
		max-width: 100%;
		width: auto;
	}
	
	img.pc {
		display: none;
	}
	
	img.sp {
		display: inline;
	}
	
	p#page_top {
		width: 50px;
		right: 10px;
		bottom: 10px;
	}
	
	ul#sp_float_btn {
		display: flex;
		position: fixed;
		bottom: 0;
		z-index: 100;
		opacity: 0.85;
	}
	
	ul#sp_float_btn li:not(:last-child) {
		border-right: solid 1px #fff;
	}
	
	ul#sp_float_btn li a {
		cursor: default;
	}
}



/*------------------ clearfix layout ---------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
/*
*:after {
	content: "";
	display:block;
	clear:both;
}
*/


/*------------------ loading layout ---------------------*/
.loading {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,1.0);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loading img {
	width: 234px;
}

@media screen and (max-width: 768px){
	.loading img {
		width: 50%;
	}
}


/*------------------ fadein layout ---------------------*/
.fadein {
	opacity : 0;
	transform: translateY(10px);
	transition: all 1s;
}


/*------------------ form parts layout ---------------------*/
form input[type="text"] {
	padding: 8px 10px;
	border: solid 1px #ddd;
	font-size: 16px;
}

form select {
	padding: 8px 10px;
	border: solid 1px #ddd;
	font-size: 16px;
}

form input::placeholder {
	color: #666;
}

form input[type="checkbox"] {
	margin-right: 10px;
}

form label:not(:last-of-type) {
	margin-right: 30px;
}

form textarea {
	padding: 8px 10px;
	border: solid 1px #ddd;
	font-size: 16px;
}

form input[type="submit"] {
	width: 224px;
	margin: 0 auto;
	padding: 10px 0;
	background: url("../img/icon_arrow01.png") right 20px center / auto no-repeat #fff;
	border: solid 2px #FF8228;
	border-radius: 30px;
	display: block;
	color: #FF8228;
	font-size: 14px;
	font-weight: bold;
	transition: all .3s;
}

form input[type="submit"]:hover {
	background: url("../img/icon_arrow02.png") right 20px center / auto no-repeat #FF8228;
	color: #fff;
}


/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, form input[type="submit"] {
		padding: 12px 0 8px;
	}
}


@media screen and (max-width: 768px){
	form input[type="text"] {
		-webkit-appearance: none;
		border-radius: 0;
	}
	
	form label:not(:last-of-type) {
		margin: 0 0 10px;
		display: inline-block;
	}
	
	form textarea {
		-webkit-appearance: none;
		border-radius: 0;
	}
	
	form input[type="submit"] {
		width: 60%;
		background: url("../img/icon_arrow01.png") right 15px center / auto no-repeat #fff;
	}
}



/*===============================================================

		header layout

===============================================================*/

header {
	height: 637px;
	background: url("../img/main_img.jpg") center top / auto no-repeat #80DCE0;
	position: relative;
	z-index: 1;
}

header .header_wrapper {
	background-color: rgba(70,202,213, 0.65);
}

header .header_wrapper .inner {
	width: auto;
	min-width: 1000px;
	padding: 15px 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	position: relative;
}

header .logo {
}

header .logo {
	margin: 7px 0 0;
	vertical-align: middle;
}

header .logo img {
	height: 53px;
}

header h1 {
	width: 1000px;
	margin: 346px auto 0;
}


@media screen and (max-width: 768px){
	header {
		height: auto;
		background: none;
		position: relative;
		z-index: 1;
	}
	
	header .header_wrapper {
		position: absolute;
		top: 0;
	}
	
	header .header_wrapper .inner {
		width: auto;
		min-width: inherit;
		padding: 10px 20px;
		box-sizing: border-box;
		display: block;
		position: relative;
	}
	header .logo {
		margin: 0;
		padding: 0;
	}
	
	header .logo img {
		height: auto;
	}
	
	header h1 {
		width: auto;
		margin: 0;
	}
	
	header h1 img {
		width: 100%;
	}
	
	header p.btn {
		display: none;
	}
}



/*====================================================================================

		#contents layout

====================================================================================*/

#contents {

}

#contents section .inner,
#contents div .inner {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}

#contents section .inner h2,
#contents div .inner {	
	color: #333;
	font-family: 'Noto Serif JP', serif;
	font-size: 40px;
}

#contents .btn {
	margin: 15px 0 0;
}

#contents .btn a {
	padding: 15px 70px 18px 60px;
	background: url("../img/icon_arrow_01.png") right 15px center / 16px auto no-repeat #fff;
	border-radius: 6px;
	display: inline-block;
	line-height: 1.0;
	color: #3FB2D9;
	font-size: 17px;
}

#contents .btn a:hover {
	filter: brightness(100%);
	background: url("../img/icon_arrow_02.png") right 15px center / 16px auto no-repeat #3FB2D9;
	color: #fff;
}

/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, #contents .btn a:hover {
		opacity: 1.0;
	}
}


@media screen and (max-width: 768px){
	#contents section .inner,
	#contents div .inner {
		width: auto;
		margin: 0 20px;
	}
	
	#contents section .inner h2,
	#contents div .inner {	
		font-size: 5vw;
	}
	
	#contents .btn {
		margin: 15px 0 0;
		text-align: center;
	}
	
	#contents .btn a {
		padding: 15px 40px 15px 30px;
		display: block;
		font-size: 3.8vw;
	}
}


/*===============================================================

		#contents .question layout

===============================================================*/

#contents .question {
	padding: 25px 0 40px;
	background: url("../img/bg_01.png") left top / auto;
}

#contents .question .inner section {
	margin: 0 auto 80px;
}

#contents .question .inner section .heading {
	min-height: 280px;
	padding: 0 0 0 250px;
	position: relative;
	z-index: 1;
}

#contents .question .inner section:nth-of-type(3n+1) .heading {
	background: url("../img/img_01.png") 30px top / auto no-repeat;
}

#contents .question .inner section:nth-of-type(3n+2) .heading {
	background: url("../img/img_04.png") 10px top / auto no-repeat;
}

#contents .question .inner section:nth-of-type(3n+3) .heading {
	background: url("../img/img_06.png") 20px top / auto no-repeat;
}

#contents .question .inner section h2 {
	padding: 30px 0 20px;
}

#contents .question .inner section h2 span {
	background: linear-gradient(transparent 70%, #FCEE76 70%);
}

#contents .question .inner section dl {
	padding: 45px 60px;
	background: url("../img/bg_02.png") 13px center / auto no-repeat #FCEE76;
	position: relative;
	z-index: 2;
}

#contents .question .inner section dl::before {
	content: "";
	position: absolute;
}

#contents .question .inner section:nth-of-type(odd) dl::before {
	width: 242px;
	height: 353px;
	background: url("../img/img_03.png") left top / 100% auto no-repeat;
	right: 17px;
	top: -19px;
}

#contents .question .inner section:nth-of-type(even) dl::before {
	width: 284px;
	height: 353px;
	background: url("../img/img_05.png") left top / 100% auto no-repeat;
	right: 5px;
	top: -19px;
}

#contents .question .inner section dl dt.answer {
	width: 134px;
	position: absolute;
	left: 30px;
	top: -27px;
}

#contents .question .inner section dl dt.answer img {
	width: 100%;
}

#contents .question .inner section dl dt.title {
	margin: 0 0 20px 120px;
	color: #333;
	font-family: 'Noto Serif JP', serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.3;
}

#contents .question .inner section dl dt.title span {
	background: linear-gradient(transparent 70%, #fff 70%);
}

#contents .question .inner section dl dd {
	padding: 0 200px 0 0;
}

#contents .question .inner section:nth-of-type(even) dl dd {
	padding: 0 240px 0 0;
}


@media screen and (max-width: 768px){
	#contents .question {
		padding: 25px 0 20px;
	}
	
	#contents .question .inner section {
		margin: 0 auto 40px;
	}
	
	#contents .question .inner section .heading {
		min-height: inherit;
		padding: 0 0 20px 33%;
	}
	
	#contents .question .inner section:nth-of-type(3n+1) .heading {
		background: url("../img/img_01.png") left bottom / auto 100% no-repeat;
	}
	
	#contents .question .inner section:nth-of-type(3n+2) .heading {
		padding: 0 0 20px 35%;
		background: url("../img/img_04.png") left bottom / auto 96% no-repeat;
	}
	
	#contents .question .inner section:nth-of-type(3n+3) .heading {
		padding: 0 0 20px 37%;
		background: url("../img/img_06.png") left top / auto 90% no-repeat;
	}
	
	#contents .question .inner section h2 {
		padding: 0 0 10px;
		line-height: 1.6;
	}
	
	#contents .question .inner section dl {
		padding: 40px 20px 20px;
		background: url("../img/sp/bg_02.png") center 20px / 100% auto no-repeat #FCEE76;
	}
	
	#contents .question .inner section:nth-of-type(odd) dl::before {
		width: 120px;
		height: 175px;
		background: url("../img/img_03.png") left top / 100% auto no-repeat;
		right: 5px;
		top: -20px;
	}
	
	#contents .question .inner section:nth-of-type(even) dl::before {
		width: 141px;
		height: 175px;
		background: url("../img/img_05.png") left top / 100% auto no-repeat;
		right: 5px;
		top: -20px;
	}
	
	#contents .question .inner section dl dt.answer {
		width: 100px;
		position: absolute;
		left: 10px;
		top: -15px;
	}
	
	#contents .question .inner section dl dt.answer img {
		width: 100%;
	}
	
	#contents .question .inner section dl dt.title {
		margin: 50px 100px 10px 0;
		font-size: 5vw;
		line-height: 1.6;
	}
	
	#contents .question .inner section:nth-of-type(even) dl dt.title {
		margin: 50px 120px 10px 0;
	}
	
	#contents .question .inner section dl dd {
		padding: 0 !important;
	}
}


/*===============================================================

		#contents .demerit layout

===============================================================*/

#contents .demerit {
	padding: 80px 0;
	background-color: #D1F2F5;
	position: relative;
	z-index: 1;
}

#contents .demerit .inner h2 {
	min-height: 69px;
	margin: 0 auto 34px;
	padding: 10px 0 0 80px;
	background: url("../img/img_07.png") 150px center / 69px auto no-repeat;
	text-align: center;
	color: #555;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 45px;
	font-weight: 900;
	line-height: 1.0;
	letter-spacing: -4px;
}

#contents .demerit .inner dl {
	display: flex;
	justify-content: space-between;
}

#contents .demerit .inner dl div {
	width: 470px;
	padding: 30px;
	background-color: #fff;
}

#contents .demerit .inner dl div dt {
	margin: 0 0 20px;
	text-align: center;
	color: #0099CC;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.6;
}

#contents .demerit .inner dl div dd {
	font-size: 18px;
}


@media screen and (max-width: 768px){
	#contents .demerit {
		padding: 40px 0;
	}
	
	#contents .demerit .inner h2 {
		min-height: 40px;
		margin: 0 auto;
		padding: 10px 0 30px 40px;
		background: url("../img/img_07.png") left top / 40px auto no-repeat;
		font-size: 5vw;
		letter-spacing: -1px;
	}
	
	#contents .demerit .inner dl {
		display: block;
	}
	
	#contents .demerit .inner dl div {
		width: auto;
		margin: 0 0 20px;
		padding: 20px;
	}
	
	#contents .demerit .inner dl div dt {
		margin: 0 0 10px;
		font-size: 4.5vw;
	}
	
	#contents .demerit .inner dl div dd {
		font-size: 16px;
	}
}


/*===============================================================

		#contents .contact layout

===============================================================*/

#contents .contact {
	padding: 30px 0 80px;
	background: url("../img/bg_contact.png") center top / auto;
	position: relative;
	z-index: 3;
}

#contents .contact.last {
	
}

#contents .contact .inner h2 {
	padding: 29px 0 0;
	text-align: center;
	position: relative;
	z-index: 3;
}

#contents .contact .inner h2::before {
	content: "";
	width: 402px;
	height: 318px;
	background: url("../img/contact_img_01.png") center top / auto no-repeat;
	position: absolute;
	left: calc(50% - 201px);
	top: 0;
	z-index: -1;
}

#contents .contact .inner .box {
	margin: 46px 50px 0;
	padding: 50px 60px;
	background-color: #fff;
	box-shadow: 20px 20px 20px rgba(0,0,0, 0.15);
	text-align: center;
}


#contents .contact .inner .box ul {
	margin: 20px 0 0;
	padding: 30px 0 0;
	border-top: dotted 2px #999;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#contents .contact .inner .box ul li.tel {
	width: 339px;
}

#contents .contact .inner .box ul li.tel a {
	cursor: default;
}

#contents .contact .inner .box ul li.tel a:hover {
	filter: brightness(100%);
}

/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, #contents .contact .inner .box ul li.tel a:hover {
		opacity: 1.0;
	}
}

#contents .contact .inner .box ul li.tel img {
	width: 100%;
}

#contents .contact .inner .box ul li.reservation a {
	width: 411px;
	padding: 20px 20px 23px 55px;
	background: url("../img/icon_pc.png") 35px center / 32px auto no-repeat #FF632F;
	border-radius: 6px;
	display: block;
	color: #fff;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.2;
}


@media screen and (max-width: 768px){
	#contents .contact {
		padding: 10px 0 40px;
		background: url("../img/bg_contact.png") center top / auto;
		position: relative;
		z-index: 3;
	}
	
	#contents .contact.last {
		
	}
	
	#contents .contact .inner h2 {
		height: 200px;
		padding: 40px 0 0;
		text-align: center;
		position: relative;
		z-index: 3;
	}
	
	#contents .contact .inner h2::before {
		content: "";
		width: 100%;
		height: 200px;
		background: url("../img/contact_img_01.png") center top / auto 100% no-repeat;
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
	}
	
	#contents .contact .inner .box {
		margin: -34px 0 0;
		padding: 35px 20px 20px;
	}
	
	#contents .contact .inner .box p {
		width: 80%;
		margin: 0 auto;
	}
	
	#contents .contact .inner .box p img {
		width: 100%;
	}
	
	#contents .contact .inner .box ul {
		margin: 10px 0 0;
		padding: 20px 0 0;
		border-top: dotted 2px #999;
		display: block;
	}
	
	#contents .contact .inner .box ul li.tel {
		width: 80%;
		margin: 0 auto 20px;
	}
	
	#contents .contact .inner .box ul li.reservation a {
		width: auto;
		padding: 7% 0 7% 10%;
		background: url("../img/icon_pc.png") 10% center / 10% auto no-repeat #FF632F;
		border-radius: 6px;
		display: block;
		color: #fff;
		font-size: 4.0vw;
	}
}


/*===============================================================

		#contents .reason layout

===============================================================*/

#contents .reason {
	background-color: #F2F2F2;
}

#contents .reason .inner {
	padding: 0 0 280px;
	background: url("../img/img_15.png") right bottom / auto no-repeat;
}

#contents .reason .inner h2 {
	margin: 0 0 50px;
	padding: 108px 0 0;
	background: url("../img/img_08.png") center top / auto no-repeat;
	text-align: center;
	color: #0099CC;
	font-size: 55px;
	font-weight: 700;
	line-height: 1.0;
	letter-spacing: -1px;
}

#contents .reason .inner article {
	width: 1000px;
	margin: 0 auto 70px;
}

#contents .reason .inner article:nth-of-type(3) {
	margin: 0 auto;
}

#contents .reason .inner article .article_box {
	margin: 0 17px 0 0;
	padding: 55px 45px 60px;
	background: url("../img/bg_01.png") left top / auto;
	box-shadow: 17px 17px 0 rgba(0,0,0, 0.05);
}

#contents .reason .inner article .article_box h3 {
	margin: 0 0 50px;
	position: relative;
	color: #555;
	font-family: 'Noto Serif JP', serif;
	font-size: 35px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1px;
}

#contents .reason .inner article:nth-of-type(1) .article_box h3 {
	padding: 20px 0 0 50px;
}

#contents .reason .inner article:nth-of-type(1) .article_box h3::before {
	content: url("../img/img_09.png");
	position: absolute;
	left: 0;
	top: 0;
}

#contents .reason .inner article:nth-of-type(2) .article_box h3 {
	margin: 0 0 30px;
	padding: 0 0 0 80px;
}

#contents .reason .inner article:nth-of-type(2) .article_box h3::before {
	content: url("../img/img_11.png");
	position: absolute;
	left: 0;
	top: 0;
}

#contents .reason .inner article:nth-of-type(3) .article_box h3 {
	padding: 20px 0 0 80px;
}

#contents .reason .inner article:nth-of-type(3) .article_box h3::before {
	content: url("../img/img_13.png");
	position: absolute;
	left: 0;
	top: 0;
}

#contents .reason .inner article .article_box div {
	display: flex;
	justify-content: space-between;
}

#contents .reason .inner article .article_box div p:last-of-type {
	margin: 0 0 0 30px;
}


@media screen and (max-width: 768px){
	#contents .reason .inner {
		padding: 0 0 180px;
		background: url("../img/img_15.png") center bottom / auto 150px no-repeat;
	}
	
	#contents .reason .inner h2 {
		margin: 0 0 40px;
		padding: 70px 0 0;
		background: url("../img/img_08.png") center top / 30% auto no-repeat;
		font-size: 6vw;
		letter-spacing: 0;
	}
	
	#contents .reason .inner article {
		width: auto;
		margin: 0 auto 40px;
	}
	
	#contents .reason .inner article .article_box {
		margin: 0 10px 0 0;
		padding: 20px;
		box-shadow: 10px 10px 0 rgba(0,0,0, 0.05);
	}
	
	#contents .reason .inner article .article_box h3 {
		margin: 0 0 20px;
		font-size: 5vw;
		line-height: 1.4;
	}
	
	#contents .reason .inner article:nth-of-type(1) .article_box h3 {
		padding: 0 0 0 30px;
	}
	
	#contents .reason .inner article:nth-of-type(1) .article_box h3::before {
		content: "";
		width: 100%;
		height: 4vh;
		background: url("../img/img_09.png") 5px top / auto 100% no-repeat;
	}
	
	#contents .reason .inner article:nth-of-type(2) .article_box h3 {
		margin: 0 0 20px;
		padding: 0 0 0 40px;
	}
	
	#contents .reason .inner article:nth-of-type(2) .article_box h3::before {
		content: "";
		width: 100%;
		height: 4vh;
		background: url("../img/img_11.png") left top / auto 100% no-repeat;
	}
	
	#contents .reason .inner article:nth-of-type(3) .article_box h3 {
		margin: 0 0 20px;
		padding: 0 0 0 40px;
	}
	
	#contents .reason .inner article:nth-of-type(3) .article_box h3::before {
		content: "";
		width: 100%;
		height: 4vh;
		background: url("../img/img_13.png") left top / auto 100% no-repeat;
	}
	
	#contents .reason .inner article .article_box div {
		display: block;
	}
	
	#contents .reason .inner article .article_box div p:first-of-type {
		width: 80%;
		margin: 0 auto 20px;
	}
	
	#contents .reason .inner article .article_box div p:last-of-type {
		margin: 0;
	}
}


/*===============================================================

		#contents .flow layout

===============================================================*/

#contents .flow {
	background-color: #D1F2F5;
}

#contents .flow .inner h2 {
	margin: 0 0 50px;
	padding: 108px 0 0;
	background: url("../img/img_16.png") center top / auto no-repeat;
	text-align: center;
	color: #555;
	font-size: 55px;
	font-weight: 700;
	line-height: 1.0;
	letter-spacing: -1px;
}

#contents .flow .inner ol {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

#contents .flow .inner ol li {
	width: 310px;
	margin: 0 0 90px;
	padding: 10px;
	background-color: #fff;
	position: relative;
}

#contents .flow .inner ol li h3 {
	position: absolute;
	right: 18px;
	top: -37px;
}

#contents .flow .inner ol li h3 img {
	height: 74px;
}

#contents .flow .inner ol li p img {
	width: 290px;
}

#contents .flow .inner ol li dl dt {
	margin: 20px 0 10px;
	text-align: center;
	color: #0099CC;
	font-family: 'Noto Serif JP', serif;
	font-size: 30px;
	font-weight: 700;
}

#contents .flow .inner ol li dl dd {
	margin: 0 20px 20px;
}


@media screen and (max-width: 768px){
	#contents .flow .inner {
		padding: 0 0 60px;
	}
	
	#contents .flow .inner h2 {
		margin: 0 0 40px;
		padding: 70px 0 0;
		background: url("../img/img_16.png") center top / 30% auto no-repeat;
		font-size: 6vw;
		letter-spacing: 0;
	}
	
	#contents .flow .inner ol {
		display: block;
	}
	
	#contents .flow .inner ol li {
		width: auto;
		margin: 0 0 60px;
		padding: 20px;
		background: url("../img/bg_03.png") right top / 40% auto no-repeat #fff;
		position: relative;
	}
	
	#contents .flow .inner ol li:last-of-type {
		margin: 0;
	}
	
	#contents .flow .inner ol li h3 {
		width: 25%;
		position: absolute;
		right: 15px;
		top: -28px;
	}
	
	#contents .flow .inner ol li h3 img {
		height: auto;
	}
	
	#contents .flow .inner ol li p {
		width: 60%;
		margin: 0 auto;
		text-align: center;
	}
	
	#contents .flow .inner ol li dl dt {
		margin: 20px 0 10px;
		font-size: 5.5vw;
	}
	
	#contents .flow .inner ol li dl dd {
		margin: 0;
	}
}


/*===============================================================

		#contents .fee layout

===============================================================*/

#contents .fee {
	background-color: #F2F2F2;
}

#contents .fee .inner {
	padding: 0 0 270px;
	background: url("../img/img_40.jpg") right bottom / auto no-repeat;
}

#contents .fee .inner h2 {
	margin: 0 0 80px;
	padding: 108px 0 0;
	background: url("../img/img_29.png") center top / auto no-repeat;
	text-align: center;
	color: #0099CC;
	font-size: 55px;
	font-weight: 700;
	line-height: 1.0;
	letter-spacing: -1px;
}

#contents .fee .inner h2 + p {
	margin: 0 0 60px;
	text-align: center;
	color: #545454;
	font-size: 30px;
	line-height: 1.0;
}

#contents .fee .inner h2 + p em {
	margin: 0 0 30px;
	display: block;
	font-size: 35px;
	font-weight: 700;
}

#contents .fee .inner h2 + p img {
	margin: 0 0 20px;
}

#contents .fee .inner h2 + p span {
	display: block;
}

#contents .fee .inner section {
	margin: 0 0 50px;
	padding: 10px;
	background-color: #fff;
	position: relative;
}

#contents .fee .inner section:last-of-type {
	margin: 0;
}

#contents .fee .inner section.other {
	background-color: transparent;
}

#contents .fee .inner section div {
	padding: 35px 0;
	border: solid 2px #A6E6EE;
}

#contents .fee .inner section h3 {
	margin: 0 0 50px;
	text-align: center;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.0;
}

#contents .fee .inner section h3 span {
	padding: 15px 100px 20px 100px;
	background-color: #0099CC;
	display: inline-block;
}

#contents .fee .inner section.other h3 span {
	padding: 15px 180px 20px 180px;
}

#contents .fee .inner section h3 span b {
	font-size: 40px;
	font-weight: 700;
}

#contents .fee .inner section div ul {
	padding: 0 80px 30px;
}

#contents .fee .inner section div ul li {
	text-align: center;
}

#contents .fee .inner section div ul li:not(:last-of-type) {
	margin: 0 0 40px;
	padding: 0 10px 40px;
	border-bottom: dashed 1px #999;
}

#contents .fee .inner section div ul li p {
	margin: 20px 0 0;
	display: flex;
	justify-content: space-between;
}

#contents .fee .inner section.other dl div {
	margin: 0 0 20px;
	padding: 0 0 20px;
	border: none;
	border-bottom: dashed 1px #999;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#contents .fee .inner section.other dl div:last-of-type {
	margin: 0;
	border: none;
}

#contents .fee .inner section.other dl dt {
	font-size: 25px;
}

#contents .fee .inner section.other dl dd {
	color: #0099CC;
	font-size: 20px;
}

#contents .fee .inner section.other dl dd span {
	font-size: 35px;
	font-weight: 500;
}


@media screen and (max-width: 768px){
	#contents .fee .inner {
		padding: 0 0 170px;
		background: url("../img/img_40.jpg") center bottom / auto 150px no-repeat;
	}
	
	#contents .fee .inner h2 {
		margin: 0 0 40px;
		padding: 70px 0 0;
		background: url("../img/img_29.png") center top / 30% auto no-repeat;
		font-size: 6vw;
		letter-spacing: 0;
	}
	
	#contents .fee .inner h2 + p {
		margin: 0 0 40px;
		font-size: 4vw;
	}
	
	#contents .fee .inner h2 + p em {
		margin: 0 0 20px;
		display: block;
		font-size: 4.5vw;
		font-weight: 700;
	}
	
	#contents .fee .inner h2 + p img {
		width: 80%;
		margin: 0 0 10px;
	}
	
	#contents .fee .inner h2 + p span {
		display: block;
	}
	
	#contents .fee .inner section {
		margin: 0 0 20px;
		padding: 5px;
	}
	
	#contents .fee .inner section div {
		padding: 25px 0;
	}
	
	#contents .fee .inner section h3 {
		margin: 0 20px 20px;
		font-size: 3.5vw;
	}
	
	#contents .fee .inner section h3 span {
		padding: 10px 0;
		display: block;
	}
	
	#contents .fee .inner section.other h3 span {
		padding: 10px 0;
	}
	
	#contents .fee .inner section h3 span b {
		font-size: 4.5vw;
	}
	
	#contents .fee .inner section div ul {
		padding: 0 10px;
	}
	
	#contents .fee .inner section div ul li {
		text-align: center;
	}
	
	#contents .fee .inner section div ul li:not(:last-of-type) {
		margin: 0 0 20px;
		padding: 0 5px 20px;
	}
	
	#contents .fee .inner section div ul li:last-of-type p {
		margin: 0;
		display: block;
	}
	
	#contents .fee .inner section div ul li:last-of-type p img {
		width: 60%;
		margin: 10px 0 0;
	}
	
	#contents .fee .inner section.other dl div {
		margin: 0 0 20px;
		padding: 0 0 20px;
		border: none;
		border-bottom: dashed 1px #999;
		display: block;
		text-align: center;
	}
	
	#contents .fee .inner section.other dl dt {
		padding: 0;
		font-size: 16px;
	}
	
	#contents .fee .inner section.other dl dd {
		color: #0099CC;
		font-size: 16px;
	}
	
	#contents .fee .inner section.other dl dd span {
		font-size: 20px;
		font-weight: 500;
	}
}


/*===============================================================

		#contents .faq layout

===============================================================*/

#contents .faq {
	padding: 0 0 80px;
	background-color: #D1F2F5;
}

#contents .faq .inner h2 {
	margin: 0 0 50px;
	padding: 108px 0 0;
	background: url("../img/img_41.png") center top / auto no-repeat;
	text-align: center;
	color: #555;
	font-size: 55px;
	font-weight: 700;
	line-height: 1.0;
	letter-spacing: -1px;
}

#contents .faq .inner dl dt {
	padding: 45px 0 45px 130px;
	background-color: #fff;
	position: relative;
	color: #555;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.0;
}

#contents .faq .inner dl dt::before {
	content: "";
	width: 100px;
	height: 78px;
	position: absolute;
	left: 26px;
	top: -33px;
}

#contents .faq .inner dl dt:nth-of-type(1)::before {
	background: url("../img/img_42.png") left top / 100% auto no-repeat;
}

#contents .faq .inner dl dt:nth-of-type(2)::before {
	background: url("../img/img_43.png") left top / 100% auto no-repeat;
}

#contents .faq .inner dl dt:nth-of-type(3)::before {
	background: url("../img/img_44.png") left top / 100% auto no-repeat;
}

#contents .faq .inner dl dt:nth-of-type(4)::before {
	background: url("../img/img_45.png") left top / 100% auto no-repeat;
}

#contents .faq .inner dl dt:nth-of-type(5)::before {
	background: url("../img/img_46.png") left top / 100% auto no-repeat;
}

#contents .faq .inner dl dd {
	padding: 30px 0 60px 130px;
	background: url("../img/icon_a.png") 34px 28px / auto no-repeat;
	line-height: 2.0;
}

#contents .faq .inner p.btn {
	margin: 0 0 0 130px;
}

#contents .faq .inner p.btn a {
	background: url("../img/icon_arrow_02.png") right 15px center / 16px auto no-repeat #3FB2D9;
	color: #fff;
}

#contents .faq .inner p.btn a:hover {
	background: url("../img/icon_arrow_01.png") right 15px center / 16px auto no-repeat #fff;
	color: #3FB2D9;
}

/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, #contents .faq .inner p.btn a:hover {
		opacity: 1.0;
	}
}


@media screen and (max-width: 768px){
	#contents .faq {
		padding: 0 0 60px;
	}
	
	#contents .faq .inner h2 {
		margin: 0 0 40px;
		padding: 70px 0 0;
		background: url("../img/img_41.png") center top / 30% auto no-repeat;
		font-size: 6vw;
		letter-spacing: 0;
	}
	
	#contents .faq .inner dl dt {
		padding: 30px 15px 30px 80px;
		font-size: 4vw;
		line-height: 1.4;
	}
	
	#contents .faq .inner dl dt::before {
		width: 60px;
		height: 52px;
		left: 15px;
		top: -20px;
	}
	
	#contents .faq .inner dl dd {
		padding: 30px 0 40px 60px;
		background: url("../img/icon_a.png") 15px 28px / 10% auto no-repeat;
		line-height: 1.8;
	}
	
	#contents .faq .inner dl dd:nth-of-type(5) {
		padding: 20px 0 20px 60px;
	}
	
	#contents .faq .inner p.btn {
		width: 80%;
		margin: 0 auto;
	}
	
	#contents .faq .inner p.btn a {
		padding: 20px 0;
	}
}



/*====================================================================================

		footer layout

====================================================================================*/

footer {
	padding: 30px 0;
}

footer p.copy {
	text-align: center;
	color: #545454;
	font-size: 15px;
}


@media screen and (max-width: 768px){
	footer {
		padding: 30px 0 95px;
	}
	
	footer p.copy {
		font-size: 3vw;
	}
}






/* インスタ追加 */
#instagram{
    padding: 3em 0;
    background: #f2f2f2;
}
#instagram .inner{
    width: 100%;
    max-width: 1280px;
    margin-rgiht: auto;
    margin-left: auto;
    text-align: center;
}
.forpc{display: block;}
.forsp{display: none;}
@media screen and (max-width: 540px){
#instagram .inner{width: 90%;}
.forsp{display: inherit;}
.forpc{display: none;}
#instagram .sbi_item{width: 33.333% !important;}
}

