@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
* {
	margin: 0;
	padding: 0;
	vertical-align: top;
}

@font-face {
	font-family: 'lifull';
	src:
		url('../font/LIFULLFONT-Heavy.otf?5mfine') format('opentype'),
		url('../font/LIFULLFONT-Heavy.woff?5mfine') format('woff');
	font-weight: 900;
	font-style: normal;
}
@font-face {
	font-family: 'lifull';
	src:
		url('../font/LIFULLFONT-Bold.otf?5mfine') format('opentype'),
		url('../font/LIFULLFONT-Bold.woff?5mfine') format('woff');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'lifull';
	src:
		url('../font/LIFULLFONT-Medium.otf?5mfine') format('opentype'),
		url('../font/LIFULLFONT-Medium.woff?5mfine') format('woff');
	font-weight: 500;
	font-style: normal;
}

html {
	scroll-behavior: smooth;
}
body#ver2 {
	font-family: "lifull", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", Meiryo, sans-serif;
	font-size: min(3.2vw, 14px);
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-weight: 500;
	color: #3e3e3e;
}

p, h1, h2, h3, h4, th, td, li, dt, dd, figcaption, input, select, textarea {
	/*font-size: 14px;
	line-height: 1.8;*/
	font-weight: normal;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
}

a {
	color: #3e3e3e;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}

ul, ol {
	list-style-type: none;
}

.hidden-parts {
	display: none;
}

#ver2 .ico-pdf {
	position: relative;
	padding-right: 20px;
}
#ver2 .ico-pdf::after {
	width: 12px;
	height: 17px;
	content: "";
	display: inline-block;
	background: url(../images/ico_pdf.png) no-repeat 0 0 / contain;
	position: absolute;
	top: -1px;
	right: 0;
}

#ver2 #main {
    position: relative;
    overflow: hidden;
    margin-top: 72px;
}


#ver2 section {
    padding: min(12vw, 80px) 0;
}

#ver2 .contentWrap {
	max-width: 880px;
	margin: 0 auto;
	line-height: 1.8;
	padding: 0 min(5vw, 60px);
}
#ver2 .separate {
	border-top: #ccc solid 1px;
}

#ver2 .cont940 {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media screen and (min-width: 821px) {
	
	#ver2 .pc-none { display: none;}
	
	#ver2 a { transition: all 0.3s ease-out;}
	
}
@media screen and (max-width: 820px) {
	
	#ver2 .sp-none { display: none;}
	
    #ver2 .ico-pdf {
		padding-right: 2em;
	}
	#ver2 .ico-pdf::after {
		width: calc(24 / 750 * 100vw);
		height: calc(34 / 750 * 100vw);
		background: url(../images/ico_pdf.png) no-repeat 0 0 / contain;
	}
	#ver2 .ico-pdf.ico-static {
		padding-right: 0;
	}
	#ver2 .ico-pdf.ico-static::after {
		position: static;
		margin-left: 1em;
	}
    
	#ver2 .cont-sp {
		margin-left: calc(30 / 750 * 100%);
		margin-right: calc(30 / 750 * 100%);
		position: relative;
	}
    
    #ver2 #main {
        margin-top: 56px;
    }
}


/* ////////////////////////////////////////////////////////////////////////////////

	Header

//////////////////////////////////////////////////////////////////////////////// */

#ver2 #header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 16px 40px;
	display: flex;
    align-items: center;
	justify-content: space-between;
	background-color: #fff;
	z-index: 800;
}
#ver2 #header h1 {
	width: 280px;
	line-height: 0;
}

#ver2 #header #hdrNav {
	display: flex;
}
#ver2 #header #hdrNav li {
	margin-left: 30px;
    position: relative;
}
#ver2 #header #hdrNav li a {
    letter-spacing: 1px;
	font-size: 15px;
	font-weight: 700;
	color: #000;
	text-decoration: none;
	line-height: 40px;
	display: block;
	position: relative;
}
#ver2 #header #hdrNav li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	height: 1px;
	width: 0;
	background-color: #fff;
	transform: translateX(-50%);
	transition: all 0.2s ease-out;
}

