@charset "UTF-8";


/* =============================================
    common
==============================================*/
html {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    line-height: 1.5;
    color: #4A4A4A;
    overflow-x: hidden;
}

body {
    margin: 0;
}

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

#container {
    position: relative;
    overflow: hidden;
}

#bk {
    position: relative;
}

#bk::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F7F3EE, #EDE0D4);
    z-index: 1;
}

.bk_textL {
    position: fixed;
    top: 3vh;
    left: 0.7rem;
    width: 7rem;
    height: 94vh;
    background: url(../images/bg_ouchizukuri.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.bk_textR {
    display: none;
    position: fixed;
    top: 3vh;
    right: -2rem;
    width: 7rem;
    height: 94vh;
    background: url(../images/bg_ouchizukuri.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

#frame {
    position: relative;
    z-index: 2;
    background: #fff;
}

main {
    position: relative;
    box-shadow: 0 4px 20px rgba(98, 66, 66, 0.15);
}

.inner {
    padding: 0 2.6rem;
}

.br-pc {
    display: none;
}

.br-sp {
    display: block;
}


/* サイドバー */
.target_nav {
    display: none;
    position: fixed;
    z-index: 100;
    top: 50%;
    right: 2.4rem;
    transform: translateY(-50%);
    z-index: 49;
}

.header__nav {
    display: block;
}

li.header__item {
    position: relative;
}

.header__link {
    display: block;
    width: 6px;
    height: 32px;
    background-color: transparent;
    border: 1px solid #818181;
    margin-top: 20px;
}

.header__link.is-active {
    background-color: #D4B1A8;
}

.t_nav_tex {
    display: none;
    position: absolute;
    color: #818181;
    width: 120px;
    top: 50%;
    transform: translate(11.5%, -50%);
    transition: all .3s ease;
}

/* 共通タイトル */
.section_title {
    width: 100%;
    margin-inline: auto;
}

/* 共通ボタン */
.common_btn {
    position: relative;
    display: block;
    background: #B66F73;
    border: 1px solid #B66F73;
    border-radius: 4rem;
    box-shadow: 0 4px 10px rgba(9, 0, 0, 0.25);
    text-align: center;
    color: #fff;
    font-family: "Shippori Mincho", serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    width: 100%;
    max-width: 32rem;
    margin: 0.8rem auto 0;
    padding: 0.2rem 0 0.9rem;
}

.common_btn span {
    font-size: 2.5rem;
}

.common_btn::after {
    position: absolute;
    content: "";
    width: 1rem;
    height: 1rem;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%) rotate(45deg);
    margin: auto;
}

/* 下部追従バー */
.contactNav {
    display: none;
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    z-index: 50;
    background: #B66F73;
    text-align: center;
    color: #fff;
    padding: 1.8rem 0;
}

.contactNav span {
    display: block;
    position: relative;
    font-family: "Shippori Mincho", serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.contactNav span::after {
    position: absolute;
    content: "";
    width: 1rem;
    height: 1rem;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%) rotate(45deg);
    margin: auto;
}

@media screen and (min-width: 750px) {
    .inner {
        padding: 0 5.6rem;
    }
    #frame {
        max-width: 500px;
        /* max-width: 800px; */
        margin-left: auto;
        margin-right: auto;
    }
    .br-pc {
        display: block;
    }
    .br-sp {
        display: none;
    }
    .target_nav {
        right: 50%;
        transform: translate(calc(-50% + 300px), -50%);
    }
    .header__link:hover .t_nav_tex {
        color: #B66F73;
    }
    .common_btn {
        max-width: 42rem;
        transition: all .3s ease;
    }
    .common_btn:hover {
        background: #e3b6b8;
        border-color: #e3b6b8;
    }
    .contactNav {
        transition: all .3s ease;
    }
    .contactNav:hover {
        background: #e3b6b8;
    }
}

@media screen and (min-width: 1000px) {
    .bk_textR {
        display: block;
    }
    .t_nav_tex {
        display: block;
    }
}

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

/* =============================================
    header
==============================================*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header_logo {
    width: 25rem;
}

@media screen and (min-width: 750px) {
    .header_logo {
        width: 27rem;
    }
}

/* =============================================
    footer
==============================================*/
.footer {
    background: #fff;
    padding: 4.8rem 0 8.6rem;
}

.footer_logo {
    max-width: 13.4rem;
    margin-inline: auto;
}

.footer_links {
    text-align: center;
    margin-top: 3.2rem;
}

.footer_instagram {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 5px;
    font-family: "Shippori Mincho", serif;
    font-size: 1.7rem;
    font-weight: 500;
    max-width: 32rem;
    margin-inline: auto;
    padding: 2rem 0;
}

.footer_instagram img {
    width: 2.1rem;
    margin-right: 0.8rem;
}

.footer_instagram::after,
.footer_hp::after {
    position: absolute;
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border: 0;
    border-top: solid 2px #4A4A4A;
    border-right: solid 2px #4A4A4A;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%) rotate(45deg);
    margin: auto;
}

.footer_hp {
    position: relative;
    display: inline-block;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 1.6rem;
    margin: 3.2rem auto 0;
    padding-right: 2.6rem;
}

.footer_hp::before {
    position: absolute;
    content: "";
    background: #4A4A4A;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    transition: all .3s ease;
}

.footer_hp::after {
    right: 0.55rem;
}

.footer_copy {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 5.6rem;
}

@media screen and (min-width: 750px) {
    .footer_instagram {
        font-size: 1.8rem;
        max-width: 42rem;
        padding: 2.8rem 0;
        transition: all .3s ease;
    }
    .footer_instagram img {
        width: 2.4rem;
        margin-right: 0.8rem;
    }
    .footer_instagram:hover {
        background: #e3e3e3;
    }
    .footer_instagram::after,
    .footer_hp::after {
        width: 1rem;
        height: 1rem;
        transition: all .3s ease;
    }
    .footer_hp {
        font-size: 2rem;
        margin: 2.4rem auto 0;
        padding-right: 2rem;
        transition: all .3s ease;
    }
    .footer_hp:hover {
        color: #a7a2a2;
    }
    .footer_hp:hover::after {
        border-top: solid 2px #a7a2a2;
        border-right: solid 2px #a7a2a2;
    }
    .footer_hp:hover::before {
        background: #a7a2a2;
    }
}

/* =============================================
    メインビジュアル
==============================================*/
.mv {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 3rem;
    padding-top: 10.4rem;
}

.mv_catch {
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
}

.mv_catch img,
.mv_img img {
    width: 100%;
}

.mv_sub {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 1.7rem;
    margin-top: 1.6rem;
}

.mv_img {
    width: 100%;
    max-width: 36rem;
    margin: 1.6rem auto 0;
}

.mv_law {
    margin-top: 2.2rem;
}

.mv_contactTop img {
    width: 22.4rem;
    margin-inline: auto;
}

@media screen and (min-width: 750px) {
    .mv_catch {
        max-width: 36.3rem;
    }
    .mv_sub {
        font-size: 2rem;
    }
    .mv_img {
        max-width: 46.2rem;
    }
}

/* =============================================
    お悩み
==============================================*/
.problem {
    position: relative;
    background: #F7F3EE;
    padding: 4.8rem 0 5.2rem;
}

.problem .section_title {
    max-width: 34rem;
}

.problem_contents {
    margin-top: 3.6rem;
}

.problem_contents.inner {
    padding: 0 2rem;
}

.problem_content:not(:first-child) {
    margin-top: 1rem;
}

.problem_content {
    max-width: 100%;
}

.problem_content.content01 {
    width: 27.7rem;
    margin-left: 2rem;
}
.problem_content.content02 {
    max-width: 26rem;
    margin-left: auto;
}
.problem_content.content03 {
    max-width: 26.6rem;
}

.problem_content img {
    width: 100%;
}

.problem_illust {
    position: relative;
    max-width: 34rem;
    margin-top: 2rem;
    margin-left: auto;
    z-index: 30;
}

.problem_bg {
    position: absolute;
    content: "";
    background: url(../images/bg_problemGrade.png) no-repeat;
    background-size: cover;
    background-position: bottom center;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 13rem;
    z-index: 20;
}

@media screen and (min-width: 750px) {
    .problem .section_title {
        max-width: 40rem;
    }
    .problem_contents {
        margin-top: 4.8rem;
    }
    .problem_contents.inner {
        padding: 0 4rem;
    }
    .problem_content.content01 {
        width: 30.4rem;
        margin-left: 2rem;
    }
    .problem_content.content02 {
        max-width: 28.7rem;
    }
    .problem_content.content03 {
        max-width: 29rem;
    }
    .problem_illust {
        max-width: 46rem;
        margin-top: 0.8rem;
    }
}

/* =============================================
    課題解決ポイント
==============================================*/
.resolution {
    background: #FBF3EC;
    padding: 3.2rem 0 4.8rem;
}

.resolution .section_title {
    max-width: 34rem;
}

.resolution_contents {
    margin-top: 3.2rem;
}

.resolution_contents li {
    background: #fff;
    border-radius: 5px;
    width: 100%;
    padding: 2rem 2.7rem;
}

.resolution_contents li:not(:first-child) {
    margin-top: 3.2rem;
}

.resolution_contents h3 {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 1.9rem;
    font-weight: 700;
}

.resolution_contents img {
    width: 25rem;
    margin: 1.6rem auto 0;
}

.resolution_contents p {
    font-size: 1.6rem;
    margin-top: 1.6rem;
}

@media screen and (min-width: 750px) {
    .resolution .section_title {
        max-width: 43.6rem;
    }
    .resolution_contents li {
        padding: 3.2rem 3.6rem;
    }
    .resolution_contents h3 {
        font-size: 2.4rem;
    }
}

/* =============================================
    メッセージ・動画
==============================================*/
.company {
    background: #FCFAF5;
    padding: 4.8rem 0;
}

.company_pic {
    position: relative;
    display: block;
    padding-top: 56.25%;
}

.company_pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company_text {
    font-size: 1.6rem;
    margin-top: 1.6rem;
}

.company_movie {
    margin-top: 4.8rem;
}

.company_movie h3 {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 1.9rem;
    font-weight: 500;
    margin-bottom: 2.4rem;
}

.company_movie video {
    width: 100%;
    height: 100%;
}

.company_appeal {
    margin-top: 2.4rem;
}

.company_appeal p {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 2rem;
    font-weight: 500;
}

.company_appeal img {
    max-width: 32rem;
    margin-inline: auto;
}

@media screen and (min-width: 750px) {
    .company_appeal img {
        max-width: 42rem;
    }
    .company_movie h3 {
        font-size: 2.4rem;
    }
}

/* =============================================
    3つのお約束
==============================================*/
.promise {
    padding: 4.8rem 0;
}

.promise .section_title {
    max-width: 27rem;
}

.promise_contents {
    margin-top: 3.2rem;
}

.promise_contents li {
    background: #F3E9E1;
    border-radius: 5px;
    padding: 2rem 2.7rem;
}

.promise_contents li:not(:first-child) {
    margin-top: 2.4rem;
}

.promise_contents h3 {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 1.9rem;
    font-weight: 700;
}

.promise_contents img {
    width: 100%;
    margin-top: 1.6rem;
}

.promise_contents p {
    font-size: 1.6rem;
    margin-top: 1.6rem;
}

@media screen and (min-width: 750px) {
    .promise .section_title {
        max-width: 28.8rem;
    }
    .promise_contents li {
        padding: 3.2rem 4rem;
    }
    .promise_contents h3 {
        font-size: 2.4rem;
    }
}

/* =============================================
    失敗パターン・成功の鍵メッセージ
==============================================*/
.failure {
    background: #F5F5F5;
    padding: 2.4rem 0 0;
}

.failure .section_title {
    max-width: 32rem;
}

.failure_contents {
    margin-top: 4rem;
}

.failure_contents li {
    position: relative;
    background: #fff;
    max-width: 34rem;
    padding: 5.2rem 3rem 3rem;
}

.failure_contents li:not(:first-child) {
    margin-top: 3.6rem;
}

.failure_contents li:nth-of-type(odd) {
    margin-left: auto;
}

.failure_contents li::before {
    position: absolute;
    content: "";
    background: url(../images/no_failure-case1.png) no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
    width: 5rem;
    height: 5.3rem;
}
.failure_contents li:nth-of-type(2)::before {
    background: url(../images/no_failure-case2.png) no-repeat;
    background-size: contain;
}
.failure_contents li:nth-of-type(3)::before {
    background: url(../images/no_failure-case3.png) no-repeat;
    background-size: contain;
}

.failure_contents h3 {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 2.1rem;
    font-weight: 700;
}

.failure_contents img {
    max-width: 31rem;
    margin: 1.6rem auto 0;
}

.failure_contents p {
    font-size: 1.6rem;
    margin-top: 1.6rem;
}

.failure_contents p span {
    position: relative;
    font-weight: 700;
    background: linear-gradient(transparent 70%, rgba(235,217,51,0.62) 0%);
    display: inline;
}

.failure_key {
    width: 100%;
    max-width: 100%;
}

@media screen and (min-width: 750px) {
    .failure .section_title {
        max-width: 37.4rem;
    }
    .failure_contents {
        margin-top: 5.6rem;
    }
    .failure_contents li {
        max-width: 44rem;
        padding: 3.2rem 3.7rem;
    }
    .failure_contents li:not(:first-child) {
        margin-top: 5.6rem;
    }
    .failure_contents li::before {
        width: 6.2rem;
        height: 6.4rem;
    }
}

/* =============================================
    私たちが選ばれる理由
==============================================*/
.reason {
    padding: 6.6rem 0 4.8rem;
}

.reason .section_title {
    max-width: 24rem;
}

.reason_contents {
    margin-top: 4.4rem;
}

.reason_contents li:not(:first-child) {
    margin-top: 3.2rem;
}

@media screen and (min-width: 750px) {
    .reason .section_title {
        max-width: 28.8rem;
    }
}

/* =============================================
    お客様の声
==============================================*/
.voice {
    background: #F7F3EE;
    padding: 4.8rem 0;
}

.voice .section_title {
    max-width: 20rem;
}

.voice_contents {
    margin-top: 2.4rem;
}

.voice_contents li:not(:first-child) {
    margin-top: 4rem;
}

.voice_contents img {
    width: 100%;
}

.voice_contents h3 {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1.6rem;
}

.voice_contents p {
    font-size: 1.6rem;
    margin-top: 1.6rem;
}

@media screen and (min-width: 750px) {
    .voice .section_title {
        max-width: 22.7rem;
    }
}

/* =============================================
    よくある質問
==============================================*/
.qa {
    padding: 4.8rem 0 6rem;
}

.qa .section_title {
    max-width: 16.6rem;
}

.qa_accordion {
    margin-top: 3.2rem;
}

.qa_accordion .accordion_one:not(:first-of-type) {
    margin-top: 1.6rem;
}

.accordion_one .accordion_header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.6rem 4.4rem 1.6rem 6.4rem;
    z-index: 1;
    min-height: 6.8rem;
    cursor: pointer;
    transition-duration: 0.3s;
}

