@charset "utf-8";

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

:root {
    /* フォント */
    --fontA: "Noto Serif JP", serif;
    --fontB: "Kaisei HarunoUmi", serif;
    /* カラー */
    --white: #fff;
    --black: #333;
    --primary: #109E4E;
    --secondary: #FEF9F5;
    --tertiary: #D2F394;
    --quaternary: #F52F2F;
    /* --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: 600;
    font-style: normal;
    color: var(--black);
    letter-spacing: 0.05em;
    line-height: 2.5;
    transition: all .3s;
    background: var(--secondary);
    overflow-x: hidden;
}

p {
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 2.5;
}

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

.tit30 {
    font-size: 17px;
    line-height: 2;
    letter-spacing: 0;
    font-family: var(--fontB);
}


.tit35 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-family: var(--fontB);
}

.subtit20 {
    margin: 15px 0 0;
    font-size: 17px;
    line-height: 1.45;
    color: var(--primary);
    font-weight: 700;
}



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

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

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

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



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

.btn01 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    max-width: 150px;
    transition: all .3s;
}

.btn01 p {
    font-family: var(--fontB);
    color: var(--black);
    font-size: 16px;
    line-height: 1.45em;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.btn01::before {
    content: "";
    display: block;
    width: 26px;
    aspect-ratio: 1/1;
    background: url(/system_panel/uploads/images/btn_arrow01.png) no-repeat center /contain;
    transition: all .3s;
}

.btn01:hover::before {
    transform: translateX(10px);
}

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

.btn01.btnWhite::before {
    background: url(/system_panel/uploads/images/btn_arrow03.png) no-repeat center /contain;
    transition: all .3s;
}

.btn02 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 160px;
    height: 40px;
    border-radius: 100vmax;
    transition: all .3s;
}

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

.btn03 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 55px;
    border-radius: 100vmax;
    transition: all .3s;
}

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

.btnQuaternary {
    background: var(--white);
    border: 2px solid var(--quaternary);
}

.btnQuaternary:hover {
    background: var(--quaternary);
}

.btnQuaternary p {
    color: var(--quaternary);
}

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

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

.btnQuaternary:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) brightness(200%) contrast(100%);
}

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

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

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

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

.telBx {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 55px;
    border-radius: 100vmax;
    transition: all .3s;
    border: 2px solid var(--primary);
    gap: 10px;
}

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

.telBx img {
    width: 25px;
}

.telBx {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 55px;
    border-radius: 100vmax;
    transition: all .3s;
    border: 2px solid var(--primary);
    gap: 10px;
    background: var(--white);
}

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

.telBx img {
    width: 20px;
}

.mailBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 450px;
    height: 55px;
    border-radius: 100vmax;
    transition: all .3s;
    border: 2px solid #99CB3A;
    gap: 10px;
    background: var(--white);
}

.mailBtn p {
    font-family: var(--fontB);
    font-size: 14px;
    line-height: 1.45em;
    letter-spacing: 0.05em;
    font-weight: bold;
    transition: all .3s;
    color: #99CB3A;
}

.mailBtn img {
    width: 20px;
    transition: all .3s;
}

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

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

.mailBtn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) brightness(200%) contrast(100%);
}

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

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

/* オリジナル */

.linkFlLink {
    position: relative;
    aspect-ratio: 13/6;
}

.linkFlLink::before {
    content: "";
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    aspect-ratio: 69/52;
    width: 45px;
    background: url(/system_panel/uploads/images/btn_arrow02.png) no-repeat right bottom /contain;
}

.linkFlLink::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all .3s;
}

.linkFlLink01::after {
    opacity: .6;
    background: #99CB3A;
}

.linkFlLink01:hover::after {
    opacity: .25;
}

.linkFlLink02::after {
    opacity: .45;
    background: #109E4E;
}

.linkFlLink02:hover::after {
    opacity: .15;
}

.linkTit {
    font-family: var(--fontB);
}

.linkTit,
.linkSubtit {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

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

    .inBtm {
        padding-bottom: 150px;
    }

    .cover {
        height: 400px;
    }

    .btn01 {
        max-width: 173px;
    }

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

    .btn01::before {
        width: 31px;
    }

    .btn02 {
        max-width: 200px;
        height: 50px;
    }

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

    .btn03 {
        max-width: 320px;
        height: 60px;
    }

    .btn03 p {
        font-size: 22px;
    }

    .telBx {
        max-width: 320px;
        height: 60px;
        gap: 15px;
    }

    .telBx p {
        font-size: 21px;
    }

    .telBx img {
        width: 25px;
    }

    .mailBtn {
        max-width: 500px;
        height: 60px;
        gap: 15px;
    }

    .mailBtn p {
        font-size: 18px;
    }

    .mailBtn img {
        width: 25px;
    }

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

    .txt16 {
        font-size: 16px;
    }

    .tit30 {
        font-size: 22px;
    }

    .tit35 {
        font-size: 26px;
    }

    .subtit20 {
        font-size: 18px;
    }

    /* オリジナル */

}

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



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




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

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

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

    .tit30 {
        font-size: 26px;
    }

    .tit35 {
        font-size: 30px;
    }

    .subtit20 {
        font-size: 20px;
    }


    .linkFlLink::before {
        width: 69px;
    }

    .btn03 {
        max-width: 350px;
        height: 65px;
    }

    .btn03 p {
        font-size: 25px;
    }

    .telBx {
        max-width: 350px;
        height: 65px;
        gap: 25px;
        padding: 0 20px 0 0;
    }

    .telBx p {
        font-size: 23px;
    }

    .mailBtn {
        max-width: 520px;
        height: 65px;
        gap: 25px;
    }

    .mailBtn p {
        font-size: 23px;
    }

}

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



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

    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
    .tit30 {
        font-size: 30px;
    }

    .tit35 {
        font-size: 35px;
    }

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

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


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

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

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



    /* オリジナル */
}

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


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

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


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

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