@charset "utf-8";

/* -----------------------------------------------------------
CSS Information

 File name:      style.css
 Style Info:     TOP以外のページの共通要素
----------------------------------------------------------- */
html {
	font-size: 62.5%;
}
img {
	max-width: 100%;
	height: auto;
}

a, a:hover {
	text-decoration: none;
}


/*** コンテンツ ***/
#contents_wrapper {
	background: #FFF;
	font-family: "秀英にじみ丸ゴシック B", "Shuei NijimiMGo B","秀英丸ゴシック B","Shuei MaruGo B","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
	font-size: 1.6rem;
	line-height:1.5;
	/*overflow: hidden;*/
	background: #62b4e5;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: relative;
}

/*** テキスト ***/
.contents_txt {
	font-family: "秀英にじみ丸ゴシック L", "Shuei NijimiMGo L","秀英丸ゴシック L","Shuei MaruGo L","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
	font-size: 1.5rem;
	text-align: left;
	position: relative;
	font-weight: normal;
	z-index: 1;
}

/*** メイン ***/
.main_wrap {
	position: relative;
	overflow: hidden;
}
.main {
	position: relative;
	width: 200%;
	height: auto;
	margin: 0 auto;
	padding: 60px 10px 20px;
	margin-top: -50px;
	box-sizing: border-box;
	background: #FFF;
	transform: translateX(-25%);
  	border-radius: 50% 50% 50% 50% / 0% 0% 100% 100%;
	overflow: hidden;
	text-align: center;
	animation: circleIn 0.5s ease-in .5s forwards;
    box-shadow: 0px 6px 10px -10px #777777;
}
.main_contents {
	width: 350px;
	margin: 0 auto;
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
}
h1 p:first-child {
    width: 250px;
    padding-right: 15px;
    box-sizing: border-box;
}
h1 p:last-child {
    width: 100px;
}


.section {
	margin: 2em 0 0;
}
.section#start {
	overflow: hidden;
}


/*****Q&A*****/
.section {
    margin-bottom: 40px;
}
.box_qa {
    width: 95%;
    margin: 0 auto;
    margin-top: 4em;
}

.box_qa h2 {
    text-align: center;
}
.box_qa h2 p {
    text-align: center;
    line-height: 1.0;
}
.box_qa h2 p img {
    width: auto;
    height: 60px;
}
.box_qa h2 p.h2_title {
    font-weight: bold;
}

.box_qa .qa_wrap {
    margin: 2em 0;
}

.box_qa .qa_wrap > li {
    margin-bottom: 15px;
    cursor: pointer;
    padding: 5px;
    background: #FFF;
    box-shadow: 1px 2px 3px 0px rgba(17,17,26,0.08);
    border-radius: 8px;
    
}
.box_qa .qa_wrap li .question {
    position: relative;
    padding-left: 40px;
}
.box_qa .qa_wrap li .question:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 35px;
    background: url("../img/icon_q.png") no-repeat;
    background-size: contain;
}
.box_qa .qa_wrap li .question p {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
    padding: 10px 30px 5px 0;
    position: relative;
}
.box_qa .qa_wrap li .question p:before, .box_qa .qa_wrap li .question p:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    background: #60abd8;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .7s;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
.box_qa .qa_wrap li .question p:after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform .7s;
}
.box_qa .qa_wrap li.active .question p:before {
     opacity: 0;   
}
.box_qa .qa_wrap li.active .question p:after {
    transform: translateY(-50%) rotate(180deg);
}

.box_qa .qa_wrap li .answer {
    display: none;
    margin-top: 10px;
    background: #f6f6f6;
    padding: 15px 10px;
    border-radius: 12px;
    padding-left: 50px;
    position: relative;
    box-sizing: border-box;
}
.box_qa .qa_wrap li .answer:before {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 35px;
    height: 35px;
    background: url("../img/icon_a.png") no-repeat;
    background-size: contain;
}
.box_qa .qa_wrap li .answer p {
    line-height: 1.4;
}

/*list*/
.box_qa .qa_wrap li .answer .list li {
    text-align: left;
    margin: 10px 0;
    position: relative;
}

.box_qa .qa_wrap li .answer .list li .bold {
    color: #62b4e5;
    font-weight: bold;
}
.box_qa .qa_wrap li .answer .asterisk {
    font-size: 14px;
    padding-left: 15px;
    line-height: 1.2;
    margin-top: 5px;
    position: relative;
}
.box_qa .qa_wrap li .answer .asterisk:before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}
.box_qa .qa_wrap li .answer .txt_deco{
    border-bottom: 1px solid #000000;
}



/*list_num*/
.box_qa .qa_wrap li .answer .list_num li {
    padding-left: 25px;
    text-align: left;
    margin: 15px 0;
    counter-increment: num;
    position: relative;
}
.box_qa .qa_wrap li .answer .list_num li h3 {
    line-height: 1.3;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 18px;
}
.box_qa .qa_wrap li .answer .list_num li h3 span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
}

.box_qa .qa_wrap li .answer .list_num li h4 {
    line-height: 1.3;
    margin-top: 15px;
    color: #62b4e5;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
}

.box_caution {
    margin-top: 2em;
    position: relative;
    z-index: 1;
}
.box_caution .box_wrap {
   margin: 0 auto 2em;
   padding: 1em;
   background: none;
   border: 3px solid #ffe403;
   position: relative;
    border-radius: 12px;
}
.box_caution .box_wrap:before {
   content: "";
    width: 3px;
    height: 60px;
    position: absolute;
    display: block;
    background: #f6f6f6;
    top: 80px;
    left: -3px;
}
.box_caution .box_wrap:after {
    content: "";
    display: block;
    background: #fff;
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 7px;
    left: 7px;
    width: 100%;
    height: 100%;
     border-radius: 12px;
    z-index: -1;
}
.box_caution .box_wrap h3 {
    font-weight: bold;
    background: #f6f6f6;
    position: absolute;
    font-size: 16px;
    top:-12px;
    left: 15px;
    line-height: 1.0;
    padding: 0 10px;
}

.box_caution .box_wrap .attention {
    margin-top: 10px;
    padding: 5px;
    text-align: left;
    font-weight: bold;
}

/*btn*/
.btn.yellow {
    text-align: center;
    margin: 30px 0 60px;
}
.btn.yellow a {
    color: #000;
    background: #FFF;
    padding: 10px 50px 8px;
    font-size: 16px;
    border: 3px solid #ffe403;
    font-weight: bold;
    display: inline-block;
    border-radius: 50px;
    line-height: 1.2;
    position: relative;
    transition: all 0.5s;
}

.btn a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 10px;
}
.btn.yellow a:after {
    background: url("../img/icon_arrow_reverse.png") no-repeat;
    background-size: contain;
}

.btn.yellow a:hover {
    background: #ffe403;
}

/*バナーエリア*/
.bnr_area {
	width: 80%;
	margin: 0 auto;
	box-sizing: border-box;
	padding-bottom: 50px;
}
.bnr_area img {
	border: 3px solid #FFF;
	box-shadow: 6px 6px 0px 0px rgba(17, 17, 26, 0.18);
}


.foot {
	position: fixed;
	width: 100%;
	-webkit-filter: drop-shadow(2px -2px 5px rgba(20, 20, 20, 0.1)); /* SafariなどのWebkitブラウザ用 */
	filter: drop-shadow(2px -2px 5px rgba(20, 20, 20, 0.1)); 
	background: url("../img/bg_eclipse.svg") no-repeat;
	background-size: 200%;
	background-position: center top;
	text-align: center;
	padding-bottom: 60px;
	margin-top: -200px;
	z-index: 3;
	bottom: 0;
	visibility: visible;
	opacity: 1;
	transition: all 0.3s ease 0s;
}
.foot.is-hidden {
	visibility: hidden;
	opacity: 0;
}
.foot p {
	position: absolute;
	width: 200px;
	top:-50px;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
.foot p:after {
	content: "ダウンロードはこちらから";
	font-size: 12px;
	display: block;
	text-align: center;
	margin-top: -15px;
	font-weight: bold;
}
.foot p img {
	width: 120px;
	height: 98px;
}

.l-footer_pageTop {
	z-index: 5 !important;
}


/********************************************
タブレット
*********************************************/
@media print, screen and (min-width:390px){
	/*** テキスト ***/
	.contents_txt {
		font-size: 1.6rem;
	}
}

/********************************************
タブレット
*********************************************/
@media print, screen and (min-width:480px){
	/*** メイン ***/
	.main_contents {
		width: 100%;
		margin: 0 auto;
	}

	h1 {
		width: 100%;
		margin: 0 auto;
		margin-top: 0.5em;
		position: relative;
		z-index: 1;
	}
    h1 p:first-child {
        width: 300px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    h1 p:last-child {
        width: 120px;
    }

	.section {
		margin: 2em 0 0;
	}
	.section#start {
		overflow: hidden;
	}
	
	/*****Q&A*****/
    .section {
        margin-bottom: 40px;
    }
    .box_qa {
        width: 95%;
        margin: 0 auto;
        margin-top: 4em;
    }

    .box_qa h2 {
        text-align: center;
    }
    .box_qa h2 p {
        text-align: center;
        line-height: 1.0;
    }
    .box_qa h2 p img {
        width: auto;
        height: 60px;
    }
    .box_qa h2 p.h2_title {
        font-weight: bold;
    }

    .box_qa .qa_wrap {
        margin: 2em 0;
    }

    .box_qa .qa_wrap > li {
        margin-bottom: 15px;
        cursor: pointer;
        padding: 10px;
        background: #FFF;
        box-shadow: 1px 2px 3px 0px rgba(17,17,26,0.08);
        border-radius: 8px;

    }
    .box_qa .qa_wrap li .question {
        position: relative;
        padding-left: 40px;
    }
    .box_qa .qa_wrap li .question:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        width: 35px;
        height: 35px;
        background: url("../img/icon_q.png") no-repeat;
        background-size: contain;
    }
    .box_qa .qa_wrap li .question p {
        font-weight: bold;
        font-size: 16px;
        line-height: 1.2;
        padding: 10px 30px 5px 0;
        position: relative;
    }
    .box_qa .qa_wrap li .question p:before, .box_qa .qa_wrap li .question p:after {
        content: "";
        display: inline-block;
        width: 20px;
        height: 3px;
        background: #60abd8;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: opacity .7s;
        box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.1);
    }
    .box_qa .qa_wrap li .question p:after {
        transform: translateY(-50%) rotate(90deg);
        transition: transform .7s;
    }
    .box_qa .qa_wrap li.active .question p:before {
         opacity: 0;   
    }
    .box_qa .qa_wrap li.active .question p:after {
        transform: translateY(-50%) rotate(180deg);
    }

    .box_qa .qa_wrap li .answer {
        display: none;
        margin-top: 10px;
        background: #f6f6f6;
        padding: 15px 10px;
        border-radius: 12px;
        padding-left: 50px;
        position: relative;
        box-sizing: border-box;
    }
    .box_qa .qa_wrap li .answer:before {
        content: "";
        display: block;
        position: absolute;
        top: 5px;
        left: 5px;
        width: 35px;
        height: 35px;
        background: url("../img/icon_a.png") no-repeat;
        background-size: contain;
    }
    .box_qa .qa_wrap li .answer p {
        line-height: 1.4;
    }

    /*list*/
    .box_qa .qa_wrap li .answer .asterisk {
        font-size: 14px;
        padding-left: 15px;
        line-height: 1.2;
        margin-top: 5px;
        position: relative;
    }
    .box_qa .qa_wrap li .answer .asterisk:before {
        content: "※";
        position: absolute;
        top: 0;
        left: 0;
    }

    /*list_num*/
    .box_qa .qa_wrap li .answer .list_num li {
        padding-left: 25px;
        text-align: left;
        margin: 15px 0;
        counter-increment: num;
        position: relative;
    }
    .box_qa .qa_wrap li .answer .list_num li h3 {
        line-height: 1.3;
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 18px;
    }
    .box_qa .qa_wrap li .answer .list_num li h3 span {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        font-weight: bold;
    }

    .box_qa .qa_wrap li .answer .list_num li h4 {
        line-height: 1.3;
        margin-top: 15px;
        color: #62b4e5;
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 16px;
    }

    .box_caution {
        margin-top: 2em;
        position: relative;
        z-index: 1;
    }
    .box_caution .box_wrap {
       margin: 0 auto 2em;
       padding: 1em;
       background: none;
       border: 3px solid #ffe403;
       position: relative;
        border-radius: 12px;
    }
    .box_caution .box_wrap:before {
       content: "";
        width: 3px;
        height: 60px;
        position: absolute;
        display: block;
        background: #f6f6f6;
        top: 80px;
        left: -3px;
    }
    .box_caution .box_wrap:after {
        content: "";
        display: block;
        background: #fff;
        box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
        position: absolute;
        top: 7px;
        left: 7px;
        width: 100%;
        height: 100%;
         border-radius: 12px;
        z-index: -1;
    }
    .box_caution .box_wrap h3 {
        font-weight: bold;
        background: #f6f6f6;
        position: absolute;
        font-size: 16px;
        top:-12px;
        left: 15px;
        line-height: 1.0;
        padding: 0 10px;
    }

    .box_caution .box_wrap .attention {
        margin-top: 10px;
        padding: 5px;
        text-align: left;
        font-weight: bold;
    }

    /*btn*/
    .btn.yellow {
        text-align: center;
        margin: 30px 0 60px;
    }
    .btn.yellow a {
        color: #000;
        background: #FFF;
        padding: 10px 50px 8px;
        font-size: 16px;
        border: 3px solid #ffe403;
        font-weight: bold;
        display: inline-block;
        border-radius: 50px;
        line-height: 1.2;
        position: relative;
        transition: all 0.5s;
    }

    .btn a:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 10px;
        bottom: 0;
        margin: auto;
        width: 16px;
        height: 10px;
    }
    .btn.yellow a:after {
        background: url("../img/icon_arrow_reverse.png") no-repeat;
        background-size: contain;
    }

    .btn.yellow a:hover {
        background: #ffe403;
    }
}

