body {
    font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #222;
}

img {
    max-width: 100%;
    height: auto;
}

:lang(en) {
    font-family: "Lora", sans-serif;
}

@media(max-width:768px) {
    body {
        font-size: 14px;
    }
}

/* 共通レイアウト */
.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.wrapper-medium {
    width: 90%;
    max-width: 940px;
    margin: auto;
}

.wrapper-small {
    width: 90%;
    max-width: 850px;
    margin: auto;
}

/* ボタン */
.button_wrap {
    margin-top: 60px;
}

.button {
    position: relative;
    text-align: left;
    font-size: 16px;
    display: inline-block;
    padding: 12px 80px 12px 60px;
    color: #6B7C8F;
    border: 2px solid #6B7C8F;
    border-radius: 50px;
}

.button::after {
    position: absolute;
    top: 50%;
    right: 50px;
    transition-duration: .3s;
    transform: translate(0, -50%);
    display: inline-block;
    height: 14px;
    content: "";
    background-color: #6B7C8F;
    clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
    aspect-ratio: 1;
}

.button:hover {
    color: #fff;
    background-color: #6B7C8F;
}

.button:hover::after {
    transform: translate(10px, -50%);
    background-color: #fff;
}

/* ボタン(センター寄せ) */
.button_wrap.-center {
    text-align: center;
}

/* CTAボタン */
.cta_button-wrap{
    text-align: right;
}

.cta_button {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
    padding: 27px 94px 27px 74px;
    color: #fff;
    background-color: #6B7C8F;
    border: 2px solid transparent;
    border-radius: 50px;
}

.cta_button::after {
    position: absolute;
    top: 50%;
    right: 60px;
    transition-duration: .3s;
    transform: translate(0, -50%);
    display: inline-block;
    width: 20px;
    content: "";
    background-color: #fff;
    clip-path: polygon(0% 45%, 86% 45%, 55% 0%, 65% 0%, 100% 50%, 65% 100%, 55% 100%, 86% 55%, 0% 55%);
    aspect-ratio: 1;
}

.cta_button:hover {
    color: #6B7C8F;
    background-color: #fff;
    border: 2px solid #6B7C8F;
}

.cta_button:hover::after {
    transform: translate(10px, -50%);
    background-color: #6B7C8F;
}

.cta_button .icon {
    margin-right: 10px;
    vertical-align: middle;
}

.cta_button:hover .icon {
    fill: #6B7C8F;
}

.cta_button span[lang=en] {
    letter-spacing: .2em;
}

/* CTAボタン(センター寄せ) */
.cta_button_wrap.-center {
    text-align: center;
    margin-top: 30px;
}

.cta_button.-center .icon {
    vertical-align: text-top;
}

@media(max-width:1080px) {
    .cta_button {
        font-size: 16px;
        padding: 27px 74px 27px 54px;
    }
    .cta_button::after {
        right: 45px;
        width: 15px;
    }
    .cta_button .icon{
        width: 15%;
    }
    .cta_button.-center .icon {
        width: 12%;
    }
}

@media(max-width:768px) {
    .button_wrap {
        margin-top: 30px;
    }
    .button {
        font-size: 14px;
        padding: 10px 70px 10px 50px;
    }
    .button::after {
        right: 40px;
    }
    .cta_button-wrap {
        text-align: center;
    }
}

@media(max-width:570px) {
    .button_wrap {
        text-align: center;
    }
    .cta_button_wrap.-center {
        margin-top: 15px;
    }
    .cta_button {
        font-size: 16px;
        margin-bottom: 15px;
        padding: 17px 50px 17px 30px;
    }
    .cta_button.-center {
        font-size: 14px;
    }
    .cta_button::after {
        right: 35px;
    }
    .cta_button.-center::after {
        right: 30px;
    }
    .cta_button .icon {
        width: 11%;
        margin-right: 6px;
    }
    .cta_button.-center .icon {
        vertical-align: top;
    }
}

/* 共通タイトル */
.section_title {
    text-align: center;
    font-size: 40px;
    line-height: 1.5;
}

.section_titletext{
    font-family: "Hind", sans-serif;
}

.section_subtitle {
    display: block;
    font-size: 20px;
    color: #B9D7EE;
}

