@charset "UTF-8";

/* ------------------------------
    header
------------------------------ */
#header{
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 1100px;
    top: 0;
    padding-top: 5px;
    height: 90px;
    background: #fff;
	z-index: 9999;
}
#header h1 a{
    display: block;
}
#header .gl {
	display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 3.8em 0 2em;
}
#header .gl li{
	margin: 0 1.4em;
}
#header .gl li a{
	color: #00b7ce;
	text-decoration: none;
	font-size: 1.6rem;
}
#header .gl li a:hover{
	text-decoration:underline;
}
.btn a{
	display: block;
	background: #fe570e url(../img/icon_email.png) no-repeat 20px center;
	text-align: center;
	color: #FFF;
	font-weight: bold;
	font-size: 2.0rem;
	padding: 0.8em 1.8em 0.8em 2.5em;
	line-height: 1;
	text-decoration: none;
	border-radius: 5px;
}

.contact_btn a{
	display: block;
	background: #00b7ce;
	text-align: center;
	color: #FFF;
	font-size: 1.8rem;
	padding: 0.8em 1.8em;
	line-height: 1;
	text-decoration: none;
	border-radius: 5px;
}


@media screen and (max-width: 1100px) {
	#header{
		min-width: auto;
		top: 0;
		justify-content: space-between;
	}
    #header h1{
        width: 35%;
        margin: 0 ;
 		margin-left: 10px;
   }
    #header h1 img{
        width: 100%;
        margin: 0 ;
		max-width: 330px;
    }
	#header .btn.pc {
		display: none;
	}
	#header .btn.sp {
		display: block;
		padding: 0 5% 5%;
		background: #eee;
	}
	#header .btn.sp a{
		font-size: 1.4rem;
	}
	#header .menu-trigger{
		display: block;
		position: absolute;
		top: 50%;
		right: 3%;
		width: 30%;
		height: 100%;
		margin-top: -20px;
		max-width: 40px;
		max-height: 40px;
		z-index: 999;
		background: #00b7ce;
		border-radius: 4px;
		cursor: pointer;
	}
	#header .menu-trigger span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 15%;
		width: 70%;
		height: 2px;
		background-color: #fff;
	}
	#header .menu-trigger span:nth-of-type(1) {
		top: 25%;
	}
	#header .menu-trigger span:nth-of-type(2) {
		top: 50%;
		transform: translateY(-50%);
	}
	#header .menu-trigger span:nth-of-type(3) {
		bottom: 25%;
	}
	#header.navOpen .menu-trigger span:nth-of-type(1) {
		top: 50%;
		transform: translateY(-50%)rotate(-45deg);
	}
	#header.navOpen .menu-trigger span:nth-of-type(2) {
		opacity: 0;
	}
	#header.navOpen .menu-trigger span:nth-of-type(3) {
		bottom: 50%;
		transform: translateY(50%)rotate(45deg);
	}
	#header .gl_wrap {
		opacity: 0;
		width: 100%;
		padding: 0;
		position:absolute;
		left: 0;
		top: 100%;
		overflow-y: auto;
		max-height: calc(90vh - 60px);
		transform: translateY(-100%);
		transition: transform .3s, opacity 1s;
	}
	#header.navOpen .gl_wrap {
		opacity: 1;
		transform: translateY(0);
		transition: transform .3s, opacity 0s;
	}
	#header .gl {
		display: block;
		background: #eee;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		position: relative;
		margin: 0;
		padding-bottom: 5%;
	}
	#header .gl > li{
		display: block;
		height: auto;
		position: relative;
		border-bottom:1px solid #ddd;
		margin: 0;
	}
	#header .gl > li+li{
		margin: 0;
	}
	#header .gl > li > a,
	#header .gl > li > p{
		background: transparent;
		display: block;
		font-size: 1.4rem;
		line-height: 1;
		padding: 5% 5%;
		position: relative;
	}
	#header .gl > li > a:after{
		content: "";
		display: block;
		position: absolute;
		right: 5%;
		top:50%;
		margin: -4px 0 0 0;
		width: 8px;
		height: 8px;
		border-top: 2px solid #00b7ce;
		border-right: 2px solid #00b7ce;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#header_c .gl_wrap .gl li a:hover{
		font-weight: normal;
		color: #FFF;
		background: #00b7ce;
	}
	#header_c .gl_wrap .gl li a:hover:after{
		border-top: 2px solid #FFF;
		border-right: 2px solid #FFF;
	}
	#header .gl > li:last-of-type > a img{
		width: inherit;
	}
	#header .gl > li:last-of-type > a:hover img{
		filter: brightness(10.0);
		opacity: 1;
	}

	#overlay {
		display: block;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.8);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease;
		z-index: 998;
	}
	#overlay.active {
		opacity: 1;
		pointer-events: auto;
	}
}
@media screen and (max-width: 767px) {
    #header{
        height: 60px;
        padding-top: 0;
    }
    #header h1 {
		max-height: 35px;
		text-align: left;
    }
    #header h1 img{
		width: auto;
		max-height: 35px;
    }
}