.accordion_one .accordion_header .header_q {
    position: absolute;
    content: "";
    background: url(../images/icon_qa-q.png) no-repeat;
    background-size: contain;
    top: 1.6rem;
    left: 1.6rem;
    width: 3.6rem;
    height: 3.6rem;
}

.accordion_one .accordion_header::before,
.accordion_one .accordion_header::after {
    position:absolute;
    content:'';
    top: 50%;
    right: 1.6rem;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 2px;
    background: #4A4A4A;
}

.accordion_one .accordion_header::after {
    transform: translateY(-50%) rotate(-90deg);
    transition: transform 0.3s;
}

.accordion_one .accordion_header.open::after {
    transform: rotate(-0deg);
}

.accordion_one .accordion_inner {
    display: none;
    font-size: 1.5rem;
    padding: 1.6rem;
    box-sizing: border-box;
}

.accordion_one .accordion_inner .box_one {
    position: relative;
    height: auto;
    padding-left: 4.8rem;
}

.accordion_one .accordion_inner .box_one::before {
    position: absolute;
    content: "";
    background: url(../images/icon_qa-a.png) no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
    width: 3.6rem;
    height: 3.6rem;
}

.accordion_one .accordion_inner p.txt_a_ac {
    position: relative;
    margin: 0;
}

@media screen and (min-width: 750px) {
    .qa .section_title {
        max-width: 18.4rem;
    }
    .accordion_one .accordion_header:hover {
        color: #979797;
    }
}

/* =============================================
    お問い合わせ
==============================================*/
.reservation {
    background: #F7F3EE;
    text-align: center;
    padding: 4.8rem 0;
}

.reservation_text {
    position: relative;
    display: inline-block;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0.8rem 1.4rem;
}

.reservation_text::before,
.reservation_text::after {
    position: absolute;
    content: "";
    border: 1px dashed #818181;
    width: 100%;
    height: 1px;
    left: 0;
}

.reservation_text::before {
    top: 0;
}
.reservation_text::after {
    bottom: 0;
}

.reservation_support {
    max-width: 33rem;
    margin: 2.2rem auto 3rem;
}

@media screen and (min-width: 750px) {
    .reservation_text {
        font-size: 2rem;
    }
    .reservation_support {
        max-width: 37rem;
        margin: 3.2rem auto 4rem;
    }
}