.section_subtitle::before {
    display: block;
    width: 270px;
    height: 2px;
    margin: 5px auto 3px;
    content: "";
    background-color: #B9D7EE;
}

/* 共通タイトル（CTA） */
.section_subtitle.-cta{
    font-size: 32px;
    padding-bottom: 5px;
}

.section_subtitle.-cta::before {
    display: none;
}

/* 共通タイトル（inpage） */
.inpage_title{
    position: relative;
}

.section_title.-inpage{
    position: relative;
    z-index: 1;
    font-size: 48px;
    margin: 0;
}

.section_subtitle.-inpage {
    position: absolute;
    z-index: 0;
    top: -60%;
    left: -35%;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(255 255 255 / .6);
}

.section_subtitle.-inpage::before {
    display: none;
}

@media(max-width:768px) {
    .section_title {
        font-size: 24px;
    }
    .section_subtitle {
        font-size: 16px;
    }
    .section_subtitle::before {
        width: 100px;
        margin: 3px auto 0;
    }
    .section_subtitle.-cta {
        font-size: 20px;
        padding-bottom: 0px;
    }
    .section_title.-inpage {
        font-size: 40px;
    }
    .section_subtitle.-inpage {
        top: -60%;
        left:-35%;
        font-size: 48px;
        font-weight: 500;
    }
}

@media(max-width:570px) {
    .section_title.-inpage {
        font-size: 32px;
    }
    .section_subtitle.-inpage {
        left: -20%;
        font-size: 40px;
    }
}

/* ここからヘッダー */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo_wrap{
    text-align: center;
}

.logo_wrap p{
    font-size: 12px;
    color: #6B7C8F;
}

.header_nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header_nav-list li:hover{
    color: #66b2ec;
    transition-duration: .3s;
    
}

.line-icon:hover .icon-path {
    fill: #6B7C8F;
    fill-opacity: 0.4;
    transition-duration: .3s;
}

.sp_nav {
    display: none;
}

