@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #333333;
	--base-bg-color: #FFFFFF;

	/* ui color */
	--ui-border-color: #555; 
	--ui-focus-color: #333;
	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;

	/* site color */
	--primary: #155C84;
	--primary-hover: #f55;
	--secondary: #6E8793;
	--secondary-hover: #55f;
	--tertiary: #7FA6BC;
	--tertiary-hover: #5f5;
	--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: #333;

    --bg-primary: #155C84;
    --bg-secondary: #FDFCFA;
    --bg-tertiary: #F3E1C9;
    --bg-quaternary: #F3E1C9;
    --bg-fifth: #F3E1C9;

    --gradation-primary: linear-gradient(to left, rgba(236, 229, 224), rgba(248, 242, 241, 80%));
    --gradation-secondary: linear-gradient(to right, rgba(236, 229, 224), rgba(248, 242, 241, 80%));

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

	/* btn color */
	--btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover);

	/* font family */
	--base-font-family: "Zen Kaku Gothic New", sans-serif, "Shippori Mincho B1", 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 Kaku Gothic New", sans-serif;
	--font-family02: "Sen", sans-serif;
	/* --font-family03: ; */

}

/* 管理画面 */

.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);
    font-size: 18px;
	font-weight: 500;
	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;
}

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

/* btn01 */


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

.br-none br {
    display: none;
}

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

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

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

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

.btn01 {
    padding: 9px 23px 10px 15px;
    max-width: 260px;
    width: 100%;
    display: block;
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 0.3883)), 24px);
    font-family: var(--font-family02);
    text-align: center;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    position: relative;
    transition: all .3s;
}

.btn01::before {
    content: "";
    display: block;
    width: 9px;
    height: 10px;
    background: url(/system_panel/uploads/images/arrow_blue.svg) center / contain no-repeat;
    position: absolute;
    right: 5%;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
}

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

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

.reserve-btn01 {
    padding: 8px 15px 3px;
    max-width: 260px;
    width: 100%;
    display: block;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    position: relative;
    transition: all .3s;
}

.reserve-btn01-text01 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
}

.reserve-btn01-text02 {
    margin: -8px 0 0;
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 0.3883)), 24px);
    font-weight: 500;
    letter-spacing: 0;
    font-family: var(--font-family02);
}

.reserve-btn01::before {
    content: "";
    display: block;
    width: 9px;
    height: 10px;
    background: url(/system_panel/uploads/images/arrow_white.svg) center / contain no-repeat;
    position: absolute;
    right: 5%;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
}

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

.reserve-btn01:hover::before {
    transform: translateX(6px);
}

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

.sns-link01:hover {
    opacity: 0.7;
}

.tel-box01 {
    max-width: 206px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 0.9061)), 32px);
    font-weight: 600;
    letter-spacing: 0;
    font-family: var(--font-family02);
}

.tel-box01::before {
    content: "";
    display: block;
    margin: 0 12px 0 0;
    max-width: 29px;
    width: 100%;
    height: 28px;
    background: url(/system_panel/uploads/images/tel_icon.svg) center / contain no-repeat;
}

/*===========================================================
バナー
===========================================================*/

.common-banner-container {
    max-width: 1560px !important;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px 20px;
}

.banner-link {
    max-width: 730px;
    width: 100%;
    display: block;
    color: white;
    overflow: hidden;
    position: relative;
    transition: all .3s;
}

.banner-link::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(15, 68, 98, 0.7);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    transition: all .3s;
}

.banner-link:hover {
    color: white;
}

.banner-link:hover::before {
    background: rgba(15, 68, 98, 0.5);
}

.banner-link img {
    transition: all .3s;
    transform: scale(1);
}

.banner-link:hover img {
    transform: scale(1.1);
}

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

.common-banner-border {
    margin: 16px;
    padding: 15px 10px;
    border: 1px solid var(--tertiary);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.common-banner-title-box {
    text-align: center;
    display: grid;
    gap: 24px;
}

/*===========================================================
店舗情報
===========================================================*/

.common-address-name {
    margin: 48px 0 0;
}

.common-address-first-box {
    margin: 32px 0 0;
}

.common-address-area {
    margin: 24px 0 0;
}

.common-address-block {
    margin: 30px 0 0;
    display: flex;
    width: 100%;
}

.common-address-block:first-child {
    margin: 0;
}

.common-address-flex-area {
    display: flex;
    justify-content: space-between;
}

.common-address-item:first-child {
    margin: 0 24px 0 0;
}

.common-address-btn-area {
    margin: 45px 0 0;
}

.common-address-btn-flex {
    margin: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.common-address-th {
    width: max-content;
    flex: none;
}

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

.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(13px, calc(0.8125rem + ((1vw - 3.75px) * 0.3236)), 18px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2.11111;
}

.text02 {
    font-size: clamp(13px, calc(0.8125rem + ((1vw - 3.75px) * 0.4531)), 20px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2;
}

.text03 {
    font-size: clamp(13px, calc(0.8125rem + ((1vw - 3.75px) * 0.3236)), 18px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3333;
}

.title01 {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 2.3301)), 56px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.07142;
}

.title02 {
    font-size: clamp(30px, calc(1.875rem + ((1vw - 3.75px) * 4.5307)), 100px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
}

.title03 {
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 1.4239)), 40px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.8;
}

.title04 {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 1.2945)), 40px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.475;
}

.title05 {
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 0.9061)), 32px);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.title06 {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 2.3301)), 56px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.42857;
}

.title07 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.5178)), 24px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.07142;
}

/* .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(14px, calc(0.875rem + ((1vw - 3.75px) * 0.1294)), 16px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5625;
}

.sub-title02 {
    font-size: clamp(14px, calc(0.875rem + ((1vw - 3.75px) * 0.1294)), 16px);
    font-weight: 400;
    letter-spacing: 0;
}

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

.loopImgBx01 {
    width: 299px;
    padding-top: 299px;
    margin: 0 5px;
    position: relative;
}

.loop-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: auto;
}

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

/*===========================================================

===========================================================*/

.inBalanceImg01>img {
    justify-content: center;
    align-items: center;
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    width: auto;
    bottom: 0;
    left: 0;
    margin: auto;
}

.objectFitImg {
    justify-content: center;
    align-items: center;
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    max-height: 100%;
    height: 100%;
    max-width: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}


a[data-lightbox] {
    position: relative;
    display: block;
}

a[data-lightbox]:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.3);
    opacity: 0;
    transition: .5s;
}

a[data-lightbox]:hover:before {
    opacity: 1;
    transition: .5s;
}

.galleryImg01>a[data-lightbox] {
    padding-top: 100%;
}

.galleryImg01>a[data-lightbox] img {
    max-height: 100%;
    height: 100%;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

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

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

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




/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

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

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

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

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

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

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

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

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

.loopImgBx01 {
    width: 299px;
    padding-top: 299px;
}


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

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



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


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

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

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

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

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

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

.tel-box01 {
    max-width: 228px;
}

/*===========================================================
バナー
===========================================================*/

.common-banner-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

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

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

.tel-box01 {
    max-width: 258px;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

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

/*===========================================================
店舗情報
===========================================================*/

.common-address-th {
    width: 15.8%;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */