@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed|Noto+Sans+JP:400,500,700,900&display=swap');


/*---------------------------------------------------------------------------------------
	大枠設定
----------------------------------------------------------------------------------------*/

body{
	font-family: "Noto Sans JP";
	color:#111;
	text-align:center;
}
.switch{}
a{ color:#111; text-decoration:none; -webkit-transition: all .2s; transition: all .2s;}
a:hover{ color:#999; text-decoration:none;}
img.imgalpha{ -webkit-transition: all .2s; transition: all .2s;}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
}



@media screen and (min-width: 769px) {
	.sp{display: none!important;}
}

@media screen and (max-width: 768px) {
	.pc{
		display: none!important;
	}
}


/*---------------------------------------------------------------------------------------
	header
----------------------------------------------------------------------------------------*/

header{
	position: absolute;
	left: 0;
	right: 0;
	padding: 10px 3% 0;
	overflow: hidden;
	z-index: 999;
}
header div.gnav{
	max-width: 1200px;
	margin: 0 auto 5px;
	padding: 10px;
	background: #fff;
	border-radius: 6px;
	box-shadow:0px 0px 15px -8px #999;
	overflow: hidden;
	position: relative;
}
header div.gnav h1{
	float: left;
	width: 39%;
	margin-right: 0%;
}
header div.gnav ul{
	float: right;
	width: 60%;
	padding-right: 20%;
}
header div.gnav ul li{
	float: left;
	width: 48%;
	padding-top: 1%;
	margin-left: 2%;
}
header div.gnav p{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 19%;
}
header nav{
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 5%;
	overflow: hidden;
}
header nav ul li{
	float: left;
	width: 16.66666666666667%;
	padding: 0 3px;
	box-shadow:0px 0px 15px -8px #999;
	vertical-align: middle;
	position: relative;
	-webkit-transition: all .2s; transition: all .2s;
}
header nav ul li:hover{
	opacity: .5;
}
header nav ul li:first-child{ padding-left: 0;}
header nav ul li:last-child{ padding-right: 0;}
header nav ul li:before{
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 100%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #fff transparent transparent transparent;
}
header nav ul li a{
	display: block;
	background: #fff;
}

/*------------------------------ sp size ------------------------------*/
@media screen and (max-width:1200px){
	header nav li{
		float: left;
		width: 33.33333%;
		padding: 0 3px;
		box-shadow:0px 0px 15px -8px #999;
		vertical-align: middle;
		position: relative;
		margin-bottom: 6px;
	}
	header nav li:first-child,
	header nav li:nth-child(4){ padding-left: 0;}
	header nav li:last-child,
	header nav li:nth-child(3){ padding-right: 0;}
}
@media screen and (max-width:768px){
	header{
		padding: 0;
		position: static;
	}
	header div.gnav{
		margin: 0;
		padding: 0;
		background: #fff;
		border-radius: 0;
		box-shadow: none;
	}
	header div.gnav h1{
		width: auto;
		height: 55px;
		margin-right: 0;
		float: none;
		text-align: left;
		overflow: hidden;
		padding: 6px 0 0 3%;
		z-index: 999;
	}
	header div.gnav h1 img{
		height: 32px;
		width: auto;
	}
	header div.gnav ul{
		display: none;
	}
	header div.gnav p{
		display: none;
	}
	header nav{
		display: none;
	}
}
/*----fixed_menu---*/

@media screen and (min-width: 769px) {
    #fixed_menu{
        display: none;
    }

}

