@charset "utf-8";

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

:root {
    /* フォント */
    --fontA: "Zen Maru Gothic", sans-serif;
    --fontB: "Noto Serif JP", serif;
    /* カラー */
    --white: #FFFDFE;
    --black: #654F36;
    --primary: #F49827;
    --secondary: #FBF6F0;
    --tertiary: #FFEDCA;
    --quaternary: #D5EFFF;
    --fifth: #F4E7D9;
    --sixth: #F9EFE8;
    --seventh: #F4DEBF;
    --eighth: #B9874F;
    --ninth: #F0BADC;
    --tenth: #805A41;
}

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

#root::-webkit-scrollbar {
    display: none;
}



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

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: 0.05em;
    line-height: 2.25;
    transition: all ease .3s;
    background: var(--secondary);
    overflow-x: hidden;
}

p {
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2.25;
}

.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: 2.25em;
}

.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;
}

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

.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;
}

.txt40 {
    /* 21-40px */
    font-size: calc(1.3125rem + ((1vw - 3.75px) * 1.2298));
    min-height: 0vw;
}

.txt48 {
    /* 22-48px */
    font-size: calc(1.375rem + ((1vw - 3.75px) * 1.6828));
    min-height: 0vw;
}

.tit105 {
    /* 35-105 */
    font-size: calc(2.1875rem + ((1vw - 3.75px) * 4.5307));
    min-height: 0vw;
    font-family: var(--fontB);
    letter-spacing: 0.05em;
    line-height: 1.5em;
    font-weight: 400;
}


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

.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;
    width: 100%;
    max-width: 210px;
    height: 45px;
    transition: all .3s;
    border-radius: 10px;
}

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

.btn01::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    z-index: 1;
    display: flex;
    width: 6px;
    height: 10px;
    margin: auto 0;
    background: url(/system_panel/uploads/images/arrow01.svg) no-repeat center /contain;
}

.btn02 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 240px;
    height: 60px;
    border-radius: 10px;
    transition: all .3s;
}

.btn02 img {
    width: 21px;
}

.btn02 p {
    font-size: 17px;
}

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

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

.btnPrimary p {
    color: var(--white);
    transition: all .3s;
}

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

.btnPrimary::before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(11%) saturate(2203%) hue-rotate(240deg) brightness(103%) contrast(102%);
    transition: all .3s;
}

.btnPrimary:hover::before,
.btnPrimary.active::before {
    filter: brightness(0) saturate(100%) invert(75%) sepia(19%) saturate(4861%) hue-rotate(340deg) brightness(98%) contrast(95%);
}

.btnPrimary img {
    transition: all .3s;
    filter: brightness(0) saturate(100%) invert(100%) sepia(11%) saturate(2203%) hue-rotate(240deg) brightness(103%) contrast(102%);
}

.btnPrimary:hover img {
    filter: brightness(0) saturate(100%) invert(75%) sepia(19%) saturate(4861%) hue-rotate(340deg) brightness(98%) contrast(95%);
}

.btnTenth {
    background: var(--tenth);
    transition: all .3s;
    border: 2px solid var(--tenth);
}

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

.btnTenth p {
    color: var(--white);
    transition: all .3s;
}

.btnTenth:hover p {
    color: var(--tenth);
}

.btnTenth::before {
    transition: all .3s;
}

.btnTenth:hover::before {
    filter: brightness(0) saturate(100%) invert(36%) sepia(9%) saturate(1970%) hue-rotate(340deg) brightness(97%) contrast(89%);
}

.btnTenth img {
    transition: all .3s;
}

.btnTenth:hover img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(9%) saturate(1970%) hue-rotate(340deg) brightness(97%) contrast(89%);
}

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

/* ★★★★★★★★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;
}

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

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

.salonCvr::before {
    background: var(--quaternary);
}

.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 {
    position: relative;
    padding: 0 0 5px 0;
    /* 21-40px */
    font-size: calc(1.3125rem + ((1vw - 3.75px) * 1.2298));
    min-height: 0vw;
    font-family: var(--fontB);
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 700;
    color: var(--white);
}

.cvrTit::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 25px);
    height: 1px;
    background: var(--white);
}

.salonCvrTit::before {
    background: var(--black);
}

.cvrTxt {
    margin: 5px 0 0;
    /* 18-22px */
    font-size: calc(1.125rem + ((1vw - 3.75px) * 0.2589));
    min-height: 0vw;
    font-weight: 400;
    color: var(--white);
    font-family: var(--fontB);
    line-height: 1.5;
}

.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 {
    font-size: 14px;
    line-height: 1.5em;
}

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

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

.ratio1_1 {
    aspect-ratio: 1/1;
}

/* オリジナル */

.cptReadFlL::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background: var(--tertiary);
    border-radius: 40%;
}

.linkItem::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #361602;
    opacity: .8;
    transition: all .3s;
}

.linkItem:hover::before {
    opacity: .3;
}

.bgCircleWhite {
    position: relative;
}

.bgCircleWhite::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 80%;
    aspect-ratio: 1/1;
    background: var(--white);
    border-radius: 50%;
}

.indicator {
    transition: all .3s;
}

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

.accordionBtn {
    transition: all .3s;
}

.accordionBtn:hover {
    opacity: .7;
}

.accordionIconItem {
    transition: all .3s;
}

.accordionIconItem:first-of-type {
    transform: rotate(90deg);
}

.accordionIcon.active .accordionIconItem:first-of-type {
    transform: rotate(0deg);
}

.inLink a {
    color: var(--black);
    text-decoration: underline;
}

.inLink a:hover {
    color: var(--black);
    text-decoration: none;
}

.scrollBarNone::-webkit-scrollbar {
    display: none;
}

.tCptImgInr01 {
    aspect-ratio: 66 /53;
}

.tCptImgInr02 {
    aspect-ratio: 460/407;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@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: 400px;
    }

    .btn01 {
        max-width: 248px;
        height: 54px;
    }

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

    .btn01::before {
        right: 14.5px;
    }

    .btn02 {
        width: 100%;
        max-width: 290px;
        height: 76px;
    }

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

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

    /* オリジナル */

}

/* 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;
    }

}

/* 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: 40px;
    }

    .cvrTxt {
        font-size: 22px;
    }

    .txt16 {
        font-size: 16px;
    }

    .txt18 {
        font-size: 18px;
    }

    .txt22 {
        font-size: 22px;
    }

    .txt28 {
        font-size: 28px;
    }

    .txt30 {
        font-size: 30px;
    }

    .txt40 {
        font-size: 40px;
    }

    .txt48 {
        font-size: 48px;
    }

    .tit105 {
        font-size: 105px;
    }

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


}

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