@charset "UTF-8";

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

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

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

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

body {
    color: #333333;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    /*bold700 regular400 light 300*/
    position: relative;
    letter-spacing: 0.1rem;
}

.poppins {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.noto {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

a {
    color: #333333;
    text-decoration: none;
}

img {
    width: 100%;
}

/* ↓ 共通スタイル ------------------------*/
.row {
    margin-right: initial;
    margin-left: initial;
}

.rounded {
    border-radius: 0.2rem !important;
}

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

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


.sec_head {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4rem;
}

.sec_head .sub {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.sec_head .line {
    width: 3rem;
    margin: auto;
    height: 1px;
    background-color: #4586F4;
    margin-bottom: 1rem;
}

@media screen and (max-width: 540px) {
    .sec_head {
        margin-bottom: 3rem;
    }

}

.sec_head_s {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6C6B6B;
}

.sec_head_ss {
    font-size: 2rem;
    font-weight: 500;
}

.sec_head_ss_area {
    border-left: 8px solid #6C6B6B;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
    .sec_head_ss_area {
        border-left: 4px solid #6C6B6B;
        padding-left: 1rem;
        margin-bottom: 2rem;
    }
}


.sec_head_ss {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

/* ↓ ふんわり表示 ------------------------*/
/* 画面外 */
.fadein {
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 700ms;
}

/* 画面内 */
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}


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

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

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

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

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

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

    .pcWidth-l {
        width: 1100px;
    }

    .pcWidth-m {
        width: 1080px;
    }

    .pcWidth-s {
        width: 912px;
    }
}


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

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

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

@media screen and (max-width: 540px) {
    .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: 540px) {
    .headline-l {
        margin-bottom: 3rem;
    }

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

.textCenter {
    text-align: center;
}

/* ↓ ボタン ------------------------*/
.sec_topservice {
    margin-bottom: 6rem;
}


.buttonArea {
    display: flex;
    justify-content: center;
    text-align: center;
}

.button {

    padding: 1rem 4rem;
    display: inline-block;
    color: #fff;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: .3s;
    background: transparent;
    border: 1px solid #00C17C;

}

.button::before,
.button::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.button::before {
    background: #00C17C;
    z-index: -1;
    transition: transform ease .3s, opacity .3s;
}

.button::after {
    border: 1px solid #00C17C;
    box-sizing: border-box;
}

.button:hover {
    color: #00C17C;
}

a:hover::before {
    transform: scale(0);
    opacity: 0;
}

/* ↓ ヘッダー ------------------------*/
.gnavOuter {
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.5s ease;
    z-index: 10;
}

.spNav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 5rem;
    z-index: 100000;
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.5s ease;
}

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

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

.bgTopmost {
    background: none;
    box-shadow: none;
    transition: all 0.5s ease;
}

.gnavInner {
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.06); */
}

.gNavLeft {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 2rem;
}

@media screen and (max-width: 1200px) {
    .gNavLeft {
        width: 8rem;
        margin-left: 1.5rem;
    }
}

.gNavCenter ul {
    display: flex;
    align-items: center;
    letter-spacing: 0.05rem;
}

.gNavCenter ul li {
    margin-right: 2.5rem;
    transition: 0.3s ease;
}

.gNavCenter ul li a {
    transition: 0.3s ease;
}


.gNavCenter ul li a:hover {
    transition: 0.3s ease;
    color: #00C17C;
}

.gNavCenter .gnavcv {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #fff;
    margin-right: 1rem;
}

.gNavCenter .gnavcv a {
    color: #fff;
    transition: 0.3s ease;
}


.gNavCenter .gnavcv a:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
    color: #fff;
}

.gNavCenter .gnavcv .document {
    background-color: #00C17C;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-right: 0.75rem;
}

.gNavCenter .gnavcv .contact {
    background-color: #4586F4;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.gNavRight {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gnav_cv1 {
    background-color: #00C17C;
    color: #222;
    line-height: 1.3;
    margin-right: 0.2rem;
}