@media screen and (max-width: 768px) {
    #fixed_menu{
        top: 0;
        right: 0;
        position: absolute;
        z-index: 900;
    }
    #fixed_menu .toggle {
        position: relative;
        z-index: 1;
        background: #1b1b1b;
        height: 55px;
        width: 54px;
    }
    #fixed_menu.on .toggle {
        border-left: none;
    }

    #fixed_menu .toggle span {
        width: 27px;
        height: 3px;
        display: block;
        background: #fff;
        position: absolute;
        right: 13px;
        margin: auto;
        transition: all 0.3s ease-out;
    }
    #fixed_menu .toggle span:first-child {
        top: 11px;
    }
    #fixed_menu .toggle span:nth-child(2) {
        top: 19px;
    }
    #fixed_menu .toggle span:nth-child(3) {
        top: 27px;
    }
    #fixed_menu.on .toggle span {
        width: 25px;
    }
    #fixed_menu.on .toggle span:first-child {
        top: 14px;
        right: 14px;
    }
    #fixed_menu.on .toggle span:nth-child(2) {
        opacity: 0;
    }
    #fixed_menu.on .toggle span:nth-child(3) {
        top: 29px;
        right: 14px;
    }

    #fixed_menu.on .toggle span:first-child {
        -webkit-transform: translateY(4px) rotate(-45deg);
        transform: translateY(4px) rotate(-45deg);
    }
    #fixed_menu.on .toggle span:nth-child(3) {
        -webkit-transform: translateY(-11px) rotate(45deg);
        transform: translateY(-11px) rotate(45deg);
    }

     #fixed_menu .toggle:before{
        content: "menu";
        display: block;
        position: absolute;
        bottom: 6px;
        font-size: 10px;
        color: #fff;
        text-align: center;
        width: 100%;
        height: auto;
     }
      #fixed_menu.on .toggle:before{
        content: "close";
     }

}
/*----スマホ_menu---*/
#menu_sp{
   display: none;
}
@media screen and (max-width: 768px) {
    #menu_sp{
        position: absolute;
        width: 100%;
        height: calc(100vh - 55px);
        background: #fff;
        z-index: 99999;
        top: 55px;
        overflow-y: scroll;
        padding-bottom: 20px;
		text-align: left;
    }
    #menu_sp .cvbtn img{
        width: 24px;
    }
    #menu_sp .cvbtn2 img{
         width: 20px;
         left: 18px;
    }
    #menu_sp .cvbtn{
        width: calc(100% - 20px);
    }
    #menu_sp .cvbtn span{
        font-size: 10px;
    }
    #menu_sp .cv_tel p{
        font-size: 30px;
    }
    #menu_sp .cv_tel p img{
        width: 20px;
    }
    #menu_sp .cv_tel table{
        width: 220px;
    }
    #menu_sp .cv_tel th{
        font-size: 11px;

    }
    #menu_sp .cv_tel td{
        font-size: 10px;
    }

    #menu_sp .head_nav{
        border-top: 1px solid #ddd;
        margin-bottom: 20px;
    }
    #menu_sp .head_nav li{
        border-bottom: 1px solid #ddd;
    }
    #menu_sp .head_nav li+li{
    }
    #menu_sp .head_nav li a{
        padding: 18px 10px;
        display: block;
        font-weight: 700;
        font-size: 15px;
        line-height: 1.2;
    }

}
.cv_btns{
    padding-left: 40px;
    text-align: center;
}
.cv_btns li{
    display: inline-block;
    vertical-align: middle;
}
.cvbtn{
    color: #fff;
    padding: 10px 5px 18px 75px;
    line-height: 1;
    position: relative;
    font-weight: 700;
    font-size: 26px;
    width: 340px;
    display: block;
    margin-right: 20px;
    letter-spacing: 0.05em;
}
.cvbtn span{
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    padding-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.cvbtn img{
    position: absolute;
    left:22px;
    top: 50%;
    transform: translateY(-50%);
}

.cvbtn1{
    background: #ED565A; /* fallback */
        background:
            -webkit-linear-gradient(45deg,  transparent 5px, #ED565A 5px),
            -webkit-linear-gradient(135deg, transparent 5px, #ED565A 5px),
            -webkit-linear-gradient(225deg, transparent 5px, #ED565A 5px),
            -webkit-linear-gradient(315deg, transparent 5px, #ED565A 5px);
        background:
            -ms-linear-gradient(45deg,  transparent 5px, #ED565A 5px),
            -ms-linear-gradient(135deg, transparent 5px, #ED565A 5px),
            -ms-linear-gradient(225deg, transparent 5px, #ED565A 5px),
            -ms-linear-gradient(315deg, transparent 5px, #ED565A 5px);
    background-position: bottom left, bottom right, top right, top left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.cvbtn1:before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    top: 50%;
    margin-top: -3px;
    background: #ED565A;
    z-index: -1;
}
.cvbtn1:after{
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 100%;
    left: 50%;
    top: 0;
    margin-left: -3px;
    background: #ED565A;
    z-index: -1;
}
.cvbtn1 img{
    width: 40px;
}
.cvbtn2{
    background: #549cbe; /* fallback */
        background:
            -webkit-linear-gradient(45deg,  transparent 5px, #549cbe 5px),
            -webkit-linear-gradient(135deg, transparent 5px, #549cbe 5px),
            -webkit-linear-gradient(225deg, transparent 5px, #549cbe 5px),
            -webkit-linear-gradient(315deg, transparent 5px, #549cbe 5px);
        background:
            -ms-linear-gradient(45deg,  transparent 5px, #549cbe 5px),
            -ms-linear-gradient(135deg, transparent 5px, #549cbe 5px),
            -ms-linear-gradient(225deg, transparent 5px, #549cbe 5px),
            -ms-linear-gradient(315deg, transparent 5px, #549cbe 5px);
    background-position: bottom left, bottom right, top right, top left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
}
.cvbtn2:before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    top: 50%;
    margin-top: -3px;
    background: #549cbe;
    z-index: -1;
}
.cvbtn2:after{
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 100%;
    left: 50%;
    top: 0;
    margin-left: -3px;
    background: #549cbe;
    z-index: -1;
}
.cvbtn2 img{
    width: 38px;
}


.cv_tel p{
    font-size: 43px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    padding-bottom: 10px;
}
.cv_tel img{
    width: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.cv_tel table{

}
.cv_tel th{
    vertical-align: middle;
    border-right: 1px solid #ddd;
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding-right: 18px;
}
.cv_tel td{
    padding-left: 8px;
    line-height: 1.4;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-indent: 0.5em;
}

.cv_amazon{
    position: absolute;
    top: -40px;
    left: -55px;
    width: 180px;

}
@media screen and (min-width: 769px) {

}
@media screen and (min-width: 769px) and (max-width: 1278px){
    .cv_btns{
        padding-left: 100px;
    }
    .cv_amazon{
        left: -30px;
    }

}
@media screen and (max-width: 768px) {
    .cvbox{
        padding: 20px 0 10px;
    }
    .cvbox .ttl{
        font-size: 16px;
        margin-bottom: 15px;
        padding-left: 40px;
    }
    .cv_btns{
        padding-left: 0px;
    }
    .cv_btns li{
        margin-top: 10px;
        display: block;
        text-align: center;
    }

    .cvbtn{
        padding: 2px 5px 8px 60px;
        /* width: 300px; */
        min-width: 300px;
        width: calc(80% - 20px);
        margin :0 auto 5px;
        font-size: 20px;
    }
    .cvbtn span{
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .cvbtn img{
        left:16px;
    }

    .cvbtn1 img{
        width: 30px;
    }
    .cvbtn2 img{
        width: 26px;
        left: 20px;
    }

    .cv_tel{
        padding-top: 0;
    }
    .cv_tel p{
        text-align: center;
        font-size: 36px;
        padding-bottom: 4px;
    }
    .cv_tel img{
        width: 24px;
        margin-top: -4px;
    }
    .cv_tel table{
        margin: 0 auto;
        width: 260px;
    }
    .cv_tel th{
        font-size: 14px;
        letter-spacing: 0.1em;
        padding-right: 8px;
    }
    .cv_tel td{
        font-size: 12px;
    }

    .cv_amazon{
        top: -10px;
        left: 50%;
        margin-left: -160px;
        width: 90px;

    }
}






/*---------------------------------------------------------------------------------------
	contents
----------------------------------------------------------------------------------------*/

/* cont1 */
#cont1{
	clear: both;
	background: #fafaf9;
}
#cont1 h2{
	margin: 0 auto;
	padding: 195px 3% 27%;
	background: url("../img/cont1-bg.png") no-repeat center bottom #e9f8ff;
	background-size: 100% auto;
	position: relative;
}
#cont1 h2 span{
	position: absolute;
	left: 13%;
	width: 22.5%;
}
#cont1 h2 strong{
	display: block;
	max-width: 562px;
	width: 47%;
	margin: 0 auto;
}
#cont1 div{
	max-width: 1200px;
	padding: 30px 10%;
	margin: 0 auto;
	position: relative;
}
#cont1 div p.read{
	padding: 0 10% 2%;
}
#cont1 div p.present{
	position: absolute;
	left: 0;
	top: -25%;
	z-index: 1;
	max-width: 166px;
	width: 13%;
}
#cont1 div ul{
	float: left;
	width: 68%;
	padding-left: 2%;
}
#cont1 div ul li{
	float: left;
	width: 50%;
	padding: 0 1.5%;
}
#cont1 div p.tel{
	float: right;
	width: 30%;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	#cont1 h2{
		margin: 0 auto;
		padding: 5% 3% 35%;
		background: url("../img/cont1-bg.png") no-repeat center bottom #e9f8ff;
		background-size: 120% auto;
		position: relative;
	}
	#cont1 h2 span{
		display: block;
		position: static;
		width: 50%;
		max-width: 270px;
		margin: 0 auto 3%;
	}
	#cont1 h2 strong{
		display: block;
		max-width: 562px;
		width: auto;
		padding: 0 5%;
	}
	#cont1 div{
		max-width: 1200px;
		padding: 5% 2%;
		margin: 0 auto;
		position: relative;
	}
	#cont1 div p.read{
		padding: 0 0 4% 20%;
	}
	#cont1 div p.present{
		position: absolute;
		left: 0;
		top: -14%;
		z-index: 1;
		max-width: 166px;
		width: 25%;
	}
	#cont1 div ul{
		float: none;
		width: auto;
		padding-left: 0;
		margin-bottom: 3%;
		overflow: hidden;
	}
	#cont1 div ul li{
		float: left;
		width: 50%;
		padding: 0 1.5%;
	}
	#cont1 div p.tel{
		float: none;
		width: auto;
		padding: 0 2%;
	}
}

