@charset "UTF=8";

* {
    margin: 0;
    padding: 0;
}

body {
    /* font-family: "Maru Gothic Pro W4", "ヒラギノ丸ゴ Pro W4"; */
    color: #434343;
    line-height: 1.6em;
    font-size: 14px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.wrapper {
    max-width: 90%;
    margin: 0 auto;
}

.francis {
    font-family: "ltc-francis", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.marker {
    background: linear-gradient(transparent 65%, #ddc8c7 50%);
}

.red {
    color: #ab272d;
}

.yellow {
    color: #ebbc67;
    text-shadow: 1px 1px 1px #fff;
    padding-right: 3px;
}

/********************
header
********************/
header {
    display: flex;
    padding: 10px;
    position: fixed;
    background-color: rgb(255, 255, 255, 0.9);
    width: 100%;
    z-index: 800;
}

header img {
    width: 30px;
    height: 30px;
    align-items: center;
}

.name {
    color: #ebbc67;
    font-size: 15px;
    padding-left: 10px;
    font-size: 14px;
    margin: auto 0;
}


/************************
nav
*************************/
.pc {
    display: none;
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 800;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 85%;
    height: 100vh;
    /*ナビの高さ*/
    background: rgb(255, 255, 255, 0.9);
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 800;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 800;
    top: 20px;
    left: 30px;
    /* transform: translate(-50%,-50%); */
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
}

#g-nav li a {
    color: #294242;
    text-decoration: none;
    padding: 20px;
    display: block;
    text-transform: uppercase;
    font-size: 15px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 0;
    right: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    /* border-radius: 2px; */
    background-color: #294242;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.nav-link {
    display: flex;
}

.nav-logo {
    width: 20px;
    margin: 20px;
}

/********************
top
*********************/
.top-img {
    padding-top: 50px;
    margin-bottom: 30px;
    background: url(../img/top.jpeg) no-repeat center center/cover;
    height: 70vh;
    position: relative;
}

.top-1 {
    width: 100px;
    position: absolute;
    top: 85px;
    left: 20px;
}

.top-2 {
    width: 230px;
    position: absolute;
    top: 125px;
    left: 20px;
}

.top-3 {
    width: 250px;
    position: absolute;
    bottom: 50px;
    right: 20px;
}


/******************
LINEリンク
*********************/
/* 固定リンク */
.line-link {
    width: 100%;
    background-color: #06C755;
    position: fixed;
    bottom: 0;
    z-index: 900;
    display: flex;
    padding: 15px;
    justify-content: center;
}

.line-link img {
    width: 20px;
    height: 20px;
}

.line-link p {
    color: #fff;
    text-align: center;
    padding-left: 10px;
}

/* 間のリンク */
.line {
    display: flex;
    background-color: #06C755;
    justify-content: center;
    padding: 20px;
    margin: 40px auto;
    color: #fff;
    border-radius: 30px;
    font-size: 15px;
    max-width: 300px;
}

.line img {
    width: 20px;
    height: 20px;
}

.line p {
    padding-left: 10px;
}

.line-triangle {
    position: relative;
    display: inline-block;
}
.line-triangle::after{
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-top: solid 1px #fff;   /* 好みで色を変えてください */  
    border-right: solid 1px #fff;   /* 好みで色を変えてください */  
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: -15px;
}


/* flowリンク */
.line-flow {
    display: flex;
    justify-content: center;
    background-color: #06C755;
    color: #fff;
    border-radius: 5px;
    /* width: 95%; */
    max-width: 200px;
    padding: 7px;
    margin: 13px 0;
}

.line-flow img {
    width: 20px;
    height: 20px;
}

.line-flow p {
    padding-left: 7px;
}

/*******************
写真
*******************/
.photo-1 {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.photo1-1 {
    width: 30%;
    height: 100%;
    align-self: flex-start;
}

.photo1-2 {
    width: 60%;
    height: 100%;
    align-self: flex-end;
    margin-top: 20px;
}

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

.photo3-1 {
    width: 30%;
    align-self: flex-end;
}

.photo3-2 {
    width: 30%;
    align-self: center;
    margin: 15px 0;
}

.photo3-3 {
    width: 30%;
    align-self: flex-start;
}

.photo-4 {
    width: 80%;
    margin: 0 0 0 auto;
}

/******************
section
*******************/
section {
    padding-top: 35px;
}

h2 {
    text-align: center;
    font-size: 18px;
    line-height: 1.5em;
    font-weight: bold;
}

.underline {
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid #294242;
    width: 60%;
    max-width: 200px;
    margin: 0 auto;
}

.under-white:before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) skew(-25deg);
    height: 10px;
    width: 10px;
    border-right: 2px solid #294242;
    background-color: #fff;
    content: "";
}

.under-pink:before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) skew(-25deg);
    height: 10px;
    width: 10px;
    border-right: 2px solid #294242;
    background-color: #f3e7e7;
    content: "";
}



