@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #331703;
	--base-bg-color: #FFEDD5;

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

	/* site color */
	--primary: #920E22;
	--primary-hover: #f55;
	--secondary: #9B2133;
	--secondary-hover: #55f;
	--tertiary: #140A2C;
	--tertiary-hover: #5f5;
	--quaternary: #261D3D;
	--quaternary-hover: #f5f;
	--fifth: #FFF8ED;
	--fifth-hover: #ff5;
	--sixth: #EDE2D6;
	--sixth-hover: #5ff;
    --seventh: #F3E1C9;
    --eighth: #E8D2BA;
    --ninth: #64310D;

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

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

    --border-primary: #98361F;
    --border-secondary: #2E3355;
    --border-tertiary: #D3BAA0;

	/* 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: "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: "Cormorant Garamond", serif;
	/* --font-family02: ; */
	/* --font-family03: ; */

}

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

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

.padding01 {
	padding: 0 15px;
}

.common-title-box01 {
    margin: -5.3% 0 0;
}

/*-----------------------------------------------------------
カラー
-----------------------------------------------------------*/

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

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

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

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

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

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

.color-white {
    color: #FFFFFF;
}

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

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

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

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

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

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

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

.en-title01 {
	font-size: clamp(40px, calc(2.5rem + ((1vw - 3.75px) * 10.0971)), 196px);
	font-weight: 400;
    font-family: var(--font-family01);
	letter-spacing: 0;
    line-height: 1em;
}

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

.title02 {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 0.6472)), 30px);
	letter-spacing: 0.05em;
}

.title02 span {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 10.24px) * 2.2321)), 40px);
	letter-spacing: 0.05em;
}

.text01 {
	font-size: clamp(14px, calc(0.875rem + ((1vw - 3.75px) * 0.2589)), 18px);
	line-height: 2.1111em;
	letter-spacing: 0.05em;
}

.vertical-text01 {
    font-size: clamp(50px, calc(3.125rem + ((1vw - 3.75px) * 3.8835)), 110px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1em;
    letter-spacing: 0.2em;
    margin: 0;
}

.line-height01 {
	line-height: 3.33333em !important;
}

.line-height02 {
	line-height: 1.6666em !important;
}

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

.btn01 {
    max-width: 186px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    font-family: var(--font-family01);
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

.btn01.btn01-red::after {
    content: "";
    max-width: 50px;
    width: 100%;
    height: 50px;
    margin: 0 0 0 14px;
    background: url(/system_panel/uploads/images/arrow_red.svg) center center / contain no-repeat;
    transition: all .3s;
}

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

.btn01.btn01-red:hover::after {
    transform: translateX(6px);
}

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

.btn01.btn01-white::after {
    content: "";
    max-width: 50px;
    width: 100%;
    height: 50px;
    margin: 0 0 0 14px;
    background: url(/system_panel/uploads/images/arrow_white.svg) center center / contain no-repeat;
    transition: all .3s;
}

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

.btn01.btn01-white:hover::after {
    transform: translateX(6px);
}

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

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

.tel-box01 {
    padding: 8px 10px 10px;
    max-width: 270px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 0.5178)), 28px);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
    line-height: 1;
    border-radius: 34px;
    background: var(--white);
}

.tel-box01::before {
    content: "";
    max-width: 27px;
    width: 100%;
    height: 27px;
    margin: 5px 13px 0 0;
    background: url(/system_panel/uploads/images/tel_icon_red.svg) center center / contain no-repeat;
}

.tel-box02 {
    max-width: 256px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 0.5178)), 28px);
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 700;
}

.tel-box02.tel-box02-red {
    color: var(--primary);
}

.tel-box02.tel-box02-red::before {
    content: "";
    max-width: 27px;
    width: 100%;
    height: 27px;
    margin: 3px 12px 0 0;
    background: url(/system_panel/uploads/images/tel_icon_red.svg) center center / contain no-repeat;
}

.tel-box02.tel-box02-white {
    color: var(--white);
    font-weight: 400;
}

.tel-box02.tel-box02-white::before {
    content: "";
    max-width: 27px;
    width: 100%;
    height: 27px;
    margin: 3px 13px 0 0;
    background: url(/system_panel/uploads/images/tel_white.svg) center center / contain no-repeat;
}

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

.contact-btn01::before {
    content: "";
    max-width: 22px;
    width: 100%;
    height: 15px;
    margin: 2px 12px 0 0;
    background: url(/system_panel/uploads/images/mail_white.svg) center center / contain no-repeat;
    transition: all .3s;
}

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

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


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

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

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

/*----*/


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

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

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

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

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

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

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

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

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




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

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

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

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

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

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



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

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

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

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

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

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

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

    .contact-btn01 {
        padding: 19px 10px 20px;
        max-width: 316px;
    }

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

    .loopImgBx01 {
        width: 330px;
        padding-top: 270px;
    }

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

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

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

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

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

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



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

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

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


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

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

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


    .tel-box01 {
        padding: 17px 10px 19px;
        max-width: 316px;
    }

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

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

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