/* cont2 */
#cont2{
	clear: both;
	padding: 100px 3% 0;
	background: url(../img/cont2-bg.png) no-repeat center top #e9f8ff;
	overflow: hidden;
}
#cont2 h2{
	margin-bottom: 70px;
}
#cont2 dl.read{
	font-size: 18px;
	line-height: 2;
	margin-bottom: 90px;
}
#cont2 dl.read dt{
	margin-bottom: 40px;
}
#cont2 article{
	margin-bottom: 80px;
	overflow: hidden;
}
#cont2 article h4{
	margin-bottom: 20px;
}
#cont2 article dl{
	max-width: 1100px;
	min-height: 200px;
	margin: 0 auto 30px;
	padding: 30px 20px 40px 200px;
	text-align: left;
	border: 3px solid #004099;
	overflow: hidden;
}
#cont2 article dl:nth-of-type(1){ background: url("../img/cont2-point01.png") no-repeat left 30px center #fff;}
#cont2 article dl:nth-of-type(2){ background: url("../img/cont2-point02.png") no-repeat left 30px center #fff;}
#cont2 article dl:nth-of-type(3){ background: url("../img/cont2-point03.png") no-repeat left 30px center #fff;}
#cont2 article dl dt{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 15px;
}
#cont2 article dl dt strong{
	color: #f28f09;
	font-size: 30px;
}
#cont2 article dl dd{
	line-height: 2.2;
}
#cont2 article dl dd strong{
	padding: 3px 5px;
	font-weight: normal;
	background: #ff0;
}
#cont2 article dl dd small{
	font-size: 12px;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (min-width:1400px){
	#cont2{
		clear: both;
		background-size: 100% auto!important;
	}
}
@media screen and (max-width:768px){
	#cont2{
		padding: 12% 3% 0;
		background: url(../img/cont2-bg.png) no-repeat center top #e9f8ff;
		background-size: 100% auto;
		overflow: hidden;
	}
	#cont2 h2{
		margin: 0 5% 10%;
	}
	#cont2 dl.read{
		font-size: 16px;
		line-height: 1.8;
		margin-bottom: 10%;
	}
	#cont2 dl.read dt{
		margin-bottom: 5%;
	}
	#cont2 article{
		margin-bottom: 5%;
	}
	#cont2 article h4{
		margin-bottom: 5%;
	}
	#cont2 article:first-of-type h4{
		margin: 0 10% 5%;
	}
	#cont2 article dl{
		margin: 0 auto 3%;
		padding: 110px 5% 5%;
		background-position: center top 25px!important;
		background-size: 90px auto!important;
	}
	#cont2 article dl dt{
		font-size: 18px;
		margin-bottom: 10px;
	}
	#cont2 article dl dt strong{
		font-size: 24px;
	}
	#cont2 article dl dd{
		line-height: 1.8;
	}
}

/* cont3 */
#cont3{
	clear: both;
	padding: 0 3%;
	background: url(../img/cont3-bg.jpg) no-repeat center top;
	overflow: hidden;
}
#cont3-wrap{
	max-width: 1000px;
	min-height: 460px;
	margin: 0 auto;
	padding: 65px 0 0;
}
#cont3-wrap div{
	width: 60%;
	max-width: 608px;
	min-height: 320px;
	padding: 40px 30px 30px;
	text-align: left;
	background: url(../img/cont3-box.png) no-repeat center top;
	background-size: 100% 100%;
}
#cont3-wrap div h2{
	font-size: 26px;
	font-weight: bold;
	line-height: 1.4;
	padding-left: 35px;
	background: url(../img/cont3-check.svg) no-repeat left top 6px;
	margin-bottom: 15px;
}
#cont3-wrap div h2 strong{
	color: #ed565a;
}
#cont3-wrap div p{
	display: inline-block;
	font-size: 16px;
	line-height: 2.5;
	background-image: linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, #ffff 50%, #ffff 50%), linear-gradient( 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 97%, #999 97%, #999 100%);
	background-size: 8px 100%, 100% 2.5em;
	overflow: hidden;
	position: relative;
}
#cont3-wrap div p:after{
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #fff;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:1100px){
	#cont3{
		background: url(../img/cont3-bg.jpg) no-repeat right 46% top;
		background-size: auto 100%;
	}
	#cont3-wrap{
		padding: 30px 0;
	}
	#cont3-wrap div{
		width: 55%;
	}
}
@media screen and (max-width:768px){
	#cont3{
		padding: 0;
		background: none;
	}
	#cont3-wrap{
		min-height: inherit;
	}
	#cont3-wrap div{
		width: auto;
		max-width: 608px;
		min-height: 320px;
		padding: 5% 8%;
		text-align: left;
		background: url(../img/cont3-box.png) no-repeat center top;
		background-size: 100% 100%;
		margin: 0 3% 5%;
	}
	#cont3-wrap div h2{
		font-size: 26px;
		font-weight: bold;
		line-height: 1.4;
		padding-left: 35px;
		background: url(../img/cont3-check.svg) no-repeat left top 6px;
		margin-bottom: 15px;
	}
	#cont3-wrap div h2 strong{
		color: #ed565a;
	}
	#cont3-wrap div p{
		display: inline-block;
		font-size: 16px;
		line-height: 2.5;
		background-image: linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, #ffff 50%, #ffff 50%), linear-gradient( 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 97%, #999 97%, #999 100%);
		background-size: 8px 100%, 100% 2.5em;
		overflow: hidden;
		position: relative;
	}
	#cont3-wrap div p:after{
		content: "";
		display: block;
		width: 100%;
		height: 5px;
		position: absolute;
		left: 0;
		bottom: 0;
		background: #fff;
	}
}

/* cont4 */
#cont4{
	clear: both;
	padding: 100px 3% 0;
	background: url(../img/cont4-bg.jpg) no-repeat right top,  url(../img/cont4-bg2.jpg) no-repeat left bottom;
	overflow: hidden;
}
#cont4 h2{
	margin-bottom: 70px;
}
#cont4 dl.read{
	font-size: 18px;
	line-height: 2;
	margin-bottom: 70px;
}
#cont4 dl.read dt{
	margin-bottom: 40px;
}
#cont4 article.box1{
	margin-bottom: 80px;
	overflow: hidden;
}
#cont4 article.box1 h4{
	margin-bottom: 20px;
}
#cont4 article.box1 div.box1-wrap{
	max-width: 1100px;
	min-height: 200px;
	margin: 0 auto 30px;
	border: 3px solid #004099;
}
#cont4 article.box1 div.box1-wrap dl{
	padding: 30px 20px 40px 200px;
	text-align: left;
	overflow: hidden;
}
#cont4 article.box1 div.box1-wrap:nth-of-type(1) dl{ background: url("../img/cont4-investment01.png") no-repeat left 30px center rgba(255,255,255,.8);}
#cont4 article.box1 div.box1-wrap:nth-of-type(2) dl{ background: url("../img/cont4-investment02.png") no-repeat left 30px center rgba(255,255,255,.8);}
#cont4 article.box1 div.box1-wrap:nth-of-type(3) dl{ background: url("../img/cont4-investment03.png") no-repeat left 30px center rgba(255,255,255,.8);}
#cont4 article.box1 div.box1-wrap:nth-of-type(4) dl{ background: url("../img/cont4-investment04.png") no-repeat left 30px center rgba(255,255,255,.8);}
#cont4 article.box1 div.box1-wrap:nth-of-type(5) dl{ background: url("../img/cont4-investment05.png") no-repeat left 30px center rgba(255,255,255,.8);}
#cont4 article.box1 div.box1-wrap dl dt{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 15px;
}
#cont4 article.box1 div.box1-wrap dl dt strong{
	color: #f28f09;
	font-size: 30px;
}
#cont4 article.box1 div.box1-wrap dl dd{
	line-height: 2.2;
}
#cont4 article.box1 div.box1-wrap dl dd strong{
	font-weight: normal;
	padding: 3px 5px;
	background: #ff0;
}
#cont4 article.box1 div.box1-wrap div.tableset{
	display: table;
	width: 100%;
	border-top: 1px solid #004099;
}
#cont4 article.box1 div.box1-wrap div.tableset h3{
	display: table-cell;
	width: 8em;
	color: #fff;
	font-size: 26px;
	font-weight: normal;
	text-align: left;
	padding-left: 1em;
	vertical-align: middle;
	background: #004099;
}
#cont4 article.box1 div.box1-wrap div.tableset-cell{
	display: table-cell;
	text-align: left;
	padding: 30px;
	vertical-align: middle;
}
#cont4 article.box1 div.box1-wrap div.tableset-cell h4{
	font-size: 22px;
	margin-bottom: 10px;
}
#cont4 article.box1 div.box1-wrap div.tableset-cell h4 span.merit{
	display: inline-block;
	width: 7em;
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	text-align: center;
	background: #004099;
	border-radius: 100px;
	margin-bottom: 10px;
}
#cont4 article.box1 div.box1-wrap div.tableset-cell h4 strong{
	display: inline-block;
	font-size: 30px;
	color: #ed565a;
	margin-right: .3em;
}
#cont4 article.box1 div.box1-wrap div.tableset-cell p{
	line-height: 2.2;
}
#cont4 article.box1 div.box1-wrap div.tableset-cell div{
	clear: both;
	padding: 15px;
	background: #fff9ef;
	overflow: hidden;
	margin-bottom: 50px;
}
#cont4 article.box1 div.box1-wrap div.tableset-cell div p{
	float: right;
	width: 54%;
}
#cont4 article.box1 div.box1-wrap div.tableset-cell div p strong{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
}
#cont4 article.box1 div.box1-wrap div.tableset-cell div figure{
	float: left;
	width: 42%;
	max-width: 335px;
}
#cont4 dl.read2{
	font-size: 18px;
	line-height: 2;
	margin-bottom: 70px;
}
#cont4 dl.read2 dt{
	margin-bottom: 70px;
}
#cont4 .genso{
	margin-bottom: 30px;
}
#cont4 article.box2{
	max-width: 1100px;
	margin: 0 auto 100px;
	border: 3px solid #004099;
	position: relative;
}
#cont4 article.box2 figure{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 40.5%;
}
#cont4 article.box2{
	text-align: left;
	line-height: 2;
	padding: 4% 37% 3% 5%;
	background: url(../img/cont4-box2-bg.png) repeat, rgba(255,255,255,.8);
}
#cont4 article.box2 p.planner{
	text-align: right;
}
#cont4 article.box2 p.planner strong{
	font-size: 20px;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (min-width:1300px){
	#cont4 article.box2{
		padding: 50px 445px 50px 50px!important;
	}
}
@media screen and (max-width:768px){
	#cont4{
		padding: 10% 3% 0;
		background-size: 40% auto, 50% auto!important;
	}
	#cont4 h2{
		margin-bottom: 10%;
	}
	#cont4 dl.read{
		font-size: 16px;
		line-height: 1.8;
		margin-bottom: 10%;
	}
	#cont4 dl.read dt{
		padding: 0 20%;
		margin-bottom: 5%;
	}
	#cont4 article.box1{
		margin-bottom: 10%;
		overflow: hidden;
	}
	#cont4 article.box1 h4{
		margin-bottom: 20px;
	}
	#cont4 article.box1 div.box1-wrap{
		max-width: 1100px;
		min-height: 200px;
		margin: 0 auto 3%;
		border: 3px solid #004099;
	}
	#cont4 article.box1 div.box1-wrap dl{
		padding: 155px 5% 5%;
		background-position: center top 25px!important;
		background-size: 90px auto!important;
	}
	#cont4 article.box1 div.box1-wrap dl dt{
		font-size: 18px;
		margin-bottom: 10px;
	}
	#cont4 article.box1 div.box1-wrap dl dt strong{
		font-size: 24px;
	}
	#cont4 article.box1 div.box1-wrap dl dd{
		line-height: 1.8;
	}
	#cont4 article.box1 div.box1-wrap div.tableset{
		display: block;
	}
	#cont4 article.box1 div.box1-wrap div.tableset h3{
		display: block;
		width: auto;
		font-size: 22px;
		text-align: center;
		padding: 2%;
	}
	#cont4 article.box1 div.box1-wrap div.tableset-cell{
		display: block;
		text-align: left;
		padding: 30px;
		vertical-align: middle;
	}
	#cont4 article.box1 div.box1-wrap div.tableset-cell h4{
		font-size: 18px;
	}
	#cont4 article.box1 div.box1-wrap div.tableset-cell h4 span.merit{
		font-size: 16px;
	}
	#cont4 article.box1 div.box1-wrap div.tableset-cell h4 strong{
		font-size: 24px;
	}
	#cont4 article.box1 div.box1-wrap div.tableset-cell p{
		line-height: 1.8;
	}
	#cont4 article.box1 div.box1-wrap div.tableset-cell div{
		padding: 3%;
		margin-bottom: 5%;
	}
	#cont4 article.box1 div.box1-wrap div.tableset-cell div p{
		float: none;
		width: auto;
	}
	#cont4 article.box1 div.box1-wrap div.tableset-cell div p strong{
		font-size: 20px;
		line-height: 2;
	}
	#cont4 article.box1 div.box1-wrap div.tableset-cell div figure{
		float: none;
		width: auto;
		max-width: inherit;
		padding-top: 5%;
		text-align: center;
	}
	#cont4 dl.read2{
		font-size: 16px;
		line-height: 1.8;
		margin-bottom: 5%;
	}
	#cont4 dl.read2 dt{
		padding: 0 2%;
		margin-bottom: 5%;
	}
	#cont4 .genso{
		padding-top: 30px;
		margin-bottom: 30px;
	}
	#cont4 article.box2{
		min-height: inherit;
		margin: 0 auto 10%;
	}
	#cont4 article.box2 figure{
		width: 150px;
	}
	#cont4 article.box2{
		text-align: left;
		line-height: 2;
		padding: 4% 5%;
		background: url(../img/cont4-box2-bg.png) repeat, rgba(255,255,255,.8);
	}
	#cont4 article.box2 p.planner{
		padding-right: 140px;
		text-align: right;
		margin-bottom: 20px;
		padding-top: 20px;
		font-size: 80%;
	}
}

