@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #332610;
	--base-bg-color: #FAF4EA;

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

	/* site color */
	--primary: #609544;
	--primary-hover: #f55;
	--secondary: #F07F4B;
	--secondary-hover: #55f;
	--tertiary: #A8806D;
	--tertiary-hover: #5f5;
	--quaternary: #EFE7D9;
	--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: #332610;

    --bg-primary: #35641C;
    --bg-secondary: #609544;
    --bg-tertiary: #EAE0C6;
    --bg-quaternary: #EFE6D0;
    --bg-fifth: #D6CCB1;
    --bg-sixth: #F07F4B;

    --border-primary: #9A8B70;
    --border-secondary: #D5CBB9;

    --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: "Noto Sans JP", sans-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 Maru Gothic", sans-serif;
	--font-family02: "Noto Sans", 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: 20px;
	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;
}

.bg-sixth {
    background: var(--bg-sixth);
}

.br-none br {
    display: none;
}

.common-title-box01 .title01 {
    padding: 0 0 14px;
}

.common-title-box01 .sub-title01 {
    padding: 16px 0 0;
    display: inline-block;
    border-top: 1px solid #D5CBB9;
}

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

.btn01 {
    padding: 15px;
    display: block;
    max-width: 250px;
    width: 100%;
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 42px;
    text-align: center;
    position: relative;
    transition: all .3s;
}

.btn01-green {
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
}

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

.btn01-green::before {
    content: "";
    display: block; 
    width: clamp(12px, 1vw, 18px);
    aspect-ratio: 17 / 12;
    background: url(/system_panel/uploads/images/arrow_white.svg) center / contain no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 9%;
    margin: auto;
    transition: all .3s;
}

.btn01-green:hover::before {
    background: url(/system_panel/uploads/images/arrow_green.svg) center / contain no-repeat;
    transform: translateX(6px);
}

.btn01-white {
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--primary);
}

.btn01-white:hover {
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--white);
}

.btn01-white::before {
    content: "";
    display: block; 
    width: clamp(12px, 1vw, 17px);
    aspect-ratio: 17 / 12;
    background: url(/system_panel/uploads/images/arrow_green.svg) center / contain no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 9%;
    margin: auto;
    transition: all .3s;
}

.btn01-white:hover::before {
    background: url(/system_panel/uploads/images/arrow_white.svg) center / contain no-repeat;
    transform: translateX(6px);
}

.tel-box01 {
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 0.7767)), 30px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    color: var(--white);
    display: flex;
    align-items: flex-end;
}

.tel-box01::before {
    content: "";
    display: block;
    margin: 0 12px 0 0;
    width: clamp(12px, 1vw, 15px);
    aspect-ratio: 15 / 26;
    background: url(/system_panel/uploads/images/tel_white.svg) center / contain no-repeat;
}

.tel-box02 {
    font-size: clamp(18px, calc(1.125rem + ((1vw - 7.68px) * 1.2153)), 32px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    color: var(--base-font-color);
    display: flex;
    align-items: center;
}

.tel-box02::before {
    content: "";
    display: block;
    margin: 0 12px 0 0;
    width: clamp(12px, 1vw, 16px);
    aspect-ratio: 16 / 29;
    background: url(/system_panel/uploads/images/tel_black.svg) center / contain no-repeat;
}

.tel-box03 {
    font-size: clamp(25px, calc(1.5625rem + ((1vw - 3.75px) * 1.2298)), 44px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    color: var(--base-font-color);
    display: flex;
    align-items: flex-end;
}

.tel-box03::before {
    content: "";
    display: block;
    margin: 0 12px 0 0;
    width: clamp(15px, 1vw, 21px);
    aspect-ratio: 21 / 37;
    background: url(/system_panel/uploads/images/tel_black.svg) center / contain no-repeat;
}

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

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

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

.reserve-btn01 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 15px;
    max-width: 190px;
    width: 100%;
    font-size: clamp(13px, calc(0.8125rem + ((1vw - 7.68px) * 0.434)), 18px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
    text-align: center;
    background: var(
    --white);
    border: 1px solid var(--primary);
    border-radius: 34px;
    transition: all .3s;
}

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

.reserve-btn01::before {
    content: "";
    display: block;
    margin: 0 10px 0 0;
    width: clamp(15px, 1vw, 20px);
    aspect-ratio: 20 / 20;
    background: url(/system_panel/uploads/images/calendar_green01.svg) center / contain no-repeat;
    transition: all .3s;
}

.reserve-btn01:hover::before {
    background: url(/system_panel/uploads/images/calendar_white01.svg) center / contain no-repeat;
}

.reserve-btn02 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    max-width: 300px;
    width: 100%;
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
    text-align: center;
    background: var(
    --white);
    border: 1px solid var(--primary);
    border-radius: 40px;
    transition: all .3s;
}

.reserve-btn02:hover {
    color: var(--white);
    background: var(--primary);
}

.reserve-btn02::before {
    content: "";
    display: block;
    margin: 0 10px 0 0;
    width: clamp(25px, 1vw, 30px);
    aspect-ratio: 30 / 30;
    background: url(/system_panel/uploads/images/calendar_green01.svg) center / contain no-repeat;
    transition: all .3s;
}

.reserve-btn02:hover::before {
    background: url(/system_panel/uploads/images/calendar_white01.svg) center / contain no-repeat;
}

.contact-btn01 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 15px;
    max-width: 190px;
    width: 100%;
    font-size: clamp(13px, calc(0.8125rem + ((1vw - 7.68px) * 0.434)), 18px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    text-align: center;
    background: var(
    --white);
    border: 1px solid var(--secondary);
    background: var(--secondary);
    border-radius: 34px;
    transition: all .3s;
}

.contact-btn01:hover {
    color: var(--secondary);
    background: var(--white);
}

.contact-btn01::before {
    content: "";
    display: block;
    margin: 0 12px 0 0;
    width: clamp(20px, 1.3vw, 24px);
    aspect-ratio: 24 / 16;
    background: url(/system_panel/uploads/images/mail_white01.svg) center / contain no-repeat;
    transition: all .3s;
}

.contact-btn01:hover::before {
    background: url(/system_panel/uploads/images/mail_orange01.svg) center / contain no-repeat;
}

.contact-btn02 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    max-width: 300px;
    width: 100%;
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(
    --white);
    border: 1px solid var(--secondary);
    background: var(--secondary);
    border-radius: 40px;
    transition: all .3s;
}

