@charset "UTF-8";

/* CSS Document */

/*----------------------------------------
PC用レイアウト(768px以上スクリーン)
----------------------------------------*/

/* body全体の初期スタイル調整 */

html,
body {
    width: 100%;
}

body {
    font-size: 62.5%;
    /*emの計算をしやすくするための定番設定*/
    font-family: yu-gothic-pr6n, sans-serif;
    font-weight: normal;
    color: #000;
}

@media only screen and (max-width:768px) {

    body {
        width: 100%;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

}


ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

/*----------------------------------------
全体レイアウト/背景設定(PC)
----------------------------------------*/

/* 全体エリア(全体背景を設定するにはここ) */

.main {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

@media only screen and (max-width:768px) {

    .main {
        width: 100%;
        margin: 0%;
    }

}

#main-contents {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;

}

@media only screen and (max-width:768px) {
    #main-contents {
        width: 100vw;
        margin: 0 auto;
    }
}

/*----------------------------------------
下部固定ボタン
----------------------------------------*/

.fixed_btn {
	position: fixed;
	transform: translateX(-50%);
	z-index: 999;
	width: 600px;
	margin: auto;
	right: 0;
	left: 0;
	bottom: -1.5%;
}

@media only screen and (max-width:768px) {
	.fixed_btn {
			max-width: 95%;
	}
}

.fixed_btn a {
	text-align: center;
	display: block;
}

.is-active {
	opacity: 1;
	visibility: visible;
	transition-duration: .4s;
}

.is-hidden {
	visibility: hidden;
	opacity: 0;
	transition-duration: .4s;
}

.fixed_btn:hover {
	transform: scale(1.1);
	opacity: 0.6;
}

.fixed_btn.anim-box {
	animation: fuwafuwa 1s ease 0s infinite alternate;
	transform-origin: center;
}

@keyframes fuwafuwa {
	from {
			transform: scale(0.9, 0.9);
	}

	to {
			transform: scale(1, 1);
	}
}

/*----------------------------------------
FV
----------------------------------------*/

#fv {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/*----------------------------------------
CVエリア
----------------------------------------*/

.cv_area {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.cv-btn {
    position: absolute;
    bottom: 21%;
    transition-duration: .4s;
}

.cv-btn img {
    width: 90%;
}

.cv-btn:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cv-btn.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
よくあるご質問
----------------------------------------*/

#faq {
    background-image: url(../images/sec14_faq.jpg);
    background-repeat: no-repeat;
    background-size: 100%;

}

.accordion_wrap {
    padding: 65% 5% 5% 5%;
    width: 100%;
    margin: 0 auto;
}

.accordion {
    margin-bottom: 3%;
    position: relative;
}

.accordion__btn {
    cursor: pointer;
    position: relative;
}

.accordion__btn::before {
    content: '';
    display: inline-block;
    border-radius: 10%;
    width: 4%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    right: 3.97%;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
}

.accordion__btn::after {
    content: '';
    display: inline-block;
    border-radius: 10%;
    width: 4%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    right: 3.97%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 1s;
}

.accordion__btn.show::before {
    opacity: 0;
}

.accordion__btn.show::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion__content {
    display: none;
}

/*----------------------------------------
フッター部分
----------------------------------------*/

.footer {
    background: #0f695a;
    padding: 2.5em 0em;
    text-align: center;
    font-size: 1.4em;
    color: #fff;

}

footer ul {
    display: flex;
    justify-content: center;
}

footer ul li {
    padding: 0 1.5%;
}

li+li {
    border-left: 1px solid #fff;
}

.footer a {
    color: #fff;
    transition-duration: .4s;
}

.footer a:hover {
    color: #da145a;
}

.footer_logo {
    transition-duration: .4s;
}

.footer_logo img {
    width: 12%;
    margin-bottom: 2%;
}

.footer_logo:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

@media only screen and (max-width:768px) {

    .footer {
        background: #0f695a;
        padding: 2em 1.5em;
        text-align: center;
        font-size: 1.5em;
        color: #fff;
    }

    footer ul {
        display: flex;
        justify-content: center;
        margin-bottom: 5%;
    }

    .footer_logo img {
        width: 40%;
        margin-bottom: 7%;
        margin-top: 7%;
    }

}