/* cont5 */
#cont5{
	clear: both;
	padding: 100px 3%;
	background: url(../img/cont5-bg.jpg) no-repeat center top #e9f8ff;
	background-size: 100%;
	overflow: hidden;
}
#cont5 h2{
	margin-bottom: 70px;
}
#cont5 p.read{
	font-size: 18px;
	line-height: 2;
	margin-bottom: 40px;
}
#cont5 p.read2{
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 60px;
}
#cont5 p.read2 strong{
	color: #f28f09;
	padding: 0 5px;
	background: #fff;
}
#cont5 p.read2 strong{
	color: #f28f09;
	padding: 0 5px;
	background: #fff;
}
#cont5 h3{
	margin-bottom: 20px;
}
#cont5 .box1{
	max-width: 1100px;
	margin: 0 auto 80px;
	background: #fff;
	border: 3px solid #004099;
}
#cont5 .box1 p.kome{
	font-size: 18px;
	line-height: 2;
	text-align: left;
	padding: 15px 5% 30px;
}
#cont5 .box1 p.kome a{
	color: #004099;
	font-weight: bold;
	text-decoration: none;
	border-bottom: 1px solid #004099;
	cursor: pointer;
}
#cont5 dl.point{
	text-align: left;
	padding: 30px 40px;
	background: #fff9ef;
	margin: 0 5% 50px;
}
#cont5 dl.point dt{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 15px;
}
#cont5 dl.point dt strong{
	color: #ed565a;
	font-size: 30px;
}
#cont5 dl.point dd:not(:last-child){
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px dotted #999;
}
#cont5 #cont5-pop{
	text-align: left;
}
#cont5 #cont5-pop h4{
	font-size: 20px;
	font-weight: bold;
	line-height: 3;
	border-bottom: 2px solid #ddd;
	margin-bottom: 20px;
}
#cont5 #cont5-pop dl{
	float: left;
	width: 50%;
}
#cont5 #cont5-pop dl dt{
	color: #004099;
	font-weight: bold;
}
#cont5 #cont5-pop dl dd{
	margin-bottom: 30px;
}
#cont5 #cont5-pop p{
	clear: both;
	padding: 15px 20px;
	background: #ccd9eb;
	border: 2px solid #004099;
}
#cont5 #cont5-pop span.modal-close{
	position: absolute;
	right: 0;
	top: -70px;
	cursor:pointer;
}
.lock {
    overflow:hidden;
}
.modal-content {
    position:relative;
    display:none;
    width:90%;
	max-width: 1000px;
    margin:30px;
	padding: 30px 50px;
    background:#fff;
}
.modal-overlay {
    z-index:9999;
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:120%;
    background: rgba(0,0,0,.75);
}
.modal-wrap {
    z-index:99999;
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:auto;
}
#cont5 .box2{
	max-width: 1100px;
	margin: 0 auto 80px;
	background: #fff;
	border: 3px solid #004099;
}
#cont5 .note{
	margin-bottom: 50px;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	#cont5{
		padding: 10% 3%;
	}
	#cont5 h2{
		margin-bottom: 8%;
	}
	#cont5 p.read{
		font-size: 16px;
		line-height: 1.8;
		margin-bottom: 5%;
	}
	#cont5 p.read2{
		font-size: 24px;
		margin-bottom: 10%;
	}
	#cont5 p.read2 strong{
		color: #f28f09;
		padding: 0 5px;
		background: #fff;
	}
	#cont5 p.read2 strong{
		color: #f28f09;
		padding: 0 5px;
		background: #fff;
	}
	#cont5 h3{
		margin-bottom: 3%;
	}
	#cont5 h3.title1{
		padding: 0 35%;
	}
	#cont5 h3.title2{
		padding: 0 30%;
	}
	#cont5 .box1{
		margin: 0 auto 10%;
	}
	#cont5 .box1 p.kome{
		font-size: 16px;
		padding: 15px 5% 5%;
	}
	#cont5 .box1 p.kome a{
		color: #004099;
		font-weight: bold;
		text-decoration: none;
		border-bottom: 1px solid #004099;
	}
	#cont5 dl.point{
		padding: 3% 5%;
		margin: 0 5% 5%;
	}
	#cont5 dl.point dt{
		font-size: 18px;
	}
	#cont5 dl.point dt strong{
		font-size: 22px;
	}
	#cont5 dl.point dd:not(:last-child){
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	#cont5 #cont5-pop h4{
		font-size: 20px;
		margin-bottom: 20px;
	}
	#cont5 #cont5-pop dl{
		float: none;
		width: auto;
	}
	#cont5 #cont5-pop dl dd{
		margin-bottom: 20px;
	}
	#cont5 #cont5-pop span.modal-close{
		top: -50px;
	}
	#cont5 #cont5-pop span.modal-close img{
		width: 40px;
		height: auto;
	}
	.modal-content {
		margin:50px 5%;
		padding: 3% 5%;
	}
	#cont5 .box2{
		margin: 0 auto 10%;
	}
	#cont5 .note{
		margin-bottom: 5%;
	}
	#cont5 .btn{
		padding: 0 10%;
	}
}

/* cont6 */
#cont6{
	clear: both;
	padding: 100px 3%;
	background: url(../img/cont6-bg.jpg) no-repeat center top #fff;
	background-size: 100%;
	overflow: hidden;
}
#cont6 h2{
	margin-bottom: 70px;
}
#cont6 p{
	font-size: 18px;
	line-height: 2;
	margin-bottom: 50px;
}
#cont6 article{
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 20px;
	text-align: left;
	background: #fff;
	border: 3px solid #004099;
	overflow: hidden;
}
#cont6 article div{
	padding: 30px 20px 30px 180px;
	overflow: hidden;
}
#cont6 article div:nth-of-type(1){ background: url("../img/cont2-point01.png") no-repeat left 20px center #fff;}
#cont6 article div:nth-of-type(2){ background: url("../img/cont2-point02.png") no-repeat left 20px center #fff;}
#cont6 article div:nth-of-type(3){ background: url("../img/cont2-point03.png") no-repeat left 20px center #fff;}
#cont6 article div:not(:last-child){
	border-bottom: 1px dotted #ccc;
}
#cont6 article div figure{
	float: left;
	width: 32%;
	margin-right: 20px;
}
#cont6 article div dl{
	overflow: hidden;
}
#cont6 article div dl dt{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 10px;
}
#cont6 article div dl dt strong{
	color: #f28f09;
	font-size: 30px;
}
#cont6 article div dl dd{
	line-height: 2.2;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	#cont6{
		padding: 10% 3%;
	}
	#cont6 h2{
		margin-bottom: 8%;
	}
	#cont6 p{
		font-size: 16px;
		line-height: 1.8;
		margin-bottom: 5%;
	}
	#cont6 article{
		margin: 0 auto;
		padding: 0 3%;
	}
	#cont6 article div{
		padding: 110px 3% 5%;
		margin: 0 auto 3%;
		background-position: center top 25px!important;
		background-size: 90px auto!important;
	}
	#cont6 article div figure{
		float: none;
		width: auto;
		margin-right: 0;
		margin-bottom: 5%;
		padding: 0 10%;
		text-align: center;
	}
	#cont6 article div figure img{
		max-width: 200px;
		width: 100%;
	}
	#cont6 article div dl dt{
		font-size: 18px;
	}
	#cont6 article div dl dt strong{
		font-size: 24px;
	}
	#cont6 article div dl dd{
		line-height: 1.8;
	}
}

/* cont7 */
#cont7{
	clear: both;
	background: #000333;
}
#cont7 div{
	max-width: 1200px;
	padding: 30px 3%;
	margin: 0 auto;
	overflow: hidden;
}
#cont7 div p.read{
	padding: 0 10% 2%;
}
#cont7 div ul{
	float: left;
	width: 68%;
	padding-left: 2%;
}
#cont7 div ul li{
	float: left;
	width: 50%;
	padding: 0 1.5%;
}
#cont7 div p.tel{
	float: right;
	width: 30%;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	#cont7 div{
		max-width: 1200px;
		padding: 5% 2%;
		margin: 0 auto;
		position: relative;
	}
	#cont7 div p.read{
		padding: 0 0 4%;
	}
	#cont7 div p.present{
		position: absolute;
		left: 0;
		top: -14%;
		z-index: 1;
		max-width: 166px;
		width: 25%;
	}
	#cont7 div ul{
		float: none;
		width: auto;
		padding-left: 0;
		margin-bottom: 3%;
		overflow: hidden;
	}
	#cont7 div ul li{
		float: left;
		width: 50%;
		padding: 0 1.5%;
	}
	#cont7 div p.tel{
		float: none;
		width: auto;
		padding: 0 2%;
	}
}

/* cont8 */
#cont8{
	clear: both;
	padding: 100px 3%;
	background: url("../img/cont8-bg.png") repeat-y center top;
	background-size: 100% auto;
	overflow: hidden;
}
#cont8 h2{
	max-width: 1100px;
	margin: 0 auto 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #666;
}
#cont8 dl{
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 40px;
	text-align: left;
	line-height: 2;
}
#cont8 dl dd:not(:last-child){
	margin-bottom: 40px;
}
#cont8 dl dd li{
	padding-left: 1em;
	text-indent: -1em;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	#cont8{
		padding: 10% 3%;
	}
	#cont8 h2{
		margin: 0 auto 5%;
		padding-bottom: 5%;
	}
	#cont8 dl{
		max-width: 1100px;
		margin: 0 auto;
		padding: 0 5%;
		text-align: left;
		line-height: 2;
	}
	#cont8 dl dd:not(:last-child){
		margin-bottom: 20px;
	}
}

/* cont9 */
#cont9{
	box-sizing: content-box;
	max-width: 1100px;
	margin: 0 auto 50px;
	padding: 100px 3%;
}
#cont9 h2{
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 60px;
}
#cont9 p.read{
	font-size: 18px;
	line-height: 2;
	margin-bottom: 100px;
}
.sec6_flow{
    display: table;
    width: 100%;
    z-index: 1;
    margin-bottom: 40px;
}
.sec6_flow li{
  display: table-cell;
  line-height: 50px;
  background: #F0F0F0;
  color: #9D9D9D;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2em;
  position: relative;
}
.sec6_flow li:after{
}
.sec6_flow .flow1, .sec6_flow .flow2{
    border-right: 5px solid #fff;
}

.sec6_flow .flow1{ z-index: 5; }
.sec6_flow .flow2{ z-index: 3; }
.sec6_flow .flow3{ z-index: 1; }
.sec6_flow .flow1:before, .sec6_flow .flow2:before{
    content: "";
    display: block;
    position: absolute;
    right: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 11px;
    border-color: transparent transparent transparent #fff;
}
.sec6_flow .flow1:after, .sec6_flow .flow2:after{
    content: "";
    display: block;
    position: absolute;
    right: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 11px;
    border-color: transparent transparent transparent #F0F0F0;

}
.sec6_flow li.current{
    background: #ED565A;
    color: #fff;

}
.sec6_flow li.current:after{
    border-color: transparent transparent transparent #ED565A;
}



.sec6_form{
	text-align: left;
    border-top:1px solid #ddd;
}
.sec6_form th, .sec6_form td{
    vertical-align: middle;
    border-bottom:1px solid #ddd;
}
.sec6_form th{
    padding: 20px 0 20px 33px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    width: 256px;
}
.sec6_form th.required:before {
  content: "必須";
  background: #ff7200;
  display: block;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #fff;
  width: 50px;
  height: 24px;
  line-height: 24px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: 0;
}
.ie .sec6_form th.required:before {
    position: inherit;
    float: right;
    margin-top: 0px;
}
.ie11 .sec6_form th.required.th6:before {
    margin-top: 10px;
}

.sec6_form td{
    padding: 20px 185px 20px 40px;
}

.sec6_form input{
    background: #f0f0f0;
    font-size: 16px;
    padding:18px;
    width: 100%;
	border: none;
}
.sec6_form input::placeholder {
    color: #9d9d9d;
}
.sec6_form input:-ms-input-placeholder {
    color: #9d9d9d;
}

.sec6_form input.half{
    width: 49%;
    display: inline-block;
}
.sec6_form input.half+ input.half{
    margin-left: 1%;
}
.sec6_form input.pref{
    width: 125px;
}



.sec6_form input[type="checkbox"],
.sec6_form input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.sec6_form label {
  position: relative;
  display: block;
  word-break: break-all;
  display: inline-block;
  padding-left: 26px;
  padding:5px 0;
}
.sec6_form td label{
    width: 170px;
    font-size: 16px;
    font-weight: 500;
}
.sec6_form .checkbox input{
  display: none;
}
.sec6_form .checkbox span{
  padding-left: 26px;
  position:relative;
  margin-right: 20px;
}
.sec6_form .checkbox span::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #f0f0f0;
}
.sec6_form .checkbox input:checked + span{
}
.sec6_form .checkbox input:checked + span::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #ED565A;
  border-right: 3px solid #ED565A;
}
.sec6_form select {
    outline:none;
    -moz-appearance: none;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 60px;
    padding: 8px 12px;
    width:260px;
    position: relative;
	border: none;
}
.sec6_form .select{
    position: relative;
    background: #f0f0f0;
    width:260px;
}
.sec6_form .select:before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 16px;
    background: url(../img/cont9-select.png);
    background-size: cover;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.sec6_form select::-ms-expand {
  display: none;
}
.sec6_form select:-moz-focusring {
  color: transparent;
}

.sec6_notice{
    font-size: 12px;
    font-weight: 500;
    padding:6px 0 10px;
}
.sec6_privacy{
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 50px 0 45px;
    letter-spacing: 0.1em;
}
.sec6_privacy a{
    color: #00467d;
    text-decoration: underline;

}
#cont9 .btn_contact{
	text-align: center;

}
.sec6_form .btn_contact a{
    font-size: 32px;
    margin: 0 auto;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (min-width: 769px) {
    .sec6 .mid1{
        margin-bottom: 40px;
    }
    .sec6.wrap{
        max-width: 1000px;
    }

}
@media screen and (max-width:768px){
	#cont9{
		margin: 0 auto 5%;
		padding: 10% 3%;
	}
	#cont9 h2{
		font-size: 30px;
		margin-bottom: 5%;
	}
	#cont9 p.read{
		font-size: 14px;
		line-height: 1.8;
		text-align: left;
		margin-bottom: 5%;
	}
    .sec6{
        padding-top: 25px;
        padding-bottom: 30px;
    }
    .sec6_lead{
        text-align: center;
        line-height: 1.7;
        margin-bottom: 25px;
        text-align: left;
    }

    .sec6_flow{
        margin-bottom: 15px;
    }
    .sec6_flow li{
        line-height: 30px;
        font-size: 10px;
        letter-spacing: normal;
    }

    .sec6_flow .flow1:before, .sec6_flow .flow2:before{
        right: -10px;
        border-width: 15px 0 15px 6px;
    }
    .sec6_flow .flow1:after, .sec6_flow .flow2:after{
        right: -6px;
        border-width: 15px 0 15px 6px;
    }


    .sec6_form{
		text-align: left;
    }
    .sec6_form th, .sec6_form td{
        display: block;
        width: 100%;
        position: relative;
    }
    .sec6_form th{
        padding: 10px 10px 5px;
        font-size: 14px;
        border-bottom: none;
    }
    .sec6_form th.required:before {
        font-size: 10px;
        width: 30px;
        height: 20px;
        line-height: 20px;
        margin-top: -10px;
        right: 10px;
    }
    .sec6_form td{
        padding: 10px;
        font-size: 12px;
    }
    .sec6_btnwrap{
        text-align: center;
    }
    .sec6_btn{
        margin: 0 auto;
        font-size: 16px;
        width: 80%;
        line-height: 50px;
    }

    .sec6_form input{
        font-size: 12px;
        padding:8px;
        width: 100%;
		border: none;
    }


    .sec6_form input.half+ input.half{
    }
    .sec6_form input.pref{
    }



    .sec6_form input[type="checkbox"],
    .sec6_form input[type="radio"] {
    }

    .sec6_form td label{
        width: 100%;
        font-size: 12px;
    }
    .sec6_form .checkbox input{
    }
    .sec6_form .checkbox span{
    }
    .sec6_form .checkbox span::before{
    }
    .sec6_form .checkbox input:checked + span{
    }
    .sec6_form .checkbox input:checked + span::after{
    }
    .sec6_form select {
        height: 34px;
        padding: 8px 12px;
        width:100%;
    }
    .sec6_form .select{
        position: relative;
        width:auto;
    }
    .sec6_form .select:before {
        background-size: cover;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    .sec6_form select::-ms-expand {
        display: none;
    }
    .sec6_form select:-moz-focusring {
        color: transparent;
    }

    .sec6_notice{
        font-size: 10px;
        padding:4px 0;
    }
    .sec6_privacy{
        font-size: 12px;
        padding: 10px 0 25px;
        letter-spacing: 0.1em;
    }
    .sec6_privacy a{

    }
	#cont9 .btn_contact{
		padding: 0 10%;

	}
    
    .sec6_form .btn_contact a{
            margin: 0 auto;
        font-size: 16px;
        width: 80%;
        line-height: 50px;
    }
}

