@charset "utf-8";

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

:root {
    /* フォント */
    --fontA: "Zen Old Mincho", serif;
    --fontB: "Zen Antique Soft", serif;
    /* --fontC: "M PLUS 1p", sans-serif; */
    /* --fontD: "Yuji Boku", serif; */
    /* カラー */
    --white: #FFF;
    --black: #321B05;
    --primary: #99221F;
    --secondary: #1F8FB8;
    --tertiary: #FCF7F1;
    --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-weight: 700;
    font-style: normal;
    color: var(--black);
    letter-spacing: 0.05em;
    line-height: 2.11;
    transition: all ease .3s;
    background: #FFFCF6;
    overflow-x: hidden;
    background: url(/system_panel/uploads/images/cmn_bg.jpg) repeat-y top center /auto;
}

p {
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 2.5em;
    font-size: 16px;
}

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

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

.ptPrimary {
    font-weight: 800;
}

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

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

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

.inWrap {
    width: 100%;
    margin: 70px 0 0 0;
}

.inBtm {
    padding-bottom: 80px;
}

.inBtmM {
    margin-bottom: 120px;
}

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

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

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

.area03 {
    width: 100%;
    max-width: 1350px;
    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 {
    z-index: 999;
    transition: all .3s;
}

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

.hamBtn {
    cursor: pointer;
}

.hamBtnBar {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 5;
    margin: auto;
    transition: all.3s;
    transform-origin: center;
}

.hamBtnBar:nth-of-type(1) {
    top: 6.5px;
}

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

.hamBtnBar:nth-of-type(3) {
    bottom: 6.5px;
}

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

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

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

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

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

.fNavBxCol {
    gap: 15px;
}

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

.fLinkBtn {
    gap: 14px;
}

.fLinkBtn::before {
    content: "";
    width: 8px;
    height: 12px;
    background: url(/system_panel/uploads/images/arrow_white.svg)no-repeat center /contain;
}

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

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

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

.hamMenuConte {
    padding: 90px 20px;
    width: 100%;
    max-width: 350px;
    height: 100%;
    margin: 0 0 0 auto;
    overflow-y: scroll;
    -ms-overflow-style: none;
    background: url(/system_panel/uploads/images/ham_bg.jpg)no-repeat center /cover;
}

.hamMenu .hamMenuConte {
    max-width: none;
}

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

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

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

.hamMenuBox {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hamNavBox {
    width: 100%;
    max-width: 250px;
    margin: 38px auto 0;
    gap: 15px;
}

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

.reserveBannerFukidashiTxt::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 10px 6px 0 6px;
    border-color: var(--primary) transparent transparent;
    translate: -50% 100%;
}

.reserveBannerTxt02 s {
    text-decoration: none;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
}

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

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

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

.btn01 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 260px;
    height: 60px;
    padding: 3px;
    transition: all .3s;
}

.btn01 p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    font-weight: 800;
}

.btn01 p::before {
    content: "";
    display: block;
    width: 10px;
    height: 17px;
    z-index: 1;
    transition: all .3s;
}

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

.btn02 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 260px;
    height: 50px;
    padding: 3px;
    transition: all .3s;
}

.btn02 p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    font-weight: 800;
}

.btn02 p::before {
    content: "";
    display: block;
    width: 10px;
    height: 17px;
    z-index: 1;
    transition: all .3s;
}

.btn02:hover p::before {
    transform: translateX(5px);
}

.btn03 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
    height: 60px;
    padding: 3px;
    transition: all .3s;
}

.btn03 p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    font-weight: 800;
}

.btn03 p::before {
    content: "";
    display: block;
    width: 10px;
    height: 17px;
    z-index: 1;
    transition: all .3s;
}

.btn03:hover p::before {
    transform: translateX(5px);
}

.btn04 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 220px;
    height: 50px;
    padding: 3px;
    transition: all .3s;
}

.btn04 p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    font-weight: 800;
}

.btn04 p::before {
    content: "";
    display: block;
    width: 10px;
    height: 17px;
    z-index: 1;
    transition: all .3s;
}

.btn04:hover p::before {
    transform: translateX(5px);
}

.btnBlack {
    border: 4px solid var(--black);
}

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

.btnBlack p {
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--tertiary);
}

.btnBlack p::before {
    background: url(/system_panel/uploads/images/arrow_white.svg) no-repeat center/contain;
}

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

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

.btnWhite p {
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--black);
}

.btnWhite p::before {
    background: url(/system_panel/uploads/images/arrow_black.svg) no-repeat center/contain;
}


.btnPrimary {
    border: 4px solid var(--black);
}

.btnPrimary p {
    border: 1px solid var(--black);
    background: var(--primary);
    color: var(--tertiary);
}

.btnPrimary p::before {
    background: url(/system_panel/uploads/images/arrow_white.svg) no-repeat center/contain;
}

.btnReserve {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 260px;
    height: 60px;
    padding: 3px;
    transition: all .3s;
    border: 4px solid var(--black);
}

.btnReserve p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    font-weight: 800;
    border: 1px solid var(--black);
    background: var(--secondary);
    color: var(--tertiary);
}

.btnReserve p::before {
    content: "";
    display: block;
    width: 10px;
    height: 17px;
    transition: all .3s;
    background: url(/system_panel/uploads/images/arrow_white.svg) no-repeat center/contain;
}

.btnReserve p::after {
    content: "";
    display: block;
    width: 25px;
    height: 27.2px;
    background: url(/system_panel/uploads/images/reserve_icon_white.svg) no-repeat center/contain;
    order: 1;
}

.btnReserve:hover p::before {
    transform: translateX(5px);
}

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

.tit01 {
    position: relative;
    color: var(--tertiary);
    font-family: var(--fontB);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1.45;
    text-stroke: 8px var(--black);
    -webkit-text-stroke: 8px var(--black);
    paint-order: stroke;
    text-shadow: 0 0 10px rgba(50, 27, 5, 0.8);
}

.tit01::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    z-index: -1;
    width: 180px;
    aspect-ratio: 352/120;
    background: url(/system_panel/uploads/images/title_deco_red.png) no-repeat center /contain;
}

.tit70 {
    font-family: var(--fontB);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1.45;
}

.tit85 {
    font-family: var(--fontB);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1.45;
}

.tit85 s {
    font-size: 32px;
    text-decoration: none;
    color: var(--primary);
}

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


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
inner
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.w-fit-content {
    width: fit-content;
}

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

.inCover {
    max-width: 1920px;
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.inCover:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.inCoverInner {
    max-width: 1350px;
    width: 100%;
    padding: 0 15px;
    margin: auto;
    position: relative;
    z-index: 9;
}

.inCoverTit {
    font-size: 30px;
    font-family: var(--fontB);
    font-weight: normal;
    line-height: 1.44em;
    letter-spacing: 0;
    color: #fff;
    text-shadow: 0 0 10px rgba(50, 27, 5, 0.8);
    text-align: center;
}

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

.breadcrumbs {
    padding: 15px 0;
    position: relative;
    z-index: 9;
}

.breadcrumbsInner {
    max-width: 1350px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 15px;
    margin: auto;
}

.breadcrumbsTxt {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.45em;
    color: inherit;
}

.breadcrumbsLink {
    display: block;
    color: inherit;
    text-decoration: underline;
}

.breadcrumbsArrow {
    margin: 0 10px;
}

.breadcrumbsLink:hover {
    text-decoration: none;
    color: inherit;
}

/*-----------------------------------------------------------
ブロック
-----------------------------------------------------------*/

.wrapper01 {
    padding: 100px 0;
    position: relative;
}

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

.inner-large {
    max-width: 1550px;
}

.inner-fluid {
    max-width: 100%;
}

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.inTit01 {
    font-size: clamp(32px, 4.88vw, 50px);
    font-family: var(--fontB);
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.44em;
}

.inTit01>span {
    font-size: 1.23em;
    line-height: 1.44em;
}

.inTit02 {
    font-size: clamp(32px, 3.9vw, 40px);
    font-family: var(--fontB);
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.45em;
}

.inTit02>span {
    font-size: 1.13em;
    line-height: 1.44em;
}

.inTit03 {
    font-size: clamp(30px, 3.9vw, 40px);
    font-family: var(--fontB);
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.44em;
}

.inTit03>span {
    font-size: 1.13em;
    line-height: 1.44em;
}

.inTit04 {
    font-size: clamp(30px, 3.41vw, 35px);
    font-family: var(--fontB);
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.44em;
}

.inTit04>span {
    font-size: 1.3em;
    line-height: 1.44em;
}

.inTit05 {
    font-size: clamp(28px, 2.92vw, 30px);
    font-family: var(--fontB);
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.44em;
}

.inTit05>span {
    font-size: 1.3em;
    line-height: 1.44em;
}

.inTit06 {
    font-size: clamp(24px, 2.92vw, 30px);
    font-family: var(--fontB);
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.45em;
}

.inTit06>span {
    font-size: 1.3em;
    line-height: 1.44em;
}

.inTit07 {
    font-size: clamp(22px, 2.44vw, 25px);
    font-family: var(--fontB);
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.45em;
}

.inTit07>span {
    font-size: 1.3em;
    line-height: 1.44em;
}

.inTit08 {
    font-size: clamp(22px, 2.44vw, 25px);
    font-family: var(--fontB);
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.63em;
}

.inTit08>span {
    font-size: 1.66em;
    line-height: 1.44em;
}

.inTit09 {
    font-size: 20px;
    font-family: var(--fontB);
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.45em;
}

.inTit09>span {
    font-size: 1.3em;
    line-height: 1.44em;
}

.inTit10 {
    font-size: 18px;
    font-family: var(--fontB);
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.45em;
}

.inTit10>span {
    font-size: 1.3em;
    line-height: 1.44em;
}

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

.enhanceTxt01>span {
    font-size: 1.5em;
}

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

.btnLine p::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(/system_panel/uploads/images/line_icon.png) no-repeat center/contain;
    order: 1;
}

.btnLine p {
    font-size: 13px;
}

/*-----------------------------------------------------------
画像
-----------------------------------------------------------*/

.imgControl {
    height: 0;
    position: relative;
    padding: 0 0 100%;
}

.imgControl>img {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/

.baseTable {
    width: 100%;
    line-height: 1.44em;
}

.baseTableTr {
    border-bottom: solid 1px #CEC3B8;
    padding: 15px 0;
    margin: 0 -15px !important;
}

.baseTableTh {
    display: flex;
    align-items: center;
    padding: 0;
}

.baseTableTd {
    margin: 10px 0 0;
    padding: 0;
}

.baseTableTxt {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

/*-----------------------------------------------------------
共通メニューページリンク
-----------------------------------------------------------*/

.cmnMenuWrap {
    padding: 200px 0 120px;
    margin: -80px 0 0;
    position: relative;
}

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

.cmnMenuArea {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: flex-start;
    gap: 50px;
}

.cmnMenuLink {
    display: block;
    position: relative;
    border: solid 5px var(--black);
}

.cmnMenuLinkInner {
    border: solid 2px #EAE0CE;
    overflow: hidden;
}

.cmnMenuLinkBg {
    position: relative;
    transition: 0.3s;
}

.cmnMenuLinkBg:before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.cmnMenuLinkTit {
    width: 100%;
    color: var(--tertiary);
    font-family: var(--fontB);
    text-stroke: 8px var(--black);
    -webkit-text-stroke: 8px var(--black);
    paint-order: stroke;
    text-shadow: 0 0 10px rgba(50, 27, 5, 0.8);
    position: absolute;
    left: 20px;
    top: 0;
    transform: translateY(-60%);
}

.cmnMenuLinkTit:before {
    content: "";
    max-width: 352px;
    width: 45%;
    aspect-ratio: 352 / 120;
    background: url(/system_panel/uploads/images/title_deco_red.png) no-repeat center / contain;
    position: absolute;
    bottom: -20px;
    left: -10px;
    z-index: -1;
}

.cmnMenuLink:hover .cmnMenuLinkBg {
    transform: scale(1.05);
}

.cmnMenuDeco01 {
    max-width: 1042px;
    width: 86.83%;
    margin: auto;
    position: absolute;
    top: 0;
}

.cmnMenuDeco01Left {
    left: 0;
}

.cmnMenuDeco01Right {
    right: 0;
}

.cmnMenuDeco02 {
    max-width: 518px;
    width: 43.16%;
    margin: auto;
    position: absolute;
    bottom: 0;
}

.cmnMenuDeco02Right {
    right: 0;
}


/*-----------------------------------------------------------
inner
-----------------------------------------------------------*/

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

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



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

    .hamMenu .hamMenuConte {
        max-width: 350px;
    }


}

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



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

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



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

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

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

    p {
        font-size: 18px;
    }

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

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

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

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

    .inBtm {
        padding-bottom: 150px;
    }

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

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

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

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

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

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

    .hamNavBox {
        gap: 24px;
    }

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

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

    .telBx img {
        width: 19px;
        margin: 5px 12px 0 0;
    }

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

    .btn01 {
        max-width: 300px;
        height: 80px;
        padding: 4px;
    }

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

    .btn02 {
        max-width: 300px;
        height: 60px;
        padding: 4px;
    }

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

    .btn03 {
        max-width: 450px;
        height: 80px;
        padding: 4px;
    }

    .btn03 p {
        font-size: 20px;
        padding: 0 30px;
    }

    .btn04 {
        max-width: 250px;
        height: 60px;
        padding: 4px;
    }

    .btn04 p {
        font-size: 20px;
        padding: 0 30px;
    }

    .btnReserve {
        max-width: 300px;
        height: 80px;
        padding: 4px;
    }

    .btnReserve p {
        font-size: 20px;
        padding: 0 30px;
    }

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

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

    .tit01 {
        font-size: 50px;
    }

    .tit01::before {
        bottom: -20px;
        width: 240px;
    }

    .tit70 {
        font-size: 45px;
    }

    .tit85 {
        font-size: 36px;
    }

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

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

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    inner
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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

    .inCover {
        height: 350px;
    }

    .inCoverTit {
        font-size: 50px;
    }

    /*-----------------------------------------------------------
    ブロック
    -----------------------------------------------------------*/

    .wrapper01 {
        padding: 130px 0;
    }

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

    .btnLine p>br {
        display: none;
    }

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

    /*-----------------------------------------------------------
    テーブル
    -----------------------------------------------------------*/

    .baseTableTd {
        margin: 0;
    }

    /*-----------------------------------------------------------
    共通メニューページリンク
    -----------------------------------------------------------*/

    .cmnMenuArea {
        grid-template-columns: repeat(2, 1fr);
        align-items: flex-start;
        gap: 30px;
    }

    .cmnMenuLink:nth-child(even) {
        margin: 50px 0 0;
    }

    /*-----------------------------------------------------------
    inner
    -----------------------------------------------------------*/

}

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



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

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



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

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

    p {
        font-size: 20px;
    }

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


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

    .fNavBxCol {
        gap: 30px;
    }


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

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

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

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

    .tit01 {
        font-size: 55px;
    }

    .tit70 {
        font-size: 60px;
    }

    .tit85 {
        font-size: 55px;
    }

    .tit85 s {
        font-size: 60px;
    }

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

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    下層
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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

    .inCover {
        height: 400px;
    }

    .inCoverTit {
        font-size: 70px;
    }

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

    .breadcrumbs {
        padding: 20px 0;
    }

    .breadcrumbsTxt {
        font-size: 16px;
    }

    /*-----------------------------------------------------------
    ブロック
    -----------------------------------------------------------*/

    .wrapper01 {
        padding: 180px 0;
    }

    /*-----------------------------------------------------------
    タイトル
    -----------------------------------------------------------*/

    .verticalTit {
        writing-mode: vertical-rl;
    }

    .inTit01 {
        font-size: clamp(50px, 4.427vw, 85px);
    }

    .inTit02 {
        font-size: clamp(40px, 3.90vw, 75px);
    }

    .inTit03 {
        font-size: clamp(40px, 3.64vw, 70px);
    }

    .inTit04 {
        font-size: clamp(35px, 3.38vw, 65px);
    }

    .inTit05 {
        font-size: clamp(30px, 2.60vw, 50px);
    }

    .inTit06 {
        font-size: clamp(30px, 2.08vw, 40px);
    }

    .inTit07 {
        font-size: clamp(25px, 1.82vw, 35px);
    }

    .inTit08 {
        font-size: clamp(25px, 1.56vw, 30px);
    }

    .inTit09 {
        font-size: 25px;
    }

    .inTit10 {
        font-size: 20px;
    }

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

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

    /*-----------------------------------------------------------
    テーブル
    -----------------------------------------------------------*/

    .baseTableTr {
        padding: 25px 0;
    }

    .baseTableTh {
        padding-right: 15px;
    }

    .baseTableTd {
        padding-left: 15px;
    }

    .baseTableTxt {
        font-size: 18px;
        letter-spacing: 0.05em;
        line-height: 1.44em;
    }

    /*-----------------------------------------------------------
    共通メニューページリンク
    -----------------------------------------------------------*/

    .cmnMenuWrap {
        padding: 400px 0 180px;
        margin: -230px 0 0;
    }

    .cmnMenuArea {
        gap: 50px;
    }

    .cmnMenuLink {
        border: solid 10px var(--black);
    }

    .cmnMenuLink:nth-child(even) {
        margin: 100px 0 0;
    }

    .cmnMenuLinkTit {
        left: 30px;
    }

    .cmnMenuLinkTit:before {
        bottom: -30px;
        left: -15px;
    }

    .cmnMenuDeco01 {
        width: 54.27%;
    }

    .cmnMenuDeco02 {
        width: 26.97%;
    }

    /*-----------------------------------------------------------
        下層
        -----------------------------------------------------------*/

}

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



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


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

    .fLinkFl {
        flex-direction: row !important;
    }

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

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

    .tit01 {
        font-size: 75px;
    }

    .tit01::before {
        bottom: -40px;
        left: -20px;
        width: 351.5px;
    }

    .tit70 {
        font-size: 70px;
    }

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

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    inner
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .cmnMenuLinkTit {
        left: 50px;
    }

    .cmnMenuLinkTit:before {
        bottom: -40px;
        left: -20px;
    }

    /*-----------------------------------------------------------
    inner
    -----------------------------------------------------------*/

}

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



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

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



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

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

    .tit01 {
        font-size: 85px;
    }

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

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


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


    .tit85 {
        font-size: 85px;
    }

    .tit85 s {
        font-size: 105px;
    }
}

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


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

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