@charset "utf-8";

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

:root {
    /* フォント */
    --fontA: "Shippori Mincho B1", serif;
    --fontB: "Hina Mincho", serif;
    /* カラー */
    --white: #fff;
    --black: #000;
    --primary: #333;
    --primaryLight: #C1D1E3;
    --secondary: #FFC24D;
    --tertiary: #F2F1E7;
    /* --quaternary: #5B7BE5;
    --fifth: #FFAA00;
    --sixth: #FFF200;
    --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;
}


.primary,
.primary p,
.primary h1,
.primary h2,
.primary h3,
.primary h4,
.primary a {
    color: var(--primary);
}

.primaryLight,
.primaryLight p,
.primaryLight h1,
.primaryLight h2,
.primaryLight h3,
.primaryLight h4,
.primaryLight a {
    color: var(--primaryLight);
}

.secondary,
.secondary p,
.secondary h1,
.secondary h2,
.secondary h3,
.secondary h4,
.secondary a {
    color: var(--secondary);
}

.tertiary,
.tertiary p,
.tertiary h1,
.tertiary h2,
.tertiary h3,
.tertiary h4,
.tertiary a {
    color: var(--tertiary);
}

.quaternary,
.quaternary p,
.quaternary h1,
.quaternary h2,
.quaternary h3,
.quaternary h4,
.quaternary a {
    color: var(--quaternary);
}

.fifth,
.fifth p,
.fifth h1,
.fifth h2,
.fifth h3,
.fifth h4,
.fifth a {
    color: var(--fifth);
}

.sixth,
.sixth p,
.sixth h1,
.sixth h2,
.sixth h3,
.sixth h4,
.sixth a {
    color: var(--sixth);
}

.black,
.black p,
.black h1,
.black h2,
.black h3,
.black h4,
.black a {
    color: var(--black);
}

.white,
.white p,
.white h1,
.white h2,
.white h3,
.white h4,
.white a {
    color: var(--white);
}

.ptSecondary s {
    text-decoration: none;
    color: var(--secondary);
}

.bgPrimary {
    background: var(--primary);
}

.bgPrimaryLight {
    background: var(--primaryLight);
}

.bgSecondary {
    background: var(--secondary);
}

.bgTertiary {
    background: var(--tertiary);
}

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

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

body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(/system_panel/uploads/images/top_bg01.png) repeat-y center top /auto;
}

p {
    letter-spacing: 0.05em;
}

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

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

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

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

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

/* 16-20 */
.txt20 {
    font-size: calc(1rem + ((1vw - 3.75px) * 0.2589));
    min-height: 0vw;
}

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

/* 20-35 */
.txt35 {
    font-size: calc(1.25rem + ((1vw - 3.75px) * 0.9709));
    min-height: 0vw;
    font-weight: 500;
    letter-spacing: .05em;
}

/* 22-40 */
.txt40 {
    font-size: calc(1.375rem + ((1vw - 3.75px) * 1.165));
    min-height: 0vw;
    font-weight: 400;
    letter-spacing: .05em;
}

/* 28-55 */
.txt55 {
    font-size: calc(1.75rem + ((1vw - 3.75px) * 1.7476));
    min-height: 0vw;
    font-weight: 400;
}


/* 15-18 */
.subtit18 {
    font-size: calc(0.9375rem + ((1vw - 3.75px) * 0.1942));
    min-height: 0vw;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.5em;
}


.txtLight {
    text-shadow: 0px 0px 10px #FFBA44;
}




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

.bar01 {
    position: relative;
    background: var(--secondary);
    width: 100%;
    max-width: 220.5px;
    height: 5px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.bar01::before {
    content: "";
    position: absolute;
    background: var(--gradation01);
    z-index: 1;
    top: 0;
    right: 0;
    width: 72.79%;
    max-width: 160.5px;
    height: 5px;
}

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

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

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



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

.btn01 {
    display: flex;
    align-items: center;
    position: relative;
    width: 200px;
    height: 45px;
    padding: 0 0 0 18px;
}

.btn01 p {
    /* 16-18 */
    font-size: calc(1rem + ((1vw - 3.75px) * 0.1294));
    min-height: 0vw;
}

.btn01::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 0 100%);
}

.btn01::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -22px;
    height: 1px;
    width: 22px;
    margin: auto 0;
    transition: all .3s;
}

.btn01:hover::after {
    right: -44px;
    width: 44px;
}

.btnBlack {
    border: 1px solid var(--primary);
}

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

.btnBlack::before {
    background: var(--primary);
}

.btnBlack::after {
    background: var(--primary);
}

.btnWhite {
    border: 1px solid var(--white);
}

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

.btnWhite::before {
    background: var(--white);
}

.btnWhite::after {
    background: var(--white);
}

.formBtn {
    font-size: calc(1rem + ((1vw - 3.75px) * 0.1294));
    min-height: 0vw;
    color: var(--white);
}

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

/* ★★★★★★★★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: #4E3A28;
    opacity: .74;
}

.cover02 {
    position: relative;
}

.cover02::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #65450C;
    opacity: .27;
}

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




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



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




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

.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;
    top: 90%;
    left: auto;
    right: auto;
    margin: 0 auto;
    padding: 40px 0 0 0;
    width: 130px;
}

.downIn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 25px 15px;
    background: rgba(255, 100, 83, 0.7);
}

.downIn::before {
    content: "";
    position: absolute;
    opacity: .7;
    top: -17px;
    right: 0;
    left: 0;
    width: 20px;
    height: 17px;
    margin: 0 auto;
    background: url(/system_panel/uploads/images/fukidashi01.svg) no-repeat center /contain;
}

.downIn a {
    margin: 16px 0 0 0;
}

.downIn a:first-of-type {
    margin: 0;
}

.downIn p {
    display: block;
    font-size: 16px;
    line-height: 1.4em;
    color: var(--white);
}

.downIn a:hover p {
    text-decoration: underline;
}


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

.inCvr {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
}

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

.inCvrTit {
    /* 30-50 */
    font-size: calc(1.875rem + ((1vw - 3.75px) * 1.2945));
    min-height: 0vw;
    color: var(--white);
    letter-spacing: .025em;
    line-height: 1.4;
    text-align: center;
    font-weight: 700;
}

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

.pankuzuAr {
    margin: 0 auto;
    padding: 15px 0 0;
    max-width: 1550px;
    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(--primary);
}

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

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

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

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


@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        opacity: 0;
    }

    60% {
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideIn {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        opacity: 0;
    }

    60% {
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
    transition: cubic-bezier(0.17, 0.88, 0.30, 1.28);
}


.primaryBx {
    background: var(--primary);
    padding: 20px 15px;
    color: var(--white);
}


/* ★★★★★★★★デコレーション★★★★★★★★ */

.decoration01 {
    border-radius: 50%;
    background: radial-gradient(circle, #9FBFE3 67%, #8fd2f400 100%);
    aspect-ratio: 1/ 1;
}

/* ☆☆☆☆☆☆☆☆デコレーション☆☆☆☆☆☆☆☆ */


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





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

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



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



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

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



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

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


    .btn01 {
        width: 220px;
        height: 50px;
        padding: 0 0 0 25px;
    }

    .inBtm {
        padding-bottom: 180px;
    }

    .inCvr {
        height: 380px;
    }



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


    .ptUlSecondary s {
        text-decoration-thickness: 18px;
        text-underline-offset: -12px;
    }


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


    .dotsH02 strong {
        background-image: radial-gradient(3.5px 3.5px at center center, #fff, #fff 100%, transparent, transparent);
    }

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

}

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



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

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



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




    .btn01 {
        width: 245px;
    }

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



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



}

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



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




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

/* 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) {

    .txt16 {
        font-size: 16px;
    }

    .txt20 {
        font-size: 20px;
    }

    .txt30 {
        font-size: 30px;
    }

    .txt35 {
        font-size: 35px;
    }

    .txt40 {
        font-size: 40px;
    }

    .txt55 {
        font-size: 55px;
    }

    .subtit18 {
        font-size: 18px;
    }

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

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