.gnav_cv2 {
    background-color: #FF7A00;
    color: #222;
    line-height: 1.3;
}

.gnav_cv1 a,
.gnav_cv2 a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    padding-left: 1.5rem;
    width: 10rem;
    height: 70px;
    color: #fff;
}

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

    .gnav_cv1 a,
    .gnav_cv2 a {
        font-size: 0.9rem;
        padding: 1rem;
        width: 8rem;
    }
}

.button_icon {
    position: absolute;
    display: block;
    right: 0.5rem;
    bottom: 0.5rem;
    transition: 0.3s ease;
}

.gnav_cv1 a:hover .button_icon {
    right: 0rem;
    bottom: 0rem;
    transition: 0.3s ease;
}

.gnav_cv2 a:hover .button_icon {
    right: 0rem;
    bottom: 0rem;
    transition: 0.3s ease;
}

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




.splogo {
    width: 10rem;
    height: 5rem;
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
    position: fixed;
    z-index: 10000;
}

.spbutton {
    width: 10rem;
    height: 5rem;
    right: 5rem;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 100000;

}

.spbutton div {
    background-color: #FF7A00;
    display: flex;
    border-radius: 2rem;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.05rem;
    font-size: 0.9rem;
}

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

.fat-nav li a {
    border-left: 4px solid #FF9900;
    padding-left: 0.8rem;
}

/*ホームアイコンを追加*/
.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;
}

.cta_fatnav {
    display: flex;
    position: absolute;
    bottom: 0;
    height: auto !important;
    transform: initial !important;
}

.cta_fatnav img {
    width: 49.5%;
    height: auto;
}

.cta_fatnav img:first-child {
    margin-right: 1%;
}

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

.fv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1500px;
    margin: auto;
    padding: 5.5rem 0 1rem;
}


@media screen and (max-width: 540px) {
    .fv {
        text-align: center;
        flex-direction: column;
        margin-bottom: 6rem;
        height: auto;
    }

    .back_gray_fv {
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
    }
}

.fv .catch {
    padding-left: 4rem;
    width: 45%;
}

.fv .kv {
    width: 50%;
    max-height: 90%;
    text-align: center;
    position: relative;
}

@media screen and (min-width: 1500px) {
    .fv .kv .image {
        border-radius: 1.5rem;
        margin-right: 3rem;
    }
}

.fv .kv .fv_point {
    width: 70%;
    position: absolute;
    right: 1.5rem;
    bottom: -2rem;
}

@media screen and (max-width: 540px) {
    .fv {
        text-align: center;
        flex-direction: column;
        margin-bottom: 2rem;
        padding-top: 8rem;
    }

    .fv .catch {
        padding-left: 0rem;
        margin-right: 0rem;
        margin-bottom: 2rem;
        width: 90%;
    }

    .fv .kv {
        width: 80%;
        text-align: center;
    }

    .fv .kv .fv_point {
        width: 80%;
        position: absolute;
        right: -1.5rem;
        bottom: -2rem;
    }
}

.fv_company {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: auto;
    width: 95%;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.fv_company .item {
    height: 5rem;
    width: auto;
    padding: 0 1rem;
}

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

@media screen and (max-width: 1250px) {
    .fv_company .item {
        height: 4rem;
        padding: 0 0.75rem;
    }

}

@media screen and (max-width: 540px) {
    .fv_company {
        margin-top: 0rem;
    }

    .fv_company .item {
        width: 20%;
        padding: 0 0.5rem;
    }
}

.topCarousel {
    margin-bottom: 6rem;
}

.topCarousel .item {
    margin: 0 1.5rem;
    width: 35rem;
}

@media screen and (max-width: 540px) {
    .topCarousel .item {
        margin: 0 0.5rem;
        width: 24rem;
    }

    .topCarousel {
        margin-bottom: 3rem;
    }

}


/* ↓ セクション ｜ top_problem ------------------------*/
.sec_gray {
    background-color: #F6F6F6;
}


.top_problem {
    padding: 8rem 0 5rem;
}

.top_problem .head_problem {
    height: 6.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.top_problem .head_problem img {
    height: 100%;
    width: auto;
}

@media screen and (max-width: 540px) {
    .top_problem .head_problem {
        height: auto;
        width: 90%;
        margin: auto;
        text-align: center;
        margin-bottom: 4rem;
    }

    .top_problem .head_problem img {
        height: auto;
        width: 100%;
    }
}

.top_problem .case {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 8%;
}

@media screen and (max-width: 540px) {
    .top_problem .case {
        display: block;
    }
}


.top_problem .case .item {
    width: 31%;
    filter: drop-shadow(3.278404474258423px 4.371205806732178px 43.712059020996094px rgba(0, 0, 0, 0.15));
}

.worrie {
    position: absolute;
    bottom: -52%;
    width: 41%;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 540px) {
    .top_problem .case .item {
        width: 70%;
        margin: auto;
        margin-bottom: 2rem;
    }

    .worrie {
        position: absolute;
        bottom: -10%;
        width: 60%;
        left: 50%;
        transform: translateX(-50%);
    }

}

/* ↓ セクション ｜ top_about ------------------------*/
.top_about {
    padding: 6rem 0 8rem;
}

.top_about .head_top_about .icon {
    width: 5rem;
    margin: auto;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 540px) {
    .top_about {
        padding: 4rem 0 6rem;
    }

    .top_about .head_top_about .icon {
        width: 3.5rem;
        margin: auto;
        margin-bottom: 1rem;
    }
}

.top_about .head_top_about {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 5rem;
}

@media screen and (max-width: 540px) {
    .top_about .head_top_about {
        margin-bottom: 3rem;
    }
}


.top_about .head_top_about p {
    font-size: 2.1rem;
    display: inline-block;
    background: linear-gradient(transparent 80%, #FFD80A 80%);
    font-weight: 600;
}

@media screen and (max-width: 540px) {
    .top_about .head_top_about p {
        font-size: 1.5rem;
    }
}

.top_about .content {
    max-width: 880px;
    margin: auto;
    padding: 4rem 6rem;
    box-shadow: 3px 4px 40px 0px rgba(0, 0, 0, 0.10);
    border-radius: 1rem;
    font-weight: 600;
}

@media screen and (max-width: 540px) {
    .top_about .content {
        width: 90%;
        margin: auto;
        padding: 2.5rem;
    }
}

.top_about .content .head {
    font-size: 1.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 2.4rem;
    border-bottom: 1px solid;
    display: inline-block;
    position: relative;
}

@media screen and (max-width: 540px) {
    .top_about .content .head {
        font-size: 1.4rem;
    }
}


.top_about .content .head .icon {
    position: absolute;
    right: -2rem;
    bottom: 0;
}

.top_about .content .sentence {
    line-height: 2;
    font-size: 1.2rem;
}

/* ↓ セクション ｜ top_what ------------------------*/
.top_what,
.top_flow,
.top_faq,
.top_document {
    padding: 6rem 0 8rem;
}

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

    .top_what,
    .top_flow,
    .top_faq,
    .top_document {
        padding: 4rem 0 5rem;
    }
}

@media screen and (max-width: 540px) {
    .top_what .contentarea {
        margin-top: 4rem;
    }
}

.top_document .buttonArea {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.top_document .button {
    display: flex;
    align-items: center;
}

.top_document .button svg {
    margin-right: 0.5rem;
    width: 1.5rem;
}

.top_what .contentarea .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7rem;
}

@media screen and (max-width: 540px) {
    .top_what .contentarea .row {
        display: block;
        margin-bottom: 5rem;
    }
}


.top_what .contentarea .row:last-child {
    margin-bottom: 0;
}

.top_what .contentarea .row.reverse {
    flex-direction: row-reverse;
}


.top_what .contentarea .left {
    width: 47%;
}

@media screen and (max-width: 540px) {
    .top_what .contentarea .left {
        width: 100%;
    }
}

.top_what .contentarea .left .sentence {
    font-size: 1.1rem;
    line-height: 2;
    font-weight: 500;
}

@media screen and (max-width: 540px) {
    .top_what .contentarea .left .sentence {
        margin-bottom: 1.5rem;
    }
}


.top_what .contentarea .left .head {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding-top: 2.5rem;
}

@media screen and (max-width: 540px) {
    .top_what .contentarea .left .head {
        padding-left: 1rem;
    }
}


.top_what .contentarea .left .head .number {
    height: 10rem;
    top: 70%;
    transform: translateY(-50%);
    left: -4rem;
    position: absolute;
    z-index: -1;
}

@media screen and (max-width: 540px) {
    .top_what .contentarea .left .head .number {
        left: -2rem;
        height: 12rem;
    }

}

.top_what .contentarea .left .head .number img {
    height: 100%;
    width: auto;
}

.top_what .contentarea .right {
    width: 45%;
}

@media screen and (max-width: 540px) {
    .top_what .contentarea .right {
        width: 100%;
    }
}

.image_head {
    font-size: 1.1rem;
    border-left: 3px solid;
    padding-left: 0.5rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 540px) {
    .image_head {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

}

.cvbutton {
    text-align: center;
    margin-top: 6rem;
}

.cvbutton .button {
    padding: 1rem 9rem;
}

.cvbutton .main {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
}

.cvbutton .main img {
    width: 2rem;
    margin-right: 0.5rem;
}

.cvbutton .button {
    padding: 1.5rem 9.5rem;
}

@media screen and (max-width: 540px) {
    .cvbutton .main {
        font-size: 1.75rem;
        display: flex;
        justify-content: center;
    }

    .cvbutton .sub {
        font-size: 1.2rem;
    }

    .cvbutton .button {
        width: 90%;
        text-align: center;
        padding: 1.5rem 2rem;
    }

    .cvbutton .main svg {
        width: 2rem;
        margin-right: 0.5rem;
    }

}

.button svg {
    fill: #fff;
    transition: 0.3s ease;
}

.button:hover svg {
    fill: #00C17C;
    transition: 0.3s ease;
}

/* ↓ セクション ｜ topfeature ------------------------*/
.topfeature .contentarea .left .head {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding-top: 0;
}

@media screen and (max-width: 540px) {
    .topfeature .contentarea .left .head {
        font-size: 1.75rem;
        font-weight: 500;
        margin-bottom: 3rem;
        position: relative;
        z-index: 1;
        padding-top: 0;
        padding-left: 2rem;
    }
}

.topfeature .contentarea .left .head .number {
    height: 6rem;
    top: 50%;
    transform: translateY(-50%);
    left: -2rem;
    position: absolute;
    z-index: -1;
}

@media screen and (max-width: 540px) {
    .topfeature .contentarea .left .head .number {
        height: 6.5rem;
        left: -0.5rem;
    }
}


.feature_sec1_head {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
    .feature_sec1_head {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

.feature_3image_area {
    margin-bottom: 10rem;
}

.feature_3image {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

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

.feature_3image .item {
    height: initial;
    width: 31%;
}

.feature_3image .item img {
    height: initial;
    width: 100%;
}

@media screen and (max-width: 540px) {
    .feature_3image_sp {
        width: 80%;
        margin: auto;
        margin-bottom: 1.5rem;
    }
}

.topfeature .sentece_1culm {
    line-height: 1.9;
    font-weight: 500;
}

/* ↓ セクション ｜ top_flow ------------------------*/
.top_flow .row {
    background-color: #fff;
    padding: 2rem;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 540px) {
    .top_flow .row {
        font-size: 1.3rem;
    }
}

.top_flow .row:last-child {
    margin-bottom: 0rem;
}

.top_flow .step_number {
    width: 7%;
    margin-right: 7%;
}

.top_flow .step_title {
    width: 86%;
}

@media screen and (max-width: 540px) {
    .top_flow .step_number {
        width: 10%;
        margin-right: 7%;
    }

    .top_flow .step_title {
        width: 83%;
    }
}

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

.sec_faq {
    padding: 7rem 0;
}

@media screen and (max-width: 540px) {
    .sec_faq {
        padding: 5rem 0;
    }

}

.sec_faq .sec_head {
    text-align: center;
    font-size: 2.75rem;
    height: auto;
    margin-bottom: 4rem;
}

@media screen and (max-width: 540px) {
    .sec_faq .sec_head {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

.sec_faq .sec_head div {
    text-align: center;
    font-size: 1.2rem;
}


.faq_area .head {
    font-size: 1.5rem;
    font-weight: 700;
    padding-left: 1rem;
    border-left: 4px solid #0b7c34;
    color: #0b7c34;
    margin-bottom: 3rem;
}

.faq_area .head2 {
    margin-top: 5rem;
}

@media screen and (max-width: 540px) {
    .faq_area .head {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}

.faq_area .description {
    margin-bottom: 3rem;
}

.faqArea_q {
    background: url(../images/faq_plus_g.png) no-repeat right 2rem center / 1.3rem;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 1.5rem 3.5rem 1.5rem 2rem;
    background-color: #00C17C;
    border-radius: 1rem;
    position: relative;
    box-shadow: 3px 4px 40px 0px rgba(0, 0, 0, 0.15);
}

.faqArea_q .triangle {
    position: absolute;
    width: 1.rem;
    left: -1rem;
}


@media screen and (max-width: 540px) {
    .faqArea_q {
        font-size: 1rem;
        padding: 1rem;
        padding-left: 1rem;
        padding-right: 0rem;
    }

    .faqArea_q {
        background: url(../images/faq_plus_g.png) no-repeat right 1rem center / 1.1rem;
        background-color: #00C17C;
    }
}

.faqArea_q_icon {
    margin-right: 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.3rem;
    color: #fff;
}


.faq_pure_sec2 .faqArea_q_icon {
    background-color: #4d6892;
}

.faq_pure_sec3 .faqArea_q_icon {
    background-color: #e8841e;
}

@media screen and (max-width: 540px) {
    .faqArea_q_icon {
        width: 5%;
        margin-right: 0.75rem;
        font-size: 1.2rem;
        padding: 0;
    }
}

.faqArea_q_title {
    color: #fff;
}

@media screen and (max-width: 540px) {
    .faqArea_q_title {
        font-size: 1rem;
        width: 80%;
    }
}


.faqList {
    margin-bottom: 2rem;
    border-radius: 1rem;
}

@media screen and (max-width: 540px) {
    .faqList {
        margin-bottom: 1.4rem;
        border-radius: 1rem;
    }
}

.faqArea_q.open {

    background: url(../images/faq_minus_g.png) no-repeat right 2rem center / 1.3rem;
    border-radius: 1rem;
    background-color: #00C17C;
}

@media screen and (max-width: 540px) {
    .faqArea_q.open {
        background: url(../images/faq/faq_minus_g.png) no-repeat right 1rem center / 1.1rem;
        background-color: #00C17C;
    }
}

.faqArea_a {
    position: relative;
    right: -2rem;
    display: inline-block;
    background-color: #fff;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 3px 4px 40px 0px rgba(0, 0, 0, 0.15);
    margin-top: 1.25rem;
}

@media screen and (max-width: 540px) {
    .faqArea_a {
        right: 0rem;
    }
}


.faqArea_a .triangle {
    position: absolute;
    width: 1.rem;
    right: -1rem;
}

.faqArea_a_icon {
    margin-right: 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.3rem;
}

@media screen and (max-width: 540px) {
    .faqArea_a_icon {
        width: 5%;
        margin-right: 0.75rem;
        font-size: 1.2rem;
        padding: 0;
    }
}


@media screen and (max-width: 540px) {
    .faqArea_a {
        font-size: 1rem;
        padding: 0.75rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ↓ セクション ｜ トップニュース ------------------------*/
.top_document .form_head {
    margin-bottom: 0.5rem;
}

.top_document .form input {
    padding: 1.25rem;
    width: 100%;
    border-radius: 10px;
    border: 2px solid #DEDEDE;
    background: #FFF;
}

.pagecontent .container-fluid .form-control {
    padding: 1.25rem;
    width: 100%;
    border-radius: 10px;
    border: 2px solid #DEDEDE;
    background: #FFF;
}

form.form p.required label {
    font-size: 2rem;
}

.top_document .form_head span {
    color: red;
}

.top_document .form_row {
    margin-bottom: 2rem;
}

.kiyaku_check {
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.kiyaku_check a {
    color: #00C17C;
}

.top_contactbutton {
    display: flex;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    text-align: center;
}

@media screen and (max-width: 540px) {
    .top_contactbutton {
        display: block;
        margin: auto;
        padding: 4rem 0rem 3rem;
        text-align: center;
    }
}


.top_contactbutton a {
    margin: 1rem;
    position: relative;
    transition: 0.3s ease;
}

@media screen and (max-width: 540px) {
    .top_contactbutton a {
        display: block;
    }

    .top_contactbutton a:first-child {
        margin-bottom: 5rem;
    }
}

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

.top_contactbutton a img:hover {
    opacity: 1;
}

.top_contactbutton a p {
    font-size: 1.25rem;
    width: 100%;
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
}

.footer_wave {
    width: 100%;
}

@media screen and (max-width: 540px) {
    .footer_wave {
        position: relative;
        bottom: -1px;
    }
}

/* ↓ セクション ｜ フッター ------------------------*/

footer {
    background-color: #363636;
    padding: 2rem 0 2rem;
}

.footer_contact_banner {
    max-width: 700px;
    margin: auto;
    margin-bottom: 5rem;
}

@media screen and (max-width: 540px) {
    .footer_contact_banner {
        width: 90%;
    }
}

footer .footer_logo {
    margin: auto;
    width: 13rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
    footer .slick-slider {
        margin-bottom: 2.5rem;
    }
}

footer .footer_link {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

footer .footer_link .item {
    border-right: 1px solid #fff;
    padding: 0 1rem;
}

footer .footer_link .item a {
    color: #fff;
}

footer .footer_link .item:last-child {
    border-right: initial;
}

footer .copyright {
    font-size: 0.8rem;
    color: #fff;
    text-align: center;
}

/* ↓ 固定ページ共通 ------------------------*/
.pagehead {
    padding: 6.5rem 0 4rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    font-size: 3.2rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
}

@media screen and (max-width: 540px) {
    .pagehead {
        padding: 6.5rem 0 3.5rem;
        line-height: 1.4;
        position: relative;
        z-index: 2;
        font-size: 2.5rem;
        letter-spacing: 0.4rem;
        font-weight: bold;
    }
}


.pagehead .sub {
    font-size: 1rem;
    letter-spacing: 0.15rem;
    margin-top: 0.5rem;
}

.pagecontent {
    position: relative;
}

.page_bottom_object {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.page_bottom_object_2 {
    position: absolute;
    bottom: 2rem;
    right: 0;
    width: 50%;
    z-index: -1;
}

.page_bottom_object_3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 15%;
    z-index: -1;
}

.page_bottom_object_4 {
    position: absolute;
    top: 15rem;
    right: 5%;
    width: 30%;
    z-index: -1;
}

.back_gray_fv {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
}

@media screen and (max-width: 540px) {
    .back_gray_fv {
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
    }
}


@media screen and (max-width: 540px) {
    .page_bottom_object_2 {
        bottom: 1.5rem;
    }

    .page_bottom_object_3 {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 50%;
        z-index: -1;
    }

    .page_bottom_object_4 {
        top: 15rem;
        right: 2%;
        width: 60%;
    }
}

.pagecontent {
    position: relative;
}


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

.spArea {
    display: none;
}

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

    .spArea {
        display: block;
    }
}