@charset "utf-8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #655B4F;
	--base-bg-color: #FAF7F2;

	/* site color */
	--primary: #6F3705;
	--secondary: #723B09;
	--tertiary: #D5CAAB;
	/* --quaternary: #261D3D;
	--quaternary-hover: #f5f;
	--fifth: #FFF8ED;
	--fifth-hover: #ff5;
	--sixth: #F3E1C9;
	--sixth-hover: rgb(13, 15, 15); 
	--seventh: #F3E1C9;
	--seventh-hover: #5ff;
	--eighth: #F3E1C9;
	--eighth-hover: #5ff;
	--ninth: #F3E1C9;
	--ninth-hover: #5ff; */

	--white: #FFF;
    --black: #040707;

    --border-primary: #9A938A;
    --border-secondary: #D5CAAB;
    --border-tertiary: #655B4F;

    --bg-primary: #EEEBDC;
    --bg-secondary: #FBFAF7;
    --bg-tertiary: rgba(114, 59, 9, .59);
    /* --bg-quaternary: #F3E1C9;
    --bg-fifth: #F3E1C9; */

    --gradation-primary: linear-gradient(to right, rgba(38, 25, 8), rgba(37, 25, 8, 0));
    --gradation-secondary: linear-gradient(to right bottom, rgba(38, 25, 8), rgba(38, 25, 8, .5));

    --img-bg-color-primary: rgba(199, 176, 176, 62%);

	/* font family */
	--base-font-family: "Noto Sans JP", sans-serif, "Noto Serif JP", serif, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/* --base-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	--font-family01: "Zen Old Mincho", serif;
	--font-family02: "Open Sans", sans-serif;
	--font-family03: "Noto Sans JP", sans-serif;

}

/* 管理画面 */

.gjs-dashed {
    overflow-x: unset;
}

/*---------*/

html {
	overflow-x: hidden;
}

#root {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

body {
    margin: 0 auto !important;
    max-width: 1920px;
    width: 100%;
    -webkit-text-size-adjust: ('none' '100%' 'auto');
    background-color: var(--base-bg-color) !important;
    font-size: clamp(14px, 13.029px + 0.259vw, 18px);
	font-weight: 400;
	font-family: var(--base-font-family);
    letter-spacing: 0.05em;
    color: var(--base-font-color);
    overflow-x: hidden;
}

.telWrap {
    color: inherit;
}

.telWrap:hover {
    color: inherit;
    text-decoration: underline;
}

.hidden {
    overflow: hidden;
}

.opacity_hover:hover {
    opacity: .7;
}

.cursol-pointer {
    cursor: pointer;
}

.inLink>a:hover {
    text-decoration: underline;
    color: #485053;
}

/* 電話番号定数のチラつき対策 */
p.tel,
a[data-cke-saved-href^="tel:電話番号"] {
    opacity: 0;
}

.gjs-dashed p.tel,
.gjs-dashed a[data-cke-saved-href^="tel:電話番号"] {
    opacity: 1;
}

/*===========================================================
チャットボット
===========================================================*/

.chatbot {
    transition: all .5s;
}

/*===========================================================
共通パーツ
===========================================================*/

