@charset "utf-8";

/* -----------------------------------------------------------
## 共通
----------------------------------------------------------- */

:root {
    /* フォント */
    --fontA: "Zen Kaku Gothic New", sans-serif;
    --fontB: "Cardo", serif;
    --fontC: "Roboto", sans-serif;
    --fontD: "Noto Serif", serif;
    /* カラー */
    --white: #fff;
    --black: #333;
    --primary: #879F5C;
    --secondary: #84603A;
    --tertiary: #2C2C2C;
    --quaternary: #D9D9D9;
    --fifth: #979797;
    /* --sixth: #EBE2D1;
    --seventh: #A7793D;
    --eighth: #E2D4BD; */
    /*--gradation01: linear-gradient(90deg, #fff200 15%, #fef659 55%, #fffcbe 75%, #e9dd00 95%);
    --gradation01-hover: linear-gradient(90deg, #fff200 5%, #fef659 20%, #fffcbe 35%, #e9dd00 95%); */
}

#root {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}



/* ★★★★★★★★ */
/* ★★★★★★★★初期設定★★★★★★★★ */
/* ★★★★★★★★ */

body {
    position: relative;
    width: 100%;
    -webkit-text-size-adjust: ('none' '100%' 'auto');
    font-family: var(--fontA);
    font-weight: 500;
    font-style: normal;
    color: var(--black);
    letter-spacing: 0em;
    line-height: 1.667em;
    transition: all ease .3s;
    background: #F9F9F9;
    overflow-x: hidden;
}

p {
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.667;
}

.fontA {
    font-family: var(--fontA);
    font-style: normal;
}

.fontB {
    font-family: var(--fontB);
    font-style: normal;
    font-weight: 700;
}

.fontC {
    font-family: var(--fontC);
    font-style: normal;
}

.fontD {
    font-family: var(--fontD);
    font-style: normal;
}

.ptFontA s {
    text-decoration: none;
    font-family: var(--fontA);
}

.ptFontB s {
    text-decoration: none;
    font-family: var(--fontB);
}

.ptFontC s {
    text-decoration: none;
    font-family: var(--fontC);
}

.anchor {
    position: relative;
    z-index: -99;
    pointer-events: none;
    padding-top: 80px;
    margin-top: -80px;
}

/* +++++++++++++テキスト+++++++++++++ */

.txt16 {
    /* 14-16 */
    font-size: calc(0.875rem + ((1vw - 3.75px) * 0.1294));
    min-height: 0vw;
    letter-spacing: .05em;
    line-height: 1.875em;
}

.txt18 {
    /* 16-18px */
    font-size: calc(0.9375rem + ((1vw - 3.75px) * 0.0647));
    min-height: 0vw;
    letter-spacing: .05em;
    line-height: 1.875em;
}

.txt22 {
    /* 18-22px */
    font-size: calc(1.125rem + ((1vw - 3.75px) * 0.2589));
    min-height: 0vw;
    letter-spacing: 0.05em;
    line-height: 1.875em;
}

.txt30 {
    /* 19-30px */
    font-size: calc(1.1875rem + ((1vw - 3.75px) * 0.712));
    min-height: 0vw;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    font-weight: bold;
}

.title138 {
    /* 35-138 */
    font-size: calc(2.1875rem + ((1vw - 3.75px) * 6.6667));
    min-height: 0vw;
    letter-spacing: 0em;
    line-height: 1.5em;
    font-weight: bold;
    font-family: var(--fontB);
}


/* -------------テキスト------------- */

.area {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.inArea01 {
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}

.inArea02 {
    width: 100%;
    max-width: 1630px;
    padding: 0 15px;
    margin: 0 auto;
}

.inArea03 {
    width: 100%;
    max-width: 1030px;
    padding: 0 15px;
    margin: 0 auto;
}


/* ★★★★★★★★ボタン★★★★★★★★ */

.btn01 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 240px;
    height: 45px;
    transition: all .3s;
    border-radius: 100vmax;
}

.btn01 img {
    width: 16.5px;
    transition: all .3s;
}

.btn01 p {
    font-family: var(--fontC);
    font-size: 18px;
    line-height: 1.5em;
    letter-spacing: 0;
    font-weight: bold;
    transition: all .3s;
}

.btnPrimary {
    background: var(--primary);
    border: 2px solid var(--primary);
}

.btnPrimary:hover {
    background: var(--white);
}

.btnPrimary:hover img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(35%) saturate(419%) hue-rotate(40deg) brightness(95%) contrast(92%);
}

.btnPrimary p {
    color: var(--white);
}

.btnPrimary:hover p {
    color: var(--primary);
}

.btnSecondary {
    background: var(--secondary);
    border: 2px solid var(--secondary);
}

.btnSecondary:hover {
    background: var(--white);
}

.btnSecondary:hover img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(3%) saturate(5574%) hue-rotate(349deg) brightness(100%) contrast(104%);
}

.btnSecondary p {
    color: var(--white);
}

.btnSecondary:hover p {
    color: var(--secondary);
}

.btnTertiary {
    background: var(--tertiary);
    border: 2px solid var(--tertiary);
}

.btnTertiary:hover {
    background: var(--white);
}

.btnTertiary:hover img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(3%) saturate(5574%) hue-rotate(349deg) brightness(100%) contrast(104%);
}

.btnTertiary p {
    color: var(--white);
}

.btnTertiary:hover p {
    color: var(--tertiary);
}

/* ☆☆☆☆☆☆☆☆ボタン☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★shadow★★★★★★★★ */

.shadow01 {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.shadow02 {
    box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.shadow03 {
    box-shadow: 0 3px 6px 0 #000;
}

.txtShadow01 {
    text-shadow: 10px 10px 40px #00000066;
}

/* ☆☆☆☆☆☆☆☆shadow☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★透かしカバー★★★★★★★★ */
.cover01 {
    position: relative;
}

.cover01::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #FFF;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.33) 100%);
}

.cover02 {
    position: relative;
}

.cover02::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .35;
}

.cover03 {
    position: relative;
}

.cover03::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .88;
}

.cover04 {
    position: relative;
}

.cover04::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #311501;
    opacity: .88;
}

/* ☆☆☆☆☆☆☆☆透かしカバー☆☆☆☆☆☆☆☆ */




/* ☆☆☆☆☆☆☆☆初期設定☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★固定★★★★★★★★ */


.inWrap {
    width: 100%;
    margin: 70px 0 0 0;
}

.inBtm {
    padding-bottom: 80px;
}

.inBtmM {
    margin-bottom: 120px;
}


/* +++++++++++++テキストその他+++++++++++++ */

.uBar s {
    position: relative;
    padding: 0 0 1px 0;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

.dotsH strong {
    font-weight: 500 !important;
    background-position: top left 0px;
    background-repeat: repeat-x;
    background-size: 1.0em .3em;
    background-image: radial-gradient(3px 3px at center center, #fff, #fff 100%, transparent, transparent);
    padding-top: 5px;
}

.dotsH02 strong {
    font-weight: 700 !important;
    background-position: top left 0px;
    background-repeat: repeat-x;
    background-size: 1.0em .3em;
    background-image: radial-gradient(1.5px 1.5px at center center, #fff, #fff 100%, transparent, transparent);
    padding-top: 2px;
}



/* +++++++++++++hover+++++++++++++ */

.hvrDef {
    color: #482508;
}

.hvrDef:hover {
    color: #482508;
}

.hvrWhite {
    color: #fff;
}

.hvrWhite:hover {
    color: #fff;
}

.hvrCommon {
    color: #141418;
}

.hvrCommon:hover {
    color: #141418;
}

.hvrLight {
    transition: all ease .3s;
}

.hvrLight:hover {
    filter: brightness(1.2);
}

.hvrW {
    position: relative;
}

.hvrW::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    background-color: #fff;
    opacity: 0;
    z-index: 1;
    transition-duration: .3s;
}

.hvrW:hover::before {
    opacity: .2;
    pointer-events: none;
}

.hvrOpa4,
.hvrOpa5,
.hvrOpa7 {
    transition: all ease .3s;
}

.hvrOpa7:hover {
    opacity: .7;
}

.hvrOpa5:hover {
    opacity: .5;
}

.hvrOpa4:hover {
    opacity: .4;
}

.hvrUline:hover p,
.hvrUline:hover h1,
.hvrUline:hover h2,
.hvrUline:hover h3,
.hvrUline:hover h4 {
    text-decoration: underline;
}

.uLineYellow {
    text-decoration-line: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: var(--yellow);
}


.cmnA {
    color: #333;
    transition: all ease .3s;
}

.cmnA:hover {
    color: #8a8a8a;
}

.opa-white {
    position: relative;
    transition: all ease .3s;
}

.opa-white:hover {
    opacity: .7;
}

.opa-white::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #fff;
}


/* -------------hover------------- */


.flexWrap {
    flex-wrap: wrap;
}

.img-fit {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.pull {
    position: relative;
    cursor: pointer;
}


.pull:hover .down {
    visibility: visible;
    opacity: 1;
    display: block;
}

.down {
    display: none;
    visibility: hidden;
    position: absolute;
}


.borderB01 {
    border-bottom: #ccc 1px solid;
}

.tableBorder01 .row {
    border-bottom: 1px solid #E5E5E5;
}

.tableBorder02 .row {
    border-bottom: 1px solid #E5E5E5;
}

.pointerAuto {
    pointer-events: auto;
}

.pointerNone {
    pointer-events: none;
}

.wrRadius {
    border-radius: 30px 30px 0 0;
}

.wrBtm {
    padding: 0 0 30px 0;
}

.womensCover {
    background-position: 65% center !important;
}

.menuCover {
    background-position: 75% center !important;
}

.blogCover {
    background-position: 36% center !important;
}

.cover {
    position: relative;
    width: 100%;
    height: 100vh;
}

.cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .3;
}

.cvrAr {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1230px;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.cvrTit {
    margin: 30px 0 0;
    /* 35-138 */
    font-size: calc(2.1875rem + ((1vw - 3.75px) * 6.6667));
    min-height: 0vw;
    font-family: var(--fontB);
    letter-spacing: 0;
    line-height: 1.4;
    font-weight: 700;
    color: var(--black);
}

.pankuzuWr {
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
}

.pankuzuAr {
    margin: 0 auto;
    padding: 10px 15px 0;
    max-width: 1230px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 14px;
}

.pankuzuLink {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: var(--black);
}

.pankuzuLink:hover {
    color: var(--black);
}

.pankuzuTxt {
    padding: 0 0 2px;
    font-size: 14px;
}

.pankuzuLink>p {
    text-decoration: none;
}

.pankuzuLink:hover>p {
    text-decoration: underline;
}

/* オリジナル */
.tFvTitRight {
    width: 100%;
    direction: rtl;
}

.titUl01 {
    padding: 0 0 5px 0;
    border-bottom: 1px solid var(--black);
}

.inMenuTr {
    margin: 15px 0 0;
    padding: 0 0 8px 0;
    border-bottom: 1px solid var(--black);
}

.indicator {
    transition: all .3s;
}

.indicator:hover {
    filter: brightness(.8);
}

/* menu */
.menuLinkBx {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    place-items: center;
}

.menuLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 240px;
    padding: 9px 5px;
    transition: all .3s;
    background: var(--primary);
    border: 2px solid var(--primary);
}

.menuLink:hover {
    background: var(--white);
}

.menuLink p {
    font-family: var(--fontC);
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: 0;
    font-weight: bold;
    transition: all .3s;
    color: var(--white);
}

.menuLink:hover p {
    color: var(--primary);
}

.inMenuImgBx {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.inMenuImgBx .inMenuImg {
    width: 100% !important;
}

/* ranking */
.rankFlImgGr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.newReadLogo{
	opacity:0.05;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:414px) {
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */





    /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
    /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}

/* min-width: 414px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:544px) {
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



    /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
    /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}

/* min-width: 544px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 768px) {

    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

    .inWrap {
        margin: 150px 0 0 0;
    }

    .inBtm {
        padding-bottom: 150px;
    }

    .cover {
        height: 450px;
    }

    .btn01 {
        max-width: 280px;
        height: 60px;
    }

    .btn01 p {
        font-size: 20px;
    }

    .anchor {
        padding-top: 100px;
        margin-top: -100px;
    }

    /* オリジナル */
    .inMenuTr {
        margin: 25px 0 0;
        padding: 0 0 15px 0;
    }


    .inMenuTr:first-of-type {
        margin: 0;
    }

    /* menu */
    .menuLinkBx {
        grid-template-columns: repeat(4, 1fr);
    }

    .inMenuImgBx {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:992px) {
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */




    /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
    /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}

/* min-width: 992px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1024px) {
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */




    .wrRadius {
        border-radius: 100px 100px 0 0;
    }

    .wrBtm {
        padding: 0 0 100px 0;
    }

    .primaryBx {
        background: var(--primary);
        padding: 60px 60px;
    }

    .inTxtBx01 {
        padding: 60px 40px;
    }


    .btnReserve p,
    .btnContact p {
        font-size: 22px;
    }

    .btnReserveEn p {
        font-size: 24px;
    }

    .btnTel p {
        font-size: 28px;
    }

    .inMenuTr {
        gap: 15px;
    }

    /* menu */
    .menuLinkBx {
        gap: 10px 35px;
    }

    .inMenuImgBx {
        gap: 25px;
    }

    /* ranking */
    .rankFlImgGr {
        gap: 15px;
    }

}

/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1200px) {
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

    .cmnFlImgBx {
        width: 52% !important;
    }


    /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
    /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}

/* min-width: 1200px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1440px) {

    .bgDot::before {
        right: -30px;
        bottom: -30px;
    }

    .bgDot02::before {
        left: -30px;
        bottom: -30px;
    }

    .waterBg::before,
    .waterBg::after {
        height: 118px;
    }

    /* オリジナル */
}

/* min-width: 1440px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1600px) {}

/* min-width: 1600px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1920px) {

    .cvrTit {
        font-size: 138px;
    }

    .txt16 {
        font-size: 16px;
    }

    .txt18 {
        font-size: 18px;
    }

    .txt22 {
        font-size: 22px;
    }

    .txt30 {
        font-size: 30px;
    }

    .ptBigTxt s {
        font-size: 30px;
    }


}

/* min-width: 1920px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */