@charset "UTF-8";
/* CSS Document */
html{
	font-size: 10px;
}
a {
    text-decoration: none;
	color: #222222;
}
a:hover{
	opacity: 0.8;
}
img {
    border: 0;
    border: none;
	width: 100%;
}
h1,h2,h3,h4,h5{
	margin: 0;
}
dl{
	margin: 0;
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
li{
	margin: 0;
	list-style: none;
}
ol{
	padding: 0;
	margin: 0;
}
p{
	color: #222222;
	margin: 0;
	text-align: left;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 22.5px */
	letter-spacing: 0.6px;
}
p b{
	font-weight: 600;
}
body{
	margin: 0px;
    padding: 0px;
    width: 100%;
    height: auto;
    line-height: 0;
    background-color: #ffffff;
    overflow-x: hidden;
	font-size: 1.5rem;
	font-family: "Hiragino Kaku Gothic Pro";
	text-align: left;
	color: #222222;
}
body * {
    box-sizing: border-box;
}
.wrapper{
	box-sizing: border-box;
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    min-height: 100vh;
}
header {
    position: fixed;
    float: left;
    width: 240px;
    height: auto;
	background: #F6F6F6;
	height: 100%;
    overflow-x: auto;
}
header h1 {
    width: 100%;
    border-bottom: 1px solid #E7E7E7;
	text-align: center;
	padding: 18px 0px;
}
header h1 img {
	width: 180px;
}
main {
    background-color: #fff;
    color: #333;
    float: left;
    text-align: center;
    width: calc(100% - 240px);
    margin-left: 240px;
}
main .main_cnt{
	width: 1000px;
	margin: 0 auto;
}

/*ボタンデザイン*/
.btn1{
	max-width: 164px;
	border-radius: 50px;
	border: solid 1px #222;
	display: block;
	padding: 9px;
	position: relative;
	margin-bottom: 24px;
}
.btn1::before{
	content: "";
	width: 24px;
	height: 24px;
	background: url("../img/common/arrow3.svg");
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(10px,-54%);
}
.btn1 p{
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 21px */
	letter-spacing: 0.56px;
	text-align: center;
	margin-bottom: 0px;
}
.btn2{
	max-width: 202px;
	border-radius: 50px;
	display: block;
	padding: 9px;
	position: relative;
	background: #222222;
	margin-bottom: 24px;
}
.btn2::before{
	content: "";
	width: 12px;
	height: 18px;
	background: url("../img/common/arrow4.svg");
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-10px,-54%);
}
.btn2 p{
	color: #fff;
	text-align: center;
	margin-bottom: 0px;
}
.btndl{
	max-width: 202px;
	border-radius: 50px;
	display: block;
	padding: 9px;
	position: relative;
	background: #222222;
	margin-bottom: 24px;
}
.btndl::before{
	content: "";
	width: 24px;
	height: 24px;
	background: url("../img/common/dl_icon.svg");
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(20px,-54%);
}
.btndl p{
	color: #fff;
	text-align: center;
	margin-bottom: 0px;
}

