@charset "UTF-8";

/*======================
common
======================== */

* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family:
        'Zen Kaku Gothic New',
        'Noto Aerif JP',
        Arial,
        serif;
    background-color: #F6F3E7;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-style: normal;
    font-family: "Zen Kaku Gothic New";
    color: #634B3C;
    letter-spacing: 0;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

.title {
    color: #634B3C;
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 4.4rem;
    font-weight: 400;
}

.subTitle {
    width: 100%;
    text-align: center;
    color: #634B3C;
    font-family: "Noto Serif JP";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 23px auto 0;
}

.line {
    width: 84%;
    display: block;
    margin: 61px auto 0;
}

.sectionBg {
    background-color: #F6F3E7;
}

.spBr {
    display: none;
}

/* body sp */
@media screen and (max-width: 767px) {
    .title {
        font-size: 2.6rem;
    }

    .subTitle {
        font-size: 1.4rem;
    }

    .line {
        margin: 30px auto 0;
    }

    .spBr {
        display: block;
    }
}

/* btn */

.btnBody {
    position: relative;
    width: 405px;
    height: 63px;
    background: #413F43;
    margin: 63px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s;
}

.btnBody:hover {
    background: #7D7A80;
}

.btnTxt {
    position: relative;
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: normal;
}

.arrow {
    position: absolute;
    right: 34px;
    display: block;
    width: 14.5px;
    height: 10px;
}

/* btn sp */
@media screen and (max-width: 767px) {
    .btnBody {
        width: 260px;
        margin: 46px auto 0;
    }

    .btnTxt {
        font-size: 1.4rem;
    }

    .arrow {
        right: 32px;
    }
}


/*======================
header
======================== */
.header__logo {
    color: #595049;
    font-family: Palatino;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: normal;
}

