@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

html, body {
	height: 100%;
}
html {
	font-size: 62.5%;
	overflow-y: scroll;
}
body, h1, h2, h3, h4, h5, h6, p, address, ul, ol, li, dl, dt, dd, table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
	text-align: left;
	color: #333333;
}
body a {
	text-decoration: none;
	color: #333333;
}
img {
	vertical-align: bottom;
}
img{
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
*,*:after,*:before{
	box-sizing: border-box;
}
.preload * {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
	.sp{
		display: none!important;
	}
}
@media screen and (max-width: 767px) {
	.pc{
		display: none!important;
	}
}

/* base
--------------------------------*/
p, dt, dd ,li ,th ,td,
input, button, textarea, select{
	font-size: 1.8rem;
	line-height: 1.67;
}
body{
	min-width: 1000px;
}
body.fixed{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.wrap{
	max-width: 980px;
	width: 98%;
	margin: 0 auto;
}
.aligncenter{
	display: block;
	margin: 0 auto;
}
.alignright{
	float: right;
}
.alignleft{
	float: left;
}
.tac{
	text-align: center!important;
}
.tar{
	text-align: right!important;
}
.tal{
	text-align: left!important;
}
a{
	transition: opacity .4s;
}
a:hover{
	opacity: .5;
}
.bold{
	font-weight: bold;
}
.marker{
	background: linear-gradient(transparent 60%, #f0eb47 60%);
}
.ul{
	text-decoration: underline;
}
@media screen and (max-width: 767px) {
	body {
		min-width: 0;
	 	-webkit-text-size-adjust: 100%;
	}
	img{
		width: 100%;
	}
	p, dt, dd ,li ,th ,td,
	input, button, textarea, select{
		font-size: 1.4rem;
		line-height: 1.67;
	}
	.wrap{
		width: 92%;
	}
	.sp_tac{
		text-align: center!important;
	}
	.sp_tar{
		text-align: right!important;
	}
	.sp_tal{
		text-align: left!important;
	}
}


/* ------------------------------------------
*  header
* -----------------------------------------*/
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background: #fff;
	z-index: 999;
}
.head_top{
	padding: 6px 0;
	background: #f7f7f7;
}
.head_top ul{
	display: flex;
	justify-content: flex-end;
}
.head_top ul li,
.head_top ul li a{
	font-size: 1.2rem;
}
.head_top ul li::after{
	content: '|';
	display: inline-block;
	margin: 0 .5em;
}
.head_top ul li:last-child::after{
	display: none;
}
.head_main .wrap{
	height: 88px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.head_main .gnavi{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.head_main .gnavi .main{
	display: flex;
	justify-content: flex-start;
}
.head_main .gnavi .main li{
	margin-left: 30px;
}
.head_main .gnavi .main li a{
	font-size: 1.4rem;
}
.head_main .gnavi .btn{
	margin-left: 40px;
}
.head_main .gnavi .btn a{
	color: #fff;
	font-weight: 700;
	text-align: center;
	width: 158px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 2px;
	background: #0ba82d;
}
@media screen and (max-width: 767px) {
	header{
		height: 80px;
	}
	.head_top{
		padding: 4px 0;
		height: 24px;
		position: relative;
		z-index: 100;
	}
	.head_top ul li,
	.head_top ul li a{
		font-size: 1rem;
	}
	.head_main .wrap{
		width: 100%;
		height: auto;
	}
	.head_main .sp_head{
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		background: #fff;
		position: relative;
		height: 56px;
		padding: 0 4%;
		z-index: 100;
	}
	.head_main .logo{
		width: 120px;
	}
	.head_main .menu_trigger{
		width: 35px;
		height: 35px;
		margin-left: auto;
		position: relative;
	}
	.head_main .menu_trigger span{
		width: 80%;
		height: 2px;
		background: #333;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		display: block;
		transition: .4s;
	}
	.head_main .menu_trigger span:nth-child(1){
		top: 20%;
	}
	.head_main .menu_trigger span:nth-child(2){
		top: 50%;
		transform: translateY(-50%);
	}
	.head_main .menu_trigger span:nth-child(3){
		bottom: 20%;
	}
	.menu_open .head_main .menu_trigger span:nth-child(1){
		top: 50%;
		transform: translateY(-50%) rotate(135deg);
	}
	.menu_open .head_main .menu_trigger span:nth-child(2){
		top: 50%;
		transform: translateY(-50%);
		opacity: 0;
	}
	.menu_open .head_main .menu_trigger span:nth-child(3){
		top: 50%;
		bottom: 0;
		transform: translateY(-50%) rotate(-135deg);
	}
	.head_main .gnavi{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		max-height: calc(90vh - 80px);
		overflow-y: auto;
		transform: translateY(-100%);
		background: #fff;
		display: block;
		transition: .4s;
		padding: 10px 4% 20px;
	}
	.menu_open .head_main .gnavi{
		top: 80px;
		transform: translateY(0);
	}
	.head_main .gnavi .main{
		display: block;
	}
	.head_main .gnavi .main li{
		margin-left: 0;
	}
	.head_main .gnavi .main li a{
		font-size: 1.4rem;
		display: block;
		padding: 9px 0;
	}
	.head_main .gnavi .btn{
		margin: 10px auto 0;
	}
	.head_main .gnavi .btn a{
		width: 80vw;
		height: 40px;
		padding-top: 2px;
		margin: 0 auto;
	}
}

/* ------------------------------------------
*  main
* -----------------------------------------*/

main{
	display: block;
	padding-top: 120px;
}
@media screen and (max-width: 767px) {
	main{
		padding-top: 80px;
	}
}

/* タイトル
--------------------------------*/
.ttl_sec{
	font-size: 2.4rem;
	line-height: 1.35;
	font-weight: 700;
	color: #0a335e;
	text-align: center;
	margin-bottom: 45px;
}
.ttl_sec .big{
	font-size: 4rem;
}
.ttl_obi{
	font-size: 2.4rem;
	line-height: 1.35;
	font-weight: 700;
	color: #fff;
	text-align: center;
	background: #0a335e;
	padding: 30px 0 25px;
}
.ttl_obi .big{
	font-size: 4rem;
}
@media screen and (max-width: 767px) {
	.ttl_sec{
		font-size: 1.8rem;
		margin-bottom: 20px;
	}
	.ttl_sec .big{
		font-size: 2.4rem;
	}
	.ttl_obi{
		font-size: 1.8rem;
		padding: 20px 0 15px;
	}
	.ttl_obi .big{
		font-size: 2.4rem;
	}
}

/* ボタン
--------------------------------*/
.btn_normal{
	font-size: 3rem;
	text-align: center;
	color: #fff;
	font-weight: 700;
	width: 100%;
	max-width: 604px;
	height: 70px;
	padding-top: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f4a507;
	border-radius: 5px;
	border-bottom: 3px solid #b17f21;
	position: relative;
}
.btn_normal::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 30px;
	width: 10px;
	height: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg) translateY(-50%);
	margin-top: -2px;
}
.btn_normal.btn_center{
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.btn_normal{
		font-size: 1.8rem;
		max-width: 100%;
		width: 80vw;
		height: 55px;
		padding-top: 3px;
		border-radius: 5px;
		border-bottom: 3px solid #b17f21;
	}
	.btn_normal::before{
		left: 20px;
		width: 8px;
		height: 8px;
	}
	.btn_normal.sp_btn_center{
		margin: 0 auto;
	}
}

/* テキスト
--------------------------------*/
.txt_area > *+*{
	margin-top: 30px;
}
.txt_area > .mt50{
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
	.txt_area > *+*{
		margin-top: 15px;
	}
	.txt_area > .mt50{
		margin-top: 15px;
	}
}

/* ad
--------------------------------*/
.ad{
	background: #0ba82d;
}
.ad .wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px 0;
}
.ad .img{
	margin-right: 30px;
}
.ad .txt{
	font-size: 2.4rem;
	color: #fff;
	font-weight: 700;
	margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
	.ad .wrap{
		display: block;
		padding: 10px 0;
		position: relative;
	}
	.ad .img{
		width: 60px;
		margin: 0 auto;
	}
	.ad .txt{
		font-size: 1.8rem;
		text-align: center;
		line-height: 1.4;
		margin-bottom: 10px;
		padding-top: 10px;
		width: auto;
	}
}

/* sec01
--------------------------------*/
.sec01{
	padding: 40px 0 30px;
	background: url(../images/sec01_bg.jpg) no-repeat center center /cover;
}
@media screen and (max-width: 767px) {
	.sec01{
		padding: 30px 0 30px;
		background: url(../images/sec01_bg.jpg) no-repeat center center /cover;
	}
}


/* sec03
--------------------------------*/
.sec03{
	padding: 75px 0 80px;
	background: #edf3f4;
}
.sec03 .list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sec03 .list li{
	font-size: 2.4rem;
	line-height: 1.25;
	padding-left: 40px;
	position: relative;
	width: 48%;
}
.sec03 .list li:nth-child(n+3){
	margin-top: 27px;
}
.sec03 .list li::before,
.sec03 .list li::after{
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
}
.sec03 .list li::before{
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #0ba82d;
}
.sec03 .list li::after{
	top: 8px;
	left: 5px;
	width: 12px;
	height: 9px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
	.sec03{
		padding: 40px 0;
	}
	.sec03 .list{
		display: block;
	}
	.sec03 .list li{
		font-size: 1.8rem;
		padding-left: 25px;
		width: 100%;
	}
	.sec03 .list li:nth-child(n+2){
		margin-top: 10px;
	}
	.sec03 .list li::before,
	.sec03 .list li::after{
		top: 0px;
	}
	.sec03 .list li::before{
		width: 18px;
		height: 18px;
	}
	.sec03 .list li::after{
		top: 4px;
		left: 4px;
		width: 10px;
		height: 7px;
	}
}

/* sec04
--------------------------------*/
.sec04{
	overflow: hidden;
	padding: 70px 0 80px;
}
.sec04 .img1{
	float: right;
	margin: 0 -230px -40px 30px;
}
.sec04 .img2{
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
	.sec04{
		padding: 40px 0;
	}
	.sec04 .img1{
		float: none;
		width: 75%;
		margin: 0 auto;
	}
	.sec04 .img2{
		margin-top: 20px;
	}
}
.sec04 .txt1{
	font-size: 2.4rem;
	color: #0a335e;
	font-weight: 700;
	text-align: center;
}
.sec04 .txt1 span{
	background: linear-gradient(transparent 60%, #f0eb47 60%);
}
.sec04 .txt2{
	font-size: 2.4rem;
	color: #0a335e;
	text-align: center;
	margin-top: 8px;
	margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
	.sec04 .txt1{
		font-size: 1.4rem;
	}
	.sec04 .txt2{
		font-size: 1.6rem;
		margin-top: 8px;
		margin-bottom: 8px;
	}
}

/* sec05
--------------------------------*/
.sec05 .bg{
	padding: 30px 0 60px;
	background: url(../images/sec05_bg.jpg) no-repeat center center /cover;
}
.sec05 .box{
	padding: 35px;
	background: #fff;
}
.sec05 .box+.box{
	margin-top: 20px;
}
.sec05 .box .midashi{
	font-size: 3rem;
	color: #0a335e;
	font-weight: 700;
	text-align: center;
}
.sec05 .box .info{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 20px;
}
.sec05 .box .info .tag{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.sec05 .box .info .tag li{
	font-size: 1.4rem;
	line-height: 1;
	color: #fff;
	font-weight: 700;
	background: #0ba82d;
	padding: .32em .5em .22em;
	display: inline-block;
	margin-right: 15px;
}
.sec05 .box .info .name{
	font-size: 2rem;
}
.sec05 .box .txt_area{
	margin-top: 25px;
}
.sec05 .box .txt_area p{
	font-size: 1.7rem;
	line-height: 1.4;
}
.sec05 .box .txt_area p+p{
	margin-top: 25px;
}
.sec05 .box .img{
	float: right;
	margin: 0 0 15px 20px;
}
@media screen and (max-width: 767px) {
	.sec05 .bg{
		padding: 20px 0;
	}
	.sec05 .box{
		padding: 20px 4%;
	}
	.sec05 .box+.box{
		margin-top: 20px;
	}
	.sec05 .box .midashi{
		font-size: 1.8rem;
		line-height: 1.4;
	}
	.sec05 .box .info{
		display: block;
		margin-top: 10px;
	}
	.sec05 .box .info .tag{
		justify-content: center;
		margin-bottom: 5px;
	}
	.sec05 .box .info .tag li{
		font-size: 1.2rem;
		margin: 0 5px;
	}
	.sec05 .box .info .name{
		font-size: 1.6rem;
		text-align: center;
	}
	.sec05 .box .txt_area{
		margin-top: 15px;
	}
	.sec05 .box .txt_area p{
		font-size: 1.4rem;
		line-height: 1.67;
	}
	.sec05 .box .txt_area p+p{
		margin-top: 15px;
	}
	.sec05 .box .img{
		float: none;
		width: 75%;
		margin: 0 auto;
	}
}

/* sec06
--------------------------------*/
.sec06{
	padding: 95px 0 50px;
}
.sec06 .ttl_sec{
	margin-bottom: 90px;
}
.sec06 .box+.box{
	margin-top: 80px;
}
.sec06 .box .midashi{
	font-size: 3rem;
	line-height: 1.2;
	color: #0a335e;
	font-weight: 700;
	padding-left: 50px;
	position: relative;
	margin-bottom: 40px;
}
.sec06 .box .midashi .num{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	width: 45px;
	height: 45px;
	padding-top: 3px;
	background: #0ba82d;
	border-radius: 50%;
	position: absolute;
	top: -7px;
	left: 0;
}
.sec06 .box .note{
	font-size: 1.4rem;
	margin-top: 35px;
}
.sec06 .box .img{
	text-align: center;
}
.sec06 .box img.max{
	max-width: auto;
	max-width: inherit;
}
.sec06 .box .col2,
.sec06 .box .col3{
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
}
.sec06 .box .col2 > *{
	width: 47%;
}
.sec06 .box .col3 > *{
	width: 28%;
}
.sec06 .box .col3 .txt{
	font-size: 1.7rem;
	line-height: 1.4;
	margin-top: 10px;
}
.sec06 .box .col3 .txt .bold{
	font-size: 1.5rem;
}
.sec06 .box1 .img{
	float: right;
	margin-left: 40px;
}
.sec06 .box2 .img{
	margin-top: 20px;
}
.sec06_ad{
	margin-top: 70px;
}
.sec06_ad .txt{
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	color: #0a335e;
	margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
	.sec06{
		padding: 40px 0;
	}
	.sec06 .ttl_sec{
		margin-bottom: 40px;
	}
	.sec06 .box+.box{
		margin-top: 40px;
	}
	.sec06 .box .midashi{
		font-size: 1.8rem;
		padding-left: 35px;
		margin-bottom: 20px;
	}
	.sec06 .box .midashi .num{
		width: 30px;
		height: 30px;
		top: -5px;
	}
	.sec06 .box .note{
		font-size: 1.2rem;
		margin-top: 15px;
	}
	.sec06 .box .img{
		text-align: center;
	}
	.sec06 .box img.max{
		max-width: auto;
		max-width: inherit;
	}
	.sec06 .box .col2,
	.sec06 .box .col3{
		display: block;
		margin-top: 20px;
	}
	.sec06 .box .col2 > *,
	.sec06 .box .col3 > *{
		width: 90%;
		margin: 0 auto;
	}
	.sec06 .box .col2 > *+*,
	.sec06 .box .col3 > *+*{
		margin-top: 20px;
	}
	.sec06 .box .col3 .txt{
		font-size: 1.4rem;
		line-height: 1.4;
		margin-top: 10px;
	}
	.sec06 .box .col3 .txt .bold{
		font-size: 1.4rem;
	}
	.sec06 .box1 .img{
		float: none;
		margin: 0 auto;
		width: 60%;
	}
	.sec06 .box2 .img{
		margin-top: 20px;
	}
	.sec06 .box3 .img img,
	.sec06 .box4 .img img,
	.sec06 .box5 .img img{
		width: 75%;
	}
	.sec06_ad{
		margin-top: 40px;
	}
	.sec06_ad .txt{
		font-size: 1.8rem;
		line-height: 1.4;
		margin-bottom: 10px;
	}
}

/* sec07
--------------------------------*/
.sec07 .bg{
	padding: 15px 0 40px;
	background: #edf3f4;
}
.sec07 .box{
	padding: 30px 40px 15px;
	background: #fff;
}
.sec07 .box+.box{
	margin-top: 30px;
}
.sec07 .box .midashi{
	font-size: 3rem;
	color: #0a335e;
	font-weight: 700;
	text-align: center;
}
.sec07 .box .list{
	margin-top: 35px;
}
.sec07 .box .list li::before{
	content: '●';
	color: #0a335e;
}
.sec07 .slider .slick-dots{
	display: flex;
	line-height: 1;
	justify-content: center;
}
.sec07 .slider .slick-dots li{
	font-size: 0;
	line-height: 1;
	overflow: hidden;
	margin: 0 6px;
}
.sec07 .slider .slick-dots button{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
	border-radius: 50%;
	text-indent: 101%;
	font-size: 0;
	overflow: hidden;
	width: 13px;
	height: 13px;
	cursor: pointer;
	background: #91a9ad;
}
.sec07 .slider .slick-dots li.slick-active button{
	background: #084d82;
}
@media screen and (max-width: 767px) {
	.sec07 .bg{
		padding: 20px 0;
	}
	.sec07 .box{
		padding: 20px 4%;
	}
	.sec07 .box+.box{
		margin-top: 20px;
	}
	.sec07 .box .midashi{
		font-size: 1.8rem;
	}
	.sec07 .box .list{
		margin-top: 20px;
	}
	.sec07 .box .list li{
		padding-left: 1em;
		text-indent: -1em;
	}
	.sec07 .slider .slick-dots li{
		margin: 0 6px;
	}
	.sec07 .slider .slick-dots button{
		width: 12px;
		height: 12px;
	}
}

/* sec08
--------------------------------*/
.sec08{
	padding: 60px 0;
	background: url(../images/sec08_bg.jpg) no-repeat center center /cover;
}
.sec08 .box{
	padding: 60px 40px 130px;
	background: #fff;
}
.sec08 .ttl_sec{
	margin-bottom: 20px;
}
.sec08 .txt{
	font-size: 2.4rem;
	text-align: center;
	font-weight: 700;
	color: #0a335e;
}
.sec08 .cap{
	font-size: 1.8rem;
	line-height: 1.16;
	color: #0a335e;
	text-align: center;
	margin-top: 13px;
	display: block;
}
.sec08 .col4{
	display: flex;
	justify-content: space-between;
	margin-top: 45px;
}
.sec08 .col3{
	display: flex;
	justify-content: space-between;
	margin-top: 70px;
}
@media screen and (max-width: 767px) {
	.sec08{
		padding: 20px 0;
	}
	.sec08 .box{
		padding: 20px 4%;
		background: #fff;
	}
	.sec08 .ttl_sec{
		margin-bottom: 20px;
	}
	.sec08 .txt{
		font-size: 1.8rem;
	}
	.sec08 .cap{
		font-size: 1.4rem;
		margin-top: 13px;
	}
	.sec08 .col4{
		flex-wrap: wrap;
		margin-top: 20px;
	}
	.sec08 .col4 > li{
		width: 48%;
	}
	.sec08 .col4 > li:nth-child(n+3){
		margin-top: 30px;
	}
	.sec08 .col3{
		flex-wrap: wrap;
		margin-top: 30px;
	}
	.sec08 .col3 > li{
		width: 48%;
	}
	.sec08 .col3 > li:nth-child(n+3){
		margin-top: 0;
		width: 100%;
	}
	.sec08 .col3 > li:nth-child(n+3) img{
		width: 60%;
		margin: 0 auto;
		display: block;
	}
}

/* sec09
--------------------------------*/
.sec09{
	padding: 60px 0 85px;
}
.sec09 table{
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #dbdbdb;
}
.sec09 table th,
.sec09 table td{
	width: 338px;
	padding: 12px 30px;
	background: #f2f2f2;
}
.sec09 table th{
	font-size: 2rem;
	color: #fff;
	text-align: center;
	background: #0a335e!important;
}
.sec09 table td{
	line-height: 1.3;
	border-bottom: 1px solid #dbdbdb;
}
.sec09 table th:nth-child(2),
.sec09 table td:nth-child(2){
	color: #fff;
	font-weight: 700;
	text-align: center;
	background: #2189af;
	width: calc(100% - 338px * 2);
}
.sec09 table th:nth-child(3),
.sec09 table td:nth-child(3){
	font-weight: 700;
	background: #eff6fb;
}
.sec09 table th:nth-child(3){
	color: #f0eb47;
}
.sec09 table td:nth-child(3){
	color: #005da3;
}
@media screen and (max-width: 767px) {
	.sec09{
		padding: 40px 0;
	}
	.sec09 table{
		width: 100%;
	}
	.sec09 table th,
	.sec09 table td{
		width: 40%;
		padding: 10px 5px;
		background: #f2f2f2;
	}
	.sec09 table th{
		font-size: 1.4rem;
	}
	.sec09 table td{
		font-size: 1.2rem;
	}
	.sec09 table th:nth-child(2),
	.sec09 table td:nth-child(2){
		width: 20%;
	}
}

/* sec10
--------------------------------*/
.sec10 .wrap{
	padding: 60px 0 85px;
}
.sec10 .img{
	float: left;
	margin-right: 40px;
}
.sec10 .txt_area p{
	font-size: 1.7rem;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	.sec10 .wrap{
		padding: 20px 0;
	}
	.sec10 .img{
		float: none;
		width: 80%;
		margin: 0 auto;
	}
	.sec10 .txt_area p{
		font-size: 1.4rem;
	}
}

/* sec11
--------------------------------*/
.sec11{
	padding: 0 0 115px;
}
.sec11 .flex{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
	margin: 0 auto;
}
.sec11 .img{
	margin: 0 0 0 30px;
}
.sec11 .img span{
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    line-height: 1.4;
}
.sec11 .img + ul{
	width: calc(100% - 225px - 30px);
    justify-content:flex-start;
}
.sec11 .img + ul li{
	max-width: initial;
	width: 29%;
	margin-right: 6.5%;
	text-align: center;
}
.sec11 .img + ul li:nth-child(3n){
	margin-right: 0;
}
.sec11 ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.sec11 li{
	max-width: 256px;
    width: 33.3333%;
	text-align: center;
	vertical-align: middle;
	margin-bottom: 70px;
}
.sec11 .media li:nth-of-type(13),
.sec11 .media li:nth-of-type(14),
.sec11 .media li:nth-of-type(15){
	margin-bottom: 0;
}
.sec11 li.w3{
	max-width: initial;
	max-width: auto;
	width: 33%;
}
.sec11 li img{
    max-width: 100%;
}
.sec11 .media_seminar{
	display: flex;
	justify-content: space-between;
}
.sec11 .media_seminar li{
	display: flex;
	width: 49%;
	max-width: 100%;
	padding: 10px;
	align-items: center;
	background: #0c8fb8;
}
.sec11 .media_seminar li .img{
	margin: 0;
	width: 220px;
	max-width: 100%;
}
.sec11 .media_seminar li .img img{
	display: block;
}
.sec11 .media_seminar li .cnt{
	padding-left: 10px;
	width: calc( 100% - 220px);
}
.sec11 .media_seminar li .txt01{
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.14;
	text-align: center;
	color: #fff;
	margin-bottom: 10px;
	letter-spacing: 0.03em;
}
.sec11 .media_seminar li .txt02{
	font-size: 1.4rem;
	line-height: 1.7;
	color: #fff;
	text-align: left;
}
@media screen and (max-width: 767px) {
	.sec11{
		padding: 20px 0 40px;
	}
	.sec11 .flex{
	    display: block;
	}
	.sec11 .img{
		width: 80%;
		margin: 0 auto;
	}
	.sec11 .img img{
		width: 75%;
		margin: 0 auto;
	    display: block;
	}
	.sec11 .img span{
	    display: block;
	    font-size: 1.4rem;
	}
	.sec11 .img + ul{
		width: 100%;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.sec11 .img + ul li,
	.sec11 .img + ul li:nth-child(3n){
	    width: 47%;
		margin-right: 6%;
		margin-bottom: 20px;
	}
	.sec11 .img + ul li:nth-child(2n){
		margin-right: 0;
	}
	.sec11 li img{
	    max-width: 100%;
	    width: auto;
	}
	.sec11 .media_seminar{
		display: block;
	}
	.sec11 .media_seminar li{
		display: block;
		width: 100%;
		max-width: 100%;
		padding: 10px 4%;
		margin-bottom: 20px;
	}
	.sec11 .media_seminar li:last-child{
		margin-bottom: 0;
	}
	.sec11 .media_seminar li .img{
		margin: 0 auto;
		width: 60%;
		max-width: 100%;
	}
	.sec11 .media_seminar li .img img{
		display: block;
	}
	.sec11 .media_seminar li .cnt{
		padding: 0;
		margin-top: 10px;
		width: 100%;
	}
	.sec11 .media_seminar li .txt01{
		font-size: 1.8rem;
		margin-bottom: 5px;
	}
	.sec11 .media_seminar li .txt02{
		font-size: 1.4rem;
	}
}

/* sec12
--------------------------------*/
.sec12 .bg{
	padding: 15px 0 50px;
	background: #edf3f4;
}
.sec12 .faq{
	padding: 0 20px 20px;
	background: #fff;
}
.sec12 .faq dt{
	font-size: 2.4rem;
	font-weight: 700;
	position: relative;
	padding: 30px 0 15px 40px;
	border-top: 1px solid #cccccc;
}
.sec12 .faq dt:first-child{
	border-top: 0;
}
.sec12 .faq dt .q{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 1.8rem;
	width: 30px;
	height: 30px;
	padding-top: 3px;
	background: #0ba82d;
	border-radius: 50%;
	position: absolute;
	top: 32px;
	left: 0;
}
.sec12 .faq dd{
	line-height: 1.5;
	padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
	.sec12 .bg{
		padding: 20px 0;
	}
	.sec12 .faq{
		padding: 0 4% 20px;
	}
	.sec12 .faq dt{
		font-size: 1.8rem;
		line-height: 1.4;
		padding: 20px 0 10px 30px;
	}
	.sec12 .faq dt:first-child{
		border-top: 0;
	}
	.sec12 .faq dt .q{
		font-size: 1.6rem;
		width: 25px;
		height: 25px;
		top: 18px;
	}
	.sec12 .faq dd{
		padding-bottom: 20px;
	}
}

/* sec13
--------------------------------*/
.sec13{
	padding: 70px 0 60px;
	overflow: hidden;
}
.sec13 .img1{
	float: right;
	margin: 0 -230px -40px 30px;
}
.sec13 .txt_area{
	margin-top: 90px;
}
@media screen and (max-width: 767px) {
	.sec13{
		padding: 40px 0;
	}
	.sec13 .img1{
		float: none;
		width: 75%;
		margin: 0 auto;
	}
	.sec13 .txt_area{
		margin-top: 40px;
	}
}

/* sec14
--------------------------------*/
.sec14{
	padding: 0 0 30px;
	background: #0ba82d;
}
.sec14 .head{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 20px;
}
.sec14 .head .img{
	margin-top: -50px;
	margin-right: 5px;
}
.sec14 .head .txt{
	font-size: 3.4rem;
	line-height: 1.3;
	color: #fff;
	letter-spacing: -.025em;
	font-weight: 700;
}
.sec14 .head .ttl{
	font-size: 4.6rem;
	color: #fff;
	font-weight: 700;
	text-align: center;
	margin-top: 10px;
}
.sec14 .head .ttl .marker{
	background: linear-gradient(transparent 70%, #f0eb47 70%);
}
.sec14 iframe{
	background: #fff;
	height: 840px;
}
.sec14 .telcontact{
	background: #fff;
	margin-top: -2px;
	padding: 0 10px 40px;
}
.sec14 .telcontact .txt{
	text-align: center;
	font-size: 2.6rem;
	font-weight: 700;
}
.sec14 .telcontact .num{
	text-align: center;
	font-size: 4rem;
	font-weight: 700;
}
.sec14 .telcontact .time{
	font-size: 2.4rem;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.sec14{
		padding: 0 0 40px;
	}
	.sec14 .head{
		padding-top: 80px;
		display: block;
		margin-bottom: 20px;
		position: relative;
	}
	.sec14 .head .img{
		width: 100px;
		position: absolute;
		top: -20px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.sec14 .head .txt{
		font-size: 1.8rem;
		line-height: 1.4;
		text-align: center;
	}
	.sec14 .head .ttl{
		font-size: 2.4rem;
		margin-top: 10px;
	}
	.sec14 iframe{
		height: 940px;
	}
	.sec14 .telcontact{
		padding: 0 4% 40px;
	}
	.sec14 .telcontact .txt{
		font-size: 1.8rem;
	}
	.sec14 .telcontact .num{
		font-size: 2.6rem;
	}
	.sec14 .telcontact .time{
		font-size: 1.6rem;
	}
}

/* sec_thanks
--------------------------------*/
.sec_thanks {
	padding: 50px 0 100px;
}
.sec_thanks .txt_thanks01 {
	font-size: 1.8rem;
	line-height: 1.6;
}
.sec_thanks .txt_thanks01 + .txt_thanks01 {
	margin-top: 40px;
}
.sec_thanks .area_tel {
	width: 560px;
	padding: 20px;
	margin: 64px auto 0;
	border: 3px solid #0ba82d;
	border-radius: 3px;
	background: rgba(11,168,45,.09);
}
.sec_thanks .area_tel p {
	text-align: center;
	font-size: 2.1rem;
}
.sec_thanks p.txt_thanks02 {
	font-size: 3.6rem;
	font-weight: bold;
	margin: 10px 0;
}
@media screen and (max-width: 767px) {
	.sec_thanks {
		padding: 25px 0;
	}
	.sec_thanks .ttl_sec {
		text-align: left;
	}
	.sec_thanks .txt_thanks01 {
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.sec_thanks .txt_thanks01 + .txt_thanks01 {
		margin-top: 10px;
	}
	.sec_thanks .area_tel {
		max-width: 560px;
		width: 100%;
		margin: 20px auto 0;
	}
	.sec_thanks .area_tel p {
		font-size: 1.4rem;
	}
	.sec_thanks p.txt_thanks02 {
		font-size: 2.2rem;
	}
}

/* ------------------------------------------
*  footer
* -----------------------------------------*/
footer .wrap{
	padding: 40px 0 40px 45px;
	display: flex;
	align-items: center;
}
footer .logo{
	margin-right: 50px;
}
footer .link{
	display: flex;
	justify-content: flex-start;
}
footer .link li,
footer .link li a{
	font-size: 1.8rem;
}
footer .link li::after{
	content: '|';
	display: inline-block;
	margin: 0 .5em;
}
footer .link li:last-child::after{
	display: none;
}
footer .copy{
	font-size: 1.8rem;
	margin-top: 5px;
}
.topbtn{
	position: fixed;
	bottom: 50px;
	right: 20px;
	display: none;
}
@media screen and (max-width: 767px) {
	footer .wrap{
		padding: 20px 0 20px 0;
		display: block;
	}
	footer .logo{
		width: 120px;
		margin: 0 auto;
	}
	footer .info{
		margin-top: 15px;
	}
	footer .link{
		justify-content: center;
	}
	footer .link li,
	footer .link li a{
		font-size: 1.4rem;
	}
	footer .copy{
		font-size: 1.4rem;
		margin-top: 5px;
		text-align: center;
	}
	.topbtn{
		bottom: 3%;
		right: 3%;
		width: 10%;
	}
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.cf {
	display: inline-block;
}
/* Hides from IE Mac */
* html .cf {
	height: 1%;
}
.cf {
	display: block;
}
/* End Hack */