/*下層メニュー関連*/
.gNav {
    font-size: 1.3rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 19.5px */
	letter-spacing: 0.52px;
}
.gNav a {
    
}
.gNav li span {
    background: url("../img/common/arrow_bottom.svg") 95% 50% no-repeat;
}
.gNav > li > span {
    display: block;
    line-height: 52px;
    height: 52px;
    padding-left: 17px;
    cursor: pointer;
	position: relative;
}
.gNav > li > span::before{
	content: "";
	width: 3px;
	height: 40px;
	background: #303185;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
.gNav li span.gNavOpen {
    background: url("../img/common/arrow_top.svg") 95% 50% no-repeat;
}
.gNav > li > ul > li > span {
    background-color: #E7E7E7;
    display: block;
    line-height: 42px;
    height: 42px;
    padding-left: 17px;
    cursor: pointer;
}
.gNav > li > ul > li > span.gNavOpen{
	background: url("../img/common/arrow_top.svg") 95% 50% no-repeat #E7E7E7;
}
.gNav > li > ul > li > ul {
    background-color: #E7E7E7;
    padding: 10px 0;
	display: none;
}
.gNav > li > ul > li > ul > li > a {
    display: block;
    padding: 10px 0 10px 17px;
}
.gNav > li > ul > li > ul > li > a.gNavActive {
    background-color: #303185;
    background-image: url(../img/common/arrow_nav_active.svg);
    background-position: 100% 50%;
    background-repeat: no-repeat, no-repeat;
	color: #fff;
}
/*メインコンテンツ上部ナビゲーション*/
#template main {
    background-color: #f0f0f0;
    padding-top: 60px;
}
.mNav {
    font-size: 0;
    position: fixed;
    top: 0;
    left: 240px;
    width: calc(100% - 240px);
    height: 62px;
    z-index: 5;
    white-space: nowrap;
}
.mNav li {
    background: #f0f0f0 url(../img/common/bg_subnav.svg) 100% 50% no-repeat;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    width: calc(100% / 3);
    height: 60px;
    padding: 0 10px;
    border-bottom: 1px solid #ccc;
    white-space: normal;
}
.mNav .active {
    border-bottom: 2px solid #303185;
}
.mNav li a {
    color: #000;
    display: table;
    width: 100%;
    height: 100%;
}
.mNav li a span {
    display: table-cell;
    vertical-align: middle;
}
.mNav li:last-child {
    background: none;
    background-color: #f0f0f0;
}
.breadcrumb {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
    overflow: hidden;
}
.breadcrumb li {
    position: relative;
    float: left;
    text-align: left;
    line-height: 34px;
    height: 34px;
}
.breadcrumb li:first-child a {
    display: block;
    padding: 0 10px 0 40px;
}
.breadcrumb li::after, .breadcrumb li::before {
    position: absolute;
    top: -6px;
    content: "";
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    z-index: 1;
}
.breadcrumb li::before {
    right: 0;
    border-left: 20px solid #ccc;
}
.breadcrumb li::after {
    right: 1px;
    border-left: 20px solid #fff;
}
.breadcrumb li:last-child::before {
    right: 0;
    border-left: 20px solid #777;
}
.breadcrumb li:last-child::after {
    right: 1px;
    border-left: 20px solid #777;
}
.breadcrumb li:last-child a {
    color: #fff;
    background-color: #777;
    margin-left: -20px;
    padding-left: 40px;
}
.breadcrumb li a {
    color: #444;
    display: block;
    padding: 0 10px 0 15px;
    margin-right: 20px;
}
.breadcrumb li img {
    position: relative;
    top: 3px;
}

/*下層メインコンテンツ*/
#template main section {
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 0;
    text-align: left;
    padding: 40px;
    max-width: 1000px;
}
main h1{
	font-size: 3rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 45px */
	letter-spacing: 1.2px;	
	padding-bottom: 32px;
	position: relative;
	text-align: left;
	margin-bottom: 56px;
}
main h1::before{
	content: "";
	width: 98px;
	height: 2px;
	background: #303185;
	position: absolute;
	bottom: 0;
	left: 0;
}
main section h1 {
    margin: 0 0px 56px;
}
main h2{
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 33.75px */
	letter-spacing: 0.9px;
	position: relative;
	text-align: left;
	padding-left: 15px;
	padding-bottom: 5px;
	border-bottom: solid 1px #222222
}
main h2::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-55%);
	width: 8px;
	height: 24px;
	background: #303185;
}
main section h2 {
    margin: 0 0px 56px 0px;
}
main section h3{
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 24px */
	letter-spacing: 0.64px;
	padding: 13px;
	background: #F9F9F9;
	border: solid 1px #D9D9D9;
	margin: 0 0px 56px 0px;
}
main section h4{
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 24px */
	letter-spacing: 0.64px;
	margin: 0 0px 56px 0px;
	padding-left: 15px;
	position: relative;
}
main section h4::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-55%);
	width: 8px;
	height: 24px;
	background: #303185;
}
main section h5{
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 22.5px */
	letter-spacing: 0.6px;
	margin-bottom: 56px;
}
main section p{
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 22.5px */
	letter-spacing: 0.6px;
	margin-bottom: 16px;
}
main section p b{
	font-weight: 600;
}
main section p.small{
	font-size: 1.4rem;
}
main section p.band{
	color: #fff;
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 21px */
	letter-spacing: 0.56px;
	background: #222222;
	padding: 4px 8px;
	border-radius: 10px;
}
main section p a{
	text-decoration: underline;
	color: #447BE9;
	font-size:1.4rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 21px */
	letter-spacing: 0.56px;
}
main section .column{
	display: flex;
	flex-wrap: wrap;
	gap:20px;
}
main section .column.col2 .col{
	width: calc(100%/2 - 10px);
}
main section .accordion{
	border-bottom: solid 1px #222222;
	padding-bottom: 5px;
	margin-bottom: 56px;
}
main section .accordion .ac_head{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
main section .accordion .ac_head h2,main section .accordion .ac_head h4{
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
main section .accordion .ac_head p{
	cursor: pointer;
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 21px */
	letter-spacing: 0.56px;
	color: #303185;
	position: relative;
	padding-right: 35px;
	margin-bottom: 0px;
}
main section .accordion .ac_head p::after{
	content:"";
	width: 28px;
	height: 28px;
	background: url("../img/common/ac_btn_open.svg");
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}
main section .accordion.active .ac_head p::after{
	content:"";
	width: 28px;
	height: 28px;
	background: url("../img/common/ac_btn_open.svg");
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%)rotate(180deg);
}
main section .accordion .ac_cnt{
	margin-top: 10px;
	display: none;
}
main section .accordion .ac_cnt p.dami{
	background: #D9D9D9;
	padding: 50px;
	text-align: center;
	margin-bottom: 0px;
}

main section .grayarea{
	padding: 24px;
	background: #F9F9F9;
	border: solid 1px #D9D9D9;
	margin-bottom: 16px;
}
main section .grayarea *:last-child{
	margin-bottom: 0px;
}
main section .reference{
	padding: 13px;
	border: solid 1px #303185;
	margin-bottom: 16px;
}
main section .reference *:last-child{
	margin-bottom: 0px;
}
main section .reference p{
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 24px */
	letter-spacing: 0.64px;
	color: #303185;
}
main section .reference2{
	padding: 16px;
	border: solid 1px #D9D9D9;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
}
main section .reference2 *:last-child{
	margin-bottom: 0px;
}
main section .reference2 .icon{
	margin-right: 20px;
	width: 10%;
}
main section .reference2 p{
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 24px */
	letter-spacing: 0.56px;
	width: 100%;
}
main section .detail{
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}
main section .detail p{
	margin-bottom: 0px;
}
main section .detail p:first-child{
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 18.75px */
	letter-spacing: 0.5px;
	color: #303185;
	padding: 4px 4px 4px 12px;
	background: rgba(48,49,133,0.15);
	position: relative;
}
main section .detail p:first-child::before{
	position: absolute;
    top: -1px;
	right: -14px;
    content: "";
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid rgba(48,49,133,0.15);
    z-index: 1;
}
main section .detail a{
	margin-left: 20px;
	text-decoration: underline;
	color: #447BE9;
	font-size:1.4rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 21px */
	letter-spacing: 0.56px;
}
main section .icon{
	display: flex;
	align-items: center;
}
main section .icon img{
	width: 20px;
	height: 20px;
}
main section .icon5 img{
	width: 31px;
	height: 31px;
}
main section .icon p{
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 22.5px */
	letter-spacing: 0.6px;
	margin-left: 0px;
	margin-bottom: 0px;
}
main section .icon1 p{
	color: #303185;
}
main section .icon2 p{
	color: #00692D;
}
main section .icon3 p{
	color: #E8A200;
}
main section .icon4 p{
	color: #EB0A1E;
}
main section .icon5 p{
	color: #303185;
	font-size: 1.6rem;
}
main section .col_img{
	margin-bottom: 30px;
}
main section .table{
	margin-bottom: 53px;
}
main section .table > p{
	margin-bottom: 12px;
}
main section .table table{
	border-collapse: collapse;
    width: 100%;
}
main section .table table th, main section .table table td {
    border: 1px solid #ccc;
    padding: 8px 16px;
    text-align: left;
}
main section .table table .dark_gray{
	background: #666666;
}
main section .table table .gray{
	background: #F9F9F9;
}
main section .table table th p{
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 21px */
	letter-spacing: 0.56px;
	margin-bottom: 0px;
	color: #fff;
}
main section .table table td p{
	margin-bottom: 16px;
}
main section .table table .detail p,main section .table table .icon p{
	margin-bottom: 0px;
}

/*インデント*/
.ind1{
	text-indent: -20px;
    margin-left: 20px;
}
.ind2{
	text-indent: -25px;
    margin-left: 25px;
}
/*pdfクリック*/
main section .pdf_img{
	position: relative;
	display: block;
}
main section .pdf_img::before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
}
main section .pdf_img::after{
	content: "";
	width: 93px;
	height: 88px;
	background: url("../img/common/pdf_click.png");
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
@media screen and (min-width: 1360px) {
    #template main section {
        margin: 40px auto;
        font-size: 0;
    }
}