#ver2 #header #hdrNav li .subNav {
	background-color: rgba(237, 97, 3, 0.5);
	padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
}
#ver2 #header #hdrNav li .subNav li a::after {
	left: 0%;
	transform: translateX(0);
}
/*#header #hdrNav li:hover .subNav {
	opacity: 1;
	height: auto;
}*/
#ver2 #header #hdrNav li .subNav li {
	margin: 0;
    padding: 5px 20px;
}
#ver2 #header #hdrNav li .subNav li:first-child { margin-top: 10px;}
#ver2 #header #hdrNav li .subNav li:last-child { margin-bottom: 10px;}


#ver2 #menuButton {
	display: none;
}


@media print, screen and (min-width:768px) {
	/*#header #hdrNav li a:hover::after {
		width: 100%;
	}*/
	#ver2 #header #hdrNav li a:hover {
		color: #ed6103;
	}
	#ver2 #header #hdrNavWrap {
		display: block !important;
	}
	
	#ver2 #header #hdrNav li .subNav {
		display: none;
	}
}

@media screen and (max-width:767px) {
	
	#ver2 #header {
    	padding: 4vw 4vw;
	}
	#ver2 #header h1 {
		width: 46vw;
    	z-index: 2;
	}
	
	#ver2 #header #hdrNavWrap {
		display: none;
    	z-index: 1;
	}
	#ver2 #header #hdrNav {
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		position: fixed;
		background-color: #fff;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		z-index: 9998;
    	padding: 22vw 11vw 20vw;
		box-sizing: border-box;
	}
	#ver2 #header #hdrNav li {
		margin: 0;
		padding: 1.2em 0;
		font-size: calc(28 / 1250 * 100vh);
		font-weight: 700;
		border-top: solid 1px #f0edeb;
		text-align: center;
		letter-spacing: 1px;
	}
	#ver2 #header #hdrNav li:last-child {
		border-bottom: solid 1px #f0edeb;
	}
	#ver2 #header #hdrNav li a {
		color: #000;
    	font-size: calc(28 / 1250 * 100vh);
		text-align: center;
		line-height: 1.2;
	}
	#ver2 #header #hdrNav li .subNav {
		display: block !important;
		position: static;
		transform: translateX(0);
    	background-color: transparent;
    	padding: 0 0 0 4vw;
	}
	#ver2 #header #hdrNav li .subNav li {
		padding: 0;
	}
	#ver2 #header #hdrNav li .subNav li:first-child,
	#ver2 #header #hdrNav li .subNav li:last-child {
		margin: 0;
	}
	#ver2 #header #hdrNav li .subNav li a {
		color: #ed6103;
		font-size: 3.4vw;
    	line-height: 2.2;
	}
    
    #ver2 #menuButton {
        display: block;
        width: min(10vw, 40px);
        height: min(10vw, 40px);
        position: fixed;
        top: 5px;
        right: 4vw;
        z-index: 9999;
    }
    #ver2 #menuButton span {
        display: block;
        background: #ed6103;
        width: 100%;
        height: 2px;
        position: absolute;
        top: 50%;
        left: 0;
        transition: all 0.4s;
    }
    #ver2 #menuButton span:nth-child(1) { transform: translateY(-350%) rotate(0deg);}
    #ver2 #menuButton span:nth-child(2) { transform: translateY(250%) rotate(0deg);}
    #ver2 #menuButton span:nth-child(3) { transform: translateY(-50%);}
    #ver2 #menuButton.active span:nth-child(1) { transform: translateY(-50%) rotate(45deg);}
    #ver2 #menuButton.active span:nth-child(2) { transform: translateY(-50%) rotate(-45deg);}
    #ver2 #menuButton.active span:nth-child(3) { opacity: 0;}
}



/* ////////////////////////////////////////////////////////////////////////////////

	Footer

//////////////////////////////////////////////////////////////////////////////// */

#ver2 #footer p,
#ver2 #footer a {
	color: #fff;
}
#ver2 #footer a.orange {
	color: #ff9d5c;
	text-decoration: underline;
}

#ver2 #footer .link-list {
	display: flex;
    justify-content: center;
    gap: 0 5%;
}
#ver2 #footer .link-list li {
	white-space: nowrap;
}
#ver2 #footer .link-list-pdf {
	margin-top: 24px;
	gap: 0 3%;
}
#ver2 #footer .block2 {
    padding: 0;
}
#ver2 #footer .block2 .link-list li + li {
    margin: 0;
}