.contact-btn02:hover {
    color: var(--secondary);
    background: var(--white);
}

.contact-btn02::before {
    content: "";
    display: block;
    margin: 0 17px 0 0;
    width: clamp(24px, 1.6vw, 30px);
    aspect-ratio: 30 / 20;
    background: url(/system_panel/uploads/images/mail_white02.svg) center / contain no-repeat;
    transition: all .3s;
}

.contact-btn02:hover::before {
    background: url(/system_panel/uploads/images/mail_orange02.svg) center / contain no-repeat;
}

.line-btn01 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 19px 15px;
    max-width: 300px;
    width: 100%;
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(
    --white);
    border: 1px solid var(--primary);
    background: var(--primary);
    border-radius: 40px;
    transition: all .3s;
}

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

.line-btn01::before {
    content: "";
    display: block;
    margin: 0 10px 0 0;
    width: clamp(29px, 1.8vw, 34px);
    aspect-ratio: 34 / 34;
    background: url(/system_panel/uploads/images/line_icon02.svg) center / contain no-repeat;
    transition: all .3s;
}

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

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

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

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

.letter-spacing-0 {
    letter-spacing: 0 !important;
}

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

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

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

.title01 {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 1.8123)), 48px);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4375;
}

.title02 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.7767)), 28px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5;
}

.title03 {
    font-size: clamp(19px, calc(1.1875rem + ((1vw - 3.75px) * 1.2298)), 38px);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

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

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

/* .title06 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    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(13px, calc(0.8125rem + ((1vw - 3.75px) * 0.1294)), 15px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
}

.sub-title02 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.3883)), 22px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5;
}

.en-title01 {
    font-size: clamp(40px, calc(2.5rem + ((1vw - 3.75px) * 6.4725)), 140px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 0.7;
}

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

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

/*----*/

.compBaseTb {
    border: 1px solid #ccc;
}

.compBaseTr {
    border: 1px solid #ccc;
}

.compBaseTh {
    padding: 15px;
    background-color: #555;
    color: #fff;
}

.compBaseTd {
    padding: 15px;
    background: #fff;
}

/*----*/

/*===========================================================
お知らせ
===========================================================*/

.news-item {
    overflow: hidden;
}

.news-img {
    background: var(--primary);
    padding: 0px 0 64.07%;
    position: relative;
    height: 0;
    margin: 0 auto;
    transition: all .3s;
    position: relative;
}

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

img + .no-img {
    display: none;
}

.news-link {
    display: block;
    transition: all .3s;
}

.news-link:hover {
    opacity: 0.7;
}

.news-cate-flex {
    display: flex;
    align-items: flex-start;
    /* flex-direction: column; */
    margin: 18px 0 0;
    gap: 10px;
}

.news-date {
    font-size: clamp(12px, calc(0.75rem + ((1vw - 3.75px) * 0.2589)), 16px);
    font-weight: 500;
    letter-spacing: 0;
    color: var(--base-font-color);
}

.news-cate {
    display: inline-block;
    padding: 2px 10px 4px;
    font-size: clamp(12px, calc(0.75rem + ((1vw - 3.75px) * 0.2589)), 16px);
    font-weight: 500;
    letter-spacing: 0;
    color: var(--primary);
    background: var(--bg-quaternary);
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    z-index: 1;
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 12px 0 0;
    color: var(--base-font-color);
}


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

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

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

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

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

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

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

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

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




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

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

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

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

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

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

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

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

.news-cate-flex {
    flex-direction: row;
}

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

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

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

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

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

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

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

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

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

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

.btn01 {
    padding: 22px 15px 23px 15px;
    max-width: 310px;
}

.reserve-btn01 {
    max-width: 220px;
}

.contact-btn01 {
    max-width: 220px;
}


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

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

/*===========================================================
お知らせ
===========================================================*/

.news-cate {
    padding: 2px 20px 4px;
}

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

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

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

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

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

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



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

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

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


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

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

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

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

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

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

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

.tel-box02 {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 10.24px) * 1.3393)), 32px);
    align-items: flex-end;
}

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

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

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

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

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

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

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

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

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

.reserve-btn02 {
    max-width: 380px;
}

.contact-btn02 {
    max-width: 380px;
}

.line-btn01 {
    padding: 23px 15px;
    max-width: 380px;
}


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

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

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