.headerBody {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    padding: 35px 30px 35px 47px;
    justify-content: space-between;
    background-color: #FFF;
    z-index: 100;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

.header__list {
    display: flex;
    gap: 50px;
    align-items: center;
    white-space: nowrap;
}

.header__item {
    color: #595049;
    font-weight: 500;
    line-height: normal;
    transition: color 0.5s;
}

.header__item:hover {
    color: #AFA8A3;
}

.instagram {
    width: 34px;
    height: 34px;
    margin-right: 3.5%;
}

.header__right {
    width: 169px;
    display: flex;
    align-items: center;
    gap: 53px;
}

/* header sp */
@media screen and (max-width: 1350px) {
    .header__list {
        display: none;
    }

    .instagram {
        display: none;
    }

    .headerBody {
        padding: 35px 30px 35px 43px;
    }

    .header__right {
        width: 46px;
    }
}

/* .nav初期表示 */
.nav {
    background-color: #F6F3E7;
    background-image: url(../images/top/menu_img.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 120;
    transform: translateX(100%);
    transition: transform 0.4s;
    box-sizing: border-box;
    display: flex;
}

.nav__body {
    position: relative;
    margin-left: 42%;
    margin-right: 40px;
}

.nav__logo {
    display: block;
    width: 169px;
    position: absolute;
    margin-top: 35px;
    left: 47px;
}

.close__btn {
    display: block;
    width: 39px;
    position: absolute;
    margin-top: 35px;
    right: 4%;
}

.header__img {
    width: 505px;
    height: 810px;
}

.header__body {
    display: flex;
    margin-top: 120px;
    gap: 85px;
}

.header__title {
    color: #595049;
    font-size: 2.1rem;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
}

.header__btn--body {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 25px;
    transition: color 0.5s;
}

.header__btn--body:hover {
    color: #9A8F86;
}

.header__arrow {
    position: absolute;
    right: 12px;
}

.header__btn--txt {
    color: #595049;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    margin-top: 13px;
}

.header__btn--service {
    margin-top: 15px;
    margin-left: 15px;
}

.header__btn {
    margin-top: 25px;
}

.header__policy {
    display: flex;
    gap: 10%;
    align-items: center;
    margin-top: 32px;
    white-space: nowrap;
}

.cancelHeader__txt {
    color: #595049;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: normal;
}

.privacyHeader__txt {
    color: #595049;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: normal;
}

.headerBtn {
    display: block;
    color: #FFF;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.headerBtn__body {
    position: relative;
    justify-content: center;
    padding-top: 30px;
    margin-top: 72px;
    background: #413F43;
    color: #FFF;
    font-size: 2.8rem;
    width: 100%;
    height: 101px;
    transition: background-color 0.5s;
}

.headerBtn__body:hover {
    background-color: #7D7A80;
}

.headerArrow {
    position: absolute;
    width: 21px;
    height: 14px;
    top: 38%;
    right: 8%;
}

/* header sp */
@media screen and (max-width: 1200px) {
    .nav {
        display: block;
        background-image: none;
    }

    .nav__body {
        margin: 0 auto;
        padding: 0 18%;
    }

    .header__img {
        display: none;
    }

    .nav__logo {
        top: 5px;
        left: 40px;
    }

    .close__btn {
        top: 5px;
        margin-right: 30px;
    }

    .header__body {
        display: block;
        margin-top: 135px;
    }

    .headerBtn {
        font-size: 2.1rem;
        height: 59px;
    }

    .header__btn--line {
        width: 100%;
    }

    .header__policy {
        display: block;
    }

    .cancelHeader__txt {
        margin-top: 14px;
    }

    .privacyHeader__txt {
        margin-top: 14px;
    }

    .header__instagram {
        margin-top: 14px;
    }
}

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

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}


/*======================
main
======================== */

/* header */
.service__header--title {
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 4.4rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 200px
}

.service__header--line {
    display: block;
    margin: 61px auto 0;
    text-align: center;
}

.service__headerBox {
    display: flex;
    margin-top: 86px;
    gap: 89px;
    align-items: center;
    justify-content: center;
}

.service__header--box {
    width: 295px;
    height: 213px;
    text-align: center;
    padding-top: 35px;
}

.service__header--box1 {
    background-color: #D3BFBF;
}

.service__header--box2 {
    background-color: #BFCFD3;
}

.service__header--box3 {
    background-color: #D3D2BF;
}

.service__header--txt1 {
    font-family: "Noto Serif JP";
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1;
}

.service__header--txt2 {
    font-family: "Noto Serif JP";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 19px;
}

.service__header--btn {
    display: block;
    width: 214px;
    height: 44px;
    border-radius: 50px;
    border: 1px solid #595049;
    background: #FFF;
    margin: 29px auto 0;
    padding-top: 7px;
    transition: background-color 0.5s;
}

.service__header--btn:hover {
    background: #595049;;
    color: #FFF;
}

/* section sp */
@media screen and (max-width: 1024px) {
    .service__header--title {
        font-size: 2.6rem;
        font-weight: 400;
        line-height: 1.5;
        margin-top: 168px;
    }

    .service__header--line {
        margin: 35px auto 0;
        padding-left: 29px;
        padding-right: 29px;
    }

    .service__headerBox {
        display: block;
        margin-top: 42px;
    }

    .service__header--box {
        width: 92%;
        height: 181px;
        margin: 20px auto 0;
        padding-top: 33px;
        max-width: 600px;
    }

    .service__header--txt1 {
        font-size: 2.6rem;
    }

    .service__header--txt2 {
        font-size: 1.4rem;
        margin-top: 15px;
    }

    .service__header--btn {
        margin-top: 19px;
    }
}


/* section */
.service__sectionTitle {
    display: flex;
    align-items: center;
    gap: 37px;
    margin-top: 196px;
}

.service__sectionTitle--body {
    display: flex;
    gap: 37px;
    align-items: center;
}

.service__sectionTitle--txt {
    font-family: "Noto Serif JP";
    font-size: 4.4rem;
    font-weight: 400;
    line-height: normal;
}

.service__sectionSubtitle {
    font-family: "Noto Serif JP";
    font-size: 2.4rem;
    font-weight: 400;
    line-height: normal;
}

.serviceList {
    display: flex;
    gap: 69px;
    margin-top: 93px;
    margin-bottom: 200px;
    justify-content: center;
}

.serviceBox {
    width: 401px;
    height: 750px;
    background: #FFF;
    text-align: center;
    padding-top: 27px;
    padding-bottom: 37px;
}

.serviceTitle {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
}

.service__line {
    margin: 22px auto 0;
}

.serviceImg {
    margin: 32px auto 0;
}

.service__priceBox {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-top: 12px;
}

.service__price {
    font-size: 3rem;
    font-weight: 400;
    line-height: normal;
}

.service__tax {
    font-size: 2rem;
    font-weight: 400;
    line-height: normal;
}

.service__type {
    background-color: #595049;
    color: #FFF;
    border-radius: 20px;
    width: 240px;
    margin: 15px auto 0;
}

.service__txt {
    margin-top: 24px;
    height: 78px;
}

.service__txt--item {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: normal;
}

.serviceBtn {
    display: block;
    margin: 25px auto 0;
    width: 311px;
    height: 59px;
    background-color: #413F43;
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: normal;
    padding-top: 15px;
    transition: background-color 0.5s;
}

.serviceBtn:hover {
    background: #7D7A80;
}

/* slick */
/* dots */
.slick-prev:before,
.slick-next:before {
    color: black;
}

.slick-dots li button:before {
    font-size: 18px;
    top: 6px;
}

.dots-wrap {
    display: flex;
    justify-content: center;
}

.dots-wrap li {
    width: 7px;
    height: 7px;
    margin: 46px 10px 0;
    background: #CCC7C4;
    cursor: pointer;
    border-radius: 50%;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #634B3C;
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

/* arrows */
.arrow_box {
    display: flex;
    align-items: center;
    margin: 46px 0 0;
}

.prev-arrow,
.next-arrow {
    display: flex;
    width: 38px;
    height: 38px;
    background-color: #FFF;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    border: 1px solid #634B3C;
}

.prev-arrow {
    position: absolute;
    bottom: -13px;
    left: 52px;
    background-image: url(../images/top/voice_arrow_prev.svg);
    background-repeat: no-repeat;
    background-size: 13px auto;
    background-position: center;
}

.next-arrow {
    position: absolute;
    bottom: -13px;
    right: 52px;
    background-image: url(../images/top/voice_arrow.svg);
    background-repeat: no-repeat;
    background-size: 13px auto;
    background-position: center;
}

.toriireru {
    padding-bottom: 70px;
}

/* section sp */
@media screen and (max-width: 1880px) {
    .service__sectionTitle--body {
        display: block;
        align-items: left;
    }

    .service__sectionTitle--txt {
        font-size: 2.6rem;
    }

    .service__sectionSubtitle {
        font-size: 1.4rem;
        margin-top: 9px;
    }

    .service__section--line {
        width: 65px;
    }

    .service__sectionTitle {
        margin-top: 100px;
    }

    .serviceList {
        display: block;
        width: 92%;
        margin: 25px auto 0;
        max-width: 600px;
    }

    .serviceImg {
        margin-top: 25px;
    }

}