@media print, screen and (min-width:820px) {
	#ver2 #footer a {
		transition-property: color;
		transition-duration: 0.2s;
		transition-timing-function: ease-in-out;
	}
	#ver2 #footer a:hover {
		color: #ff9d5c;
	}
	#ver2 #footer a.orange:hover,
	#ver2 #footer a.donation:hover {
		color: #fff;
	}
}

@media screen and (max-width:920px) {
	
/*
	#footer .link-list {
		width: 45%;
	}
	#footer .link-list li {
		font-size: 13px;
	}
	#footer .link-list li + li {
		margin-left: 4.5%;
	}
	#footer .link-list .ico-pdf {
		padding-right: 22px;
	}
*/
	
}
@media screen and (max-width:820px) {
	#ver2 #footer .link-list {
		display: block;
		flex-wrap: wrap;
     	justify-content: left;
     	width: 100%;
	}
	#ver2 #footer .link-list li {
		width: 100%;
		margin-bottom: calc(30 / 750 * 100vw);
		white-space: normal;
		font-size: calc(26 / 750 * 100vw);
		line-height: 1.6;
		text-align: center;
	}
	#ver2 #footer .link-list li + li {
		margin-left: 0;
	}
    
    #ver2 #footer .block2 .link-list li + li {
		margin-bottom: calc(30 / 750 * 100vw);
    }
	
}

#ver2 #footer {
	padding: 47px 0 59px;
	background-color: #333;
    overflow: hidden;
}
#ver2 #footer .link-list li {
	font-size: min(3vw, 12px);
}
#ver2 #footer .about {
	width: 100%;
	margin-top: 50px;
	display: table;
	text-align: center;
	border: solid 1px #5a5a5a;
	color: #fff;
}
#ver2 #footer .about dt,
#ver2 #footer .about dd {
	padding: 20px 0;
	display: table-cell;
	vertical-align: middle;
}
#ver2 #footer .about dt {
	width: 325px;
}
#ver2 #footer .about dt .text-wrap {
	display: inline-block;
}
#ver2 #footer .about dt .small {
	font-size: min(2.9vw, 11px);
	display: inline-block;
	vertical-align: baseline;
}
#ver2 #footer .about dt .large {
	margin-left: 0.7em;
	font-size: 14px;
	display: inline-block;
	vertical-align: baseline;
}
#ver2 #footer .about dd {
	padding-left: 15px;
	padding-right: 15px;
	font-size: 11px;
	line-height: 1.6;
}
#ver2 #footer .copyright {
	margin-top: 32px;
	color: #999;
	font-size: 9px;
	text-align: center;
}

@media screen and (max-width:820px) {
	#ver2 #footer {
		padding: calc(65 / 750 * 100vw) 0;
	}
	#ver2 #footer .link-list {
		justify-content: flex-start;
     	display: flex;
	}
	#ver2 #footer .link-list li {
		font-size: calc(24 / 750 * 100vw);
		width: 100%;
		text-align: center;
	}
	#ver2 #footer .link-list li + li {
		margin-left: 0;
	}
	#ver2 #footer .link-list-pdf {
		margin-top: 0;
	}
	#ver2 #footer .about {
		margin-top: calc(10 / 750 * 100vw);
		display: block;
	}
	#ver2 #footer .about dt,
	#ver2 #footer .about dd {
		height: calc(140 / 750 * 100vw);
		padding: 0;
		display: block;
		box-sizing: border-box;
	}
	#ver2 #footer .about dt {
		width: 100%;
		padding-top: calc(50 / 750 * 100vw);
	}
	#ver2 #footer .about dt .small {
		font-size: calc(22 / 750 * 100vw);
	}
	#ver2 #footer .about dt .large {
		font-size: calc(28 / 750 * 100vw);
	}
	#ver2 #footer .about dd {
		padding: calc(30 / 750 * 100vw) 0 0;
		border-left: none;
		border-top: solid 1px #5a5a5a;
		font-size: calc(22 / 750 * 100vw);
     	line-height: 1.6;
	}
	#ver2 #footer .copyright {
		margin-top: calc(70 / 750 * 100vw);
		font-size: calc(16 / 750 * 100vw);
	}
}


