@charset "utf-8";

/*=====pc_mode=====*/

/*-----共通------*/

.pc_style {
    display: block;
}

.tb_style {
    display: none;
}

.sp_style {
    display: none;
}

.sp_style02 {
    display: none;
}

.flex {
    display: flex;
}

.bold {
    font-weight: bold;
}

.text_w {
    color: #fff;
}

.content_wrap {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.fl {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
}

.fl-wr {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.fl-bt {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.fl-end {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-end
}

@media screen and (max-width: 580px) {
    .sp_style02 {
        display: block;
    }
}


/*======header=====*/

/*------header_nav------*/

#nav_toggle,
.sp_nav {
    display: none;
}

#header_nav {
    position: fixed;
    width: 100%;
    z-index: 600;
    transition: all 1s ease;
    background-color: #fff;
}

#header_nav > div.flex {
    margin: 0 auto;
    z-index: 200;
    padding-left: 25px;
    padding-right: 20px;
    justify-content: space-between;
    align-items: center;
}

#header_nav ul.pc_nav > li {
    font-size: 18px;
    margin-left: 25px;
    margin-right: 25px;
    padding-top: 23px;
    padding-bottom: 23px;
}

#header_nav ul.pc_nav > li a {
    font-size: 18px;
    display: block;
    transition: .5s;
    position: relative;
}

#header_nav ul.pc_nav > li a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #92D050;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

#header_nav ul.pc_nav > li a:hover::after {
    transform: scale(1, 1);
}

#header_nav ul.pc_nav > li.noline a::after {
    display: none;
}

#header_nav .top_logo img {
    display: block;
}

#header_nav .nav-con {
    margin-top: 10px;
}

#header_nav .en p {
    font-size: 12px;
    margin-top: 3px;
    margin-right: 5px;
}

#header_nav .nav-con .en a {
    display: block;
    border: 1px solid #000;
    border-radius: 15px;
    padding: 0 35px;
    font-size: 14px;
}

#header_nav .nav-con .en a::after {
    content: "▶";
    padding-left: 5px;
}

#header_nav .nav-con .en a:hover {
    background-color: #000;
    color: #fff;
}

/*------sub_menu------*/

.menu > li.menu__multi {
    position: relative;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

li.menu__multi ul.menu__second-level {
    top: 60px;
    position: absolute;
    left: -70px;
    width: 230px;
    background-color: #E9EAF1;
}

li.menu__multi:hover ul.menu__second-level {
    visibility: visible;
    opacity: 1;
}

li.menu__multi ul.menu__second-level li a {
    display: block;
    position: relative;
    padding: 0.8em 1em;
    font-size: 16px;
    font-weight: normal;
    color: #333;
    border-bottom: 1px solid #fff;
    transition: all .2s ease;
}

li.menu__multi ul.menu__second-level li a:hover {
    opacity: .7;
}

li.menu__multi ul.menu__second-level li:last-child a {
    border-bottom: none;
}

li.menu__multi ul.menu__second-level li a::after {
    display: none;
}


/*------main------*/

h2.border_style {
    text-align: center;
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 76px;
}

h2.border_style span {
    font-size: 20px;
    display: block;
    letter-spacing: 2px;
}

h2.border_style:after {
    content: "";
    padding: 10px;
    display: block;
    background-image: url("../images/section_line.png");
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: bottom;

}


h3.h3_style02 {
    width: fit-content;
    font-weight: bold;
    font-size: 32px;
    color: #92D050;
    text-align: center;
    margin: 0 auto 55px;
    position: relative;
    padding-bottom: 0.65em;
    background-image: url("../images/h3_icon.png");
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

h3.h3_style02 span {
    font-size: 20px;
    display: block;
    font-weight: 500;
}

h3.h3_style02 a span {
    display: block;
    font-size: 20px;
    text-align: center;
    margin-top: -5px;
    font-weight: 500;
}


h4.h4_style02 {
    width: 92%;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    vertical-align: middle;
    text-align: left;
    font-size: 20px;
    margin-top: 55px;
    padding: 0.6em 1.5em;
    margin-bottom: 35px;
    font-weight: 500;
}

h4.h4_style02 span {
    color: #92D050;
}

.subpage section#btn_list {
    margin: 0 auto 70px;
}

#btn_list {
    position: sticky;
    top: 110px;
    z-index: 5;
    background: #fff;
    padding-top: 30px;
}

#btn_list ul {
    width: 100%;
}

#btn_list li {
    width: 170px;
    max-width: 595px;
}

#btn_list li.w_110 {
    width: 100%;
    max-width: inherit;
}

#btn_list li.btn_inner a {
    position: relative;
    width: 100%;
    display: block;
    padding: 20px;
}