/* cont10 */
#cont10{
	clear: both;
	background: #f1f1f1;
}
#cont10 div{
	box-sizing: content-box;
	max-width: 1100px;
	margin: 0 auto;
	padding: 100px 3%;
	overflow: hidden;
}
#cont10 h2{
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 60px;
}
.sec7_tbl{
	text-align: left;
    vertical-align: top;
    border-top:1px solid #ddd;
}
.sec7 th, .sec7 td{
    vertical-align: middle;
    border-bottom:1px solid #ddd;
}

.sec7 th{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
    padding: 24px;
}
.sec7 td{
    font-weight: 500;
    padding: 24px 8px;
}
.sec7_stbl{
}
.sec7_stbl th, .sec7_stbl td{
    font-weight: 500;
    font-size: 14px;
    padding: 0;
    border-bottom: 0;
}
.sec7_stbl th{
    padding-right: 1em;
}
@media screen and (min-width: 769px) {
    .sec7_tbl{
		float: left;
        width: 47.5%;
    }
    .sec7_tbl+.sec7_tbl{margin-left: 5%;}
    .sec7_tbl th{width: 140px;}
    .sec7_tbl td{width: 335px;}
    .sec7_stbl th{
        width: 10em;
        letter-spacing: normal;
    }
    .sec7_stbl td{width: auto;}
     th.sec7th_ue{
        vertical-align: top;
     }

}
@media screen and (max-width: 768px) {
	#cont10 div{
		margin: 0 auto;
		padding: 10% 3%;
	}
	#cont10 h2{
		font-size: 30px;
		margin-bottom: 5%;
	}
    .sec7{
        padding-top: 0;
        padding-bottom: 0;
    }
    .sec7 .mid1{
    }
    .sec7_tbl{
		width: 100%;
        border-top:1px solid #ddd;
    }
    .sec7_tbl+ .sec7_tbl{
        border-top:none;
    }
    .sec7_tbl th, .sec7_tbl td{
        display: block;
        width: 100%;
        position: relative;
    }

    .sec7 th{
        font-size: 16px;
        padding: 10px 10px 5px;
        border-bottom: none;
    }
    .sec7 td{
        padding: 10px;
    }
    .sec7_stbl{
    }
    .sec7_stbl th, .sec7_stbl td{
        display: table-cell;
        width: auto;
        font-size: 14px;
        padding: 0;
        border-bottom: 0;
        letter-spacing: normal;
    }
    .sec7_stbl th{
        padding-right: 1em;
        width: 10em;
    }
}






/*---------------------------------------------------------------------------------------
	fixnav
----------------------------------------------------------------------------------------*/

#fixnav {
    background-color: rgba(0,0,0,0.6);
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    box-sizing: border-box;
    padding: 20px 3%;
}
#fixnav ul {
    text-align: center;
    display: flex;
    justify-content: center;
}
#fixnav ul li {
    margin-right: 20px;
}
#fixnav ul li:last-of-type {
    margin-right: 0;
}
@media screen and (max-width: 768px) {
    #fixnav {
        padding: 10px 3%;
    }
    #fixnav ul li {
        margin-right: 10px;
    }
}







/* ----------------------------------------------------------------------------------------------------
*  footer
* --------------------------------------------------------------------------------------------------*/


footer{
    color: #fff;
    line-height: 1;
}
footer a{
    color: #fff;
}

footer ul{
    text-align: center;
}
footer li{
    display: inline-block;
    vertical-align: top;
    line-height: 1;
    letter-spacing: 0.1em;
}
footer li+li{
    border-left: 1px solid #fff;
    padding-left: 15px;
    margin-left: 15px;
}

#foot1{
    background: #000;
    padding: 20px 0;
}
#foot2{
    background: #000069;
    padding: 40px 0;
}
#foot2 li+li{
    padding-left: 20px;
    margin-left: 20px;
}
.copyright{
    text-align: center;
    font-size: 11px;
    line-height: 1;
    padding-top: 26px;
    letter-spacing: 0.1em;
}

@media screen and (min-width: 769px) {

    .copyright{
        font-size: 10px;
    }
}
@media screen and (max-width: 768px) {
    footer{
        padding-bottom: calc(100 / 535 * 100%);
        background: #000069;
    }
    footer li{
        font-size: 10px;
        margin-top: 4px;
    }
    footer li+li{
        padding-left: 4px;
        margin-left: 4px;
    }

    #foot1{
        padding: 10px 0 14px;
    }
    #foot2{
        padding: 15px 0 20px;
    }
#foot2 li+li{
    padding-left: 4px;
    margin-left: 4px;
}
.copyright{
    text-align: center;
    font-size: 10px;
    line-height: 1;
    padding-top: 16px;
    letter-spacing: 0.1em;
}

}
