@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 9em 0 2em;
}
#header .gl li{
	margin: 0 1.4em;
}
#header .gl li a{
	color: #14126f;
	text-decoration: none;
	font-size: 1.6rem;
}
#header .gl li a:hover{
	text-decoration:underline;
}
.btn a{
	display: block;
	background: #e60012 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;
}
@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: #14126f;
		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;
  margin-top: -50px;
	}
	#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 #14126f;
		border-right: 2px solid #14126f;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#header_c .gl_wrap .gl li a:hover{
		font-weight: normal;
		color: #FFF;
		background: #14126f;
	}
	#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) 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: 52%;
    }
}

/* ------------------------------
    table_block
------------------------------ */
.table_block{
    min-width: 1100px;
    padding: 80px 0 60px;
}
.table_block .date{
    margin-bottom: 20px;
    vertical-align: middle;
    font-size: 3.0rem;
    color: #e60012;
	line-height: 12.0rem;
}
.table_block .date em{
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    font-size: 12.0rem;
}
.table_block table{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #14126f;
}
.table_block table + table{
    margin-top: 20px;
}
.table_block table th{
    width: 160px;
    vertical-align: middle;
    font-size: 2.4rem;
    color: #fff;
    background: #14126f;
}
.table_block table td{
    padding: 10px 15px 5px 15px;
    line-height: 1.5;
    font-size: 2.4rem;
	letter-spacing: normal;
}
.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;
	display: block;
}
.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 #14126f;
}
@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: 1em;
    }
    .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;
    }
}

/* ------------------------------
    news_block
------------------------------ */
.news_block{
    min-width: 1100px;
    padding: 50px 0 60px;
    background: #edf1f4;
}
.news_block .ttl{
    margin-bottom: 47px;
}
.news_block .ttl .en{
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-size: 3.6rem;
    color: #14126f;
}
.news_block .ttl .en:before{
    content: "\00300a";
    display: inline-block;
    margin-right: 0.3em;
    color: #14126f;
}
.news_block .ttl .en:after{
    content: "\00300b";
    display: inline-block;
    margin-left: 0.3em;
    color: #14126f;
}
.news_block .ttl .ja{
    display: block;
    font-size: 1.6rem;
    color: #14126f;
}
.news_block .news_box{
    padding: 32px 30px;
    background: #fff;
	height: 200px;
	box-sizing: border-box;
	overflow: auto;
}
.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: #a40000;
}
.date_block .att{
    font-size: 1.6rem;
}
.date_block .btn a{
	display: block;
	background: url(../img/bg_btn.png) no-repeat center center;
	text-align: center;
	color: #FFF;
	font-size: 3.6rem;
	font-weight: bold;
	width: 720px;
	height: 100px;
	box-sizing: border-box;
	padding: 32px 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;
	}

.date_block .mail_btn{
	text-align: center;
	margin: 30px auto 0;
}
.date_block .mail_btn a{
	    display: block;
    background: #a40000 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;
	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{
    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;
        font-size: 1.4rem;
    }
	.date_block .btn a{
		background: url(../img/bg_btn.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;
		}

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

/* ------------------------------
    point_block
------------------------------ */
.point_block{
	background: #14126f;
    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: 4.8rem;
	text-align: center;
}
.point_block .ttl span:first-of-type:after{
    content: "\00300b";
    display: inline-block;
    margin-left: 0.3em;
    color: #FFF;
}
.point_block .ttl span:first-of-type: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 strong{
	display: block;
	font-size: 4.8rem;
}
.point_block ul li p{
	font-size: 3.0rem;
	color: #14126f;
	letter-spacing: normal;
	line-height: 1.2;
}
.point_block ul li p strong{
	color: #c0a000;
}

@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;
	}
	.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;
	}
}

/* ------------------------------
    yoko_block , setsumeikai_block
------------------------------ */
.yoko_block , .setsumeikai_block{
    min-width: 1100px;
    padding: 60px 0;
    background: #e4f4fd;
}
 .setsumeikai_block{
    background: #adcfe2;
}
.yoko_block li,
.setsumeikai_block li{
    background: #FFF;
	border-radius: 5px;
	padding: 30px 20px;
}
.yoko_block li + li{
    margin-top: 20px;
}
.yoko_block h3 {
	text-align: center;
	margin: 0 auto 45px;
	font-size: 3.0rem;
}
.yoko_block h3 .tac{
	display: block;
	margin-bottom: 20px;
}
.yoko_block .ttl {
	font-size: 4.8rem;
	display: block;
}
.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;
	letter-spacing: normal;
}
.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;
}
.yoko_block li td dt{
	font-weight: bold;
	line-height: 1.4;
}
.yoko_block li td dd{
	font-size: 1.4rem;
	line-height: 1.4;
}
.yoko_block li td dd + dt{
	margin-top: 1em;
}
.yoko_block li td a ,
.setsumeikai_block li td a {
	color: #c0a000;
	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;
}
.yoko_block li td li:before ,
.setsumeikai_block li td li:before {
	content: "※";
}
.setsumeikai_block li td .font_r li ,
.yoko_block li td .font_r li {
	color: #e60012;
}
.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 h3 {
		margin: 0 auto 8%;
		font-size: 1.5rem;
	}
	.yoko_block h3 .tac{
		margin-bottom: 3%;
	}
	.yoko_block .ttl {
		font-size: 2.0rem;
		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 table.width100_sp th,
	.yoko_block li table.width100_sp td,
	.setsumeikai_block li table.width100_sp th,
	.setsumeikai_block li table.width100_sp td{
		display: block;
		width: 100%;
	}	
	.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;
	}
	.setsumeikai_block li td li ,
	.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: #c0a000;
}
.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: 0;
	}
	.map_block iframe {
		width: 100%;
		height: 250px;
	}
	.map_block p a {
		display: block;
	}
}



/* ------------------------------
    qa_block
------------------------------ */
.qa_block{
    min-width: 1100px;
    padding: 60px 0;
    background: #fbf7e4;
}
.qa_block .inner{
    min-width: 1100px;
}
.qa_block .ttl{
	font-size: 4.8rem;
	text-align: center;
	margin: 0 auto 50px;
	color: #c0a000;
}
.qa_block .ttl:after{
    content: "\00300b";
    display: inline-block;
    margin-left: 0.3em;
	color: #c0a000;
}
.qa_block .ttl:before{
    content: "\00300a";
    display: inline-block;
    margin-right: 0.3em;
	color: #c0a000;
}
.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: #d3bc4c;
	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;
}
@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: #edf1f4;
}
.tel_block .tel{
    justify-content: center;
    align-items: flex-end;
}
.tel_block p{
    color: #14126f;
}
.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: 0 auto;
}
.tel_block .btn a{
	display: inline-block;
	background: #a40000 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;
	}
}