/* ------------------------------
    container
------------------------------ */
.container{
    padding-top: 90px;
}
@media screen and (max-width: 768px) {
    .container{
        padding-top: 60px;
    }
}
/* ------------------------------
    mv_block
------------------------------ */
.mv_block{
    width: 100%;
    padding-top: 50%;
    background: url(../img/fv.jpg?0120) 50% 50% no-repeat;
    background-size: cover;
}
@media screen and (max-width: 1100px) {
    .mv_block{
        min-width: 1100px;
        padding-top: 0;
        height: 628px;
    }
}
@media screen and (max-width: 768px) {
    .mv_block{
        min-width: 0;
        height: 0;
        padding-top: 50%;
    }
}

/* ------------------------------
    table_block
------------------------------ */
.table_block{
    min-width: 1100px;
    padding: 80px 0 60px;
}
.table_block .date{
    margin-bottom: 20px;
    vertical-align: middle;
    font-size: 6.0rem;
    color: #00b7ce;
	line-height: 12.0rem;
}
.table_block .date em{
    display: inline-block;
    /* vertical-align: middle; */
    font-style: normal;
    font-size: 10.0rem;
}
.table_block table{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #00b7ce;
}
.table_block table + table{
    margin-top: 20px;
}
.table_block table th{
    width: 160px;
    vertical-align: middle;
    font-size: 2.4rem;
    color: #fff;
    background: #00b7ce;
}
.table_block table td{
    padding: 15px 15px 10px 15px;
    line-height: 1.5;
    font-size: 2.4rem;
}
.table_block table td .font_s{
    font-size: 1.8rem;
}
.table_block table td .ttl{
    display: block;
    line-height: 1.25;
    font-size: 1.8rem;
}
.table_block table td .campus{
    line-height: 1.25;
    font-size: 2.4rem;
}
.table_block table td .address{
    font-size: 1.6rem;
}
.table_block table tr + tr td{
    padding-top: 0px;
}
.table_block table tr + tr td:before{
    content: "";
    display: block;
    margin-bottom: 15px;
    border-top: 1px solid #00b7ce;
}

.grade_small{
  font-size: 2.0rem;
}

@media screen and (max-width: 768px) {
    .table_block {
        min-width: 0;
        padding: 10% 0;
    }
    .table_block .date{
        margin-bottom: 8%;
        font-size: 2.0rem;
		line-height: 2em;
    }
    .table_block .date em{
        font-size: 3.0rem;
    }
    .table_block table,
    .table_block table tbody,
    .table_block table tr,
    .table_block table th,
    .table_block table td{
        display: block;
        width: 100%;
    }
    .table_block table th,
    .table_block table td{
        padding: 3%;
        font-size: 1.8rem;
    }
    .table_block table td .campus{
        display: block;
        font-size: 1.8rem;
    }
    .table_block table td .address{
        font-size: 1.4rem;
    }
	.table_block table:nth-last-of-type(2) td{
		text-align: center;
	}
}

/* ------------------------------
    news_block
------------------------------ */
.news_block{
    min-width: 1100px;
    padding: 50px 0 60px;
    background: #ffffff;
}
.news_block .ttl{
    margin-bottom: 47px;
}
.news_block .ttl .en{
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-size: 3.6rem;
    color: #00b7ce;
}
.news_block .ttl .en:before{
    content: "\00300a";
    display: inline-block;
    margin-right: 0.3em;
    color: #00b7ce;
}
.news_block .ttl .en:after{
    content: "\00300b";
    display: inline-block;
    margin-left: 0.3em;
    color: #00b7ce;
}
.news_block .ttl .ja{
    display: block;
    font-size: 1.6rem;
    color: #00b7ce;
}
.news_block .news_box{
    padding: 32px 30px;
    background: #fff;
	height: 290px;
	box-sizing: border-box;
	overflow: auto;
  border: solid 1px #c8c8c8;
}
.news_block .news_box dt{
    margin-bottom: 24px;
    font-size: 1.8rem;
}
.news_block .news_box dt .date{
    padding-right: 1em;
}
.news_block .news_box dd p{
    line-height: 1.28;
    font-size: 1.4rem;
}
.news_block .news_box dd p + p{
    margin-top: 1em;
}
.news_block .news_box dd + dt{
    margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #d5d5d5;
}

@media screen and (max-width: 768px) {
    .news_block{
        min-width: 0;
        padding: 10% 0;
    }
    .news_block .ttl{
        margin-bottom: 8%;
    }
    .news_block .ttl .en{
        margin-bottom: 3%;
        font-size: 2.0rem;
    }
    .news_block .news_box{
        padding: 5%;
    }
    .news_block .news_box .bold{
        display: block;
    }
    .news_block .news_box dt{
        line-height: 1.28;
    }
}

/* ------------------------------
    date_block
------------------------------ */
.date_block{
    min-width: 1100px;
    padding: 80px 0;
}
.map_block + .date_block{
    padding: 50px 0 80px;
}
.date_block .date{
    margin-bottom: 30px;
    font-size: 3.0rem;
    color: #00b7ce;
}
.date_block .att{
    font-size: 1.6rem;
}
.date_block .btn a{
	display: block;
	background: url(../img/bg_btn_red.png) no-repeat center center;
	text-align: center;
	color: #FFF;
	font-size: 3.0rem;
	font-weight: bold;
	width: 720px;
	height: 100px;
	box-sizing: border-box;
	padding: 38px 0;
	line-height: 1;
	margin: 0 auto 30px;
	text-decoration: none;
	letter-spacing: -.4px;
	position: relative;
	}
.date_block .btn a:after{
	content: "▶";
	color: #FFF;
	position: absolute;
	right: 10px;
	top: 50%;
	line-height: 1;
	margin-top: -8px;
	font-size: 1.8rem;
	}
 .image02 {
	position: relative;
	 padding-bottom: 0;
}
 .image02 .inner{
	 padding-bottom: 60px;
}
/*
 .image02:after {
	content: "";
	display: block;
	width: 100%;
	background: url(../img/bg_img1.jpg) no-repeat 50% 50%;
	background-size: cover;
    padding-top: 42.3%;
	height: 0;
}
*/

.date_block .mail_btn{
	text-align: center;
	margin: 30px auto 0;
}
.date_block .mail_btn a{
	    display: block;
    background: #fe570e url(../img/icon_email.png) no-repeat 20px center;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 2.0rem;
    padding: 0.8em 1.8em 0.8em 2.5em;
    line-height: 1;
    text-decoration: none;
    border-radius: 5px;
	display: inline-block;
	background: #00b7ce url(../img/icon_email.png) no-repeat 20px center;
	padding: 1em 1.8em 1em 2.5em;
	letter-spacing: normal;
}

.date_block .contact_btn{
	text-align: center;
	margin: 30px auto 0;
}
.date_block .contact_btn a{
	    display: block;
    background: #fe570e url(../img/icon_email.png) no-repeat 20px center;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 2.0rem;
    padding: 0.8em 1.8em 0.8em 2.5em;
    line-height: 1;
    text-decoration: none;
    border-radius: 5px;
	display: inline-block;
	background: #00b7ce url(../img/icon_email.png) no-repeat 20px center;
	padding: 1em 1.8em 1em 2.5em;
	letter-spacing: normal;
}



@media screen and (max-width: 768px) {
    .date_block{
        min-width: 0;
        padding: 10% 0;
    }
    .map_block + .date_block{
        min-width: 0;
        padding: 5% 0 10%;
    }
    .date_block .date{
        margin-bottom: 1em;
        line-height: 1.28;
        font-size: 1.8rem;
    }
    .date_block .att{
        padding-left: 1em;
        text-indent: -1em;
        line-height: 1.28;
        text-align: left;
        font-size: 1.4rem;
    }
	.date_block .btn a{
		background: url(../img/bg_btn_red.png) no-repeat center center;
		background-size: cover;
		font-size: 2.0rem;
		width: 100%;
		height: auto;
		padding: 5% 5% 5% 0;
		line-height: 1.2;
		margin: 0 auto 3%;
		}
	.date_block .btn a:after{
		right: 1%;
		margin-top: -5px;
		font-size: 1.0rem;
		}
	 .image02 {
		 padding-bottom: 0;
	}
	.image02 .inner{
	 padding-bottom: 10%;
	}

	.date_block .mail_btn a{
		display: block;
		font-size: 1.4rem;
	}
  .date_block .contact_btn a{
    display: block;
    font-size: 1.4rem;
  }

}

/* ------------------------------
    point_block2
------------------------------ */
.point_block2{
	background: #c2dcfb;
    padding: 60px 0 0;
	position: relative;
}
.point_block2 .inner{
	min-width: 1100px;
	padding-bottom: 60px;
}
.point_block2 .ttl{
	color: #333333;
	font-size: 4.8rem;
	text-align: center;
	margin-bottom: 50px;
}
.point_block2 .ttl span:last-of-type:after{
    content: "\00300b";
    display: inline-block;
    margin-left: 0.3em;
    color: #333333;
}
.point_block2 .ttl span:last-of-type:before{
    content: "\00300a";
    display: inline-block;
    margin-right: 0.3em;
    color: #333333;
}
.point_block2 .ttl span:first-of-type{
    color: #FFF;
	font-size: 3.0rem;
	margin: 0 auto ;
	display: block;
}
.point_block2 p{
    background: #FFF;
	border-radius: 5px;
	padding: 60px 95px;
	color: #333333;
	text-align: left;
	line-height: 1.5;
	font-size: 2.4rem;
	letter-spacing: normal;
}

@media screen and (max-width: 768px) {
	.point_block2{
		padding: 10% 0 0;
	}
	.point_block2 .inner{
		min-width: auto;
		padding-bottom: 10%;
	}
	.point_block2 .ttl{
		font-size: 2.0rem;
		margin-bottom: 8%;
	}
	.point_block2 .ttl span:first-of-type{
		margin: 0 auto 2%;
		font-size: 1.6rem;
	}
	.point_block2 p{
		padding: 3% 3% 3% 5%;
		font-size: 1.6rem;
	}
}