.bg01 {
    background-image: url(/system_panel/uploads/images/bg01.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: contain !important;
    background-repeat: repeat !important;
}

.bg02 {
    background-image: url(/system_panel/uploads/images/bg02.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: repeat !important;
}

.bg03 {
    background-image: url(/system_panel/uploads/images/bg03.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: repeat !important;
}

.bg04 {
    background-image: url(/system_panel/uploads/images/bg04.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: contain !important;
    background-repeat: repeat !important;
}

.common-decoration01 {
    max-width: 369px;
    width: 25%;
    mix-blend-mode: hard-light;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    pointer-events: none;
}

.common-decoration02 {
    max-width: 441px;
    width: 25%;
    mix-blend-mode: soft-light;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}

.common-decoration03 {
    max-width: 494px;
    width: 28%;
    mix-blend-mode: soft-light;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    pointer-events: none;
}

.common-decoration04 {
    max-width: 744px;
    width: 40%;
    mix-blend-mode: soft-light;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}

.common-decoration05 {
    max-width: 316px;
    width: 20%;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
    pointer-events: none;
}

.common-decoration06 {
    max-width: 551px;
    width: 29%;
    mix-blend-mode: hard-light;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}

.common-decoration07 {
    max-width: 263px;
    width: 29%;
    mix-blend-mode: soft-light;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}

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

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

.color-tertiary {
    color: var(--tertiary);
}

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

.color-fifth {
    color: var(--sixth);
}

.color-sixth {
    color: var(--sixth);
}

.color-seventh {
    color: var(--seventh);
}

.color-eighth {
    color: var(--eighth);
}

.color-ninth {
    color: var(--ninth);
}

.color-white {
    color: #FFFFFF;
}

.bg-primary {
    background: var(--bg-primary) !important;
}

.bg-secondary {
    background: var(--bg-secondary) !important;
}

.bg-tertiary {
    background: var(--bg-tertiary) !important;
}

.bg-quaternary {
    background: var(--bg-quaternary) !important;
}

.bg-fifth {
    background: var(--bg-fifth) !important;
}

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

.border-secondary {
    border: 1px solid var(--border-secondary) !important;
}

.br-none br {
    display: none;
}

/*===========================================================
ボタン
===========================================================*/

.btn01 {
    padding: 16px 10px 14px;
    max-width: clamp(250px, 233.010px + 4.531vw, 320px);
    width: 100%;
    display: block;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 3.75px) * 0.2589)), 18px);
    font-weight: 400;
    font-family: var(--font-family01);
    letter-spacing: 0.05em;
    color: var(--primary);
    border: 1px solid var(--primary);
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    transition: all .3s;
}

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

.btn01::before {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    background: var(--primary);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: all .3s;
}

.btn01:hover::before {
    width: 20px;
}

.tel-box01 {
    padding: 4px 15px 5px;
    max-width: clamp(217px, 202.437px + 3.883vw, 277px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 15.087px + 0.777vw, 30px);
    font-weight: 400;
    font-family: var(--font-family01);
    letter-spacing: 0;
    line-height: 1.5em;
    color: var(--white);
    border: 2px solid var(--border-secondary);
    background: var(--primary);
    position: relative;
    box-sizing: border-box;
}

.tel-box01.tel-box02 {
    max-width: clamp(250px, 233.010px + 4.531vw, 320px);
}

.tel-box01::before {
    content: "";
    display: block;
    margin: 3px 8px 0 0;
    width: 15px;
    height: 26px;
    background: url(/system_panel/uploads/images/icon_phone_white.svg);
    background-size: contain;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
}

.tel-box01::after {
    content: "";
    border: 1px solid var(--border-secondary);
    position: absolute;
    inset: 2px; /* これだけで上下左右2px内側に引っ張られます */
    box-sizing: border-box; /* 線の太さを含めて2px内側に収める */
    pointer-events: none;
}

.reserve-btn01 {
    padding: 12px 15px 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 226px;
    width: 100%;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 7.68px) * 0.3472)), 18px);
    font-weight: 700;
    color: var(--base-font-color);
    letter-spacing: 0;
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    transition: all .3s;
}

.reserve-btn01:hover {
    color: var(--secondary);
    background-color: var(--primary);
}

.reserve-btn01::before {
    content: "";
    display: block;
    margin: 0 12px 0 0;
    width: 18px;
    height: 16px;
    background: url(/system_panel/uploads/images/reserve_white.svg);
    background-size: contain;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s;
}

.reserve-btn01:hover::before {
    background: url(/system_panel/uploads/images/reserve_brown.svg);
}

.sns-link01 {
    display: block;
    max-width: 32px;
    width: 100%;
    transition: all .3s;
}

.sns-link01 img {
    transition: all .3s;
}

.sns-link01:hover img {
    transform: scale(1.2);
}

/*===========================================================
テキスト
===========================================================*/

.font-family01 {
    font-family: var(--font-family01) !important;
}

.font-family02 {
    font-family: var(--font-family02) !important;
}