/********************************************
タブレット
*********************************************/
@media print, screen and (min-width:640px){
	/*** メイン ***/
	/*.main_contents {
		width: 420px;
		margin: 0 auto;
	}*/

	h1 {
		width: 100%;
		margin: 0 auto;
		margin-top: 1em;
		position: relative;
		z-index: 1;
	}
    h1 p:first-child {
        width: 400px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    h1 p:last-child {
        width: 180px;
    }

	.section {
		margin: 2em 0 0;
	}
	.section#start {
		overflow: hidden;
	}
    
    /*****Q&A*****/
    .section {
        margin-bottom: 40px;
    }
    .box_qa {
        width: 95%;
        margin: 0 auto;
        margin-top: 4em;
        padding: 25px 15px 15px;
        box-sizing: border-box;
    }
    
    .box_qa .qa_wrap > li {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    .box_qa .qa_wrap li .question {
        position: relative;
        padding-left: 50px;
    }
    .box_qa .qa_wrap li .question:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        width: 40px;
        height: 40px;
        background: url("../img/icon_q.png") no-repeat;
        background-size: contain;
    }
    .box_qa .qa_wrap li .question p {
        font-weight: bold;
        font-size: 22px;
        padding: 10px 40px 5px 0;
        position: relative;
    }
    .box_qa .qa_wrap li .question p:before, .box_qa .qa_wrap li .question p:after {
        content: "";
        display: inline-block;
        width: 20px;
        height: 3px;
        background: #60abd8;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: opacity .5s;
        box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.1);
    }
    .box_qa .qa_wrap li .question p:after {
        transform: translateY(-50%) rotate(90deg);
        transition: transform .5s;
    }
    .box_qa .qa_wrap li.active .question p:before {
         opacity: 0;   
    }
    .box_qa .qa_wrap li.active .question p:after {
        transform: translateY(-50%) rotate(180deg);
    }

    .box_qa .qa_wrap li .answer {
        display: none;
        margin-top: 10px;
        background: #f6f6f6;
        padding: 25px 15px;
        border-radius: 12px;
        padding-left: 60px;
        position: relative;
        box-sizing: border-box;
    }
    .box_qa .qa_wrap li .answer:before {
        content: "";
        display: block;
        position: absolute;
        top: 15px;
        left: 10px;
        width: 40px;
        height: 40px;
        background: url("../img/icon_a.png") no-repeat;
        background-size: contain;
    }
    .box_qa .qa_wrap li .answer p {
        line-height: 1.5;
        font-size: 18px;
    }

    /*list*/
    .box_qa .qa_wrap li .answer .list li {
        text-align: left;
        margin: 15px 0;
        font-size: 18px;
        position: relative;
    }
    .box_qa .qa_wrap li .answer .asterisk {
        font-size: 14px;
        padding-left: 15px;
        line-height: 1.2;
        margin-top: 5px;
        position: relative;
    }
    .box_qa .qa_wrap li .answer .asterisk:before {
        content: "※";
        position: absolute;
        top: 0;
        left: 0;
    }

    /*list_num*/
    .box_qa .qa_wrap li .answer .list_num > li {
        padding-left: 25px;
        text-align: left;
        margin: 15px 0;
        position: relative;
    }
    .box_qa .qa_wrap li .answer .list_num > li h3 {
        line-height: 1.3;
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 20px;
    }

    .box_qa .qa_wrap li .answer .list_num > li h4 {
        line-height: 1.3;
        margin-top: 15px;
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 18px;
    }

    .box_qa .qa_wrap li .answer .list_num .dot {
        padding-left: 15px;
        margin-bottom: 10px;
        position: relative;
    }
    .box_qa .qa_wrap li .answer .list_num .dot:before {
        content: "・";
        position: absolute;
        top: 0;
        left: 0;
    }
    .box_qa .qa_wrap li .answer .insert_center {
        width: 246px;
        height: auto;
        margin: 0 auto;
    }

    .box_caution {
        margin-top: 2em;
        position: relative;
        z-index: 1;
    }
    .box_caution .box_wrap {
       margin: 0 auto 2em;
       padding: 1.5em;
       background: none;
       border: 3px solid #ffe403;
       position: relative;
        border-radius: 12px;
    }
    .box_caution .box_wrap:before {
       content: "";
        width: 3px;
        height: 60px;
        position: absolute;
        display: block;
        background: #f6f6f6;
        top: 80px;
        left: -3px;
    }
    .box_caution .box_wrap:after {
        content: "";
        display: block;
        background: #fff;
        box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
        position: absolute;
        top: 7px;
        left: 7px;
        width: 100%;
        height: 100%;
         border-radius: 12px;
        z-index: -1;
    }
    .box_caution .box_wrap h3 {
        font-weight: bold;
        background: #f6f6f6;
        position: absolute;
        font-size: 16px;
        top:-12px;
        left: 15px;
        line-height: 1.0;
        padding: 0 10px;
    }

    .box_caution .box_wrap .attention {
        margin-top: 10px;
        padding: 5px;
        text-align: left;
        font-weight: bold;
    }
    
    /*btn*/
    .btn.yellow {
        text-align: center;
        margin: 30px 0 60px;
    }
    .btn.yellow a {
        color: #000;
        background: #FFF;
        padding: 10px 80px 8px;
        font-size: 16px;
        border: 3px solid #ffe403;
        font-weight: bold;
        display: inline-block;
        border-radius: 50px;
        line-height: 1.2;
        position: relative;
        transition: all 0.5s;
    }

    .btn a:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 10px;
        bottom: 0;
        margin: auto;
        width: 16px;
        height: 10px;
    }
    .btn.yellow a:after {
        background: url("../img/icon_arrow_reverse.png") no-repeat;
        background-size: contain;
    }

    .btn.yellow a:hover {
        background: #ffe403;
    }
	
}

