@charset "utf-8";

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
共通
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

:root {
    /* フォント */
    --fontA: "Shippori Mincho", serif;
    --fontB: "Yuji Syuku", serif;
    /* カラー */
    --white: #FFF;
    --black: #333333;
    --primary: #34597A;
    --secondary: #1A2B3B;
    --tertiary: #BBBF86;
    /* --quaternary: #321B05; */
    /* --fifth: #E6D6B8; */
    /*--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-style: normal;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 2.5;
    font-weight: 500;
    font-size: 14px;
    transition: all ease .3s;
    background: url(/system_panel/uploads/images/bg01.jpg) repeat-y center top /auto;
    overflow-x: hidden;

}

p>a,
label>a {
    color: inherit;
    text-decoration: underline;
}

p>a:hover,
label>a:hover {
    color: inherit;
}

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

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

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

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

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

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
frame
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.inWrap {
    width: 100%;
    padding: 60px 0 0 0;
}

.inBtm {
    padding-bottom: 60px;
}

.inBtmM {
    padding-bottom: 120px;
}

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

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

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

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

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

/*-----------------------------------------------------------
frame
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
プルダウン
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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


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

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

/*-----------------------------------------------------------
プルダウン
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ヘッダー
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.header {
    transition: all .3s;
}

.header.is-scroll {
    height: 70px !important;
}

.hHamBx {
    transition: all .3s;
}

.is-scroll .hHamBx {
    border: 2px solid var(--primary);
}

.hHamBar {
    position: absolute;
    height: 1px;
    width: 100%;
    right: 0;
    left: 0;
    z-index: 5;
    margin: auto;
    transition: all.3s;
    transform-origin: center;
    background: var(--white);
}

.hHamBar:nth-of-type(1) {
    top: 0px;
}

.hHamBar:nth-of-type(2) {
    top: 0px;
    bottom: 0px;
    margin: auto;
}

.hHamBar:nth-of-type(3) {
    bottom: 0px;
}

.open .hHamBar:nth-of-type(1) {
    top: 0;
    bottom: 0;
    transform: rotate(40deg);
}

.open .hHamBar:nth-of-type(2) {
    opacity: 0;
}

.open .hHamBar:nth-of-type(3) {
    top: 0;
    bottom: 0;
    transform: rotate(-40deg);
}

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
フッター
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.fNavLink:hover {
    text-decoration: underline;
    color: var(--white);
}

/*-----------------------------------------------------------
フッター
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SPヘッダー
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.hamMenu {
    margin: auto;
    padding: 0;
    max-width: 1920px;
    width: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: ease .5s;
}

.hamMenu.open {
    right: 0;
}

.hamMenuAr {
    width: 100%;
    height: 100%;
}

.hamMenuConte {
    padding: 40px 15px;
    width: 100%;
    max-width: 380px;
    height: 100%;
    margin: 0 0 0 auto;
    overflow-y: auto;
    -ms-overflow-style: none;
    background: url(/system_panel/uploads/images/header_bg02.jpg) no-repeat center top /cover;
}

.hamMenu .hamMenuConte {
    max-width: none;
    padding: 80px 15px;
}

.hamMenuConte::-webkit-scrollbar {
    width: 12px;
    /* 横幅 */
}

.hamMenuConte::-webkit-scrollbar-thumb {
    background: var(--secondary);
    /* ハンドルの色 */
}

.hamMenuConte::-webkit-scrollbar-track {
    background: var(--primary);
    /* 背景色 */
}

.hamMenuBx {
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
}

.hamMenuBar01 {
    width: 80%;
    max-width: 144px;
    height: 1px;
    background: var(--white);
}

.hamNavBx {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 40px auto 0;
    gap: 10px;
}

.hamNavLink {
    color: var(--white);
}

.hamNavLink:hover {
    text-decoration: underline;
    color: var(--white);
}

.hamNavLink>p {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0.05em;
    font-family: var(--fontB);
    font-weight: 400;
    text-align: center;
}