.font-family03 {
    font-family: var(--font-family03) !important;
}

.text01 {
    font-size: clamp(14px, 13.029px + 0.259vw, 18px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 2.1111em;
}

.text02 {
    font-size: clamp(14px, 13.029px + 0.259vw, 18px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 2.5555em;
}

.text03 {
    font-size: clamp(13px, 12.272px + 0.194vw, 16px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 2em;
}

/* .text04 {
    font-size: clamp(13px, calc(0.8125rem + ((1vw - 3.75px) * 0.1942)), 16px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.4375em;
} */

/* .text05 {
    font-size: clamp(13px, calc(0.8125rem + ((1vw - 7.68px) * 0.1736)), 15px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2em;
} */

.title01 {
    font-size: clamp(24px, 20.117px + 1.036vw, 40px);
    font-weight: 400;
    letter-spacing: 0.25em;
    line-height: 1.25em;
}

.title02 {
    font-size: clamp(25px, 18.447px + 1.748vw, 52px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.2307em;
}

.title03 {
    font-size: clamp(25px, 16.990px + 2.136vw, 58px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.3793em;
}

.title03 span {
    font-size: clamp(30px, 20.777px + 2.46vw, 68px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.1764em;
}

.title04 {
    font-size: clamp(20px, 17.573px + 0.647vw, 30px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.title05 {
    font-size: clamp(18px, 16.058px + 0.518vw, 26px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.title06 {
    font-size: clamp(18px, 17.029px + 0.259vw, 22px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

/* .title07 {
    font-size: clamp(40px, calc(2.5rem + ((1vw - 3.75px) * 4.5307)), 110px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
} */

/* .title08 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
} */

/* .sub-title01 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
} */

.en-title01 {
    font-size: clamp(13px, 12.515px + 0.129vw, 15px);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.text-vertical {
    writing-mode: vertical-rl;
    width: auto;
    display: inline-block; 
}

.common-title-box {
    writing-mode: vertical-rl;
    width: auto;
    display: inline-block;
}

.common-title-box .title01 {
    margin: 0;
    text-decoration: underline;
    text-decoration-color: var(--border-tertiary);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    line-height: 1.6;
}

.common-title-box .en-title01 {
    margin: 0 0 0 10px;
}

.common-vertical-title02 {
    margin: 54px 0 0 !important;
}

.common-title-box02 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 32px 25px 0; /* テキストと枠線の間の余白 */
    position: relative;

    /* ⚠️ デザインの調整用の変数：縦横を別々に指定できる */
    --border-width: 2px;   /* 枠線の太さ */
    --corner-width: 30px;  /* ★ L字の「横」の長さ */
    --corner-height: 45px; /* ★ L字の「縦」の長さ */
    --border-color: #FFF;  /* 枠線の色 */

    /* 4つのグラデーションのサイズ指定（/ の後ろの部分）に変数を割り当て */
    background:
        /* 左上 (Top-Left) */
        linear-gradient(to right, var(--border-color) 0% 100%) no-repeat left top / var(--corner-width) var(--border-width),
        linear-gradient(to bottom, var(--border-color) 0% 100%) no-repeat left top / var(--border-width) var(--corner-height),
        
        /* 右上 (Top-Right) */
        linear-gradient(to left, var(--border-color) 0% 100%) no-repeat right top / var(--corner-width) var(--border-width),
        linear-gradient(to bottom, var(--border-color) 0% 100%) no-repeat right top / var(--border-width) var(--corner-height),
        
        /* 左下 (Bottom-Left) */
        linear-gradient(to right, var(--border-color) 0% 100%) no-repeat left bottom / var(--corner-width) var(--border-width),
        linear-gradient(to top, var(--border-color) 0% 100%) no-repeat left bottom / var(--border-width) var(--corner-height),
        
        /* 右下 (Bottom-Right) */
        linear-gradient(to left, var(--border-color) 0% 100%) no-repeat right bottom / var(--corner-width) var(--border-width),
        linear-gradient(to top, var(--border-color) 0% 100%) no-repeat right bottom / var(--border-width) var(--corner-height);
}

.common-title-box02 .title02 {
    margin: 0;
    letter-spacing: 0.24em;
}

/*===========================================================
br調整
===========================================================*/

.br-none br {
    display: none;
}

/*===========================================================
スライダー
===========================================================*/

.loopImgBx01 {
    width: 320px;
    padding-top: 180px;
    margin: 0 10px;
    position: relative;
}

.loop-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: auto;
    position: relative;
    z-index: 1;
}

.loopImgBx01>img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    height: 100%;
}

.loopImgArea {
    display: flex;
    animation: loop-slide 50s infinite linear 1s both;
}

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

/*ここまで*/

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

/*アニメーション*/
@keyframes loop-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*===========================================================
ヘッダー
===========================================================*/

.header {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    background: var(--bg-primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all .3s;
}

.header-container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 7px 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: all .3s;
}

.header-logo {
    margin: 0 auto;
    max-width: 45px;
    width: 100%;
}

.header-right {
    margin: 0 0 0 auto;
    max-width: 323px;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.header-nav-area {
    padding: 0 15px 0 0;
    max-width: 1042px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3.7%;
}

.header-nav-link {
    display: block;
    font-size: clamp(13px, calc(0.8125rem + ((1vw - 14px) * 0.9615)), 18px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--base-font-color);
    transition: all .3s;
}

.header-nav-link:hover {
    color: var(--primary);
}

/*--is-active--*/

.header.is-active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/*--is-animation--*/

.header.clone.is-animation {
    top: 0;
    transition: all .5s;
    visibility: visible;
    opacity: 0.9;
}

.header.clone {
    position: fixed;
    top: -96px;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
    border-bottom: 0px solid #ccc;
    background: #356194;
}

.header.clone.is-animation {
    top: 0;
    transition: all .5s;
    visibility: visible;
    opacity: 0.9;
}

.header.clone {
    position: fixed;
    top: -96px;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
    border-bottom: 0px solid #ccc;
    background: #356194;
}

/*----- is-hidden -----*/

.is-hidden {
	visibility: hidden;
	transition: all .5s;
	opacity: 0;
}

/*===========================================================
ハンバーガーメニュー
===========================================================*/

/* 管理画面　*/

.gjs-dashed .spMenu {
    opacity: 1;
    pointer-events: auto;
}

/*----------*/

.header-ham-box01-container {
    /* position: fixed; */
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.sp-header-contact-area {
    margin: 40px auto 0;
    max-width: 260px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.spNavListBox01 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.spNavBtnTxt {
    margin: 1px auto 0;
    font-size: clamp(12px, calc(0.75rem + ((1vw - 3.75px) * 0.2589)), 16px);
	font-weight: 400;
	font-family: var(--font-family02);
    color: var(--base-font-color);
    letter-spacing: 0;
}

.spNavLinkTxt {
    margin: 4px auto 0;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--white);
}

.header-ham-box01 {
    display: none !important;
    margin: 0 0 0 auto;
    height: 44px;
    width: 44px;
    transform-origin: center;
    transition: all .3s;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999999999999;
}

.header-ham-box01:hover {
    /* opacity: 0.7; */
	transform: scale(1.2);
}

/* .spNavBtn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.spNavBtn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.spNavBtnBar {
    width: 100%;
    height: 22px;
    position: relative;
}

.spNavBtnBarItem {
    width: 100%;
    height: 1px;
    background: var(--base-font-color);
    position: absolute;
    right: 0;
    transition: ease .5s;
}

.spNavBtnBarItem:nth-of-type(1) {
    top: 0;
	width: 100%;
}

.spNavBtnBarItem:nth-of-type(2) {
    top: 48%;
	width: 100%;
}

.spNavBtnBarItem:nth-of-type(3) {
    bottom: 0;
	width: 100%;
}

.open .spNavBtnBar {
    width: 70%;
}

.open .spNavBtnBarItem {
    transition: ease .5s;
}

.open .spNavBtnBarItem:nth-of-type(1) {
    transform: translateY(13px) rotate(-40deg);
}

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

.open .spNavBtnBarItem:nth-of-type(3) {
    transform: translateY(0px) rotate(40deg);
	bottom: 20%;
	width: 100%;
}

.spMenu {
    margin: auto;
    padding: 0;
    max-width: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    /* left: 0; */
    right: -100%;
    /* bottom: 0; */
    /*background: rgb(0 0 0 / 25%);*/
    z-index: 99999;
    /* pointer-events: none; */
    transition: ease .5s;
    /* transition: opacity 0.4s ease, transform 0.4s ease; */
    /* opacity: 0; */
}

.spMenu.open {
    /* opacity: 1; */
    /* pointer-events: auto; */
    right: 0;
}

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

.spMenuConte {
    padding: 50px 15px 130px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 0 0 auto;
    background: var(--base-bg-color);
    position: relative;
}

.spMenuConte::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(/system_panel/uploads/images/bg01.jpg);
    background-attachment: scroll;
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    opacity: .2;
}

.spMenuConte::-webkit-scrollbar {
    display:none;
}

.hSpNavBox {
    width: 100%;
    text-align: center;
}

.spNavList01 {
	margin: 24px 0 0;
    display: block;
    color: var(--base-font-color);
    font-size: 18px;
    font-weight: 400;
	letter-spacing: 0;
    position: relative;
    transition: all .3s;
}

/* .spNavList01::before {
    content: "";
    display: block;
	margin: 28px 0 0;
    width: 0;
    height: 1px;
    background: var(--base-font-color);
    position: absolute;
    left: 0;
    bottom: -2%;
    margin: auto;
    transition: all .4s;
} */

.spNavList01:hover {
	color: var(--base-font-color);
    /* opacity: 0.7; */
    text-decoration: underline;
}

/* .spNavList01 p {
    display: inline;
    padding: 0 0 5px;
    position: relative;
    transition: all .3s;
}

.spNavList01 p::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: var(--base-font-color);
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: all .3s;
} */

.spNavList01:hover p::before {
    width: 100%;
}

.spNavList01:hover::before {
    width: 100%;
}

.header-sp-contact-area {
    margin: 40px 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/*スマホ時のナビ*/

.spNav {
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.spNavArea {
    width: 100%;
    height: 100%;
    display: flex;
    /* background: #ACACAC; */
    background: var(--primary);
}

.spNavBlock {
	flex: 1;
	display: flex;
}

.spNavConte-l {
	width: 33.33%;
    border: 1px solid var(--white);
    /* border-top: 1px solid var(--secondary);
	border-right: 1px solid var(--secondary); */
}

.spNavConte-l:last-child {
	border-right: 0;
}

.spNavLink {
    padding: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spNavLinkIconBx {
	width: 100%;
	height: 30px;
	position: relative;
}

.spNavLinkIconBx > * {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spFa {
    font-size: 23px;
    color: #FFFFFF;
}

.spFa.spFa-pageTop {
	font-size: 20px;
}

.spNavConte-l.spNavBtn.fixed .spNavBtnBar {
    width: 25px;
    height: 15px;
}

.spNavConte-l.spNavBtn.fixed .spNavBtnBar .spNavBtnBarItem {
    background: var(--white);
}

.spNavConte-l.spNavBtn.fixed.open .spNavBtnBarItem:nth-of-type(1) {
    transform: translateY(10px) rotate(-40deg);
}

/*===========================================================
フッター
===========================================================*/

.footer-logo-set {
    gap: 20px;
}

.footer-address-row {
    display: flex;
}

.footer-address-td {
    flex: 1;
}

.footer-address-text-flex {
    display: flex;
}

.footer-address-text-flex-th {
    padding: 0 5px 0 0;
    width: 32%;
}

.footer-btn-area {
    gap: 20px;
}

.footer-nav-area {
    gap: 10px;
}

.footer-nav-link {
    margin: 26px 0 0;
    display: block;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 7.68px) * 0.3472)), 18px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.6666em;
    color: var(--base-font-color);
    transition: all .3s;
}

.footer-nav-link:hover {
    color: var(--base-font-color);
    text-decoration: underline;
}

.footer-nav-link:first-child {
    margin: 0;
}

.footer-nav-link.no-hover {
    text-decoration: none;
}

.footer-nav-block02 .footer-nav-link {
    margin: 24px 0 0;
}

.footer-nav-box {
    margin: 2px 0 0;
    padding: 0 0 0 7px;
}

.footer-nav-link02 {
    display: block;
    font-size: clamp(13px, 12.272px + 0.194vw, 16px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.875em;
    color: var(--base-font-color);
    transition: all .3s;
}

.footer-nav-link02:hover {
    color: var(--base-font-color);
    text-decoration: underline;
}

/*===========================================================
ページャー
===========================================================*/

.gallery-main-contents .webgene-pagination {
	width: 100%;
	grid-column: 1/2;
}

.news-item .webgene-pagination {
	grid-column: 1/3;
}

.webgene-pagination > ul{
	padding: 0;
	display: flex;
	justify-content: center;
}

.webgene-pagination > ul > li{
	display: flex;
}

.webgene-pagination > ul > li{
	margin: 30px 5px 0;
	height: 30px;
	width:100%;
	max-width: 30px;
	/* font-family: var(--font-family02); */
	line-height: 1em;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	font-size: 16px;
}

.webgene-pagination > ul > li.selected > a{
	/* opacity: 0.5; */
	color: var(--white);
	background: var(--secondary);
	cursor: pointer;
}

.webgene-pagination > ul > li.selected:only-child > a {
	opacity: 1;
	color: var(--white);
	cursor: pointer;	
}

.webgene-pagination > ul > li > a{
	width: 100%;
	height: 30px;
	width: 30px;
	/* background: var(--primary); */
	color: var(--base-font-color);
	display: flex;
	justify-content: center;
	align-items: center;
	/* border: 1px solid var(--primary); */
	/* border-radius: 30px; */
	transition: all .3s;
}

.webgene-pagination > ul > li > a:hover{
	text-decoration: none;
	color: var(--white);
	background: var(--secondary);
	/* opacity: 0.5; */
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	position: relative;
	height: 30px;
	width: 30px;
	border: 0;
	font-size: 0;
}

.webgene-pagination>ul>.prev>a:hover,
.webgene-pagination>ul>.next>a:hover {
	background-color: var(--secondary);
}

.webgene-pagination>ul>.prev>a::before,
.webgene-pagination>ul>.next>a::before {
	content: "";
	display: block;
	transition: all .3s;
}

.webgene-pagination>ul>.prev>a::before {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	border-bottom: solid 2px var(--secondary);
	border-left: solid 2px var(--secondary);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	left: 12px;
	top: 50%;
}

.webgene-pagination>ul>.prev>a:hover:before {
	border-bottom: solid 2px var(--white);
	border-left: solid 2px var(--white);
}

.webgene-pagination>ul>.next>a::before {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	border-top: solid 2px var(--secondary);
	border-right: solid 2px var(--secondary);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	right: 12px;
	top: 50%;
}

.webgene-pagination>ul>.next>a:hover:before {
	border-top: solid 2px var(--white);
	border-right: solid 2px var(--white);
}

.dtlPager {
	display: flex;
	justify-content: space-between;
	margin: 80px 0 0;
}

.webgene-item-aroundPageLink {
	color: #333;
	font-size: 14px;
}

/*===========================================================
店舗情報共通
===========================================================*/

.common-shop-row {
    /* padding: 10px 0; */
    /* border-bottom: 1px solid var(--tertiary); */
    display: flex;
}

.common-shop-row:first-child {
    margin: 0;
}

.common-shop-td {
    flex: 1;
}

.common-shop-text-flex {
    display: flex;
}

.common-shop-text-flex-th {
    max-width: 85px;
    width: 100%;
}

.common-shop-text-flex-td {
    flex: 1;
}

/*===========================================================
下層
===========================================================*/

/*===========================================================
下層カバー
===========================================================*/

.in-cover {
    padding: 0 15px;
    max-width: 1920px;
    width: 100%;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.in-cover:before {
    content: "";
    display: block;
    position: absolute;
    max-width: 1920px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    right: 0;
    background: var(--gradation-primary);
}

.in-cover-title-box {
    margin: 0 auto;
    max-width: 1620px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.in-cover-title {
    font-size: clamp(32px, 25.204px + 1.812vw, 60px);
    font-weight: 400;
    font-family: var(--font-family01);
    letter-spacing: 0.05em;
    color: #FFF;
}

.in-cover-sub-title-box {
    margin: 20px 0 0;
}

.in-cover-sub-title {
    font-size: clamp(16px, 15.029px + 0.259vw, 20px);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #FFF;
}

/*===========================================================
パンくず
===========================================================*/

.bread-wrapper {
    max-width: 1920px;
    width: 100%;
    padding: 15px;
}

.bread-box {
    max-width: 1220px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: auto;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.bread-link {
    display: block;
    color: var(--base-font-color);
    text-decoration: underline;
}

.bread-link:hover {
    color: var(--base-font-color);
    text-decoration: none;
}

/*===========================================================
inner
===========================================================*/

.in-wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 15px;
    position: relative;
}

.inner01 {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
}

.inner02 {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.inner03 {
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
}

.inner04 {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
}

.inner05 {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
}

/*===========================================================
ご注文方法
===========================================================*/

.order-wrapper {
    padding: 60px 15px 120px;
}

.order-wrapper02 {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.order-wrapper02 .common-title-box {
    margin: -60px 0 0;
}

.order-container {
    display: inline-block;
    margin: 30px 0 0;
    position: relative;
    z-index: 1;
}

.order-tel-area {
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.order-tel-text-box {
    margin: 10px 0 0;
}

.faq-common-title-box {
    writing-mode: unset;
    text-align: center;
}

.order-container .title03 {
    font-size: clamp(22px, 13.262px + 2.33vw, 58px);
}

.order-container .title03 span {
    font-size: clamp(27px, 17.049px + 2.654vw, 68px);
}

.order-text-box {
    margin: 10px 0 0;
}

.order-tel-area .tel-box01 {
    padding: 4px 15px 7px;
    max-width: clamp(289px, 272.010px + 4.531vw, 359px);
    font-size: clamp(24px, 20.117px + 1.036vw, 40px);
}

.order-tel-area .tel-box01::before {
    width: clamp(16px, 15.029px + 0.259vw, 20px);
    height: clamp(29px, 28.029px + 0.259vw, 33px);
}

/*===========================================================
下層バナー
===========================================================*/

/* 管理画面 */

.gjs-dashed .in-banner-link::before {
    display: none;
}

/*---------*/

.in-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    position: relative;
    transition: all .3s;
}

.in-banner-link::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gradation-secondary);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    opacity: .7;
    transition: all .3s;
}

.in-banner-link:hover::before {
    opacity: .5;
}

.in-banner-img-box {
    width: 100%;
    height: 100%;
}

.in-banner-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.in-banner-text-area {
    position: absolute;
    color: var(--white);
    text-align: center;
    z-index: 2;
}

.in-banner-text-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

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


} /* min-width: 375px ここまで */

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



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

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

/*===========================================================
br調整
===========================================================*/

.sm-br-block br {
    display: block;
}

.sm-br-none br {
    display: none;
}

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

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

/*===========================================================
共通
===========================================================*/



/*===========================================================
テキスト
===========================================================*/

.common-title-box .title01 {
    text-underline-offset: 8px;
}

.common-title-box .en-title01 {
    margin: 0 0 0 16px;
}

.title01 {
    font-size: clamp(26px, 16.667px + 1.215vw, 40px);
}

/*===========================================================
br調整
===========================================================*/

.md-br-block br {
    display: block;
}

.md-br-none br {
    display: none;
}

/*===========================================================
スライダー
===========================================================*/

.loopImgBx01 {
    width: 420px;
    padding-top: 280px;
}

/*===========================================================
ヘッダー
===========================================================*/


.header-logo {
    margin: 0;
    max-width: 52px;
}

.header-right {
    display: flex;
}

.header-ham-box01 {
    display: flex !important;
}

.header-container {
    padding: 7px 73px 8px 0;
}

/*===========================================================
ハンバーガーメニュー
===========================================================*/

.header-sp-nav-area {
    flex-direction: row;
    justify-content: space-between;
}

.spNavListBox01 {
    align-items: flex-start;
}

.sp-menu-link-area {
    margin: 50px 0 0;
}

.spMenu {
    margin: 0 0 0 auto;
    max-width: 100%;
    width: 100%;
	background: rgba(209, 205, 200, 0.7);
}

.spMenuConte {
    padding: 90px 15px 130px;
	max-width: 600px;
}

.open .spNavBtnBarItem:nth-of-type(1) {
    transform: translateY(11px) rotate(-40deg);
}

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

.open .spNavBtnBarItem:nth-of-type(3) {
    transform: translateY(-3px) rotate(40deg);
	bottom: 20%;
	width: 100%;
}

.spNav {
    display: none;
}

/*===========================================================
フッター
===========================================================*/

/*===========================================================
ページャー
===========================================================*/

.gallery-main-contents .webgene-pagination {
	grid-column: 1/3;
}

.news-item .webgene-pagination {
	grid-column: 1/4;
}

.webgene-pagination > ul > li{
	margin: 40px 10px 0;
	height: 40px;
	max-width: 40px;
	font-size: 20px;
}

.webgene-pagination > ul > li > a{
	height: 40px;
	width: 40px;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	height: 40px;
	width: 40px;
}

.webgene-pagination>ul>.prev>a::before {
	width: 14px;
	height: 14px;
	left: 15px;
	top: 50%;
}

.webgene-pagination>ul>.next>a::before {
	width: 14px;
	height: 14px;
	right: 15px;
	top: 50%;
}

/*===========================================================
下層
===========================================================*/

/*===========================================================
下層カバー
===========================================================*/

.in-cover {
    max-width: 1920px;
    width: 100%;
    height: 300px;
    justify-content: flex-start;
}

/*===========================================================
inner
===========================================================*/

.in-wrapper {
    padding: 80px 15px;
}

/*===========================================================
ご注文方法
===========================================================*/

.order-wrapper {
    padding: 80px 15px 160px;
}

.order-wrapper02 {
    margin: 0 auto;
    padding: 0 15px 80px;
}

.order-wrapper02 .common-title-box {
    margin: -80px 0 0;
}

.order-container {
    margin: 40px 0 0;
}

} /* min-width: 768px ここまで */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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



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

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

/*===========================================================
共通パーツ
===========================================================*/

/*===========================================================
br調整
===========================================================*/

.lg-br-block br {
    display: block;
}

.lg-br-none br {
    display: none;
}

/*===========================================================
スライダー
===========================================================*/

.loopImgBx01 {
    width: 520px;
    padding-top: 380px;
}

/*===========================================================
ヘッダー
===========================================================*/

.header-container {
    padding: 13px 73px 13px 0;
}

.header-ham-box01 {
    top: 28px;
}

.header-ham-box01.is-active {
    top: 28px;
    right: 20px;
}

/*===========================================================
フッター
===========================================================*/

/*===========================================================
店舗情報共通
===========================================================*/

.common-shop-row {
    flex-direction: row;
}

.common-shop-link-area {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px 35px;
}

/*===========================================================
下層
===========================================================*/

/*===========================================================
パンくず
===========================================================*/

.bread-box {
    font-size: 14px;
}

/*===========================================================
inner
===========================================================*/

.in-wrapper {
    padding: 150px 15px;
}

.in-first-wrapper {
    padding: 120px 15px;
}

/*===========================================================
ご注文方法
===========================================================*/

.order-wrapper {
    padding: 150px 15px 250px;
}

.order-wrapper02 {
    margin: 0 auto;
    padding: 0 15px 100px;
}

.order-wrapper02 .common-title-box {
    margin: -100px 0 0;
}

.order-container {
    margin: 60px 0 0;
}

.order-tel-area {
    margin: 30px 0 0;
}

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

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

/*===========================================================
ヘッダー
===========================================================*/


/*===========================================================
フッター
===========================================================*/

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

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

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