/* ------------------------------
    yoko_block , setsumeikai_block
------------------------------ */
.yoko_block , .setsumeikai_block{
    min-width: 1100px;
    padding: 60px 0;
    background: #F7F5F2;
	position: relative;
}
.setsumeikai_block{
    background: #fbe3c2;
}
.yoko_block li,
.setsumeikai_block li{
    background: #FFF;
	border-radius: 5px;
	padding: 30px 20px;
}
.yoko_block li + li{
    margin-top: 20px;
}
.yoko_block .ttl {
	text-align: center;
	font-size: 4rem;
	margin: 0 auto 45px;
}
.setsumeikai_block .ttl {
	text-align: center;
	font-size: 3.0rem;
	margin: 0 auto 30px;
	line-height: 1.4;
}
.setsumeikai_block .ttl span {
	display: block;
}
.yoko_block .ttl:before,
.setsumeikai_block .ttl span:before{
    content: "\00300a";
    display: inline-block;
    margin-right: 0.3em;
}
.yoko_block .ttl:after,
.setsumeikai_block .ttl span:after{
    content: "\00300b";
    display: inline-block;
    margin-left: 0.3em;
}
.yoko_block li h4{
    text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 10px;
}
.yoko_block li h4:before{
    content: "～";
    display: inline-block;
}
.yoko_block li h4:after{
    content: "～";
    display: inline-block;
}
.yoko_block li > p{
    text-align: center;
	font-size: 1.6rem;
	line-height: 1.3;
	letter-spacing: normal;
}
.yoko_block li > p + p{
    margin-top: 0.8em;
}
.yoko_block li > p + h4{
    margin-top: 50px;
}
.yoko_block li > table + p{
    margin-top: 20px;
}
.yoko_block li table,
.setsumeikai_block li table{
    width: 100%;
	border-collapse:collapse;
	border-top: 1px solid #dfdfdf;
	font-size: 1.6rem;
}
.yoko_block li table th,
.yoko_block li table td,
.setsumeikai_block li table th,
.setsumeikai_block li table td{
    box-sizing: border-box;
	padding: 20px 10px 20px 30px;
	vertical-align: top;
	border-bottom: 1px solid #dfdfdf;
}
.setsumeikai_block li table th,
.yoko_block li table th{
    font-weight: bold;
	width: 35%;
	background: #f6f6f6;
}
.yoko_block li table th.bg_w{
	background: #FFF;
	text-align: center;
}
.setsumeikai_block li td dt,
.yoko_block li td dt{
	font-weight: bold;
	line-height: 1.4;
}
.setsumeikai_block li td dd,
.yoko_block li td dd{
	font-size: 1.4rem;
	line-height: 1.4;
}
.setsumeikai_block li td dd + dt,
.yoko_block li td dd + dt{
	margin-top: 1em;
}
.yoko_block li td a ,
.setsumeikai_block li td a {
	color: #3a5aff;
	font-size: 1.4rem;
}
.setsumeikai_block li td li ,
.yoko_block li td li ,
.yoko_block li td li + li {
	padding: 0;
	background: none;
	font-size: 1.4rem;
	line-height: 1.4;
	margin: 0;
}
.setsumeikai_block li td li:before ,
.yoko_block li td li:before {
	content: "※";
}
.setsumeikai_block li td .font_r li ,
.yoko_block li td .font_r li {
	color: #fe570e;
}
.yoko_block li td h5 {
	margin-top: 1em;
}
.yoko_block li td h5 ,
.yoko_block li td p ,
.setsumeikai_block li td p {
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: normal;
}
.yoko_block li td p.m_acsess {
	margin-top: 1.5em;
}
.yoko_block li td p.m_acsess a {
	font-size: 1.4rem;
	font-weight: bold;
}


@media screen and (max-width: 768px) {
	.yoko_block , .setsumeikai_block{
		min-width: auto;
		padding: 10% 0;
	}
	.yoko_block li,
	.setsumeikai_block li{
		padding: 5% 3%;
	}
	.yoko_block li + li{
		margin-top: 3%;
	}
	.yoko_block .ttl {
		font-size: 2.0rem;
		margin: 0 auto 5%;
		font-weight: bold;
	}
	.setsumeikai_block .ttl {
		font-size: 1.8rem;
		margin: 0 auto 5%;
		font-weight: bold;
	}
	.yoko_block li h4{
		font-size: 1.6rem;
		margin-bottom: 10px;
	}
	.yoko_block li > p{
		font-size: 1.4rem;
	}
	.yoko_block li > table + p{
		margin-top: 3%;
		text-align: left;
		padding-left: 1em;
		text-indent: -1em;
	}
	.yoko_block li table,
	.setsumeikai_block li table{
		font-size: 1.4rem;
	}
	.yoko_block li table th,
	.yoko_block li table td,
	.setsumeikai_block li table th,
	.setsumeikai_block li table td{
		padding: 5% 3% 5% 5%;
	}
	.yoko_block li td dd,
	.setsumeikai_block li td dd{
		font-size: 1.2rem;
	}
	.yoko_block li td a ,
	.setsumeikai_block li td a {
		font-size: 1.2rem;
		display: inline-block;
	}
	.yoko_block li td li ,
	.yoko_block li td li + li {
		font-size: 1.2rem;
	}
	.yoko_block li td h5 ,
	.yoko_block li td p ,
	.setsumeikai_block li td p {
		font-size: 1.4rem;
	}
	.yoko_block li td p.m_acsess a {
		font-size: 1.2rem;
	}
}

/* ------------------------------
    map_block
------------------------------ */
.map_block{
    min-width: 1100px;
    padding: 60px 0 0;
}
/*
.map_block:after{
	content: "";
	display: block;
	width: 100%;
	background: url(../img/bg_img2.jpg) no-repeat 50% 50%;
	background-size: cover;
    padding-top: 42.3%;
	height: 0;
}
*/
.map_block .ttl{
	font-size: 4.8rem;
	text-align: center;
	margin: 0 auto 50px;
}
.map_block .ttl:after{
    content: "\00300b";
    display: inline-block;
    margin-left: 0.3em;
}
.map_block .ttl:before{
    content: "\00300a";
    display: inline-block;
    margin-right: 0.3em;
}
.map_block h4{
    text-align: center;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1.4;
}
.map_block p{
    text-align: center;
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 1em;
}
.map_block p a{
    color: #3a5aff;
}
.map_block li + li{
    margin-top: 50px;
}
.map_block li:last-child,
.map_block li:last-child p{
    margin-bottom: 0;
}


@media screen and (max-width: 768px) {
	.map_block{
		min-width: auto;
		padding:10% 0 0;
	}
	.map_block .ttl{
		font-size: 2.0rem;
		margin: 0 auto 8%;
		font-weight: bold;
	}
	.map_block h4{
		font-size: 1.8rem;
	}
	.map_block p{
		font-size: 1.4rem;
	}
	.map_block li + li{
		margin-top: 5%;
	}
	.map_block li:last-child{
		margin-bottom: 10%;
	}
	.map_block iframe {
		width: 100%;
		height: 250px;
	}
	.map_block p a {
		display: block;
	}
}



/* ------------------------------
    qa_block
------------------------------ */
.qa_block{
    min-width: 1100px;
    padding: 60px 0;
    background: #F7F5F2;
}
.qa_block .inner{
    min-width: 1100px;
}
.qa_block .ttl{
	font-size: 4.8rem;
	text-align: center;
	margin: 0 auto 50px;
	color: #333333;
}
.qa_block .ttl:after{
    content: "\00300b";
    display: inline-block;
    margin-left: 0.3em;
	color: #333333;
}
.qa_block .ttl:before{
    content: "\00300a";
    display: inline-block;
    margin-right: 0.3em;
	color: #333333;
}
.qa_block h4{
    text-align: center;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1.4;
	margin-bottom: 1em;
}
.qa_block h4:before{
    content: "～";
    display: inline-block;
}
.qa_block h4:after{
    content: "～";
    display: inline-block;
}
.qa_block dl + h4{
    margin-top: 40px;
}
.qa_block dt{
    cursor: pointer;
	background: #00b7ce;
	color: #FFF;
	font-weight: bold;
	padding: 23px 1em 23px 88px;
	font-size: 2.0rem;
	position: relative;
	line-height: 1.2;
}
.qa_block * + dt{
    margin-top: 30px;
}
.qa_block dt:before {
    content: "Q";
	color: #FFF;
	font-weight: bold;
	left: 38px;
	position: absolute;
}
.qa_block dt:after {
    content: "▼";
	color: #FFF;
	right: 20px;
	font-size: 2.4rem;
	position: absolute;
	font-weight: normal;
}
.qa_block dt.active:after {
    content: "×";
}
.qa_block dd{
    display: none;
	background: #FFF;
	padding: 20px 1em 40px 88px;
	font-size: 1.6rem;
	letter-spacing: normal;
	line-height: 1.4;
	position: relative;
}
.qa_block dd:before {
    content: "A";
	font-size: 2.0rem;
	left: 38px;
	position: absolute;
}
.qa_block dd p ,
.qa_block dd li {
	line-height: 1.4;
}
.qa_block dd p + p ,
.qa_block dd p + ul {
	margin-top: 1em;
}
.qa_block dd ul li {
	padding-left: 2em;
	text-indent: -2em;
}
.qa_block dd ul.info li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.4rem;
	color: #fe570e;
}
.qa_block dd ul.info li:before {
	content: "※";
}
@media screen and (max-width: 768px) {
	 .qa_block{
		min-width: auto;
		padding: 10% 0;
	}
	.qa_block .inner{
		min-width: auto;
	}
	.qa_block .ttl{
		font-size: 2.0em;
		margin: 0 auto 8%;
	}
	.qa_block h4{
		font-size: 1.6rem;
	}
	.qa_block dl + h4{
		margin-top: 5%;
	}
	.qa_block dt{
		padding: 3% 7% 3% 10%;
		font-size: 1.6rem;
	}
	.qa_block * + dt{
		margin-top: 3%;
	}
	.qa_block dt:before {
		left: 3%;
	}
	.qa_block dt:after {
		right: 2%;
		font-size: 1.4rem;
		margin-top: -7px;
		top: 50%;
	}
	.qa_block dd{
		padding: 3% 7% 3% 10%;
		font-size: 1.4rem;
	}
	.qa_block dd:before {
		font-size: 1.4rem;
		left: 4%;
	}
}