/*-----------------------------------------------------------
SPヘッダー
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
下層カバー
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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

.cover::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #1A2B3B;
    opacity: .4;
}

.cvrAr {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1490px;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.cvrBx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: max-content;
    height: 100%;
    padding: 20px 0 0;
    color: var(--white);
}

.cvrTit {
    position: relative;
    margin: 20px 0 0;
    font-size: 26px;
    letter-spacing: 0.05em;
    line-height: 1.3em;
    font-family: var(--fontB);
    font-weight: 400;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
パンくず
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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

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

.pankuzuLink:hover {
    color: var(--white);
    text-decoration: underline;
}

.pankuzuTxt {
    font-size: 14px;
    line-height: 1.5em;
}

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

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

/*-----------------------------------------------------------
パンくず
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ボタン
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.telBx {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: max-content;

}

.telBx img {
    width: 16px;
    margin: 0 7px 0 0;
}

.telBx p {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5em;
}

.telBx01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 300/75;
    color: var(--secondary);
    background: var(--tertiary);
    clip-path: polygon(13.5px 0%, 100% 0, 100% calc(100% - 13.5px), calc(100% - 13.5px) 100%, 0 100%, 0 13.5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

.telBx01>p {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
}

.telBx01>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: -5px 5% 0 0;
}

.telBx01>div>img {
    display: block;
    width: 25px;
    aspect-ratio: 1/1;
}

.telBx01>div p {
    font-size: 27px;
    line-height: 1.45;
    letter-spacing: -0.05em;
    font-weight: 400;
    font-family: var(--fontB);
}

.telBx02 {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 253px;
    padding: 0 0 10px 0;
    border-bottom: 1px solid var(--white);
}

.telBx02 img {
    display: block;
    width: 25px;
    aspect-ratio: 1/1;
}

.telBx02 p {
    font-family: var(--fontB);
    color: var(--white);
    font-size: 27px;
    line-height: 1.45;
    letter-spacing: -0.05em;
    font-weight: 400;
}

.telBx02Secondary {
    color: var(--secondary);
    border-bottom: 1px solid var(--secondary);
}

.reserveBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 300/75;
    color: var(--secondary);
    background: var(--tertiary);
    clip-path: polygon(13.5px 0%, 100% 0, 100% calc(100% - 13.5px), calc(100% - 13.5px) 100%, 0 100%, 0 13.5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    transition: all .3s;
}

.reserveBtn:hover {
    color: var(--secondary);
    filter: brightness(1.15);
}

.reserveBtn>img {
    display: block;
    width: 25px;
    aspect-ratio: 1/1;
}

.reserveBtn>p {
    font-size: 22px;
    line-height: 1.45;
    font-weight: 400;
    font-family: var(--fontB);
}

.btnShadow01 {
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.16));
}

.btn01 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 240px;
    height: 52px;
    transition: all .3s;
    clip-path: polygon(12px 0%, 100% 0, 100% 100%, 0 100%, 0% 12px);
}

.btn01::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0 auto auto;
    width: 25px;
    height: 1px;
}

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

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

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

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

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

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

.btnTertiary::before {
    background: var(--secondary);
}


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

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

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

.txt16 {
    font-size: 14px;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 2.5;
}

.txt18 {
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 2.5;
}

.txt20 {
    font-size: 17px;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1.5;
}

.subtit25 {
    font-size: 18px;
    line-height: 1.45em;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-family: var(--fontB);
}

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

.tit40 {
    font-size: 24px;
    line-height: 1.55;
    letter-spacing: 0.05em;
    font-family: var(--fontB);
}

.tit45 {
    font-size: 25px;
    line-height: 1.55;
    letter-spacing: 0.05em;
    font-family: var(--fontB);
}

.tit50 {
    font-size: 26px;
    line-height: 1.55;
    letter-spacing: 0.05em;
    font-family: var(--fontB);
}

.titLine {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.titLine::before,
.titLine::after {
    content: "";
    flex: 1;
    min-width: 50px;
    max-width: 150px;
    height: 1px;
    background: var(--white);
}

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

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
共通部品
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.bgBlue {
    background: url(/system_panel/uploads/images/bg03.jpg) repeat-y center /auto;
}

.bgBlue02 {
    background: url(/system_panel/uploads/images/bg04.jpg) repeat-y top center /auto;
}

/* スライダー */
.sliderBtm {
    padding-bottom: calc(60px + 77.5px);
}

.loopWrMt {
    margin-top: -77.5px;
}

/* リンク */
.linkFl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.linkItem {
    position: relative;
    display: block;
    width: 100%;
    max-width: 500px;
    height: 180px;
    padding: 15px;
}

.linkItemLunch {
    background: url(/system_panel/uploads/images/link_lunch.jpg) no-repeat center /cover;
}

.linkItemDinner {
    background: url(/system_panel/uploads/images/link_dinner.jpg) no-repeat center /cover;
}

.linkItemCatering {
    background: url(/system_panel/uploads/images/link_catering.jpg) no-repeat center /cover;
}

.linkItemShop {
    background: url(/system_panel/uploads/images/link_shop.jpg) no-repeat center /cover;
}

.linkItem::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000000;
    opacity: .35;
    transition: all .3s;
}

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

.linkBorder {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    border: 1px solid var(--tertiary);
}