#ver2 #pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	z-index: 11;
	opacity: 0;
	transition: all 0.4s ease-out;
}
#ver2 #pagetop.on {
	opacity: 1;
}
#ver2 #pagetop a {
	display: block;
	background: #ed6103 url(../images/arrow_pagetop.png) no-repeat center center;
	background-size: 27%;
	height: 100%;
	width: 100%;
	border-radius: 5px;
}
#ver2 #pagetop a:hover {
	opacity: 0.6;
}

@media screen and (max-width:820px) {
	#ver2 #pagetop {
		bottom: 4vw;
		right: 3vw;
		width: 12vw;
		height: 12vw;
	}
}


/* -------------------------------------------------
	headline
------------------------------------------------- */

#ver2 h2.headline {
    color: #ed6103;
    font-size: min(5.8vw, 28px);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: min(6vw, 40px);
    text-align: left;
}

#ver2 h2.squareBrackets {
    text-align: center;
    font-size: min(4.8vw, 36px);
    font-weight: bold;
    margin-bottom: min(10vw, 80px);
    position: relative;
    color: #ed6103;
}
#ver2 h2.squareBrackets::before,
#ver2 h2.squareBrackets::after {
    content: "";
    display: block;
    width: 39px;
    height: 39px;
    position: absolute;
    top: 0;
}
#ver2 h2.squareBrackets::before {
    left: 0;
    background: url(../images/mv_frame_lt.svg) no-repeat left top;
    background-size: contain;
}
#ver2 h2.squareBrackets::after {
    right: 0;
    background: url(../images/mv_frame_rt.svg) no-repeat right top;
    background-size: contain;
}
#ver2 h2.squareBrackets span {
    position: relative;
    display: block;
    padding: min(5vw, 30px) min(5vw, 60px);
}
#ver2 h2.squareBrackets span::before,
#ver2 h2.squareBrackets span::after {
    content: "";
    display: block;
    width: 39px;
    height: 39px;
    position: absolute;
    bottom: 0;
}
#ver2 h2.squareBrackets span::before {
    left: 0;
    background: url(../images/mv_frame_lb.svg) no-repeat left bottom;
    background-size: contain;
}
#ver2 h2.squareBrackets span::after {
    right: 0;
    background: url(../images/mv_frame_rb.svg) no-repeat right bottom;
    background-size: contain;
}

#ver2 h3.simpleHeadline {
	text-align: center;
	font-size: min(3.8vw, 20px);
	font-weight: bold;
	margin-bottom: min(6vw, 40px);
}
#ver2 h3.simpleHeadline_s {
	text-align: center;
	font-size: min(3.8vw, 20px);
	font-weight: bold;
	margin-bottom: min(6vw, 40px);
}

#ver2 .btn-style1 {
	max-width: 340px;
	margin: 0 auto;
    height: auto;
    box-sizing: border-box;
    display: block;
    border: none;
    border-radius: 0px;
}
#ver2 .btn-style1 a {
    display: block;
    background: #ed6103;
    border: #ed6103 solid 1px;
    border-radius: 6px;
    padding: 0.6em;
    position: relative;
    overflow: hidden;
    text-align: center;
	font-size: min(3.6vw, 18px);
	color: #fff;
	font-weight: bold;
}
#ver2 .btn-style1 a:hover {
    background-color: #B04100;
    border: #B04100 solid 1px;
    color: #fff;
}

#ver2 .btn-style2 {
	max-width: 340px;
	margin: 0 auto;
    height: auto;
    background: transparent;
    box-sizing: border-box;
    display: block;
    color: #fff;
    border-radius: 0px;
    border: none;
}
#ver2 .btn-style2 a {
    display: block;
    background: #fff;
    border: #ed6103 solid 1px;
    border-radius: 6px;
    padding: 0.6em;
    position: relative;
    overflow: hidden;
    text-align: center;
	font-size: min(3.6vw, 18px);
	color: #ed6103;
	font-weight: bold;
}
#ver2 .btn-style2 a:hover {
    background-color: #F39A5E;
    border: #F39A5E solid 1px;
    color: #fff;
}

#ver2 .btn-style3 {
	max-width: 340px;
    margin-top: min(6vw, 30px);
}
#ver2 .btn-style3 a {
    display: block;
    background: #ed6103;
    border-radius: 6px;
    padding: 0.6em 3em 0.6em 4.2em;
    position: relative;
    overflow: hidden;
    text-align: center;
	font-size: min(3.4vw, 15px);
	color: #fff;
	font-weight: bold;
}
#ver2 .btn-style3 a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 2em;
    display: block;
    width: 9px;
    height: 9px;
    border-right: #fff solid 2px;
    border-top: #fff solid 2px;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.2s ease-out;
}
#ver2 .btn-style3 a:hover {
    background: #B04100;
}

#ver2 .detailLink {
    text-align: right;
    margin-top: min(6vw, 30px);
}
#ver2 .detailLink a {
    position: relative;
    display: inline-block;
    color: #ED6104;
    text-decoration: none;
    padding: 0 0 0 25px;
    font-size: min(3.6vw, 16px);
    font-weight: bold;
    border: none;
}
#ver2 .detailLink a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 9px;
    height: 9px;
    border-bottom: none;
    border-right: #ed6103 solid 2px;
    border-top: #ed6103 solid 2px;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.2s ease-out;
}
#ver2 .detailLink a:hover {
    color: #B04100;
    background-color: transparent;
}
#ver2 .detailLink a:hover::after {
    border-right: #B04100 solid 2px;
    border-top: #B04100 solid 2px;
}

#ver2 .blankLink {
    display: inline-flex;
    align-items: center;
    color: #ed6103;
    text-decoration: underline;
}
#ver2 .blankLink::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url("../images/ico_blank.svg") no-repeat center center;
    background-size: contain;
    margin-left: 0.4em;
}
#ver2 .blankLink:hover {
    color: #B04100;
}
#ver2 .blankLink:hover::after {
    background: url("../images/ico_blank_hover.svg") no-repeat center center;
    background-size: contain;
}

#ver2 .pageHead {
    display: flex;
    align-items: center;
}
#ver2 .pageHead .txtArea {
    width: 50%;
    padding: 5%;
    box-sizing: border-box;
}
#ver2 .pageHead .txtArea .logo {
    margin-bottom: min(7vw, 40px);
}
#ver2 .pageHead .txtArea .logo img {
    height: 4.2vw;
    width: auto;
}
#ver2 .pageHead .txtArea p {
    font-size: 1.4vw;
    font-weight: bold;
}
#ver2 .pageHead .btn-style1 {
    margin: min(6vw, 30px) 0 0;
}
#ver2 .pageHead .btn-style2 {
    margin: min(4vw, 20px) 0 0;
}
#ver2 .pageHead .imgArea {
    width: 50%;
    line-height: 0;
}


@media screen and (max-width:820px) {
    
    #ver2 h2.headline {
        font-size: 24px;
    }
    #ver2 h2.squareBrackets {
        font-size: 20px;
    }
    #ver2 h2.squareBrackets::before,
    #ver2 h2.squareBrackets::after,
    #ver2 h2.squareBrackets span::before,
    #ver2 h2.squareBrackets span::after {
        width: 25px;
        height: 25px;
    }
    
    #ver2 h3.simpleHeadline {
        font-size: 18px;
    }
    #ver2 h3.simpleHeadline_s {
        font-size: 16px
    }
    
    #ver2 .btn-style1 a,
    #ver2 .btn-style2 a {
        padding: 0.8em;
        font-size: 16px;
    }
    #ver2 .btn-style3 {
        margin-left: auto;
        margin-right: auto;
    }
    
    #ver2 .pageHead {
        flex-direction: column-reverse;
    }
    #ver2 .pageHead .txtArea {
        width: 100%;
        padding: 6%;
    }
    #ver2 .pageHead .txtArea .logo {
        text-align: center;
    }
    #ver2 .pageHead .txtArea .logo img {
        height: 8.6vw;
    }
    #ver2 .pageHead .txtArea p {
        font-size: 16px;
    }
    #ver2 .pageHead .imgArea {
        width: 100%;
    }
    #ver2 .pageHead .btn-style1 {
        margin: min(8vw, 60px) auto 0;
    }
    #ver2 .pageHead .btn-style2 {
        margin: min(4vw, 20px) auto 0;
    }
    
}

