@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #555555;
	--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: #3FB8CE;
	/* --primary-hover: #f55; */
	--secondary: #C73E1C;
	/* --secondary-hover: #55f; */
	--tertiary: #CCCCCC;
	/* --tertiary-hover: #5f5; */
	--quaternary: #909090;
	/* --quaternary-hover: #f5f; */
	--fifth: #383838;
	/* --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: #555555;

    --bg-primary: #E4F5F8;
    --bg-secondary: #F5F5F5;
    --bg-tertiary: #F0FAFB;
    --bg-quaternary: #F5F7F7;
    /* --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: "Noto Sans JP", 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: "Poppins", sans-serif;
	--font-family02: "Noto Sans JP", 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(--fifth);
}

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

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

.btn01 {
    padding: 16px 45px 13px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 243px;
    width: 100%;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 3.75px) * 0.2589)), 18px);
    font-weight: 500;
    font-family: var(--font-family01);
    color: var(--primary);
    letter-spacing: 0;
    background-color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 30px;
    position: relative;
    transition: all .3s;
}

.btn01 p {
    margin: 0 0 0 5%;
}

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

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

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

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

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

.reserve-btn01::before {
    content: "";
    display: block;
    margin: 0 12px 0 0;
    width: 21px;
    height: 21px;
    background: url(/system_panel/uploads/images/calendar_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/calendar_blue.svg);
}

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

.banner-container01 {
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.banner-link01 {
    padding: 0 15px;
    display: block;
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    position: relative;
    transition: all .3s;
}

.banner-link01::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 6, 0, .5);
    mix-blend-mode: darken;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    transition: all .3s;
}

.banner-link01:hover::before {
    background-color: rgba(31, 6, 0, .3);
}

.banner-link01:hover {
    color: var(--white);
}

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

.banner-link01-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.banner-link01-title-box {
    margin: -20px 0 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-link01-btn-area {
    margin: 40px 0 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 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, calc(0.875rem + ((1vw - 3.75px) * 0.2589)), 18px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 2.1111em;
}

.text02 {
    font-size: clamp(15px, calc(0.9375rem + ((1vw - 7.68px) * 0.6076)), 22px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5909em;
}

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

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

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

.title01 {
    font-size: clamp(40px, calc(2.5rem + ((1vw - 3.75px) * 2.2654)), 75px);
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.35em;
}

.title02 {
    font-size: clamp(40px, calc(2.5rem + ((1vw - 3.75px) * 1.2945)), 60px);
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.5em;
}

.title02 span {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 1.2945)), 40px);
    font-weight: 500;
    font-family: var(--font-family02);
    letter-spacing: 0.025em;
}

.title02 strong {
    font-size: clamp(30px, calc(1.875rem + ((1vw - 3.75px) * 1.2945)), 50px);
    font-weight: 500;
    font-family: var(--font-family02);
    letter-spacing: 0.025em;
}

.title03 {
    font-size: clamp(30px, calc(1.875rem + ((1vw - 3.75px) * 1.9417)), 60px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5em;
}

.title04 {
    font-size: clamp(24px, calc(1.5rem + ((1vw - 3.75px) * 1.2945)), 44px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5em;
}

.title05 {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 1.165)), 36px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5em;
}

.title06 {
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 0.5178)), 26px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5em;
}

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

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

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

.br-none br {
    display: none;
}

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

.loopImgBx01 {
    width: 300px;
    padding-top: 200px;
    margin: 0 7.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%);
    }
}

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

.header {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
}

.header-container {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 70px 10px 113px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    transition: all .3s;
    background-color: var(--white);
}

.header-logo {
    max-width: 106px;
    width: 100%;
	position: absolute;
    left: 0;
    top: 0;
    transition: all .3s;
}


.header-right {
    padding: 1px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px 40px;
}

.header-nav-link-area {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap:1.5%;
}

.header-nav-link {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--base-font-color);
    letter-spacing: 0;
    line-height: 1.3888em;
    transition: all .3s;
}

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

.header-contact-area {
    max-width: 180px;
    width: 100%;
}

.header-contact-area .reserve-btn01 {
    max-width: 180px;
}

/*--is-active--*/

.header.is-active {
    background: var(--base-bg-color);
}

.header.is-active .header-container {
    padding: 10px 70px 10px 0;
}

.header.is-active .header-logo {
    max-width: 106px;
}

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

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

.header-sp-contact-area {
    margin: 40px 0 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* 管理画面　*/

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

.gjs-dashed .header-ham-box01 {
    display: block !important;
}

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

.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: 70px 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: 3px auto 0;
    font-size: clamp(12px, calc(0.75rem + ((1vw - 3.75px) * 0.2589)), 16px);
	font-weight: 500;
	font-family: var(--font-family02);
    color: var(--base-font-color);
    letter-spacing: 00;
}

.spNavLinkTxt {
    margin: 4px auto 0;
    font-size: 16px;
    color: var(--base-font-color);
}

.header-ham-box01 {
    margin: 0 0 0 auto;
    height: 45px;
    width: 40px;
    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: 28px;
    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(17px) 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: 90px 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::-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: 500;
	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(--primary);
}

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

/*スマホ時のナビ*/

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

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

.footer-address-row {
    margin: 3px 0 0;
}

.footer-address-row:first-child {
    margin: 0;
}

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

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

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

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

.copyright-area {
    border-top: 1px solid var(--tertiary);
}

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

.news-item {
    overflow: hidden;
}

.news-img {
    background: var(--bg-primary);
    padding: 0px 0 75.53%;
    position: relative;
    height: 0;
    margin: 0 auto;
    transition: all .3s;
    overflow: hidden;
    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;
    transition: all .3s;
}

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

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

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

.news-cate-flex {
    display: flex;
    align-items: flex-start;
    margin: 13px 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(--quaternary);
}

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

.news-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin: 9px 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) {

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

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

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

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

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

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

.title05 {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 7.68px) * 1.5625)), 36px);
}

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

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

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

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

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

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

.banner-container01 {
    flex-direction: row;
}

.banner-link01-btn-area {
    margin: 60px 0 0;
}

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

.header-container {
    padding: 10px 70px 10px 18%;
}

.header-contact-area {
    max-width: 243px;
}

.header-contact-area .reserve-btn01 {
    max-width: 243px;
}

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

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

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

.spNav {
    display: none;
}

.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: 120px 15px 130px;
	max-width: 740px;
} */

.open .spNavBtnBarItem:nth-of-type(1) {
    transform: translateY(12px) 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%;
}

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

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

.news-title {
    font-size: 16px;
}

} /* 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: 400px;
    padding-top: 300px;
}

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

.banner-link01 {
    height: 448px;
}

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

.header-container {
    padding: 25px 20px 35px 18%;
}

.header-logo {
	max-width: 223px;
}

.header.is-active .header-logo {
    max-width: 195px;
}

.header.is-active .header-container {
    padding: 25px 20px 20px 150px;
}

.header-right {
    padding: 0;
}

.header-nav-link-area {
    display: flex;
}

.header-contact-area {
    display: block;
}

.header-ham-box01 {
	display: none;
}

.spMenuArea {
    display: none;
}

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

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

.news-cate-flex {
    gap: 18px;
}

.news-cate {
    padding: 0 14px;
}

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

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

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


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

.open .spNavBtnBarItem:nth-of-type(1) {
    transform: translateY(10px) 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%;
}

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

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

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

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

.header-logo {
    max-width: 255px;
}

.header-container {
    padding: 25px 40px 35px 18%;
}

.header.is-active .header-logo {
	max-width: 147px;
}

.header-right {
    flex-direction: row;
    align-items: center;
}

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

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

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

.header-logo {
    max-width: 295px;
}

.header-nav-link {
    font-size: 18px;
}

.header-nav-link-area {
    gap: 2%;
}

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

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

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

.header-logo {
    max-width: 344px;
}

.header-nav-link-area {
    gap: 3.2%;
}

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