.linkBorder p {
    font-size: 24px;
    line-height: 1.2em;
    letter-spacing: 0.05em;
    color: var(--white);
    font-family: var(--fontB);
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.titDeco01 {
    position: relative;
}

.titDeco01::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    left: -1%;
    z-index: -1;
    display: block;
    aspect-ratio: 6301/765;
    background: url(/system_panel/uploads/images/deco10.png) no-repeat top left /contain;
}

.reserveUb u {
    text-decoration-color: var(--tertiary);
    text-underline-offset: 8px;
}

/*-----------------------------------------------------------
共通部品
-----------------------------------------------------------*/

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

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



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

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



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

    .hamMenuConte {
        padding: 40px 15px;
    }

    .hamMenu .hamMenuConte {
        max-width: 380px;
        padding: 100px 15px;
    }

    .cvrTit {
        font-size: 30px;
    }

}

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



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

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

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    共通
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    body {
        font-size: 15px;
    }

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

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

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    frame
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .inWrap {
        padding: 120px 0 0 0;
    }

    .inBtm {
        padding-bottom: 120px;
    }

    /*-----------------------------------------------------------
    frame
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ヘッダー
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .header.is-scroll {
        height: 85px !important;
    }

    /*-----------------------------------------------------------
    ヘッダー
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    フッター
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    /*-----------------------------------------------------------
    フッター
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    SPヘッダー
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .hamMenuConte {
        padding: 68px 15px 50px;
    }

    .hamMenu .hamMenuConte {
        padding: 120px 15px;
    }

    .hamNavBx {
        gap: 15px;
    }

    .hamNavLink>p {
        font-size: 18px;
    }

    /*-----------------------------------------------------------
    SPヘッダー
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    下層カバー
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .cover {
        height: 450px;
    }

    .cvrTit {
        margin: 48px 0 0;
        font-size: 45px;
    }

    /*-----------------------------------------------------------
    下層カバー
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ボタン
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .btn01 {
        max-width: 270px;
        height: 57.5px;
    }

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

    /*-----------------------------------------------------------
    ボタン
    -----------------------------------------------------------*/

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

    .txt16 {
        font-size: 15px;
    }

    .txt18 {
        font-size: 17px;
    }

    .txt20 {
        font-size: 18px;
    }

    .subtit25 {
        font-size: 22px;
    }

    .tit35 {
        font-size: 28px;
    }

    .tit40 {
        font-size: 30px;
    }

    .tit45 {
        font-size: 32px;
    }

    .tit50 {
        font-size: 34px;
    }

    .titLine {
        gap: 35px;
    }

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


    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    共通部品
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    /* スライダー */
    .sliderBtm {
        padding-bottom: calc(120px + 116px);
    }

    .loopWrMt {
        margin-top: -116px;
    }

    /* リンク */
    .linkFl {
        flex-direction: row;
        align-items: stretch;
    }

    .linkItem {
        height: 250px;
    }

    .linkFl2Col .linkItem {
        width: 48%;
    }

    .linkFl3Col .linkItem {
        width: 32%;
    }

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

    .linkFl3Col .linkBorder p {
        font-size: 22px;
    }

    /*-----------------------------------------------------------
    共通部品
    -----------------------------------------------------------*/

}

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



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

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



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

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    共通
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    body {
        font-size: 16px;
    }

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


    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    SPヘッダー
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/


    .hamNavBx {
        gap: 20px;
    }

    .hamNavLink>p {
        font-size: 20px;
    }

    /*-----------------------------------------------------------
    SPヘッダー
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    下層カバー
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .cvrTit {
        font-size: 60px;
    }

    .cvrTxt {
        font-size: 24px;
    }

    /*-----------------------------------------------------------
    下層カバー
    -----------------------------------------------------------*/

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

    .txt16 {
        font-size: 16px;
    }

    .txt18 {
        font-size: 18px;
    }

    .txt20 {
        font-size: 20px;
    }

    .subtit25 {
        font-size: 25px;
    }

    .tit35 {
        font-size: 35px;
    }

    .tit40 {
        font-size: 40px;
    }

    .tit45 {
        font-size: 45px;
    }

    .tit50 {
        font-size: 50px;
    }

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


    /* スライダー */
    .sliderBtm {
        padding-bottom: calc(120px + 155px);
    }

    .loopWrMt {
        margin-top: -155px;
    }

    /* リンク */

    .linkItem {
        padding: 20px;
    }

    .linkBorder {
        padding: 15px 30px;
    }

    .linkBorder p {
        font-size: 35px;
    }

    .linkFl3Col .linkBorder p {
        font-size: 28px;
    }

    .titDeco01::before {
        left: -4%;
    }

}

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



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

    .hamNavBx {
        gap: 24px;
    }


}

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



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

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



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

    .linkFl3Col .linkBorder p {
        font-size: 35px;
    }

}

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


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

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


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

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