@charset "UTF-8";

/* CSS Document */

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

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

html,
body {
    width: 100%;
	overscroll-behavior: none;
}

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 {
    max-width: 415px; /* 例: メインコンテンツ幅に合わせる */
    width: 100%;
    position: relative;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.2);
}

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

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

    }

}

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

}

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

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

.float_btn {
    position: fixed;
    bottom: -0.8%;
    max-width: 415px;
    opacity: 0;
    z-index: -1;
    transition: 0.3s;

}

.float_btn img:hover {
    opacity: 0.8;
}


.float_btn.fixed {
    opacity: 1;
    z-index: 100;
}

.float_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);
    }
}

.background {
    position: fixed;
    bottom: 0;
    width: 415px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    z-index: -1;
    transition: 0.3s;
}

.background.fixed {
    opacity: 1;
    z-index: 90;
}

.float-area {
    transition: opacity 0.3s ease;
}
.float-area.show {
    opacity: 1;
    pointer-events: auto;
}
.float-area:not(.show) {
    opacity: 0;
    pointer-events: none;
}

@media only screen and (max-width:768px) {
    .background {
        width: 415px;
        max-height: 97px;
    }
.float_btn {
    bottom: -0.9%;
}
}

/*----------------------------------------
FV
----------------------------------------*/
#fv {
    max-width: 415px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cv-btn01 {
    position: absolute;
    top: 50%;
    transition-duration: .4s;
}

.cv-btn01 img {
    width:93%;
}

.cv-btn01:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.cv-btn01.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);
    }
}

/*----------------------------------------
CVエリア
----------------------------------------*/
.cv_area {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.btn_line {
    position: absolute;
    top: 65.5%;
    transition-duration: .4s;
}

.btn_line img {
    width:88.9%;
}

.btn_line:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

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

.btn_tel {
    position: absolute;
    top: 77.5%;
    transition-duration: .4s;
}

.btn_tel img {
    width:88.9%;
}

.btn_tel:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.btn_tel.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);
    }
}

/*----------------------------------------
動画エリア
----------------------------------------*/
.movie{
	position: relative;
    margin: 0 auto;
    text-align: center;
}

.movie video {
  width: 92%;
  height: auto;
}

.movie-1 {
    position: absolute;
	top: 28%;
	width: 100%;
    margin: 0 auto;
}

.movie-2 {
    position: absolute;
	top: 63%;
	width: 100%;
    margin: 0 auto;
}


/*----------------------------------------
よくあるご質問
----------------------------------------*/
#faq {
    background-image: url(../images/sec07_faq.jpg);
    background-repeat: no-repeat;
    background-size: 100%;

}

.accordion_wrap {
    padding: 33% 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;
}

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

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

    .accordion__btn::before {
        content: '';
        display: inline-block;
        border-radius: 10%;
        width: 4%;
        height: 2px;
        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: 2px;
        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: #36281D;
    padding: 17px 0px 7px 0px;
    text-align: center;
    font-size: 1.2em;
    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 p {
    color: #fff;
    font-size: 0.9em;
}

.footer ul li:hover {
    opacity: 0.6;
}

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

.footer_logo img {
    width: 15%;
    margin-bottom: 0%;
}

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

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

    .footer {
        background: #36281D;
        padding: 1.2em 1.5em 0.3em 1.5em;
        text-align: center;
        font-size: 1.2em;
        color: #fff;
    }

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

/*
    .footer_logo img {
        width: 30%;
        margin-bottom: 2%;
        margin-top: 3%;
    }
*/

}