/* お悩み */
.onayami {
    background-color: #fff;
    padding-bottom: 20px;
    position: relative;
    padding-top: 10px;
}

.onayami:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 25px solid #fff;
}

.note {
    display: flex;
    margin-top: 30px;
}

.note-text {
    list-style: none;
    padding: 0 20px 20px 20px;
    margin: 0 auto;
}

/* .note:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: auto;
    background-image: url(../img/notering.png);
    background-size: contain;
    vertical-align: middle;
} */

.note-text li {
    background: url(../img/check.png) no-repeat 0 0;
    background-size: auto 25px;
    padding-left: 30px;
    line-height: 2.5em;
    /* border-bottom: #434343 dotted 1px; */
    margin-bottom: 5px;
}

.check {
    width: 25px;
}

/* point */
.emisia {
    width: 150px;
}

.point {
    background-color: rgb(204, 173, 172, 0.3);
    ;
    padding-bottom: 30px;
    padding-top: 50px;
}

.point-white {
    background-color: #fff;
    margin: 13px auto;
    padding: 20px;
    max-width: 350px;
}

.point-box {
    display: flex;
    justify-content: center;
}

.point-blank {
    margin-top: 30px;
}

.point-left {
    /* width: 15%;
    margin: auto; */
    min-width: 70px;
    text-align: center;
    margin-right: 20px;
}

.point-left img {
    width: 50px;
}

.point-right {
    /* width: 75%; */
    min-width: 200px;
}


.point-p {
    font-size: 15px;
}

/* fee */

.fee-box {
    padding-top: 30px;
    width: 90%;
    margin: auto;
}

.fee-ippan {
    margin-bottom: 20px;
}

.fee-under {
    padding: 30px 0;
}

.fee-under p {
    line-height: 1.7em;
    padding-bottom: 5px;
}

/* 実績 */
.jisseki {
    margin-top: 30px;
    /* background-color: rgb(204, 173, 172, 0.3); */
    padding-bottom: 30px;
}

.slider {
    margin: 30px auto 0;
    max-width: 500px;
    width: 80%;
}

.slick-img img {
    height: auto;
    width: 100%;
}

.slick-dots li button:before {
    font-size: 3px;/*初期値は6px*/
}

.slick-dots {
    bottom: -30px;/*初期値は-25px*/
}

/* flow */
.flow-box {
    background-color: rgb(204, 173, 172, 0.3);
    margin-top: 30px;
    padding: 20px 0;
}

.flow-white {
    background-color: #fff;
    display: flex;
    margin: 0 20px;
    padding: 15px 20px 20px 10px;
    position: relative;
}

.triangle {
    margin-bottom: 30px;
}

.triangle:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #fff;
}

.flow-left {
    width: 15%;
    margin: auto;
    text-align: center;
}

.flow-right {
    width: 80%;
    padding-left: 5px;
}

.flow-img {
    width: 60px;
}

.flow-title {
    display: flex;
}

.flow-circle {
    background-color: #294242;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    z-index: 100;
    line-height: 35px;
    display: inline-block;
}

.flow-num {
    z-index: 200;
    color: #fff;
    text-align: center;
}

.flow-p {
    font-size: 16px;
    line-height: 35px;
    padding-left: 10px;
    font-weight: bold;
}

.flow-sentence {
    padding-top: 10px;
}

/* Q&A */
.question {
    font-size: 16px;
    padding-right: 5px;
}

.answer {
    font-size: 16px;
    padding-right: 5px;
    font-weight: bold;
    color: #ccadac;
}

.qa-box {
    margin-top: 20px;
}

.accordion {
    max-width: 500px;
    padding: 0 15px;
    margin: 0 auto;
    border-bottom: 1px dotted #ccadac;
    width: 90%;
}

.accordion .accordion_ttl {
    position: relative;
    background-color: #fff;
    color: #294242;
    padding: 15px;
    cursor: pointer;
}

/* .accordion .accordion_ttl:before,
.accordion .accordion_ttl:after {

    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    width: 14px;
    height: 2px;
    background: #294242;
    transition: 0.2s ease transform;
}

.accordion .accordion_ttl:after {

    transform: translate(0, -50%) rotate(-90deg);
}

.accordion .accordion_ttl.active:after {
    transform: translate(0, -50%) rotate(0deg);

} */

.accordion .accordion_cnt {
    padding: 0 15px;
    line-height: 1.5;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: 0.2s ease max-height;
}

.accordion .accordion_cnt p {
    margin-bottom: 13px;
}

/**************************
 footer 
 **************************/

footer {
    background-color: #294242;
    color: #fff;
    margin-top: 50px;
    padding-bottom: 80px;
}

.footer-logo {
    width: 60px;
    margin: 0 auto;
    padding-top: 20px;
}

.footer-name {
    text-align: center;
    padding-bottom: 20px;
}

table th {
    width: 20%;
}


/*================================
タブレットPCレスポンシブ
=================================*/
@media screen and (min-width: 770px) {

    body {
        line-height: 1.6em;
        font-size: 16px;
    }

    /*****************
    header nav
    *****************/
    .mobile {
        display: none;
    }

    #g-nav {
        display: none;
    }

    .openbtn {
        display: none;
    }

    .pc {
        background-color: #fff;
        display: block;
        position: fixed;
        z-index: 800;
        width: 100%;
    }

    header {
        background-color: #fff;
    }

    .name {
        font-size: 16px;
    }

    .pc-nav {
        position: fixed;
        z-index: 800;
        right: 0;
        font-size: 15px;
    }

    .pc-g-nav {
        display: flex;
    }

    .pc-nav-list ul {
        display: flex;
        padding-right: 10px;
    }

    .pc-nav-list ul li {
        padding: 10px;
    }

    .pc-nav-list ul li:hover {
        color: rgb(67, 67, 67,0.6);
    }

    .pc-nav-list ul li img {
        width: 20px;
    }

    .pc-nav-list ul li img:hover {
        opacity: 0.5;
    }

    .nav-logo {
        margin: 0;
        padding: 0 5px;
    }
    

    /****************
    top
    *****************/
    .top-img {
        height: 75vh;
    }

    .top-1 {
        width: 130px;
        top: 100px;
        left: 25%;
    }
    
    .top-2 {
        width: 300px;
        top: 160px;
        left: 25%;
    }
    
    .top-3 {
        width: 300px;
        bottom: 10%;
        left: 50%;
    }

    /********************
    写真
    **********************/
    .photo-1 {
        display: none;
    }

    .photo-3 {
        display: none;
    }

    .photo-4 {
        display: none;
    }

    /********************
    section
    ********************/

    section {
        padding-top: 50px;
    }

    /* point */
    .point-white {
        margin: auto;
        padding: 20px;
    }
    .point-pc {
        display: flex;
        margin-top: 30px;
        max-width: 800px;
        margin: 30px auto;
    }
    .point-blank {
        margin-top: 0;
    }
    .point-box {
        display: block;
    }
    .point-left {
        margin-right: 0;
    }
    .point-p {
        margin-top: 20px;
        text-align: center;
    }

    /* fee */
    .fee-box {
        display: flex;
        gap: 20px;
    }
    
    .fee-ippan {
        margin-bottom: 0;
        height: auto;
    }

    .fee-emisia {
        height: auto;
    }

    .fee-under {
        max-width: 600px;
        margin: 0 auto;
    }

    /* flow */
    .flow-box {
        max-width: 600px;
    }
}