#btn_list li.btn_inner a.w_105 {
    position: relative;
    width: 100%;
    height: 105px;
}

#btn_list li.btn_inner.w_100 a {
    height: 110px;
}


#btn_list li.btn_inner a span {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0.8em 0;
    font-size: 18px;
    line-height: 1.4;
}

#btn_list li.btn_inner a span02 {
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-size: 16px;
}

a.btn_arrow {
    position: relative;
    display: block;
    padding: 0 2em;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.btn_inner:last-child a.btn_arrow {
    margin-bottom: 0;
}

a.btn_arrow.c_ore {
    border: 1px solid #EE7D19;
    color: #EE7D19;
}

a.btn_arrow.c_blu {
    border: 1px solid #92D050;
    color: #92D050;
}

a.btn_arrow.c_sky {
    border: 1px solid #78B0CB;
    color: #78B0CB;
}

a.btn_arrow.c_gre {
    border: 1px solid #64BA8D;
    color: #64BA8D;
}

/*
a.btn_arrow.c_whi {
    border: 1px solid #fff;
    color: #fff;
}
*/

a.btn_arrow:after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    transition: .2s;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}


a.btn_arrow.c_ore:after {
    border-left: 12px solid #EE7D19;
}

a.btn_arrow.c_blu:after {
    border-left: 12px solid #92D050;
}

a.btn_arrow.c_sky:after {
    border-left: 12px solid #8ED4F6;
}

a.btn_arrow.c_gre:after {
    border-left: 12px solid #64BA8D;
}

a.btn_arrow.c_whi:after {
    border-left: 12px solid #fff;
}

#btn_list a span {
    font-size: 14px;
    display: block;
    line-height: 1;
    /*    margin-top: 3px;*/
}

#btn_list li.img-btn {
    width: 100%;
    max-width: 100%;
}

#btn_list li.img-btn img {
    width: 100%;
}


@media screen and (max-width: 1250px) {

    .subpage section {
        margin: 100px auto 70px;
    }

    #btn_list li {
        width: 48%;
        max-width: 580px;
    }

    h3.h3_style02 {
        font-size: 28px;
        margin: 0 auto 35px;
        padding-bottom: 0.65em;
    }
}



@media screen and (max-width: 900px) {

    #btn_list li {
        width: 49%;
        max-width: inherit;
    }

    a.btn_arrow {
        max-height: 60px;
        padding: 0.7em 1.5em;
        width: 100%;
        font-size: 16px;
        margin-bottom: 15px;
        line-height: 1.4;
    }



    #btn_list li.btn_inner a span {
        font-size: 16px;
        line-height: 1.3;
    }

    a.btn_arrow:after {
        right: 2%;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    a.btn_arrow.c_ore:after {
        border-left: 8px solid #EE7D19;
    }

    a.btn_arrow.c_blu:after {
        border-left: 8px solid #92D050;
    }

    a.btn_arrow.c_sky:after {
        border-left: 8px solid #8ED4F6;
    }

    a.btn_arrow.c_gre:after {
        border-left: 8px solid #64BA8D;
    }

    a.btn_arrow.c_whi:after {
        border-left: 8px solid #fff;
    }
}


@media screen and (max-width: 768px) {
    .subpage section {
        margin: 80px auto;
    }

    #btn_list li.btn_inner a span {
        font-size: 14px;
    }

    h3.h3_style02 {
        font-size: 24px;
        margin: 0 auto 20px;
        padding-bottom: 0.5em;
    }

    h3.h3_style02 span {
        font-size: 17px;
    }

    h4.h4_style02 {
        font-size: 18px;
        margin-top: 40px;
        padding: 0.4em 1em;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 600px) {
    .subpage section {
        margin: 60px auto;
    }

    #btn_list {
        position: sticky;
        top: 65px;
        padding-top: 10px;
    }

    #btn_list li {
        width: 100%;
    }

    a.btn_arrow {
        max-height: inherit;
        margin-bottom: 10px;
    }

    #btn_list li.btn_inner a.w_105 {
        height: 65px;
    }

    #btn_list li.w_110 {
        margin-top: 10px;
    }

    .subpage section {
        margin: 60px auto 10px;
    }
}



@media screen and (max-width: 480px) {
    .subpage section {
        margin: 40px auto;
    }

    h3.h3_style02 {
        width: 100%;
        font-size: 20px;
        margin: 0 auto 15px;
        padding-bottom: 0.5em;
    }

    h3.h3_style02 span {
        font-size: 15px;
    }

    h4.h4_style02 {
        font-size: 17px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    #btn_list li.btn_inner.w_110 a {
        height: 80px;
    }

    #btn_list li.btn_inner a span {
        padding: 0.8em 1em;
    }

    #btn_list li.btn_inner a span02 {
        font-size: 12px;
        margin-top: 0;
        display: block;
    }
}


.btn_contact02 {
    height: 140px;
}

.btn_contact02 a.btn_arrow {
    max-height: 140px;
}

.btn_inner.btn_contact {
    background: linear-gradient(to right, #557CBC 0%, #92D050 100%);
}


#btn_list li.btn_inner.btn_contact a {
    position: relative;
    width: 100%;
    height: 110px;
    background-image: url(../images/btn_c_bg.png);
    background-position: left bottom;
    background-size: auto;
    background-repeat: no-repeat;
    color: #fff;
}

.btn_inner.btn_contact02 {
    height: 140px;
    background: linear-gradient(to right, #557CBC 0%, #92D050 100%);
}


#btn_list li.btn_inner.btn_contact02 a {
    position: relative;
    width: 100%;
    height: 140px;
    background-image: url(../images/btn_c_bg02.png);
    background-position: left bottom;
    background-size: auto;
    background-repeat: no-repeat;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .btn_inner.btn_contact02 {
        height: 100px;

    }

    #btn_list li.btn_inner.btn_contact02 a {
        height: 100px;
    }

}







/*FAQ table*/

/*ベース*/

.fix .toggle {
    display: none;
}

.fix .Label {
    /*タイトル*/
    padding: 1em 2.3em;
    display: block;
    color: #000;
    cursor: pointer;
    font-weight: bold;
}

.fix .Label:hover {
    color: #92D050;
}


.fix .Label::before {
    /*タイトル横の矢印*/
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(135deg);
}

.fix .Label span {
    margin-right: 0.5em;
}

.fix .Label,
.fix .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;

}

.fix .content {
    /*本文*/
    height: 0;
    margin-bottom: 10px;
    padding: 0 2.3em;
    overflow: hidden;
    transition: all 0.3s;
}

.fix .accordion {
    padding-bottom: 2em;
}

.fix .content p {
    margin-bottom: 1em;
}

.fix .content p a {
    text-decoration: underline;
}

.fix .content::after {
    /*タイトル横の矢印*/
    position: absolute;
    left: 0.7em;
    top: 0.9em;
    font-weight: bold;

}


.fix .toggle:checked + .Label {
    background: #92D050;
    color: #FFFFFF;
}

.fix .toggle:checked + .Label + .content {
    /*開閉時*/
    height: auto;
    padding: 1em 2.3em;
    transition: all .3s;

}

.fix .toggle:checked + .Label::before {
    transform: rotate(-45deg) !important;
}


@media screen and (max-width: 520px) {

    .sp_none {
        display: none;
    }
}

.y_line {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 40%, #fff6d7 0%) repeat scroll 0 0;
}

.fix .content .img_wrap {
    width: auto;
    margin-top: 30px;
}

.fix .content .img_wrap img {
    width: auto;
    max-width: 100%;
}



.fix-right {
    position: fixed;
    top: 20.6vh;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.fix-right a:hover {
    opacity: 1;
}

.fix-right a {
    display: block;
    background: rgb(21 144 217);
    background: linear-gradient(180deg, rgb(21 144 217) 30%, rgb(37 159 231) 70%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    writing-mode: vertical-rl;
    padding: 25px 35px 26px 35px;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    line-height: 100%;
    border-radius: 10px 0 0 10px;
}

.fix-right a span::before {
    width: 19px;
    height: 25px;
    margin-right: 8px;
    margin-bottom: 10px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url(../images/h_mail.png) no-repeat center/contain;
}

.fix-right a:hover {
    background: rgb(36 154 225);
    background: linear-gradient(180deg, rgb(36 154 225) 30%, rgb(62 168 231) 70%);
}

@media screen and (max-width: 768px) {
    .fix-btn {
        display: none;
    }

    .fix-right {
        display: none;
    }
}

.sp-footer {
    display: none;
}

@media screen and (max-width: 980px) {
    .sp-footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        display: flex;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        z-index: 1000;
    }

    .sp-footer a {
        display: block;
        width: 100%;
        height: 100%;
        line-height: 60px;
    }

    .sp-footer a span {
        position: relative;
        display: inline-block;
    }


    .sp-footer .sp-f-btn {
        background: rgb(21 144 217);
        width: 100%;
        height: 60px;
        text-align: center;
    }

    .sp-footer .sp-f-btn span::before {
        width: 20px;
        height: 16px;
        margin-top: -2px;
        margin-right: 0.3em;
        content: "";
        display: inline-block;
        vertical-align: middle;
        background: url(../images/h_mail.png) no-repeat center/contain;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .sp-footer .sp-f-btn a {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 1.2px;
    }

    .mt3 {
        margin-bottom: 3em;
    }
}
