@charset "utf-8";
/* CSS Document */

.question_menu {
	border-bottom: 2px solid #006cb9;
	width: 1130px;
	margin: 0 auto 60px;
	justify-content: space-between;
	padding-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.question_menu_ttl {
	color: #006cb9;
	font-size: 24px;
	font-weight: 500;
}
.question_menu_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: 60px;
}
.question_menu_btn li {
	width: 220px;
	margin-left: 25px;
}
.question_menu_btn li:first-child {
	margin-left: 0;
}
.question_menu_btn li a {
	font-size: 15px;
	color: #006cb9;
	background-color: #D1E9F2;
	text-align: center;
	height: 60px;
	display: block;
	font-weight: 500;
	padding: 5px 0 0;
	background-image: url(image/i_anchor.png);
	background-position: center bottom 10px;
	background-repeat: no-repeat;
	transition:.3s;
}
.question_menu_btn li a:hover {
	background-color: #f0f6f9;
}
.question_box_wrap {
	background-color: #fff;
	box-shadow: 0px 0px 13px #e0e0e0;
	padding: 50px 0 10px;
	margin: 0 auto 50px;
}
.question_box_wrap h2 {
	color: #006cb9;
	font-size: 24px;
	font-weight: 500;
	padding: 30px 0 30px 30px;
	width: 100%;
	position: relative;
}
.question_box_wrap h2:after {
	content: "";
	width:60%;
	height: 2px;
	background: #006cb9;
	position: absolute;
	top:50%;
	right:-10px;
	transform: translate(0,-50%);
}
.question_box {
	margin: 0 70px 55px 70px;
	justify-content: space-between;
}
section.question03 .question_box_wrap {
	margin-bottom: 0;
}
section.question03 h2 {
	color: #006cb9;
	font-size: 24px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-top: 35px;
	padding-bottom: 45px;
}
section.question03 h2:after {
	width: 880px;
}
.question_box_wrap h3 {
	color: #006cb9;
	font-size: 20px;
	font-weight: 500;
	padding: 10px 10px 13px 40px;
	border: 1px solid;
	margin: 0 50px 30px;
}
/*アコーディオン*/
.accordion-area_qa li {
	margin-bottom: 25px;
}
.accordion-area_qa section {
}
/*アコーディオンタイトル*/
.accordion-title {
	position: relative;
	cursor: pointer;
	padding: 10px 50px 10px 20px;
	transition: all .5s ease;
	font-weight: 500;
	background-color: #d1e9f2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
/*アイコンの＋と×*/
.accordion-title::after {
	position: absolute;
	content:'';
}
.accordion-title::after {
	top: 48%;
	right: 14px;
	transform: rotate(0deg);
	content: "";
	margin: 0 9px 2px 0px;
	background-image: url(image/i_anchor.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	width: 14px;
	height: 9px;
}
/*　closeというクラスがついたら形状変化　*/
.accordion-title.close::after {
	transform: rotate(180deg);
	margin-top: -2px;
}
/*アコーディオンで現れるエリア*/
.accordion-box {
	display: none;/*はじめは非表示*/
	padding: 20px;
	border-bottom: 1px #006cb9 solid;
}
.accordion-box-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.q {
	font-size: 24px;
	font-weight: bold;
	color: #006cb9;
	line-height: 1;
	margin-right: 20px;
	font-family: 'DM Sans', sans-serif;
}
.answer {
	margin-right: 15px;
}
.a {
	background: #f4f1d3;
	width: 35px;
	height: 35px;
	display: block;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	padding-top: 6px;
	color: #006cb9;
	font-family: 'DM Sans', sans-serif;
}
@media screen and (max-width: 768px) {
.question_menu {
	width: 100%;
	display: block;
	margin: 0 auto 40px;
}
.question_menu_ttl {
	font-size: clamp(20px, 4.3vw, 24px);
	margin-bottom: 15px;
	text-align: center;
}
.question_menu_btn {
	margin-right: 0;
}
.question_menu_btn li {
	width: 31.3%;
	margin-left: 3%;
}
.question_box_wrap {
	padding: 10px 0;
	margin: 0 0 4%;
}
.question_box_wrap h2 {
	font-size: clamp(20px, 4.3vw, 24px) !important;
	display: block;
	margin: 0 0 20px;
	padding: 10px 20px;
	position: relative;
}
.question_box_wrap h2:after {
	content: "";
    background: #006cb9;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom:0;
	left: 0;
	top:unset;
}
.question_box_wrap h3 {
	padding: 8px 10px 11px 20px;
	margin: 0 20px 20px;
	font-size: clamp(16px, 4.3vw, 20px);
}
.question_box {
	margin: 0 20px 30px 20px;
}
.accordion-area_qa li {
	margin-bottom: 15px;
}
}
@media screen and (max-width: 520px) {
.question_menu_btn li a {
	font-size: 12px;
	height: 54px;
}
}

@media screen and (min-width: 769px) {
main{
	background: url(image/title.png);
    background-repeat: no-repeat;
    background-size: 400px;
    background-position: top left;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
}
main:after{
	content: "Question";
	color: rgba(0, 108, 185, 0.1);
	font-size: 120px;
	font-weight: bold;
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translate(0,-50%);
	z-index: -1;
}
main .maininner{
	margin: 0 auto;
    max-width: 1200px;
    width: 95%;
    position: relative;
    padding: 100px 0;
}
main .maintitle{
	background: rgba(255, 255, 255, 0.4);
    border-left: 10px solid #299acc;
    padding: 15px 0 15px 30px;
    width: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
}
main .maintitle h1{
	color: #299acc;
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 10px;
}
main .maintitle span{
	font-size:18px;
}
}
@media screen and (max-width: 768px) {
article#main{
	overflow: hidden;
}
main{
	background: url(image/title.png);
    background-repeat: no-repeat;
    background-size: 400px;
    background-position: top left;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
}
main:after{
	content: "Question";
    color: rgba(0, 108, 185, 0.1);
    font-size: 48px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    right: -8px;
    z-index: -1;
}
main .maininner{
	margin: 0 auto;
    width: 95%;
    position: relative;
    padding: 32% 0;
}
main .maintitle{
	background: rgba(255, 255, 255, 0.4);
    border-left: 8px solid #299acc;
    padding: 15px 0 15px 15px;
    width: fit-content;
    position: absolute;
    top: 30%;
    left: 0;
}
main .maintitle h1{
	color: #299acc;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 10px;
}
main .maintitle span{
	font-size:14px;
}
}