/********************************************
タブレット
*********************************************/
@media print, screen and (min-width:768px){
	/*バナーエリア*/
	.bnr_area {
		width: 80%;
		margin: 0 auto;
		box-sizing: border-box;
		padding-bottom: 50px;
	}
	.bnr_area p {
		width: 490px;
		margin: 0 auto;
	}
	.bnr_area img {
		border: 3px solid #FFF;
		box-shadow: 6px 6px 0px 0px rgba(17, 17, 26, 0.18);
	}
	
	.foot {
		position: fixed;
		width: 100%;
		background: url("../img/bg_eclipse.svg") no-repeat;
		background-size: 200%;
		background-position: center top;
		text-align: center;
		padding-bottom: 120px;
		margin-top: -80px;
		z-index: 3;
		bottom: 0;
		visibility: visible;
		opacity: 1;
		transition: all 0.3s ease 0s;
	}
	.foot.is-hidden {
		visibility: hidden;
		opacity: 0;
	}
	.foot p {
		position: absolute;
		width: 200px;
		top:-50px;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}
	.foot p img {
		width: 177px;
		height: 144px;
	}

}

/********************************************
PC
*********************************************/
@media print, screen and (min-width: 980px) {
    h1 {
		width: 100%;
		margin: 0 auto;
		margin-top: 1em;
		position: relative;
		z-index: 1;
	}
    h1 p:first-child {
        width: 530px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    h1 p:last-child {
        width: 220px;
    }
    
    .section#app {
        margin: 6em 0 2em;
    }
    
    /*****Q&A*****/
    .box_qa {
        width: 916px;
        margin: 0 auto;
        margin-top: 0;
        padding: 35px 50px 25px;
        box-sizing: border-box;
    }

    .box_qa .qa_wrap > li {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    .box_qa .qa_wrap li .question {
        position: relative;
        padding-left: 50px;
    }
    .box_qa .qa_wrap li .question:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        width: 40px;
        height: 40px;
        background: url("../img/icon_q.png") no-repeat;
        background-size: contain;
    }
    .box_qa .qa_wrap li .question p {
        font-weight: bold;
        font-size: 22px;
        padding: 10px 0 5px;
        position: relative;
    }
    .box_qa .qa_wrap li .question p:before, .box_qa .qa_wrap li .question p:after {
        content: "";
        display: inline-block;
        width: 20px;
        height: 3px;
        background: #60abd8;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: opacity .5s;
        box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.1);
    }
    .box_qa .qa_wrap li .question p:after {
        transform: translateY(-50%) rotate(90deg);
        transition: transform .5s;
    }
    .box_qa .qa_wrap li.active .question p:before {
         opacity: 0;   
    }
    .box_qa .qa_wrap li.active .question p:after {
        transform: translateY(-50%) rotate(180deg);
    }

    .box_qa .qa_wrap li .answer {
        display: none;
        margin-top: 10px;
        background: #f6f6f6;
        padding: 25px 15px;
        border-radius: 12px;
        padding-left: 60px;
        position: relative;
        box-sizing: border-box;
    }
    .box_qa .qa_wrap li .answer:before {
        content: "";
        display: block;
        position: absolute;
        top: 15px;
        left: 10px;
        width: 40px;
        height: 40px;
        background: url("../img/icon_a.png") no-repeat;
        background-size: contain;
    }
    .box_qa .qa_wrap li .answer p {
        line-height: 1.5;
        font-size: 18px;
    }
    
    .box_caution {
        margin-top: 2.5em;
        position: relative;
        z-index: 1;
    }
    .box_caution .box_wrap {
       margin: 0 auto 2em;
       padding: 2em;
       background: none;
       border: 3px solid #ffe403;
       position: relative;
        border-radius: 12px;
    }
    .box_caution .box_wrap:before {
       content: "";
        width: 3px;
        height: 60px;
        position: absolute;
        display: block;
        background: #f6f6f6;
        top: 80px;
        left: -3px;
    }
    .box_caution .box_wrap:after {
        content: "";
        display: block;
        background: #fff;
        box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
        position: absolute;
        top: 7px;
        left: 7px;
        width: 100%;
        height: 100%;
         border-radius: 12px;
        z-index: -1;
    }
    .box_caution .box_wrap h3 {
        font-weight: bold;
        background: #f6f6f6;
        position: absolute;
        font-size: 16px;
        top:-12px;
        left: 15px;
        line-height: 1.0;
        padding: 0 10px;
    }

    .box_caution .box_wrap .attention {
        margin-top: 10px;
        padding: 5px;
        text-align: left;
        font-weight: bold;
    }   
    

    /*list*/
    .box_qa .qa_wrap li .answer .asterisk {
        font-size: 14px;
        padding-left: 15px;
        line-height: 1.2;
        margin-top: 5px;
        position: relative;
    }
    .box_qa .qa_wrap li .answer .asterisk:before {
        content: "※";
        position: absolute;
        top: 0;
        left: 0;
    }

    /*list_num*/
    .box_qa .qa_wrap li .answer .list_num > li {
        padding-left: 30px;
        text-align: left;
        margin: 15px 0;
        position: relative;
    }
    .box_qa .qa_wrap li .answer .list_num > li h3 {
        line-height: 1.3;
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 20px;
    }
    .box_qa .qa_wrap li .answer .list_num > li h4 {
        line-height: 1.3;
        margin-top: 10px;
        font-weight: bold;
        font-size: 18px;
    }

    .box_qa .qa_wrap li .answer .list_num .dot {
        padding-left: 15px;
        margin-bottom: 10px;
        position: relative;
    }
    .box_qa .qa_wrap li .answer .list_num .dot:before {
        content: "・";
        position: absolute;
        top: 0;
        left: 0;
    }
    .box_qa .qa_wrap li .answer .insert_center {
        width: 246px;
        height: auto;
        margin: 0 auto;
    }
    .box_qa .qa_wrap li .answer .flex_wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /*btn*/
    .btn.yellow {
        text-align: center;
        margin: 30px 0 100px;
    }

}

/********************************************
PC
*********************************************/
@media print, screen and (min-width: 1200px) {
	

}

/********************************************
PC
*********************************************/
@media print, screen and (min-width: 1600px) {

}