/* ------------------------------
    tel_block
------------------------------ */
.tel_block{
    min-width: 1100px;
    padding: 60px 0;
    background: #00b7ce;
}
.tel_block .tel{
    justify-content: center;
    align-items: flex-end;
}
.tel_block p{
    color: #ffffff;
}
.tel_block .goro{
    margin-bottom: 10px;
    font-size: 1.6rem;
}
.tel_block .tel_num{
    font-size: 6.0rem;
}
.tel_block .time{
    font-size: 1.4rem;
}
.tel_block p.info{
	color: #333;
    font-size: 1.4rem;
	line-height: 1.28;
	text-align: center;
	margin: 30px auto 20px;
}
.tel_block .btn{
	text-align: center;
	margin: 30px auto 0;
}
.tel_block .btn a{
	display: inline-block;
	background: #d0b997 url(../img/icon_email.png) no-repeat 20px center;
	padding: 1em 1.8em 1em 2.5em;
	letter-spacing: normal;
}
@media screen and (max-width: 768px) {
    .tel_block{
        min-width: 0;
        padding: 10% 0 15%;
    }
    .tel_block .tel{
        margin-bottom: 1em;
        text-decoration: none;
    }
    .tel_block .goro{
        margin-bottom: 0.5em;
        font-size: 1.1rem;
    }
    .tel_block .tel_num{
        font-size: 3.0rem;
    }
    .tel_block .time{
        line-height: 1.28;
    }
	.tel_block .btn a{
		display: block;
		font-size: 1.4rem;
	}
}

/* ------------------------------
    point_block
------------------------------ */
.point_block{
	background: #b3cbce;
    padding: 60px 0 0;
	position: relative;
}
/*
.point_block:after {
	content: "";
	display: block;
	width: 100%;
	background: url(../img/bg_img1.jpg) no-repeat 50% 50%;
	background-size: cover;
    padding-top: 42.3%;
	height: 0;
}
*/
.point_block .inner{
	min-width: 1100px;
	padding-bottom: 60px;
}
.point_block .ttl{
	color: #FFF;
	font-size: 4rem;
	text-align: center;
	margin-bottom: 50px;
}
.point_block .ttl:after{
    content: "\00300b";
    display: inline-block;
    margin-left: 0.3em;
    color: #FFF;
}
.point_block .ttl:before{
    content: "\00300a";
    display: inline-block;
    margin-right: 0.3em;
    color: #FFF;
}
.point_block .ttl span:last-of-type{
    color: #FFF;
	font-size: 1.6rem;
	margin: 0 auto 50px;;
	display: block;
}
.point_block ul li{
    background: #FFF;
	border-radius: 5px;
	padding: 35px 25px 35px 60px;
	display: flex;
	align-items: center;
}
.point_block ul li + li{
    margin-top: 10px;
}
.point_block ul li h4 {
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: normal;
	font-weight: bold;
	line-height: 3.6rem;
	margin-right: 50px;
	margin-top: -10px;
}
.point_block ul li h4.font_y {
	color: #44adba;
}
.point_block ul li h4 strong{
	display: block;
	font-size: 4.8rem;
}
.point_block ul li p{
	font-size: 3.0rem;
	color: #333333;
	letter-spacing: normal;
	line-height: 1.2;
}
.point_block ul li p strong{
	color: #44adba;
}

@media screen and (max-width: 768px) {
	.point_block{
		padding: 10% 0 0;
	}
	.point_block .inner{
		min-width: auto;
		padding-bottom: 10%;
	}
	.point_block .ttl{
		font-size: 2.0rem;
		margin-bottom: 5%;
	}
	.point_block .ttl span:last-of-type{
		margin: 1em auto 10%;
	}
	.point_block ul li{
		padding: 3% 3% 3% 5%;
	}
	.point_block ul li h4 {
		font-size: 1.3rem;
		line-height: 2.0rem;
		margin: 0 3% 0 0;
	}
	.iphone .point_block ul li h4{
		position: relative;
		top:-3px;
	}
	.point_block ul li h4 strong{
		font-size: 3.0rem;
	}
	.point_block ul li p{
		font-size: 1.8rem;
	}
}
