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


body{
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.wrapper{
	max-width: 750px;
	margin: auto;
}


/*-------------------
 offer
--------------------*/
.offer{	position: relative;}
.btn{	position: absolute;}
.btn._a{
	bottom: 42.6%;
	left: 9.5%;
}
.btn._b{
	bottom: 34%;
	left: 9.5%;
}
@media screen and (max-width:767px){
	.btn{	width: 80.7vw;}
}



/*-------------------
 FAQ
--------------------*/
.faq ul,
.faq ol {
    text-align: left;
	margin: 5%;
}
.faq__list__item__ttl {
    background: url("../images/faq-q.png") no-repeat 0 50% / 44px;
	font-size: 22px;
	font-weight: bold;
    border-bottom: 3px solid #181d83;
	padding: 0 6.5%;
}
.faq a{
	color: #000;
	text-decoration: none;
}

@media screen and (max-width:767px){
	.faq__list__item__ttl {
	    font-size: 3.7vw;
		background-size: 10%;
		padding: 2% 10%;
	}
}


/*-- アコーディオン --*/
.faq__list__item__txt,
.faq__list__ico:before,
.faq__list__ico:after {
    transition: all 0.25s ease-in-out;
}
.faq__list__item {
    animation: flipdown 0.5s ease both;
}

.faq__list__item__txt {
    font-size: 16px;
	border: 1px solid #181d83;
    position: relative;
    overflow: hidden;
    max-height: 2000px;
    opacity: 1;
    transform: translate(0, 0);
    margin-top: 14px;
    padding: 10px;
    z-index: 2;
}
.faq__list__item__txt p {	margin-top: 22px;}
.faq__list__item__txt p:nth-child(1) {	margin-top: 0;}
.faq__list__item__txt p:nth-child(1):before {	content: "A. ";}
.faq__list__item__txt p strong{	font-weight: bold;}

.faq__list {
    list-style: none;
    perspective: 900;
    padding: 0;
    margin: 0;
}
.faq__list__item {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 4px;
    padding-top: 18px;
}
.faq__list__item:last-of-type {
    padding-bottom: 0;
}
.faq__list__ico {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 16px;
    right: 8px;
}
.faq__list__ico:before,
.faq__list__ico:after {
    content: "";
    position: absolute;
    background-color: #000;
    width: 3px;
    height: 9px;
}
.faq__list__ico:before {
    transform: translate(-2px, 0) rotate(45deg);
}
.faq__list__ico:after {
    transform: translate(2px, 0) rotate(-45deg);
}
.faq__list__item input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}
.faq__list__item input[type=checkbox]:checked ~ div {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
}
.faq__list__item input[type=checkbox]:checked ~ i:before {
    transform: translate(2px, 0) rotate(45deg);
}
.faq__list__item input[type=checkbox]:checked ~ i:after {
    transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
    0% {
        opacity: 0;
        transform-origin: top center;
        transform: rotateX(-90deg);
    }
    5% {
        opacity: 1;
    }
    80% {
        transform: rotateX(8deg);
    }
    83% {
        transform: rotateX(6deg);
    }
    92% {
        transform: rotateX(-3deg);
    }
    100% {
        transform-origin: top center;
        transform: rotateX(0deg);
    }
}

@media screen and (max-width:767px){
	.faq__list {    margin: 0 3%;}
	.faq__list__item {	padding: 10px 0 0;}
	.faq__list__item__txt {    font-size: 3.73vw;}
}







footer{
	background: #181d83;
	font-size: 20px;
	line-height: 1.8;
	padding: 10px;
}

footer ul{
	max-width: 750px;
	margin: 50px auto;
}
footer li{	list-style: none;}
footer a{
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}

footer p{
	color: #fff;
	font-weight: bold;
}
@media screen and (max-width:767px){
	footer{	font-size: 3vw;}
	footer ul{	margin: 5vw 0;}
}