#ver2 .table02 {
	display: flex;
	flex-wrap: wrap;
	border-top: #e2e2e2 solid 1px;
	border-left: #e2e2e2 solid 1px;
	border-right: #e2e2e2 solid 1px;
	margin-bottom: 60px;
}
#ver2 .table02 dt {
	background-color: #f4f4f4;
	padding: 10px 15px;
	font-size: 15px;
	font-weight: 700;
	border-bottom: #e2e2e2 solid 1px;
	width: 180px;
	box-sizing: border-box;
}
#ver2 .table02 dd {
	padding: 10px 25px;
	font-size: 15px;
	border-bottom: #e2e2e2 solid 1px;
	width: calc(100% - 180px);
	box-sizing: border-box;
}
#ver2 .table02 dd a {
    color: #ed6103;
    text-decoration: underline;
}
#ver2 .table02 dd a:hover {
    text-decoration: none;
}
#ver2 .table02 dd a.linkBlack {
    color: #3e3e3e;
}

#ver2 .table02 dd ul {
    list-style: disc;
    padding-left: min(4vw, 20px);
}
#ver2 .table02 dd ul li + li {
    margin-top: min(2vw, 10px);
}

#ver2 .faq dt {
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid #707070;
	padding: min(7vw, 40px);
	position: relative;
	transition: all .3s ease-in-out;
}
#ver2 .faq dt.open {
	border-bottom: 0;
}
#ver2 .faq dd {
	font-size: min(3.4vw, 16px);
	background-color: #FEF3EB;
	padding: min(6vw, 30px);
	display: none;
}
#ver2 .faq dt.open + dd {
	border-bottom: 1px solid #707070;
}
#ver2 .faq dt:before {
  position: absolute;
  content: '';
  top: 57px;
  left: 13px;
  height: 2px;
  width: 14px;
  background: #333;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
#ver2 .faq dt:after {
  position: absolute;
  content: '';
  top: 57px;
  left: 13px;
  height: 2px;
  width: 14px;
  background: #333;
  transition: all .3s ease-in-out;
}
#ver2 .faq dt.open:before {
  transform: rotate(180deg);
}
#ver2 .faq dt.open:after {
  opacity: 0;
}

#ver2 .history {
    position: relative;
}
#ver2 .history::before {
    content: "";
    display: block;
    height: calc(100% - 50px);
    width: 3px;
    background-color: #FDF3EB;
    position: absolute;
    top: 50px;
    left: 100px;
    z-index: 0;
}
#ver2 .history li {
    border-bottom: #FEF3EB solid 1px;
    padding: min(5vw, 40px) 0;
    display: flex;
    position: relative;
    z-index: 1;
}
#ver2 .history li .year {
    width: 100px;
    color: #ED6103;
    font-size: min(4vw, 20px);
    font-weight: 700;
    line-height: 1.5;
}
#ver2 .history li .topics {
    width: calc(100% - 100px);
    box-sizing: border-box;
}
#ver2 .history li .topics > div {
    padding-left: 60px;
    position: relative;
    display: flex;
}
#ver2 .history li .topics > div::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #ED6103;
    border-radius: 50%;
    position: absolute;
    top: 0.7em;
    left: -3px;
}
#ver2 .history li .topics > div + div {
    margin-top: min(4vw, 20px);
}
#ver2 .history li .topics .month {
    width: 60px;
    color: #ED6103;
    font-weight: 600;
    font-size: min(3.4vw, 16px);
}
#ver2 .history li .topics .topicTxt {
    width: calc(100% - 60px);
    font-size: min(3.4vw, 16px);
    line-height: 1.6;
}


#ver2 .flow li {
	border-bottom: #e16011 dotted 2px;
	padding-bottom: 40px;
	margin-bottom: 40px;
	position: relative;
}
#ver2 .flow li::after {
	content: "";
	display: block;
	background: #fff url("../images/arrow_down.png") no-repeat center bottom;
	background-size: contain;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 46px;
	height: 36px;
	transform: translate(-50%, 70%);
}
#ver2 .flow li:last-child { border-bottom: none;}
#ver2 .flow li:last-child::after { display: none;}
#ver2 .flow li h4 {
	color: #e16011;
	font-size: 18px;
	font-weight: bold;
	padding-left: 2em;
	position: relative;
	margin-bottom: 15px;
}
#ver2 .flow li h4 span {
	position: absolute;
    top: 0.2em;
	left: 0;
	border: #e16011 solid 2px;
	border-radius: 50%;
	width: 1.6em;
	line-height: 1.6em;
	text-align: center;
	font-size: 14px;
}
#ver2 .flow li p {
    font-size: 16px;
}
#ver2 .flow li p a {
    font-weight: bold;
	background: linear-gradient(0deg, #f4cab3 40%, #fff 41%);
	padding: 0 3px;
}


