@charset "utf-8";

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

:root {
    /* フォント */
    --fontA: "Noto Sans JP", sans-serif;
    --fontB: "Shippori Mincho B1", serif;
    --fontC: "Yuji Syuku", serif;
    /* カラー */
    --white: #fff;
    --black: #462000;
    --primary: #CD302C;
    --secondary: #FFF5E0;
    --tertiary: #EBD7B8;
    --quaternary: #CF9A20;
    /* --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.11;
    transition: all .3s;
    background: var(--secondary);
    overflow-x: hidden;
}

p {
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2.11;
    font-size: 14px;
}

.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;
    font-weight: 400;
}

/* .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: 100px;
    margin-top: -100px;
}

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

.txt16 {
    font-size: 14px;
}

.txt18 {
    font-size: 15px;
}

.pt24 s {
    text-decoration: none;
    font-size: 18px;
}

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


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

.tit48 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.05em;
    font-family: var(--fontB);
}

.pt64 s {
    text-decoration: none;
    font-size: 30px;
    color: var(--primary);
    line-height: 1.2em;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.23);
}

.tit64 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.45;
    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: 1470px;
    padding: 0 15px;
    margin: 0 auto;
}

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

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

.header.is-scroll .hBx {
    height: 100px;
}

.hBxR {
    gap: 15px;
}

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

.is-hidden {
    opacity: 0;
    pointer-events: none;
}

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

.btn01 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    max-width: 210px;
    height: 50px;
    padding: 0 20px 0 30px;
    border: 1px solid var(--primary);
    background: var(--primary);
    transition: all .3s;
}

.btn01 p {
    font-family: var(--fontB);
    color: var(--white);
    font-size: 17px;
    line-height: 1.45em;
    letter-spacing: 0;
    font-weight: bold;
    transition: all .3s;
}

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

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

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

.btn01:hover::before {
    filter: brightness(0) saturate(100%) invert(18%) sepia(98%) saturate(1839%) hue-rotate(0) brightness(118%) contrast(92%);
}

.btn01.btnLine {
    flex-direction: row;
    padding: 0 10px;
    gap: 5px;
    justify-content: center;
}

.btn01.btnLine img {
    width: 30px;
    aspect-ratio: 1/1;
}

.btn01.btnLine p {
    font-size: 16px;
    letter-spacing: 0;
}

.btn01.btnLine::before {
    display: none;
}

.btn02 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 250px;
    height: 50px;
    padding: 0 20px 0 20px;
    border: 1px solid var(--primary);
    background: var(--primary);
    transition: all .3s;
}

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

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

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

.btnCalendar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 250px;
    height: 50px;
    gap: 15px;
    padding: 0 10px;
    background: url(/system_panel/uploads/images/calendar_btn.jpg) no-repeat top right /cover;
    transition: all .3s;
}

.btnCalendar:hover {
    filter: brightness(1.15);
}

.btnCalendar::before {
    content: "";
    display: block;
    width: 25.6px;
    aspect-ratio: 2560/2743;
    background: url(/system_panel/uploads/images/calendar-icon.svg)no-repeat center /contain;
}

.btnCalendar p {
    font-family: var(--fontB);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.45;
    font-weight: 700;
    color: var(--white);
}

.telBx {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 210px;
    height: 50px;
    padding: 0 14px;
    background: var(--white);
    transition: all .3s;
}

.telBx>div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 8px;
    margin: -2px 0 0;
}

.telBx>div::before {
    content: "";
    display: block;
    width: 8px;
    aspect-ratio: 900/2355;
    background: url(/system_panel/uploads/images/tel_icon_black.svg) no-repeat center /contain;
    transition: all .3s;
}

.telBx>p {
    font-size: 11px;
    line-height: 1em;
    letter-spacing: 0;
    font-family: var(--fontB);
    font-weight: 700;
    text-align: center;
}

.telBx>div>p {
    font-size: 22px;
    line-height: 1em;
    letter-spacing: 0;
    font-weight: 700;
}

.telFl {
    display: flex;
    align-items: center;
    gap: 8px;
}

.telFl img {
    display: block;
    width: 9px;
    margin: 3px 0 0;
}

.telFl p {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 500;
}

.btnGr {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    place-items: center;
}

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

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

.inWrapBg {
    padding: 60px 0;
    background: linear-gradient(0deg, rgba(255, 245, 224, 0) 0%, rgba(255, 255, 255, 1) 13%, rgba(255, 255, 255, 1) 81%, rgba(255, 245, 224, 1) 100%);
}

.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: 280px;
    margin: 134px 0 0;
}

.cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(84, 84, 84, 0) 39%, rgba(38, 20, 3, 1) 100%);
}

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

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

.cvrTit {
    position: relative;
    padding: 0 0 5px 0;
    font-size: 32px;
    font-family: var(--fontB);
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 700;
    color: var(--white);
}

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

.pankuzuAr {
    margin: 0 auto;
    padding: 10px 15px 0;
    max-width: 1470px;
    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;
}

/* オリジナル */

.linkBtn {
    position: relative;
}

.linkBtn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #261403;
    opacity: .8;
    transition: all .3s;
}

.linkBtn:hover::before {
    opacity: .4;
}

.cmnDeco01 {
    position: absolute;
    width: 18%;
    max-width: 320px;
    left: 0;
}

.cmnDeco02 {
    position: absolute;
    width: 26%;
    max-width: 483px;
    right: 0;
}

.cmnDeco03 {
    position: absolute;
    width: 24%;
    max-width: 443px;
    right: 20px;
}

.cmnDeco04 {
    position: absolute;
    width: 26%;
    max-width: 483px;
    left: 0;
}

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


    .btnGr {
        grid-template-columns: repeat(2, 1fr);
    }


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

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



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

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



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

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


    p {
        font-size: 16px;
    }


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

    .inWrapBg {
        padding: 110px 0;
    }

    .inBtm {
        padding-bottom: 150px;
    }

    .cover {
        height: 320px;
    }

    .cvrTit {
        font-size: 40px;
    }

    .btn01 {
        padding: 0 27px 0 38px;
        max-width: 233px;
        height: 56px;
    }

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

    .btn01.btnLine {
        gap: 10px;
    }

    .btn01.btnLine img {
        width: 32px;
    }

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

    .btn02 {
        max-width: 280px;
        height: 56px;
    }

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

    .telBx {
        max-width: 233px;
        height: 56px;
    }

    .telBx>div::before {
        width: 9px;
    }

    .telBx>p {
        font-size: 12px;
    }

    .telBx>div>p {
        font-size: 28px;
    }

    .telFl {
        display: flex;
        align-items: center;
        gap: 12.3px;
    }

    .telFl img {
        width: 10.6px;
    }

    .telFl p {
        font-size: 32px;
    }

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

    .txt16 {
        font-size: 15px;
    }

    .txt18 {
        font-size: 16px;
    }

    .pt24 s {
        font-size: 20px;
    }

    .tit30 {
        font-size: 22px;
    }

    .tit35 {
        font-size: 26px;
    }

    .tit48 {
        font-size: 32px;
    }

    .pt64 s {
        font-size: 40px;
    }

    .tit64 {
        font-size: 40px;
    }

    .subtit20 {
        font-size: 18px;
    }

    /* オリジナル */

    .btnGr {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 30px;
    }


}

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



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

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

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

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

    .inWrapBg {
        padding: 160px 0;
    }


    p {
        font-size: 18px;
    }

    .txt16 {
        font-size: 16px;
    }

    .txt18 {
        font-size: 18px;
    }

    .pt24 s {
        font-size: 24px;
    }

    .tit30 {
        font-size: 26px;
    }

    .tit35 {
        font-size: 30px;
    }

    .tit48 {
        font-size: 40px;
    }

    .pt64 s {
        font-size: 52px;
    }

    .tit64 {
        font-size: 52px;
    }

    .subtit20 {
        font-size: 20px;
    }

    .btnCalendar {
        max-width: 300px;
        height: 56px;
    }

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

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

    .hBxR {
        gap: 30px;
    }

    .cvrTit {
        font-size: 52px;
    }

}

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



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

    .tit30 {
        font-size: 30px;
    }

    .tit35 {
        font-size: 35px;
    }

    .tit48 {
        font-size: 48px;
    }

    .pt64 s {
        font-size: 64px;
    }

    .tit64 {
        font-size: 64px;
    }
}

/* 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 ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */