@charset "UTF-8";

/* ↓ 色とテキストの定義 ------------------------*/
html {
    scroll-behavior: smooth;
    font-size: 15px;
}

@media screen and (min-width: 1400px) {
    html {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    html {
        font-size: 3.3vw;
        /*1L30文字*/
    }
}

body {
    color: #333;
    letter-spacing: 0.1rem;
    line-height: 1.7;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    /*bold700 regular400 light 300*/
    position: relative;
    overflow-x: hidden;
}

a {
    color: #5ebced;
    text-de coration: none;
}

img {
    width: 100%;
    ;
}

.mincho {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    letter-spacing: 0.04rem;
}

.mincho-light {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    letter-spacing: 0.04rem;
}

.marugo {
    font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

/* ↓ 遷移時フェードイン/アウト ------------------------*/
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -ms- transition: opacity .2s ease;
    -moz- transition: opacity .2s ease;
    transition: opacity .2s ease;
}

body.transitionFadeout::after {
    opacity: 1;
}

/* ↓ 共通スタイル ------------------------*/
.rounded {
    border-radius: 0.2rem !important;
}

/*imgタグトリミング*/
.object-fit-img {
    object-fit: cover;
    font-family: 'object-fit: contain;'
}

/*画像のマウスオーバー*/
a img:hover {
    opacity: 0.6;
}

/* ↓ 横幅 ------------------------*/
/*pcの横幅*/
.pcWidth-xl {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.pcWidth-l {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}

.pcWidth-m {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}

.pcWidth-s {
    max-width: 760px;
    width: 90%;
    margin: 0 auto;
}

.pcWidth-ss {
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
}

@media screen and (min-width: 1400px) {
    .pcWidth-xl {
        max-width: 1216px;
    }

    .pcWidth-l {
        max-width: 1152px;
    }

    .pcWidth-m {
        max-width: 1080px;
    }

    .pcWidth-s {
        max-width: 800px;
    }

    .pcWidth-ss {
        max-width: 700px;
        width: 90%;
    }
}

/*spの横幅*/
@media screen and (max-width: 767px) {
    .spWidth-max {
        max-width: 100%;
    }

    .spWidth-l {
        max-width: 98%;
    }

    .spWidth-m {
        max-width: 88%;
    }

    .spWidth-s {
        max-width: 78%;
    }

}

/*セクションと見出しの上下のマージン*/
.secOuter-s {
    padding: 4rem 0px;
}

.secOuter-m {
    padding: 5rem 0px;
}

.secOuter-l {
    padding: 7rem 0px;
}

@media screen and (max-width: 767px) {
    .secOuter-s {
        padding: 3rem 0px;
    }

    .secOuter-m {
        padding: 4rem 0px;
    }

    .secOuter-l {
        padding: 6rem 0px;
    }
}

.headline-l {
    margin-bottom: 5rem;
}

.headline-m {
    margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
    .headline-l {
        margin-bottom: 3rem;
    }

    .headline-m {
        margin-bottom: 2rem;
    }
}

.textCenter {
    text-align: center;
}

/* ↓ ボタン ------------------------*/
.btn {
    display: block;
}

.btn a {
    height: 7rem;
    display: block;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .btn a {
        height: 5.5rem;
    }
}

.btn a img {
    width: auto;
    height: 100%;
    transition: 0.3s ease;
    filter: drop-shadow(5px 5px 10px rgba(100, 100, 100, 0.4));
}

.btn a img:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
    opacity: 1;
}


.btnArea--left {
    text-align: left;
}

/* ↓ ヘッダー ------------------------*/
.gnavOuter {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.5rem 1.5rem 0.5rem 1.75rem;
    transition: all 0.5s ease;
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .gnavOuter {
        padding: 0rem;
    }
}

/*↑背景固定の場合はabsolute、追従の場合はfixedに変更*/


.gnavInner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gNavLeft {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7.5rem;
}

@media screen and (max-width: 767px) {
    .gNavLeft a {
        display: none;
    }
}

.gNavRight {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14.5rem;
    transition: 0.3 ease;
}

.gNavRight a img {
    transition: 0.3s ease;
}

.gNavRight a img:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}

.fixedNav {
    position: fixed;
    z-index: 10;
    top: 1.8rem;
    right: 6.5rem;
}

.menuArea {
    width: 100%;
    height: 6.8rem;
}

@media screen and (max-width: 767px) {
    .menuArea {
        height: 5rem;
    }
}

.spLogo {
    width: 9rem;
    padding: 1rem;
    position: absolute;
}

@media screen and (min-width: 768px) {
    .spLogo {
        display: none;
    }
}

/* ↓ パンくずリスト ------------------------*/
.bread {
    margin-top: -0.5rem;
    color: darkgray;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    height: 1rem;
}

.bread div {
    max-width: 150px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

.bread a {
    color: darkgray;
}

/* ↓ ドロワーメニューカスタマイズ ------------------------*/
.fat-nav li {
    list-style-type: none;
    text-align: center;
    padding: 0.8rem;
    font-size: 1.2em;
    line-height: 1.4;
}

/*ホームアイコンを追加*/
.navHome span {
    position: relative;
}

.navHome span:before {
    position: absolute;
    top: 0rem;
    left: -2rem;
    content: "";
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    background: url(../img/home.svg) no-repeat;
    background-size: contain;
}



/* ↓ セクション ｜ fv ------------------------*/

.fvarea {
    position: relative;
}

.fvarea {
    position: relative;
}

.wave {
    position: absolute;
    bottom: 0rem;
}

@media screen and (max-width: 767px) {
    .wave {
        bottom: 7rem;
    }
}

.fv_pcArea {
    position: absolute;
    width: 46rem;
    bottom: -3rem;
    right: 5%;
    transform: translateX(-5%);
}

@media screen and (min-width: 1750px) {
    .fv_pcArea {
        width: 49rem;
        right: 10%;
        transform: translateX(-10%);
    }
}

@media screen and (max-width: 1500px) {
    .fv_pcArea {
        right: 5%;
        transform: translateX(-5%);
        width: 40rem;
    }
}

@media screen and (max-width: 1200px) {
    .fv_pcArea {
        right: 2%;
        transform: translateX(-2%);
    }
}

@media screen and (max-width: 1023px) {
    .fv_pcArea {
        bottom: -5rem;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 767px) {
    .fv_pcArea {
        width: 80%;
        left: 45%;
        bottom: 4rem;
    }
}

.fv_topobject {
    position: absolute;
    width: 27rem;
    left: 0;
    top: 0;
}

.fv {
    display: flex;
    justify-content: space-between;
    height: 85vh;
    min-height: 768px;
    max-height: 800px;
}

@media screen and (max-width: 767px) {
    .fv {
        display: block;
        min-height: inherit;
        max-height: inherit;
        height: inherit;
    }
}

.fv .left {
    width: 60%;
    display: flex;
    ;
    justify-content: center;
    align-items: center;
}

.fv .left .left_inner {
    position: relative;
}

@media screen and (max-width: 1023px) {
    .fv .left .left_inner {
        margin-top: -15rem;
    }
}

@media screen and (max-width: 767px) {
    .fv .left .left_inner {
        margin-top: inherit;
    }
}

.fv .right {
    width: 40%;
    height: 100%;
    position: relative;
    z-index: -1;
}

.fv .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* @media screen and (max-width: 1100px) {
	.fv .left {
		width: 52%;
	}

	.fv .right {
		width: 48%;
	}
} */

@media screen and (max-width: 767px) {
    .fv .left {
        width: 80%;
        margin-bottom: 3rem;
        padding-top: 9.5rem;
    }

    .fv .right {
        width: 60%;
        height: auto;
        margin-left: auto;
        margin-right: 0px;
        position: relative;
        top: -7rem;
        z-index: -1;
    }

    .fv .right img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

}


.fv_badge_pc {
    position: absolute;
    top: 4.5rem;
    left: 40%;
    width: 15rem;
}

@media screen and (max-width: 1400px) {
    .fv_badge_pc {
        width: 13rem;
        left: 41%;
    }
}

@media screen and (max-width: 1200px) {
    .fv_badge_pc {
        width: 11rem;
        left: 41%;
    }
}

@media screen and (max-width: 1023px) {
    .fv_badge_pc {
        left: inherit;
        right: 5%;
        top: 5.5rem;
    }
}


.fv_logo {
    width: 15rem;
    margin-bottom: 1.5rem;
}

.fv_catch {
    font-size: 3.5rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
    font-weight: bold;
}

@media screen and (max-width: 1100px) {
    .fv_logo {
        width: 13rem;
        margin-bottom: 1.5rem;
    }

    .fv_catch {
        font-size: 2.5rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-weight: bold;
    }
}

.fv_sentence {
    font-weight: 500;
    font-size: 1.1rem;
}

@media screen and (max-width: 767px) {
    .fv_logo {
        width: 10rem;
    }
}

@media screen and (min-width: 1200px) {
    .br_1100 {
        display: none;
    }
}

/* ↓ セクション ｜ melit_info ------------------------*/
.melit_info {
    padding: 9rem 0 0;
    background-color: #ebf6ff;
}

@media screen and (max-width: 767px) {
    .melit_info {
        padding: 5rem 0 0;
        margin-top: -7rem;
    }
}

.melit_info .pcWidth-ss {
    max-width: 620px;
}

@media screen and (min-width: 1400px) {
    .melit_info .pcWidth-ss {
        max-width: 700px;
    }
}

.owner_slide {
    padding: 2.2rem 0 1.75rem;
    background-color: #fff;
    margin: 3rem 0 8rem;
}

@media screen and (max-width: 767px) {
    .owner_slide {
        margin: 3rem 0 5rem;
    }
}

.owner_slide .head {
    text-align: center;
    color: #2193d2;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .owner_slide .head {
        font-size: 1.2rem;
    }
}

.owner_slide .head p {
    margin: 0.75rem 2rem;
}

@media screen and (max-width: 767px) {
    .owner_slide .head p {
        margin: 0.75rem 1rem;
    }
}

.owner_slide .head div {
    height: 2px;
    background-color: #2193d2;
    width: 10rem;
}

@media screen and (max-width: 767px) {
    .owner_slide .head div {
        height: 2px;
        background-color: #2193d2;
        width: 6rem;
    }
}

.topCarousel .item {
    height: 3.25rem;
    margin: 2.4rem;
}

.topCarousel .item img {
    height: 100%;
    width: auto;
}

.melit_info_iconArea {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .melit_info_iconArea {
        flex-wrap: wrap;
    }

    .melit_info_iconArea .item {
        width: 50%;
    }
}

.merit_cv {
    padding: 5rem 0 8rem;
    background-image: url(../img/grad_back.png);
    background-size: cover;
    background-repeat: no-repeat;
}


/* ↓ セクション ｜ melit ------------------------*/
.melit {
    padding-bottom: 10rem;
}

@media screen and (max-width: 767px) {
    .melit {
        padding-bottom: 7rem;
    }
}

.sectitle_melit {
    width: 35rem;
    margin-left: 5rem;
    margin-bottom: 7rem;
}

@media screen and (max-width: 767px) {
    .sectitle_melit {
        width: 18rem;
        margin-left: 2rem;
        margin-bottom: 7rem;
    }
}

.melit .paragragh {
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 4rem;
    margin-bottom: 14rem;
    ;
}

@media screen and (max-width: 767px) {
    .melit .paragragh {
        margin-bottom: 5rem;
        ;
    }
}

.melit .lust_paragragh {
    margin-bottom: 6rem;
}

@media screen and (max-width: 767px) {
    .melit .lust_paragragh {
        margin-bottom: 2rem;
    }
}

.paragragh_backleft {
    background-image: url(../img/gradation_left.png);
}

.paragragh_backright {
    background-image: url(../img/gradation_right.png);
}

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

    .paragragh_backleft,
    .paragragh_backright {
        background-image: inherit;
    }
}