#ver2 .flowBoxWrap {
    padding: min(22vw,  100px) 0;
    position: relative;
}
#ver2 .flowBoxWrap::before {
    content: "";
    display: block;
    background: #fff url(../images/arrow_down.png) no-repeat center bottom;
    background-size: contain;
    position: absolute;
    top: min(6vw, 30px);
    left: 50%;
    width: 46px;
    height: 36px;
    transform: translateX(-50%);
}
#ver2 .flowBoxWrap::after {
    content: "";
    display: block;
    background: #fff url(../images/arrow_down.png) no-repeat center bottom;
    background-size: contain;
    position: absolute;
    bottom: min(6vw, 30px);
    left: 50%;
    width: 46px;
    height: 36px;
    transform: translateX(-50%);
}
#ver2 .flowBoxList {
    display: flex;
    justify-content: space-between;
    margin-bottom: min(4vw, 20px);
}
#ver2 .flowBoxList li {
    width: 32%;
    border: #e16011 solid 2px;
    padding: min(4vw, 20px);
    box-sizing: border-box;
    border-radius: 8px;
}
#ver2 .flowBoxList li h4 {
    color: #e16011;
    text-align: center;
    font-size: min(5.2vw, 20px);
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: min(2vw, 10px);
}


#ver2 .bdrBoxTxt {
    border: #e16011 solid 2px;
    border-radius: 8px;
    padding: min(5vw, 25px) min(6vw, 30px) min(4vw, 20px);
    margin-bottom: min(10vw, 80px);
    position: relative;
    font-size: min(3.4vw, 16px);
}
#ver2 .bdrBoxTxt h4 {
    position: absolute;
    top: 0;
    left: min(4vw, 20px);
    transform: translateY(-50%);
    background-color: #e16011;
    color: #fff;
    padding: min(1vw, 4px) min(2vw, 10px);
    border-radius: 8px;
    font-weight: bold;
    line-height: 1.6;
}

#ver2 .glayBox {
    background-color: #F8F8F8;
    border-radius: 8px;
    padding: min(4vw, 20px) min(6vw, 30px);
}
#ver2 .glayBox p + p {
    margin-top: min(2vw, 10px);
}


#ver2 .ftrContact {
	background-color: #ed6103;
	color: #fff;
    padding: min(8vw, 60px) 0;
}
#ver2 .ftrContact h4 {
	text-align: center;
	font-size: min(3.6vw, 18px);
	font-weight: bold;
	margin-bottom: min(4vw, 20px);
}
#ver2 .ftrContact .telMail {
	display: flex;
	justify-content: space-between;
    border: #fff solid 1px;
    margin-top: min(6vw, 30px);
    padding: 0;
}
#ver2 .ftrContact .telMail > div {
    width: 50%;
    padding: min(3vw, 10px);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 3%;
}
#ver2 .ftrContact .telMail > div p {
	font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.06em;
    text-align: center;
}
#ver2 .ftrContact .telMail > div a {
    color: #fff;
    text-decoration: none;
}

#ver2 .ftrContact .telMail .tel {
    font-size: min(4.6vw, 20px);
}
#ver2 .ftrContact .telMail .tel::before {
    content: "";
    display: block;
	background: url("../images/ico_tel.svg") no-repeat center center;
    background-size: contain;
    width: 8%;
    padding-top: 8%;
}
#ver2 .ftrContact .telMail .tel span {
    display: block;
    font-size: 0.6em;
    font-weight: normal;
}
#ver2 .ftrContact .telMail .mail {
    font-size: min(3.5vw, 17px);
}
#ver2 .ftrContact .telMail .mail::before {
    content: "";
    display: block;
	background: url("../images/ico_mail.svg") no-repeat center center;
    background-size: contain;
    width: 10%;
    padding-top: 10%;
}