/* スマホナビ */
@media(max-width:1280px) {
    .header_nav-list {
        gap: 18px;
    }
}
/* スマホナビ展開 */
@media(max-width:1080px) {
    .header_nav {
        position: fixed;
        z-index: 10;
        top: 0;
        right: 0;
        width: 66.7%;
        height: 100%;
        padding: 120px 0 0 65px;
        /* スマホ展開を隠す */
        transform: translate(100%, 0);
        transition-duration: .6s;
        flex-direction: column;
        color: #6B7C8F;
        background: #F5FAFD;
    }
    .header_nav-list {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
    .line-icon{
        margin-top: 20px;
    }
    /* スマホナビ開閉*/
    .active .header_nav {
        transform: translate(0, 0);
    }
    /* ハンバーガーボタン */
    .sp_nav {
        /* 追従しない */
        position: static;
        z-index: 11;
        display: block;
        width: 30px;
        height: 23px;
    }
    .sp_nav .bar,
    .sp_nav .bar::before,
    .sp_nav .bar::after {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #6B7C8F;
        /* 回転の基準を中央に */
        transform-origin: center;
    }
    .sp_nav .bar::before {
        content: "";
        transition-duration: .6s;
        transform: translateY(-11px);
    }
    .sp_nav .bar::after {
        content: "";
        transition-duration: .6s;
        transform: translateY(11px);
    }
    /* バツ印 */
    /* バツ印を画面右上に固定 */
    .active .sp_nav {
        position: fixed;
        top: 45px;
        right: 30px;
    }
    .active .sp_nav .bar {
        /* 中央の線を消す */
        background-color: transparent;
    }
    .active .sp_nav .bar::before {
        transform: rotate(45deg);
        background-color: #6B7C8F;
    }
    .active .sp_nav .bar::after {
        transform: rotate(-45deg);
        background-color: #6B7C8F;
    }
}
/* ここまでヘッダー */

/* ここからCTA */
.cta_section {
    position: relative;
    margin-top: 200px;
    padding: 60px 0 93px;
    background-image: url(../img/common/contact_back.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.cta_body {
    display: flex;
    color: #6B7C8F;
    margin-top: 50px;
}

.cta_text {
    font-size: 20px;
    width: 80%;
}

.cta_wavyshape01 {
    position: absolute;
    bottom: -13.3%;
    right: 1.3%;
}

.cta_wavyshape02 {
    position: absolute;
    top: -9.5%;
    left: 0;
}

@media(max-width:1080px) {
    .cta_section {
        margin-top: 100px;
    }
    .cta_text {
        font-size: 16px;
        width: 80%;
    }
    .cta_wavyshape01 {
        width: 20%;
        bottom: -8%;
    }
    .cta_wavyshape02 {
        width: 15%;
        top: -5%;
    }
}

@media(max-width:768px) {
    .cta_section {
        margin-top: 80px;
        padding: 30px 0 35px;
    }
    .cta_body {
        flex-direction: column;
        margin-top: 25px;
    }
    .cta_text {
        width: 100%;
        margin-bottom: 30px;
    }
    .cta_wavyshape01 {
        bottom: -5%;
    }
}

@media(max-width:570px) {
    .cta_text {
        font-size: 14px;;
    }
    .cta_wavyshape01 {
        width: 25%;
        bottom: -3%;
    }
    .cta_wavyshape02 {
        width: 20%;
        top: 0%;
    }
}
/* ここまでCTA */

/* ここからフッター */
.footer_wrap {
    margin-top: 150px;
    padding: 100px 0 60px;
    color: #6B7C8F;
    font-weight: 700;
    background-image: url(../img/common/footer_back.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.footer_logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
    
}

.footer_content p{
    margin-bottom: 5px;
}

.footer_companyname{
    font-family: "Hind", sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.footer_sns {
    display: flex;
    gap: 17px;
    margin-top: 20px;
}


.line-grayicon:hover .icon-path {
    fill: #B9D7EE;
    transition-duration: .3s;
}

.footer_nav {
    display: flex;
    gap: 40px;
}

.footer_nav li {
    margin-bottom: 40px;
}

.footer_nav-list li:hover{
    color: #fff;
    transition-duration: .3s;
}

.footer_copyright {
    font-size: 14px;
    background: #fff;
    color: #B9D7EE;
    text-align: center;
    padding: 35px 0;
}

@media(max-width:768px) {
    .footer_wrap {
        margin-top: 80px;
        padding: 70px 0 30px;
    }
    .footer_logo {
        margin-bottom: 10px;
    }
    .footer_inner {
        flex-direction: column;
    }
    .footer_content p {
        margin-bottom: 3px;
    }
    .footer_companyname {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .footer_sns {
        gap: 15px;
        margin-top: 10px;
    }
    .footer_nav {
        gap: 30px;
        margin-top: 40px;
    }
    .footer_copyright {
        font-size: 13px;
    }
}
/* ここまでフッター */

/* ここから下層共通メインビジュアル */

.profile .inpage_mv {
    background-image: url(../profile/img/profile_backimg.jpg);
}

.menu .inpage_mv {
    background-image: url(../menu/img/consultation_backimg.jpg);
}

.review .inpage_mv {
    background-image: url(../review/img/review_backimg.jpg);
}

.faq .inpage_mv {
    background-image: url(../faq/img/question_backimg.jpg);
}

.contact .inpage_mv,
.contact_thanks .inpage_mv {
    background-image: url(../contact/img/contact_backimg.jpg);
}

.inpage_mv {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 150px 0;
    box-sizing: border-box;
    height: 420px;
    background-repeat: no-repeat; 
    background-size: cover;
}

.inpage_mv::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgb(217 217 217 / .4);
    mix-blend-mode: multiply;
}

@media(max-width:768px) {
    .inpage_mv {
            padding: 100px 120px 0;
        }
}
@media(max-width:570px) {
    .inpage_mv {
        padding: 100px 60px 0;
    }
}
/* ここまで下層共通メインビジュアル */

/* ここから下層共通パンくずナビ */
.breadcrumb {
    font-size: 14px ;
    padding: 20px 30px;
}

.breadcrumb a {
    border-bottom: 1px solid #222;
    transition: all .3s;
    }

.breadcrumb a:hover {
    color: #66b2ec;
    border-bottom-color: #66b2ec;
}

.breadcrumb-separator {
    margin: 0 15px;
}

@media(max-width:570px) {
    .breadcrumb {
        font-size: 12px;
        padding: 10px 20px;
    }
    .breadcrumb-separator {
        margin: 0 10px;
    }
}
/* ここまで下層共通パンくずナビ */