.melit .paragragh .flex {
    display: flex;
    justify-content: center;
    width: 80%;
}

.melit .paragragh .rowreverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
    .melit .paragragh .flex {
        display: block;
        width: 100%;
    }
}

.melit .paragragh .flex .right,
.melit .paragragh .flex .left {
    width: 50%;
    z-index: 1;
    position: relative;
}

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

    .melit .paragragh .flex .right,
    .melit .paragragh .flex .left {
        width: 80%;
        margin: auto;
    }
}

.melit .paragragh .flex .left {
    margin-top: -5rem;
    ;
}

@media screen and (max-width: 767px) {
    .melit .paragragh .flex .left {
        margin-top: 0rem;
        ;
    }
}

@media screen and (max-width: 767px) {
    .melit .flex .contents {
        margin-bottom: 3rem;
    }
}

.melit .paragragh_backleft .flex .right .contents {
    padding-left: 7rem;
}

@media screen and (max-width: 767px) {
    .melit .paragragh_backleft .flex .right .contents {
        padding-left: 0rem;
    }
}

.melit .paragragh_backright .flex .right .contents {
    padding-right: 5rem;
}

@media screen and (max-width: 767px) {
    .melit .paragragh_backright .flex .right .contents {
        padding-right: 0rem;
    }
}


.melit .paragragh .flex .right .contents .head {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    position: relative;
    color: #424242;
}

@media screen and (max-width: 1450px) {
    .melit .paragragh .flex .right .contents .head {
        font-size: 3rem;
    }
}

@media screen and (max-width: 1200px) {
    .melit .paragragh .flex .right .contents .head {
        font-size: 2.5rem;
    }
}

.melit .paragragh .flex .right .contents .merit_number {
    position: absolute;
    z-index: -1;
    width: 9rem;
    top: -5.5rem;
    left: -5.5rem;
}

@media screen and (max-width: 767px) {
    .melit .paragragh .flex .right .contents .merit_number {
        width: 7rem;
        top: -4.5rem;
        left: -1.5rem;
    }
}


.melit .paragragh .flex .right .contents .head_s {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
}

.melit .paragragh .flex .right .contents .sentence {
    font-weight: 500;
    font-size: 1.05rem;
}

/* ↓ セクション ｜ usability ------------------------*/
.usability {
    background-color: #ebf6ff;
    position: relative;
    padding-bottom: 10rem;
}

.sectitle_usability {
    width: 50rem;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .sectitle_usability {
        width: 27rem;
    }
}

.usability_topobject {
    position: absolute;
    width: 50%;
    left: 0;
    top: 0;
}

.usability_underobject {
    position: absolute;
    width: 40%;
    right: 0;
    bottom: 0;
}

.usability .paragragh {
    margin-bottom: 10rem;
    position: relative;
    z-index: 0;
}

.usability .paragragh2 {
    margin-bottom: 13rem;
}

@media screen and (max-width: 767px) {
    .usability .paragragh2 {
        margin-bottom: 6rem;
    }
}

.usability .paragragh .object1 {
    position: absolute;
    width: 50rem;
    bottom: -8rem;
    right: -13rem;
}

.usability .paragragh .object2 {
    position: absolute;
    width: 50rem;
    bottom: -10rem;
    left: -13rem;
}

@media screen and (max-width: 1024px) {
    .usability .paragragh .object1 {
        width: 30rem;
        right: 0rem;
    }

    .usability .paragragh .object2 {
        width: 30rem;
        left: 0rem;
    }
}

@media screen and (max-width: 767px) {
    .usability .paragragh .object1 {
        position: absolute;
        width: 20rem;
        bottom: -4rem;
        right: 0rem;
    }

    .usability .paragragh .object2 {
        position: absolute;
        width: 20rem;
        bottom: -5rem;
        left: 0rem;
    }
}



.usability .paragragh .img {
    position: relative;
    z-index: 0;
}

.usability .paragragh .head {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.usability .paragragh .sentence {
    margin-bottom: 3rem;
}

/* ↓ セクション ｜ fee ------------------------*/
.fee {
    padding: 8rem 0;
    width: 90%;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .fee {
        padding: 6rem 0 4rem;
        width: 90%;
        margin: auto;
    }
}

.sectitle_fee {
    width: 40rem;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .sectitle_fee {
        width: 25rem;
        margin: auto;
    }
}

.fee .discription {
    display: flex;
    justify-content: center;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 4rem;
}

.fee .situation {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.5rem;
    border: 2px #c8c8c8 solid;
    border-radius: 5rem;
    position: relative;
    margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
    .fee .situation {
        font-size: 1rem;
        width: 100%;
    }
}

.fee .situation .head_s {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -120%);
    width: 10rem;
}

.fee .situation {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.5rem;
    border: 2px #c8c8c8 solid;
    border-radius: 5rem;
    position: relative;
}

@media screen and (max-width: 767px) {
    .fee .situation {
        font-size: 1rem;
    }
}

.fee .situation b {
    font-size: 1.75rem;
    color: #1c80d1;
}

@media screen and (max-width: 767px) {
    .fee .situation b {
        font-size: 1.3rem;
        color: #1c80d1;
    }
}

.fee .tableimg {
    position: relative;
}

.fee .good {
    position: absolute;
    width: 15rem;
    right: -5rem;
    bottom: 0;
}

@media screen and (max-width: 767px) {
    .fee .good {
        position: absolute;
        width: 8rem;
        right: -2rem;
    }
}

/* ↓ セクション ｜ オーナー ------------------------*/
.owner {
    background-color: #ebf6ff;
    padding: 5rem 0 8rem;
}

.sectitle_s {
    height: 7rem;
    text-align: center;
    margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
    .sectitle_s {
        height: 5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
}


.sectitle_s img {
    height: 100%;
    width: auto;
}

.owner_list {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
}

.owner_list li {
    width: 33.33333%;
    padding: 1rem;
}

@media screen and (max-width: 767px) {
    .owner_list li {
        width: 50%;
        padding: 1rem;
    }
}

/* ↓ セクション ｜ よくある質問 ------------------------*/
.faq {
    background-color: #ebf6ff;
    padding: 5rem 0 10rem;
}

@media screen and (max-width: 767px) {
    .faq {
        padding: 5rem 1rem 7rem;
    }
}

.faq_wrap {
    max-width: 800px;
}

.faq_heading {
    margin-top: 3.2rem;
    position: relative;
}

.faq_heading p {
    font-weight: bold;
    color: #41b8b0;
    padding-left: 3.2rem;
    font-size: 1.4rem;
}

.faq_heading::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border-top: 2px solid;
    border-image: linear-gradient(to right, #008dc8 0%, #00d1b0 100%);
    border-image-slice: 1;
    width: 2.2rem;
}

.backimage_faq_1 {
    position: absolute;
    top: 24rem;
    right: 4rem;
    z-index: -1;
    width: 25rem;
}

.backimage_faq_2 {
    position: absolute;
    bottom: 142rem;
    left: 4rem;
    z-index: -1;
    width: 30rem;
}

@media screen and (max-width: 767px) {
    .backimage_faq_1 {
        display: none;
    }

    .backimage_faq_2 {
        display: none;
    }
}

.question_wrap {
    position: relative;
    color: #000;
    z-index: auto;
    padding: 1.75rem 4rem 1.75rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
    border-radius: 2rem;
    margin-bottom: 2rem;
    background-color: #fff;
}

.question_wrap .inner,
.answer_wrap .inner {
    display: flex;
    align-items: center;
}

.question_wrap .inner .left,
.answer_wrap .inner .left {
    font-size: 2.5rem;
    font-weight: bold;
    margin-right: 1.5rem;
    line-height: 1;
}

.question_wrap:before {
    content: '';
    display: inline-block;
    height: 2.75rem;
    width: 2.75rem;
    position: absolute;
    background-image: url(../img/img_triagle_w.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    top: 50%;
    left: -2.75rem;
    transform: translate(21%, -50%);

    z-index: 1;
}

.answer_wrap {
    font-size: 1.2rem;
    display: none;
    color: #fff;
    padding: 2rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
    background-color: #008dc8;
    position: relative;
    z-index: auto;
    border-radius: 2rem;
    margin-bottom: 3rem;
}

.answer_wrap:before {
    content: '';
    display: inline-block;
    height: 2.75rem;
    width: 2.75rem;
    position: absolute;
    background-image: url(../img/img_triagle_b.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    top: 50%;
    right: -1.5rem;
    transform: translate(21%, -50%);
    z-index: 10;
}

.question_icon span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.question_icon {
    position: absolute;
    width: 40px;
    top: 45%;
    transform: translateY(-45%);
    right: 0.5rem;
    margin-right: 5px;
}

.question_icon span {
    position: absolute;
    left: 6px;
    width: 50%;
    height: 3px;
    background-color: #000;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
}

.question_icon span:nth-of-type(1) {
    top: 5px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.question_icon span:nth-of-type(2) {
    top: 5px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

/*＋、－切り替え*/
.question_icon.question_active span:nth-of-type(1) {
    display: none;
}

.question_icon.question_active span:nth-of-type(2) {
    top: 5px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.btn_faq {
    margin-top: 4rem;
}


/* ↓ セクション ｜ フッター -{-----------------------*/
.footer_info {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    color: #0061a0;
    font-size: 0.8rem;
}

@media screen and (max-width: 767px) {
    .footer_info {
        width: 80%;
        margin: auto;
    }
}

.footer_info .logo {
    width: 9rem;
    margin-right: 2rem;
    ;
}

.footer_info .info span {
    font-size: 1.1rem;
    font-weight: bold;
}

/* ↓ トップへ戻る ------------------------*/

.to-top {
    position: fixed;
    z-index: 1000;
    width: 11rem;
    height: auto;
    right: -0.5rem;
    bottom: -0.5rem;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-align: center;
    transform: scale(0.8);
}

.to-top img {
    width: 100%;
}

/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
    display: block;
}

.spArea {
    display: none;
}

@media screen and (max-width: 767px) {
    .pcArea {
        display: none;
    }

    .spArea {
        display: block;
    }
}