#ver2 #contact {
    background-color: #ED6104;
    padding: min(8vw, 50px) 0;
}
#ver2 #contact p {
    text-align: center;
    color: #fff;
    font-size: min(3.8vw, 18px);
    font-weight: bold;
    margin-bottom: min(6vw, 30px);
}

#ver2 #faq {
    border-top: #ccc solid 1px;
}

#ver2 .boxType02 img {
    width: 100%;
}


@media screen and (min-width:821px) {
	#ver2 .faq dt:hover {
		color: #ed6103;
		cursor: pointer;
		transition: all .3s ease-in-out;
	}
	#ver2 .faq dt:hover:before,
	#ver2 .faq dt:hover:after {
		background: #ed6103;
	}
    
    #ver2 .ftrContact .telMail > div:first-child {
        border-right: #fff solid 1px;
    }
    #ver2 .ftrContact .telMail > div a:hover {
        color: #F39A5E;
    }
}
@media screen and (max-width:820px) {
    
	#ver2 .table02 {
		display: block;
		margin-bottom: 10vw;
	}
	#ver2 .table02 dt {
		padding: 2vw 4vw;
		font-size: 16px;
		width: 100%;
	}
	#ver2 .table02 dd {
		padding: 2vw 4vw;
		font-size: 14px;
		width: 100%;
	}
    
    #ver2 .faq h3 {
		font-size: 18px;
	}
	#ver2 .faq dt {
		font-size: 14px;
		padding: 18px 25px 18px 30px;
	}
	#ver2 .faq dd {
		padding: 25px 25px 25px 30px;
	}
	#ver2 .faq dt:before,
	#ver2 .faq dt:after {
		left: 8px;
		top: calc(18px + 2.8vw);
	}
    
    
    #ver2 .history::before {
        height: calc(100% - 38px);
        width: 2px;
        top: 38px;
        left: 70px;
    }
    #ver2 .history li {
        padding: min(6vw, 40px) 0;
    }
    #ver2 .history li .year {
        width: 70px;
        font-size: min(4vw, 20px);
    }
    #ver2 .history li .topics {
        width: calc(100% - 70px);
    }
    #ver2 .history li .topics > div {
        padding-left: 35px;
    }
    #ver2 .history li .topics > div::before {
        width: 8px;
        height: 8px;
        top: 0.7em;
        left: -3px;
    }
    #ver2 .history li .topics > div + div {
        margin-top: min(4vw, 20px);
    }
    #ver2 .history li .topics .month {
        width: 45px;
        font-size: 14px;
    }
    #ver2 .history li .topics .topicTxt {
        width: calc(100% - 45px);
        font-size: 14px;
    }
    
	
	#ver2 .flow li {
		padding-bottom: 5vw;
		margin-bottom: 8vw;
	}
	#ver2 .flow li::after {
		width: 10vw;
		height: 6vw;
	}
	#ver2 .flow li h4 {
		font-size: 16px;
		padding-left: 2em;
		margin-bottom: 4vw;
	}
	#ver2 .flow li h4 span {
		font-size: 3.2vw;
	}
	#ver2 .flow li p {
		font-size: 16px;
	}
    
    #ver2 .flowBoxList {
        flex-direction: column;
        gap: min(4vw, 20px);
    }
    #ver2 .flowBoxList li {
        width: 100%;
    }
    #ver2 .flowBoxList li p {
        font-size: 16px;
    }
    
    #ver2 .bdrBoxTxt h4,
    #ver2 .bdrBoxTxt p {
        font-size: 16px;
    }
    
    #ver2 .glayBox p {
        font-size: 16px;
    }
    
    #ver2 .ftrContact .telMail {
        display: flex;
        flex-direction: column;
    }
    #ver2 .ftrContact .telMail > div {
        width: 100%;
    }
    #ver2 .ftrContact .telMail > div:first-child {
        border-bottom: #fff solid 1px;
    }
    #ver2 .ftrContact .telMail .tel::before {
        width: 9%;
        padding-top: 9%;
    }
    #ver2 .ftrContact .telMail .mail {
        padding: min(4vw, 20px) min(3vw, 10px);
    }
    #ver2 .ftrContact .telMail .mail::before {
        width: 9%;
        padding-top: 10%;
    }
    #ver2 .ftrContact h4 {
        font-size: 16px;
    }
    
    
    #ver2 #contact p {
        font-size: 16px;
    }
    
}
