@charset "utf-8";

:target{
	scroll-margin-top: var(--header-height);
}



/*-------------------------------
	基本設定
-------------------------------*/

*,
*::before,
*::after{
	box-sizing: border-box;
	line-height: var(--line-height);
	word-wrap: break-word;
	font-feature-settings: "palt";
	/* text-align: justify; */
}
html{
	font-size: var(--root-font-size);
}
body{
	opacity: 0;
	width: 100%;
	font-size: var(--font-size);
	letter-spacing: .05em;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	color: var(--subcolor);
	/* font-family: '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; */
	font-family: var(--jp);
}
body:not(:has(.Keyvisual)){
	padding-top: var(--header-height);
}

/*----- 画像関連 */
img{
	height: auto;
	vertical-align: bottom;
}

/* SVG表示されないとき */
.svg{
	line-height: 1;
	display: block;
}
.svg img{
	display: block;
	width: 100%;
	height: auto;
	line-height: 1;
}

/*----- ホバー系 */
a,
.a{
	transition: var(--transition);
}
*:not(.not-a) > a:hover,
*:not(.not-a) > .a:hover{
	opacity: var(--opacity);
}

/*----- コンテンツ */
.sec{
	padding-top: var(--padding-top);
	padding-bottom: var(--padding-bottom);
}
.main{
	display: block;
}

@media screen and (min-width:769px) , print{

	a[href^="tel:"]{
		pointer-events: none;
	}

	/*----- コンテンツ */
	.fullwidth{
		width: 100%;
		max-width: 176rem;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.maxwidth{
		width: 100%;
		max-width: var(--maxwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.largewidth{
		width: 100%;
		max-width: var(--largewidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.smallwidth{
		width: 100%;
		max-width: var(--smallwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.microwidth{
		width: 100%;
		max-width: var(--microwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	html{
		font-size: var(--root-font-size);
	}
	body{
		min-width: 100%;
		font-size: var(--font-size);
	}

	/*----- コンテンツ */
	.fullwidth{
		width: 100%;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}
	.sp_maxwidth{
		max-width: var(--maxwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}

	.sec{
		padding-top: var(--padding-top);
		padding-bottom: var(--padding-bottom);
	}

}



/*-------------------------------
	パーツ
-------------------------------*/

/*----- 見出し */
/* 大見出し */
.C-Title{
	width: 100%;
	margin-bottom: 3rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.C-Title__en{
	font-family: var(--en);
	font-size: 6.4rem;
	margin-right: .8rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .2em;
}
.C-Title__jp{
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	padding: 1rem .8rem;
	transform: translateY(-.5rem);
	letter-spacing: .15em;
	position: relative;
}
.C-Title__jp::before,
.C-Title__jp::after{
	background: var(--subcolor);
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	right: 0;
}
.C-Title__jp::before{
	top: 0;
}
.C-Title__jp::after{
	bottom: 0;
}
/* 白色 */
.C-Title.-white .C-Title__en,
.C-Title.-white .C-Title__jp{
	color: #fff;
}
.C-Title.-white .C-Title__jp::before,
.C-Title.-white .C-Title__jp::after{
	background: #fff;
}
/* 小サイズ */
.C-Title.-small .C-Title__en{
	font-size: 4.8rem;
	/* margin-right: 2.8rem; */
	margin-right: 1.8rem;
}
.C-Title.-small .C-Title__jp{
	padding-top: .8rem;
	padding-bottom: .8rem;
}

/* 中見出し */
.C-Sub-title{
	width: 100%;
	margin-bottom: 6rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.C-Sub-title::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 3.5rem;
	height: .4rem;
}
.C-Sub-title span{
	width: calc(100% - 3.5rem);
	padding-left: 1.5rem;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	display: block;
}

/*----- ボタン */
.C-Button{
	width: 25.8rem;
	height: 5.8rem;
	margin-left: auto;
	margin-right: auto;
}
.C-Button a,
.C-Button .a{
	/* border: 1px solid var(--subcolor); */
	background: var(--subcolor);
	width: 100%;
	height: 100%;
	border-radius: 1.4rem;
	letter-spacing: .2em;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	opacity: 1 !important;
}
.C-Button a::after,
.C-Button .a::after{
	content: "";
	display: block;
	width: 1.4rem;
	height: .8rem;
	margin-left: 1.3rem;
	background-image: url(../images/common/icon_arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.C-Button a:hover,
.C-Button .a:hover{
	background: var(--maincolor);
	color: var(--subcolor);
}
.C-Button a:hover::after,
.C-Button .a:hover::after{
	background-image: url(../images/common/icon_arrow-subcolor.svg);
}
/* 黄色 */
.C-Button.-yellow a,
.C-Button.-yellow .a{
	background: var(--maincolor);
	color: var(--subcolor);
}
.C-Button.-yellow a::after,
.C-Button.-yellow .a::after{
	background-image: url(../images/common/icon_arrow-subcolor.svg);
}
.C-Button.-yellow a:hover,
.C-Button.-yellow .a:hover{
	background: var(--subcolor);
	color: #fff;
}
.C-Button.-yellow a:hover::after,
.C-Button.-yellow .a:hover::after{
	background-image: url(../images/common/icon_arrow-white.svg);
}
/* 縁付き */
.C-Button.-border a,
.C-Button.-border .a{
	border: 1px solid var(--subcolor);
}
/* 大サイズ */
.C-Button.-large{
	width: 33.4rem;
}
/* inputボタン */
.C-Button input{
	width: 100%;
	height: 100%;
	letter-spacing: .15em;
	text-align: center;
}
.C-Button:has(input) a,
.C-Button:has(input) .a,
.C-Button a.-input,
.C-Button .a.-input{
	position: relative;
	z-index: 5000;
	cursor: pointer;
}
.C-Button:has(input) a::after,
.C-Button:has(input) .a::after,
.C-Button a.-input::after,
.C-Button .a.-input::after{
	position: absolute;
	right: 1.4rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}

/*----- 矢印 */
.C-Arrow{
	transition: var(--transition);
	background: var(--subcolor);
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.C-Arrow::after{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.2rem;
	height: .7rem;
	background-image: url(../images/common/icon_arrow-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
a:hover .C-Arrow{
	background: var(--maincolor);
}
a:hover .C-Arrow::after{
	background-image: url(../images/common/icon_arrow-subcolor.svg);
}

/*----- テキスト */
.C-Text{
	color: var(--blackcolor);
	font-weight: 500;
	line-height: calc(3.6 / 1.6);
	text-align: justify;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	/*----- 見出し */
	/* 大見出し */
	.C-Title{
		margin-bottom: 4rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.C-Title__en{
		font-size: 3.2rem;
		margin-bottom: 1.2rem;
		margin-right: 0;
	}
	.C-Title__jp{
		font-size: 1.4rem;
		padding: .8rem .6rem;
		transform: translateY(0);
	}
	/* 小サイズ */
	.C-Title.-small .C-Title__en{
		font-size: 3rem;
		margin-bottom: .6rem;
		margin-right: 0;
	}
	.C-Title.-small .C-Title__jp{
		padding: .4rem .6rem .5rem;
	}

	/* 中見出し */
	.C-Sub-title{
		margin-bottom: 3rem;
	}
	.C-Sub-title::before{
		width: 2.5rem;
		height: 3px;
	}
	.C-Sub-title span{
		width: calc(100% - 2.5rem);
		padding-left: 1rem;
		font-size: 2rem;
	}

	/*----- ボタン */
	.C-Button{
		width: 23.2rem;
		height: 5rem;
		margin-left: auto;
		margin-right: auto;
	}
	.C-Button a{
		border-radius: 1.3rem;
	}
	.C-Button a::after{
		width: 1.3rem;
		height: .7rem;
		margin-left: 1rem;
	}
	/* 大サイズ */
	.C-Button.-large{
		width: 26.7rem;
	}

	/*----- テキスト */
	.C-Text{
		line-height: calc(2.9 / 1.3);
	}

}



/*-------------------------------
	ヘッダー
-------------------------------*/

.header{
	height: var(--header-height);
	width: 100%;
	display: flex;
    align-items: center;
    justify-content: space-between;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 9000;
	background: #fff;
}
.header::after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: var(--subcolor);
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}
.header__inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo{
	width: 12.2rem;
	position: relative;
	z-index: 9900;
}
.header-logo a{
	display: block;
}
.header-logo img{
	width: 100%;
}
.header-nav{
	width: calc(100% - (12.2rem + 4.6rem));
	padding-right: 1rem;
	padding-left: 5rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-nav__inner{
	width: calc(100% - 31rem);
	padding-right: 3rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
} 
.header-nav__item{
	line-height: 1;
}
.header-nav__item:not(:last-child){
	margin-right: 2.5rem;
}
.header-nav__item a{
	font-size: 1.4rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	letter-spacing: 0;
	line-height: 1.35;
	font-weight: 700;
	display: block;
	position: relative;
	overflow: hidden;
	opacity: 1 !important;
}
.header-nav__item a::after,
.header-nav__item.-current a::after{
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1);
	background: var(--subcolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	transform-origin: right top;
	transform: scale(0, 1);
}
.header-nav__item a:hover::after,
.header-nav__item.-current a::after{
    transform-origin: left top;
    transform: scale(1, 1);
}
.header-nav__button-wrap{
	width: 31rem;
	height: 4.6rem;
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.header-nav__button{
	width: calc((100% - 1rem) / 2);
	border-radius: .9rem;
	position: relative;
	z-index: 6000;
	overflow: hidden;
}
.header-nav__button > span,
.header-nav__button > a{
	background: var(--subcolor);
	width: 100%;
	height: 4.6rem;
	font-size: 1.4rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
}
.header-nav__button > a{
	opacity: 1 !important;
}
.header-nav__button > span::before,
.header-nav__button > a::before{
	content: "";
	display: block;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.header-nav__button-child{
	transition: var(--transition);
	background: var(--subcolor);
	width: 100%;
	padding-left: 1.4rem;
	padding-right: 1.4rem;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	/* display: none; */
}
.header-nav__button-child-item{
	height: 50%;
	border-top: 1px solid #fff;
}
.header-nav__button-child-item a{
	height: 100%;
	/* padding-top: 1.4rem;
	padding-bottom: 1.4rem; */
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.header-nav__button-child-item-title{
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	display: block;
}
.header-nav__button-child-item-number{
	margin-top: .6rem;
	font-weight: 700;
	line-height: 1;
	display: block;
}

/* 電話でのお問い合わせ */
.header-nav__button.-tel > span::before{
	width: 2rem;
	height: 2rem;
	margin-right: .9rem;
	background-image: url(../images/common/icon_tel-white.svg);
}
.header-nav__button.-tel:hover .header-nav__button-child{
	height: 13rem;
	visibility: visible;
	overflow: visible;
}
/* 来店予約 */
.header-nav__button.-reservation .header-nav__button-child-item a{
	/* padding-top: 1rem;
	padding-bottom: 1rem; */
}
.header-nav__button.-reservation > span::before{
	transition: var(--transition);
	width: 1.9rem;
	height: 2rem;
	margin-right: 1rem;
	background-image: url(../images/common/icon_reservation-white.svg);
}
.header-nav__button.-reservation:hover .header-nav__button-child{
	height: 8.2rem;
	visibility: visible;
	overflow: visible;
}
/* .header-nav__button.-reservation > span:hover{
	background: var(--maincolor);
	color: var(--subcolor);
}
.header-nav__button.-reservation > span:hover::before{
	background-image: url(../images/common/icon_reservation-subcolor.svg);
} */

/*----- ハンバーガー */
.menu-button{
	transition: var(--transition);
	background: var(--subcolor);
	width: 4.6rem;
	height: 4.6rem;
	padding: 2rem 1.3rem;
	border-radius: .9rem;
	box-sizing: border-box;
	display: block !important;
	z-index: 9900;
	cursor: pointer;
}
.menu-button i{
	display: block;
	width: 100%;
	height: 0;
	background: #fff;
	-webkit-transition: background 0.5s;
	transition: background 0.5s;
	position: relative;
	left: 0px;
	top: 50%;
}
.menu-button i:before,
.menu-button i:after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 0.3s !important;
	transition: all 0.3s !important;
}
.menu-button i:before{
	-webkit-transform: translateY(.3rem);
	-ms-transform: translateY(.3rem);
	transform: translateY(.3rem);;
}
.menu-button i:after{
	-webkit-transform: translateY(-.3rem);
	-ms-transform: translateY(-.3rem);
	transform: translateY(-.3rem);
}
.menu-button.is_open i{
	background: transparent;
}
.menu-button.is_open i:after{
	transform:translateY(0px) rotate(-25deg);
}
.menu-button.is_open i:before{
	transform:translateY(0px) rotate(25deg);
}

.menu-button:hover{
	background: var(--maincolor);
}
.menu-button:hover i::before,
.menu-button:hover i::after{
	background: var(--subcolor);
}

/*----- ハンバーガーメニュー */
.header-hamburger{
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}
.header-hamburger-nav{
	width: 100%;
	gap: 3.2rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.header-hamburger-contact-wrap{
	width: 100%;
	max-width: 87.5rem;
	margin-bottom: 4.8rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
}
.header-hamburger-contact-block{
	width: calc((100% - (2.5rem * 2)) / 3);
}
.header-hamburger-contact-block a{
	border: .2rem solid var(--maincolor);
	background: var(--maincolor);
	height: 9rem;
	border-radius: 2rem;
	font-size: 1.7rem;
	padding-right: 3rem;
	letter-spacing: .2em;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	opacity: 1 !important;
}
.header-hamburger-contact-block a::before,
.header-hamburger-contact-block a::after{
	transition: var(--transition);
	content: "";
	display: block;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.header-hamburger-contact-block a::after{
	width: 2rem;
	height: 1.1rem;
	background-image: url(../images/common/icon_arrow-subcolor.svg);
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
}
.header-hamburger-contact-block span{
	padding-left: 1.6rem;
	line-height: calc(2.6 / 2);
	display: block;
}
.header-hamburger-contact-block a:hover{
	background: var(--subcolor);
	color: #fff;
}
.header-hamburger-contact-block a:hover::after{
	background-image: url(../images/common/icon_arrow.svg);
}

/* 無料見積＆資料請求 */
.header-hamburger-contact-block.-quotation a::before{
	width: 3.7rem;
	height: 3.6rem;
	background-image: url(../images/common/icon_quotation-subcolor.svg);
}
.header-hamburger-contact-block.-quotation a:hover::before{
	background-image: url(../images/common/icon_quotation-white.svg);
}
/* 来店予約 */
.header-hamburger-contact-block.-reservation a::before{
	width: 3.7rem;
	height: 3.8rem;
	background-image: url(../images/common/icon_reservation-subcolor.svg);
}
.header-hamburger-contact-block.-reservation a:hover::before{
	background-image: url(../images/common/icon_reservation-white.svg);
}
/* LINE相談 */
.header-hamburger-contact-block.-line a::before{
	width: 2.7rem;
	height: 4rem;
	background-image: url(../images/common/icon_line-subcolor.svg);
}
.header-hamburger-contact-block.-line a:hover::before{
	background-image: url(../images/common/icon_line-white.svg);
}

.header-hamburger-nav__item{
	width: calc((100% - (3.2rem * 3)) / 4);
}
.header-hamburger-nav__item-inner:not(:last-child){
	margin-bottom: 1.2rem;
}
.header-hamburger-nav__item-title{
	border-bottom: 2px solid var(--subcolor);
	width: 100%;
	display: block;
}
.header-hamburger-nav__item-title a{
	font-size: 1.8rem;
	margin-bottom: 1.2rem;
	font-weight: 700;
	line-height: calc(2.2 / 1.8);
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}
.header-hamburger-nav__item-title.-line2 a{
	height: calc(2em * (2.2 / 1.8));
}
.header-hamburger-nav-child{
	margin-top: 1.5rem;
}
.header-hamburger-nav-child__item{
	position: relative;
}
.header-hamburger-nav-child__item:not(:last-child){
	margin-bottom: .8rem;
}
.header-hamburger-nav-child__item a{
	width: 100%;
	padding-left: 1.5rem;
	line-height: calc(2.2 / 1.6);
	font-weight: 500;
	display: block;
	position: relative;
}
.header-hamburger-nav-child__item a::before{
	border-left: .8rem solid var(--subcolor);
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: .5rem solid transparent;
	border-bottom: .5rem solid transparent;
	border-right: 0;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.header-hamburger-nav__sns{
	width: 100%;
	padding-top: 2.8rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.header-hamburger-nav__sns-item:not(:last-child){
	margin-right: 2rem;
}
.header-hamburger-nav__sns-item a{
	width: 100%;
	height: 100%;
	display: block;
}
.header-hamburger-nav__sns-item img{
	width: 100%;
	height: 100%;
	display: block;
}
/* インスタグラム */
.header-hamburger-nav__sns-item.-instagram{
	width: 3.1rem;
	height: 3.1rem;
}
/* LINE */
.header-hamburger-nav__sns-item.-line{
	width: 3.3rem;
	height: 3.3rem;
}
/* Facebook */
.header-hamburger-nav__sns-item.-facebook{
	width: 3.3rem;
	height: 3.3rem;
}

/* 固定LINE */
.Fixed-line{
	right: var(--padding-leftright);
	position: fixed;
	bottom: 0;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	z-index: 9000;
}
.Fixed-line a{
	background: var(--maincolor);
	color: var(--subcolor);
	width: 16rem;
	height: 5.5rem;
	border-top-left-radius: 1.2rem;
	border-top-right-radius: 1.2rem;
	border: 1px solid #fff;
	border-bottom: none;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	opacity: 1 !important;
}
.Fixed-line a::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.7rem;
	height: 2.5rem;
	background-image: url(../images/common/icon_line-subcolor.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.Fixed-line span{
	max-width: calc(100% - 1.7rem);
	padding-left: 1rem;
	line-height: 1;
	display: block;
}
.Fixed-line a:hover{
	background: var(--subcolor);
	color: #fff;
}
.Fixed-line a:hover::before{
	background-image: url(../images/common/icon_line-white.svg);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1320px) and (min-width: 769px){

	.header-nav__inner{
		padding-right: 2rem;
	}
	.header-nav__item:not(:last-child){
		margin-right: 2rem;
	}
	.header-nav__item a{
		max-width: 7.5rem;
		text-align: center;
	}
	.header-nav__button-wrap{
		width: 28rem;
	}
	.header-nav__button.-tel > span::before{
		margin-right: .5rem;
	}
	.header-nav__button.-reservation > a::before{
		margin-right: .5rem;
	}

}
@media screen and (max-width:1240px) and (min-width: 769px){

	.header-nav__inner{
		padding-right: 1.5rem;
	}
	.header-nav__item:not(:last-child){
		margin-right: 1.5rem;
	}

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.header-nav__inner{
		display: none;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.header::before{
		height: var(--header-height);
		transition: var(--transition);
		content: "";
		display: block;
		width: 100%;
		background: #fff;
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 9000;
		opacity: 0;
		z-index: -1;
	}
	.header:has(.menu-button.is_open)::before{
		opacity: 1;
		z-index: 6000;
	}
	.header__inner{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.header-logo{
		width: 20rem;
	}
	.menu-button{
		width: 4.5rem;
		height: 4.5rem;
	}

	/*----- ナビ */
	.header-nav{
		width: calc(100% - (20rem + 4.5rem));
		padding-right: .7rem;
		padding-left: 0;
		z-index: 9100;
	}
	.header-nav__inner{
		display: none;
	}
	.header-nav__button-wrap{
		width: 9.7rem;
	}
	.header-nav__button{
		width: 4.5rem;
		overflow: visible;
	}
	.header-nav__button-text{
		display: none;
	}
	.header-nav__button > span{
		border-radius: .9rem;
		flex-direction: column;
	}
	.header-nav__button > span::before{
		margin-bottom: .5rem;
	}
	.header-nav__button.-tel > span::before{
		margin-right: 0;
	}
	.header-nav__button.-reservation > span::before{
		margin-right: 0;
	}
	.header-nav__button > span::after{
		font-family: var(--en);
		content: "";
		font-size: .876rem;
		font-weight: 600;
		line-height: 1;
		letter-spacing: .05em;
		display: block;
	}

	/* 電話でのお問い合わせ */
	.header-nav__button.-tel > span::after{
		content: "Tell";
	}
	.header-nav__button.-tel:hover .header-nav__button-child{
		height: 14.2rem;
	}
	/* 来店予約 */
	.header-nav__button.-reservation > span::after{
		content: "Reserve";
	}
	.header-nav__button.-reservation:hover .header-nav__button-child{
		height: 10rem;
	}
	.header-nav__button-child{
		margin-top: .4rem;
		width: 15rem;
		border-radius: .9rem;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		position: relative;
        left: 50%;
        transform: translateX(-50%);
	}
	.header-nav__button:hover .header-nav__button-child{
		height: 14.3rem;
	}
	.header-nav__button-child-item{
		width: 100%;
	}
	.header-nav__button-child-item:first-child{
		border-top: none;
	}
	/* .header-nav__button-child-item a{
		padding-top: 1.2rem;
		padding-bottom: 1.2rem;
	} */
	.header-nav__button-child-item-number{
		margin-top: .8rem;
		font-size: 1.6rem;
	}
	
	/*----- ハンバーガーメニュー */
	.menu-button i::before,
	.menu-button i::after{
		height: 1px;
	}

	.header-hamburger{
		align-items: flex-start;
		overflow: auto;
		height: calc(100% - 6rem);
		padding-top: 1.2rem;
		padding-bottom: 4.8rem;
		top: unset;
	}
	.header-hamburger-nav{
		gap: 0;
	}

	.header-hamburger-contact-wrap{
		max-width: 100%;
		margin-bottom: 3rem;
	}
	.header-hamburger-contact-block{
		width: calc((100% - (1.1rem * 2)) / 3);
	}
	.header-hamburger-contact-block a{
		height: 8.8rem;
		border-radius: 1.1rem;
		padding-right: 0;
		font-size: 1.2rem;
		flex-direction: column;
	}
	.header-hamburger-contact-block a::before{
		margin-bottom: .5rem;
	}
	.header-hamburger-contact-block a::after{
		display: none;
	}
	.header-hamburger-contact-block span{
		padding-left: 0;
		line-height: calc(1.7 / 1.2);
		text-align: center;
	}

	/* 無料見積＆資料請求 */
	.header-hamburger-contact-block.-quotation a::before{
		width: 2.1rem;
		height: 2.1rem;
	}
	/* 来店予約 */
	.header-hamburger-contact-block.-reservation a::before{
		width: 2.1rem;
		height: 2.2rem;
	}
	/* LINE相談 */
	.header-hamburger-contact-block.-line a::before{
		width: 1.5rem;
		height: 2.3rem;
	}
	
	/* 固定LINE */
	.Fixed-line a{
		width: 14.5rem;
		height: 5rem;
	}
	.Fixed-line a::before{
		width: 1.5rem;
		height: 2.3rem;
	}
	.Fixed-line span{
		max-width: calc(100% - 1.5rem);
		font-size: 1.5rem;
	}

	.header-hamburger-nav__item{
		width: 100%;
	}
	.header-hamburger-nav__item:not(:last-child){
		border-bottom: 1px solid var(--subcolor);
	}
	.header-hamburger-nav__item-inner{
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.header-hamburger-nav__item-inner:not(:last-child){
		border-bottom: 1px solid var(--subcolor);
		margin-bottom: 0;
	}
	.header-hamburger-nav__item-title{
		border: none;
		width: calc(100% - 4.2rem);
		display: block;
	}
	.header-hamburger-nav__item-title a{
		font-size: 1.6rem;
		margin-bottom: 1.8rem;
		line-height: calc(2.2 / 1.6);
	}
	.header-hamburger-nav__item:not(:first-child) .header-hamburger-nav__item-title a{
		padding-top: 1.8rem;
	}
	.header-hamburger-nav__item-title.-line2 a{
		height: auto;
	}
	.header-hamburger-nav__button{
		width: 4.2rem;
		height: 5.8rem;
		padding: 2.3rem 1.5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}
	.header-hamburger-nav__button::before,
	.header-hamburger-nav__button::after{
		transition: var(--transition);
		content: "";
		display: block;
		width: 1.2rem;
		height: 2px;
		background: #000;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.header-hamburger-nav__button::after{
		transform: translate(-50%,-50%) rotate(-90deg);
	}
	.header-hamburger-nav__button.-on::after{
		transform: translate(-50%,-50%);
	}
	.header-hamburger-nav-child{
		width: 100%;
		padding-bottom: 3.2rem;
		padding-left: 2.5rem;
		margin-top: .8rem;
		display: none;
	}
	.header-hamburger-nav-child__item{
		position: relative;
	}
	.header-hamburger-nav-child__item:not(:last-child){
		margin-bottom: 1.8rem;
	}
	.header-hamburger-nav-child__item a{
		padding-left: 1.6rem;
		line-height: 1;
	}

	.header-hamburger-nav__sns{
		padding-top: 3.8rem;
		justify-content: center;
	}
	/* インスタグラム */
	.header-hamburger-nav__sns-item.-instagram{
		width: 2.9rem;
		height: 2.9rem;
	}
	/* LINE */
	.header-hamburger-nav__sns-item.-line{
		width: 3.1rem;
		height: 3.1rem;
	}
	/* Facebook */
	.header-hamburger-nav__sns-item.-facebook{
		width: 3.1rem;
		height: 3.1rem;
	}

}



/*-------------------------------
	フッター
-------------------------------*/

.footer-top{
	border-bottom: 2px solid var(--subcolor);
	padding-top: 5.5rem;
	padding-bottom: 5rem;
}
.footer-nav{
	width: 100%;
	gap: 3.2rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-nav__item{
	width: calc((100% - (3.2rem * 3)) / 4);
}
.footer-nav__item-inner:not(:last-child){
	margin-bottom: 1.2rem;
}
.footer-nav__item-title{
	border-bottom: 2px solid var(--subcolor);
	width: 100%;
	display: block;
}
.footer-nav__item-title a{
	font-size: 1.8rem;
	margin-bottom: 1.2rem;
	font-weight: 700;
	line-height: calc(2.2 / 1.8);
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}
.footer-nav__item-title.-line2 a{
	height: calc(2em * (2.2 / 1.8));
}
.footer-nav-child{
	margin-top: 1.5rem;
}
.footer-nav-child__item{
	position: relative;
}
.footer-nav-child__item:not(:last-child){
	margin-bottom: .8rem;
}
.footer-nav-child__item a{
	width: 100%;
	padding-left: 1.5rem;
	line-height: calc(2.2 / 1.6);
	font-weight: 500;
	display: block;
	position: relative;
}
.footer-nav-child__item a::before{
	border-left: .8rem solid var(--subcolor);
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: .5rem solid transparent;
	border-bottom: .5rem solid transparent;
	border-right: 0;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.footer-bottom{
	padding-top: 5rem;
	padding-bottom: 4.6rem;
}
.footer-bottom__inner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer-bottom__left{
	width: 22.8rem;
}
.footer-bottom__logo{
	width: 100%;
	margin-bottom: 3.2rem;
}
.footer-bottom__logo a{
	display: block;
}
.footer-bottom__logo img{
	width: 100%;
}
.footer-bottom__sns{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-bottom__sns-item:not(:last-child){
	margin-right: 2.7rem;
}
.footer-bottom__sns-item a{
	display: block;
}
.footer-bottom__sns-item.-instagram{
	width: 3.6rem;
}
.footer-bottom__sns-item.-line{
	width: 3.9rem;
}
.footer-bottom__sns-item.-facebook{
	width: 3.9rem;
}
.footer-bottom__sns-item img{
	width: 100%;
}
.footer-bottom__right{
	width: calc(100% - 22.8rem);
	max-width: 63.2rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer-bottom-info{
	width: calc((100% - 3.5rem) / 2);
}
.footer-bottom-info__title{
	background: var(--subcolor);
	width: 100%;
	margin-bottom: 1rem;
	padding: .2rem 1rem .4rem;
	height: 3.3rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-bottom-info__address{
	line-height: calc(2.8 / 1.6);
	/*line-height: calc(2.2 / 1.6);
	margin-bottom: .8rem;*/
}
.footer-bottom-info__address + .footer-bottom-info__address{
	margin-bottom: 0.8rem;
}
.footer-bottom-info-time{
	width: 100%;
	margin-bottom: .8rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-bottom-info-time__title,
.footer-bottom-info-time__text{
	line-height: calc(2.2 / 1.6);
	display: block;
}
.footer-bottom-info-time__title{
	padding-right: .8rem;
	position: relative;
}
.footer-bottom-info-time__title::after{
	background: var(--subcolor);
	content: "";
	display: block;
	width: 1px;
	height: calc(100% - .6rem);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.footer-bottom-info-time__text{
	padding-left: .8rem;
}
.footer-bottom-info-holiday{
	width: 100%;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-bottom-info-holiday__title,
.footer-bottom-info-holiday__text{
	line-height: calc(2.2 / 1.6);
	display: block;
}
.footer-bottom-info-holiday__title{
	padding-right: .8rem;
	position: relative;
}
.footer-bottom-info-holiday__title::after{
	background: var(--subcolor);
	content: "";
	display: block;
	width: 1px;
	height: calc(100% - .6rem);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.footer-bottom-info-holiday__text{
	padding-left: .8rem;
}
.footer-bottom-info__tel{
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
}
.footer-bottom-info__tel a{
	width: calc(100% - 4rem);
	font-size: 2.8rem;
	padding-left: .8rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
}
.footer-bottom-info__tel::before{
	background-color: var(--subcolor);
	content: "";
	display: block;
	width: 3.4rem;
	height: 3.4rem;
	border-radius: 50%;
	background-image: url(../images/common/icon_tel-white.svg);
	background-size: 1.8rem;
	background-repeat: no-repeat;
	background-position: center center;
}

.footer__copyright{
	background: var(--subcolor);
	width: 100%;
	height: 6rem;
	font-size: 1.3rem;
	font-weight: 500;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.footer-nav{
		gap: 3.2rem 2rem;
	}
	.footer-nav__item{
		width: calc((100% - (2rem * 1)) / 2);
	}

	.footer-bottom__inner{
		flex-direction: column;
	}
	.footer-bottom__left{
		margin-bottom: 3.5rem;
		margin-left: auto;
		margin-right: auto;
	}
	.footer-bottom__logo{
		margin-bottom: 2.5rem;
	}
	.footer-bottom__right{
		width: 100%;
		max-width: 100%;
	}

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

	.footer-top{
		display: none;
	}

	.footer-bottom{
		padding: 4.8rem var(--padding-leftright) 4.6rem;
	}
	.footer-bottom__inner{
		flex-direction: column;
	}
	.footer-bottom__left{
		width: 100%;
		margin-bottom: 4rem;
	}
	.footer-bottom__logo{
		width: 18.2rem;
		margin-bottom: 2.6rem;
		margin-left: auto;
		margin-right: auto;
	}
	.footer-bottom__sns-item:not(:last-child){
		margin-right: 2.2rem;
	}
	.footer-bottom__sns-item.-instagram{
		width: 2.9rem;
	}
	.footer-bottom__sns-item.-line{
		width: 3.1rem;
	}
	.footer-bottom__sns-item.-facebook{
		width: 3.1rem;
	}
	.footer-bottom__right{
		width: 100%;
		max-width: 100%;
		flex-direction: column;
	}
	.footer-bottom-info{
		width: 100%;
	}
	.footer-bottom-info:not(:last-child){
		margin-bottom: 3rem;
	}
	.footer-bottom-info__title{
		margin-bottom: 1rem;
		padding: .2rem .8rem .4rem;
		height: 2.6rem;
		font-size: 1.44rem;
		line-height: 1;
	}
	.footer-bottom-info__address{
		font-size: 1.28rem;
		line-height: calc(2 / 1.28);
		/*line-height: calc(1.76 / 1.28);*/
		/*margin-bottom: .5rem;*/
	}
	.footer-bottom-info__address + .footer-bottom-info__address{
		margin-bottom: .5rem;
	}
	.footer-bottom-info-time{
		margin-bottom: .5rem;
	}
	.footer-bottom-info-time__title,
	.footer-bottom-info-time__text{
		font-size: 1.28rem;
		line-height: calc(1.76 / 1.28);
	}
	.footer-bottom-info-holiday{
		margin-bottom: .8rem;
	}
	.footer-bottom-info-holiday__title,
	.footer-bottom-info-holiday__text{
		font-size: 1.28rem;
		line-height: calc(1.76 / 1.28);
	}
	.footer-bottom-info__tel a{
		width: calc(100% - 2.7rem);
		font-size: 2.24rem;
		padding-left: .5rem;
	}
	.footer-bottom-info__tel::before{
		width: 2.7rem;
		height: 2.7rem;
		background-size: 1.5rem;
	}

	.footer__copyright{
		height: 4.4rem;
		font-size: 1rem;
		letter-spacing: .05em;
	}

}



/*-------------------------------
	キービジュアル
-------------------------------*/

.Keyvisual{
	border-bottom: 2px solid var(--blackcolor);
	height: calc(40rem + var(--header-height));
	padding-top: var(--header-height);
	padding-left: var(--padding-leftright);
	padding-right: var(--padding-leftright);
	position: relative;
}
.Keyvisual__inner{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Keyvisual-content{
	padding-right: 3.5rem;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Keyvisual-content__title{
	width: 100%;
	padding-top: 2.2rem;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	position: relative;
}
.Keyvisual-content__title::before,
.Keyvisual-content__title-jp::before,
.Keyvisual-content__title-en::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	position: absolute;
	top: 0;
}
.Keyvisual-content__title::before{
	left: .3rem;
}
.Keyvisual-content__title-jp::before{
	left: 3.6rem;
}
.Keyvisual-content__title-en::before{
	left: 6.9rem;
}
.Keyvisual-content__title-jp{
	font-size: 3.6rem;
	margin-bottom: 1.8rem;
	line-height: calc(6 / 3.6);
	letter-spacing: .1em;
	margin-left: -.2em;
	font-weight: 700;
	display: block;
	text-align: left;
}
.Keyvisual-content__title-en{
	font-family: var(--en);
	font-weight: 600;
	letter-spacing: .36em;
	line-height: 1;
	display: block;
}
.Keyvisual__image{
	border-left: 2px solid var(--blackcolor);
	height: calc(100% - var(--header-height));
	width: 57.1875%;
	position: absolute;
	right: 0;
	bottom: 0;
}
.Keyvisual__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*----- ミニサイズ */
.Keyvisual:not(:has(.Keyvisual__image)){
	border-bottom: none;
}

@media screen and (min-width:769px) , print{



}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

}

@media screen and (min-width:769px) , print{

	/*----- ミニサイズ */
	.Keyvisual:not(:has(.Keyvisual__image)){
		height: calc(20rem + var(--header-height));
	}
	.Keyvisual:not(:has(.Keyvisual__image)) .Keyvisual-content{
		width: 100%;
		padding-right: 0;
	}
	.Keyvisual:not(:has(.Keyvisual__image)) .Keyvisual-content__title{
		padding-top: 0;
		padding-left: 11.5rem;
	}
	.Keyvisual:not(:has(.Keyvisual__image)) .Keyvisual-content__title::before,
	.Keyvisual:not(:has(.Keyvisual__image)) .Keyvisual-content__title-jp::before,
	.Keyvisual:not(:has(.Keyvisual__image)) .Keyvisual-content__title-en::before{
		top: 2.6rem;
	}
	.Keyvisual:not(:has(.Keyvisual__image)) .Keyvisual-content__title-jp{
		margin-bottom: 1.5rem;
	}

}
@media screen and (max-width:1240px) and (min-width: 769px){

	.Keyvisual__inner{
		padding-left: 0;
		padding-right: 0;
	}
	.Keyvisual-content{
		width: calc(((100% + (var(--padding-leftright) * 2)) * .428125) - var(--padding-leftright));
		flex-shrink: 0;
	}

}
@media screen and (max-width:1100px) and (min-width: 769px){
	
}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.Keyvisual{
		height: auto;
		padding-left: 0;
		padding-right: 0;
	}
	.Keyvisual__inner{
		flex-direction: column;
	}
	.Keyvisual-content{
		width: 100%;
		height: 18rem;
	}
	.Keyvisual-content__title{
		padding-top: 2.6rem;
	}
	.Keyvisual-content__title::before,
	.Keyvisual-content__title-jp::before,
	.Keyvisual-content__title-en::before{
		width: .8rem;
		height: .8rem;
	}
	.Keyvisual-content__title::before{
		left: .2rem;
	}
	.Keyvisual-content__title-jp::before{
		left: 2.6rem;
	}
	.Keyvisual-content__title-en::before{
		left: 5rem;
	}
	.Keyvisual-content__title-jp{
		font-size: 2.5rem;
		margin-bottom: 2rem;
		line-height: 1;
		margin-left: 0;
	}
	.Keyvisual-content__title-en{
		font-size: 1.1rem;
	}
	.Keyvisual__image{
		border-top: 2px solid var(--blackcolor);
		border-left: none;
		width: 100%;
		height: 22rem;
		position: static;
	}

	/*----- ミニサイズ */
	.Keyvisual:not(:has(.Keyvisual__image)){
		margin-bottom: 3.8rem;
	}
	.Keyvisual:not(:has(.Keyvisual__image)) .Keyvisual-content{
		height: 13rem;
		align-items: flex-end;
	}

}



/*-------------------------------
	ぱんくず
-------------------------------*/

.Breadclumb{
	border-top: 2px solid var(--blackcolor);
	height: 7rem;
}
.Breadclumb__inner{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Breadclumb-list{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Breadclumb-list__item{
	font-size: 1.4rem;
	font-weight: 700;
		white-space: nowrap;
}
.Breadclumb-list__item,
.Breadclumb-list__item a{
	line-height: 1;
	display: inline-block;
}
.Breadclumb-list__item{
	color: #808080;
}
.Breadclumb-list__item a{
	color: var(--blackcolor);
}
.Breadclumb-list__item:last-child{
	overflow: hidden;
	text-overflow: ellipsis;
}
.Breadclumb-list__item:not(:last-child) a::after{
	content: "/";
	line-height: 1;
	margin-left: .4em;
	margin-right: .4em;
	display: inline-block;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.Breadclumb{
		height: 4rem;
	}
	.Breadclumb-list__item{
		font-size: 1.1rem;
	}
	.Breadclumb-list__item:not(:last-child) a::after{
		margin-left: .4em;
		margin-right: .4em;
	}

}



/*-------------------------------
	お問い合わせ
-------------------------------*/

.C-Contact{
	background: var(--subcolor);
}
.C-Contact .C-Title{
	margin-bottom: 2.6rem;
}
.C-Contact-block-wrap{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.C-Contact-block{
	width: calc((100% - (3.2rem * 2)) / 3);
}
.C-Contact-block a{
	border: .2rem solid var(--maincolor);
	background: var(--maincolor);
	height: 10.2rem;
	border-radius: 2rem;
	font-size: 2rem;
	letter-spacing: .2em;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	opacity: 1 !important;
}
.C-Contact-block a::before,
.C-Contact-block a::after{
	transition: var(--transition);
	content: "";
	display: block;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.C-Contact-block a::after{
	width: 2rem;
	height: 1.1rem;
	background-image: url(../images/common/icon_arrow-subcolor.svg);
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
}
.C-Contact-block span{
	padding-left: 1.6rem;
	line-height: calc(2.6 / 2);
	display: block;
}
.C-Contact-block a:hover{
	background: var(--subcolor);
	color: #fff;
}
.C-Contact-block a:hover::after{
	background-image: url(../images/common/icon_arrow.svg);
}

/* 無料見積＆資料請求 */
.C-Contact-block.-quotation a::before{
	width: 4.2rem;
	height: 4.1rem;
	background-image: url(../images/common/icon_quotation-subcolor.svg);
}
.C-Contact-block.-quotation a:hover::before{
	background-image: url(../images/common/icon_quotation-white.svg);
}
/* 来店予約 */
.C-Contact-block.-reservation a::before{
	width: 4.2rem;
	height: 4.3rem;
	background-image: url(../images/common/icon_reservation-subcolor.svg);
}
.C-Contact-block.-reservation a:hover::before{
	background-image: url(../images/common/icon_reservation-white.svg);
}
/* LINE相談 */
.C-Contact-block.-line a::before{
	width: 3.1rem;
	height: 4.6rem;
	background-image: url(../images/common/icon_line-subcolor.svg);
}
.C-Contact-block.-line a:hover::before{
	background-image: url(../images/common/icon_line-white.svg);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.C-Contact-block{
		width: calc((100% - (2rem * 2)) / 3);
	}

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

	.C-Contact .C-Title{
		margin-bottom: 4rem;
	}
	.C-Contact-block-wrap{
		gap: 2rem;
		flex-direction: column;
	}
	.C-Contact-block{
		width: 100%;
		max-width: 28rem;
	}
	.C-Contact-block a{
		height: 9rem;
		border-radius: 1.8rem;
		font-size: 1.8rem;
		padding-right: 2.5rem;
	}
	.C-Contact-block a::after{
		width: 1.8rem;
		height: 1rem;
		right: 1.8rem;
	}
	.C-Contact-block span{
		padding-left: 1.7rem;
		line-height: calc(2.3 / 1.8);
	}

	/* 無料見積＆資料請求 */
	.C-Contact-block.-quotation a::before{
		width: 3.7rem;
		height: 3.6rem;
	}
	/* 来店予約 */
	.C-Contact-block.-reservation a::before{
		width: 3.7rem;
		height: 3.8rem;
	}
	/* LINE相談 */
	.C-Contact-block.-line a::before{
		width: 2.7rem;
		height: 4.1rem;
	}

}



/*-------------------------------
	施工事例
-------------------------------*/

.C-Works-block-wrap{
	width: 100%;
}
.C-Works-block-wrap__inner{
	width: 100%;
	gap: 4.6rem 3.6rem;
}
.C-Works-block{
	width: calc((100% - (3.6rem * 2)) / 3);
}
.C-Works-block a{
	display: block;
	opacity: 1 !important;
}
.C-Works-block__image{
	width: 100%;
	margin-bottom: 1.6rem;
	overflow: hidden;
}
.C-Works-block__image img{
	transition: var(--transition);
	width: 100%;
	aspect-ratio: 1 / .685;
	object-fit: cover;
}
.C-Works-block__body{
	line-height: 1;
}
.C-Works-block__area{
	background: var(--blackcolor);
	margin-bottom: .8rem;
	font-size: 1.3rem;
	padding: .5rem 1.5rem;
	line-height: 1;
	font-weight: 700;
	display: inline-block;
	color: #fff;
}
.C-Works-block__title{
	line-height: calc(2.7 / 1.6);
	font-weight: 700;
}
.C-Works-tag{
	width: 100%;
	margin-top: .8rem;
	display: flex;
	gap: .6rem;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.C-Works-tag__item{
	font-size: 1.2rem;
	padding: .6rem .9rem;
	line-height: 1;
	background: #e6e6e6;
	color: #666;
}
.C-Works-tag__item::before{
	content: "#";
	line-height: 1;
}

.C-Works-block a:hover .C-Works-block__image img{
	transform: scale(1.1);
}

@media screen and (min-width:769px) , print{

	.C-Works-block-wrap__inner{
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-wrap: wrap;
	}

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.C-Works-block{
		width: calc((100% - (3.6rem * 1)) / 2);
	}

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

	.Works .C-Title{
		margin-bottom: 3rem;
	}
	.C-Works-block-wrap{
		width: calc(100% + (var(--padding-leftright) * 2));
		margin-left: calc(var(--padding-leftright) * -1);
		padding-left: calc(var(--padding-leftright) * 2);
		padding-right: var(--padding-leftright);
	}
	.C-Works-block-wrap__inner{
		gap: 0;
	}
	.C-Works-block{
		width: 31rem;
	}
	.C-Works-block:not(:last-child){
		margin-right: .8rem;
	}
	.C-Works-block__image{
		margin-bottom: 1.5rem;
	}
	.C-Works-block__image img{
		height: 19.4rem;
		aspect-ratio: 1 / 1;
	}
	.C-Works-block__body{
		line-height: 1;
	}
	.C-Works-block__area{
		margin-bottom: .8rem;
		font-size: 1.3rem;
		padding: .5rem 1.5rem;
	}
	.C-Works-block__title{
		line-height: calc(2.7 / 1.6);
	}
	.C-Works-tag{
		margin-top: .6rem;
		gap: .4rem;
	}
	.C-Works-tag__item{
		font-size: .8rem;
		padding: .4rem .5rem;
	}

	.C-Works-controller{
		margin-bottom: 4rem;
		height: 2.8rem;
		position: relative;
	}
	.C-Works-controller__pagenavi{
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.C-Works-controller__pagenavi .swiper-pagination-bullet{
		border: 1px solid var(--subcolor);
		width: .8rem;
		height: .8rem;
		background: transparent;
		margin-left: .6rem !important;
		margin-right: .6rem !important;
		opacity: 1 !important;
	}
	.C-Works-controller__pagenavi .swiper-pagination-bullet.swiper-pagination-bullet-active{
		background: var(--subcolor);
	}
	.C-Works-controller__arrow-item{
		border: 1px solid var(--subcolor);
		width: 2.8rem;
		height: 2.8rem;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0;
	}
	.C-Works-controller__arrow-item::after{
		border-right: 2px solid var(--subcolor);
		border-bottom: 2px solid var(--subcolor);
		content: "";
		display: block;
		width: .8rem;
		height: .8rem;
	}
	.C-Works-controller__arrow-item.-prev{
		left: var(--padding-leftright);
		padding-left: .2rem;
	}
	.C-Works-controller__arrow-item.-prev::after{
		transform: rotate(135deg);
	}
	.C-Works-controller__arrow-item.-next{
		right: var(--padding-leftright);
		padding-right: .2rem;
	}
	.C-Works-controller__arrow-item.-next::after{
		transform: rotate(-45deg);
	}
	.C-Works-controller__arrow-item.swiper-button-disabled{
		opacity: .3;
	}

}



/*-------------------------------
	ページャー
-------------------------------*/

.wp-pagenavi{
	width: 100%;
	margin-top: 7.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wp-pagenavi *{
	width: 3.4rem;
	height: 3.4rem;
	padding-bottom: .2rem;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e6e6e6;
	opacity: 1 !important;
}
.wp-pagenavi *:not(:last-child){
	margin-right: 1.3rem;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover{
	background: var(--subcolor);
	color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	font-size: 0;
	opacity: 0;
	position: relative;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after{
	content: "";
	display: block;
	width: .6rem;
	height: 1rem;
	background-image: url(../images/common/icon_arrow2-subcolor.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.wp-pagenavi .previouspostslink::after{
	transform: translate(-50%,-50%) scale(-1,1);
}
.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after{
	background-image: url(../images/common/icon_arrow2-white.svg);
}

.wp-pagenavi:has(.current:first-child)::before,
.wp-pagenavi:has(.current:last-child)::after{
	content: "";
	width: 3.4rem;
	height: 3.4rem;
	padding-bottom: .2rem;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e6e6e6;
	opacity: 1 !important;
	background-image: url(../images/common/icon_arrow2-gray.svg);
	background-size: .59rem;
	background-repeat: no-repeat;
	background-position: center center;
}
.wp-pagenavi:has(.current:first-child)::before{
	transform: scale(-1,1);
	margin-right: 1.3rem;
}
.wp-pagenavi:has(.current:last-child)::after{
	margin-left: 1.3rem;
}

/*----- 記事が無い場合 */
.No-data{
	width: 100%;
	text-align: center;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.wp-pagenavi{
		margin-top: 5rem;
	}
	.wp-pagenavi *,
	.wp-pagenavi:has(.current:first-child)::before,
	.wp-pagenavi:has(.current:last-child)::after{
		width: 3.3rem;
		height: 3.3rem;
		font-size: 1.6rem;
		padding-bottom: 0;
	}

}



/*-------------------------------
	詳細用
-------------------------------*/

/*----- BEFORE / AFTRE */
.C-Single-change{
	width: 100%;
	margin-bottom: 6rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	position: relative;
}
.C-Single-change__item{
	position: relative;
}
.C-Single-change__item-tag{
	font-family: var(--en);
	background: var(--subcolor);
	width: fit-content;
	font-size: 2rem;
	font-weight: 600;
	padding: .8rem 1.5rem .5rem;
	line-height: 1;
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-100%);
}
.C-Single-change__item span{
	border: 2px solid var(--subcolor);
	width: 100%;
	padding: 1rem;
	display: block;
}
.C-Single-change__item img{
	width: 100%;
}
.C-Single-change__item.-before{
	/* max-width: 39.2rem; */
	width: 38.59%;
}
.C-Single-change__item.-before::before{
	background: var(--subcolor);
	content: "";
	display: block;
	width: 2.2rem;
	height: 4rem;
	position: absolute;
	right: -4.2rem;
	top: 50%;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	transform: translate(50%,-50%);
}
.C-Single-change__item.-after{
	/* max-width: calc(100% - (39.2rem + 8.4rem)); */
	width: 53.15%;
}

/*----- 基本情報 */
.C-Single-data__inner{
	border: 2px solid var(--subcolor);
	border-top: none;
}
.C-Single-data__title{
	background: var(--subcolor);
	width: 100%;
	height: 3.6rem;
	font-size: 1.8rem;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.C-Single-data__body{
	width: 100%;
	padding: 2.4rem 3rem 1.6rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.C-Single-data__item-wrap{
	width: calc((100% - 4.2rem) / 2);
}
.C-Single-data__item{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.C-Single-data__item:not(:last-child){
	margin-bottom: 1.6rem;
}
.C-Single-data__item-title{
	width: 15.5rem;
	line-height: 1;
	position: relative;
}
.C-Single-data__item-title::after{
	background: var(--subcolor);
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}
.C-Single-data__item-body{
	width: calc(100% - 15.5rem);
	padding-left: 1.6rem;
	line-height: calc(3 / 1.6);
	margin-top: -.5em;
}
.C-Single-data__item-body span{
	line-height: calc(3 / 1.6);
}
.C-Single-data__item-body span:not(:last-child)::after{
	content: "/";
	line-height: calc(3 / 1.6);
}

/*----- エディタ用 */
.C-Single-editor{
	margin-bottom: 7.5rem;
}
.C-Single-editor > *:last-child{
	margin-bottom: 0;
}
.C-Single-editor h2{
	font-size: 3rem;
	margin-bottom: 3.4rem;
	padding-left: 5.5rem;
	font-weight: 700;
	line-height: calc(3.8 / 3);
	position: relative;
}
.C-Single-editor h2::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 3.5rem;
	height: .4rem;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.C-Single-editor h3{
	font-size: 2.4rem;
	margin-bottom: 2.2rem;
	padding-bottom: 1.5rem;
	font-weight: 700;
	line-height: calc(3.4 / 2.4);
	position: relative;
}
.C-Single-editor h3::before,
.C-Single-editor h3::after{
	background: var(--subcolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}
.C-Single-editor h3::before{
	bottom: .5rem;
}
.C-Single-editor h4{
	background: var(--subcolor);
	font-size: 2rem;
	margin-bottom: 4.5rem;
	padding: .8rem 1.4rem;
	font-weight: 700;
	line-height: calc(2.9 / 2);
	color: #fff;
	position: relative;
}
.C-Single-editor h4::after{
	background: var(--subcolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -.5rem;
	right: 0;
}
.C-Single-editor p{
	margin-bottom: 5rem;
	line-height: calc(3 / 1.6);
}
.C-Single-editor p + p{
	margin-top: -2.5rem;
}
.C-Single-editor p a{
	text-decoration: underline;
}
.C-Single-editor img{
	max-width: 100%;
	padding-left: 3.8rem;
	padding-right: 3.8rem;
	margin-bottom: 3rem;
	height: auto;
}
.C-Single-editor p + img{
	margin-top: -1.8rem;
}
.C-Single-editor ul{
	margin-bottom: 5rem;
	padding-left: 1.5em;
	list-style-type: disc;
}
.C-Single-editor ol{
	margin-bottom: 5rem;
	padding-left: 1.5em;
	list-style-type: decimal;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.C-Single-change__item.-before::before{
		right: -4.13vw;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	/*----- BEFORE / AFTER */
	.C-Single-change{
		margin-bottom: 3.8rem;
	}
	.C-Single-change__item-tag{
		font-size: 1.2rem;
		padding: .6rem 1rem .4rem;
	}
	.C-Single-change__item span{
		border-width: 1px;
		padding: .4rem;
	}
	.C-Single-change__item.-before{
		width: 11.4rem;
	}
	.C-Single-change__item.-before::before{
		width: .9rem;
		height: 1.6rem;
		right: -1rem;
	}
	.C-Single-change__item.-after{
		width: calc(100% - (11.4rem + 2rem));
	}

	/*----- 基本情報 */
	.C-Single-data__title{
		height: 2.9rem;
		font-size: 1.4rem;
	}
	.C-Single-data__body{
		width: 100%;
		padding: 1.6rem 1.6rem 1rem;
		flex-direction: column;
	}
	.C-Single-data__item-wrap{
		width: 100%;
	}
	.C-Single-data__item-wrap:not(:last-child){
		margin-bottom: 1.2rem;
	}
	.C-Single-data__item:not(:last-child){
		margin-bottom: 1.2rem;
	}
	.C-Single-data__item-title{
		width: 12.4rem;
		font-size: 1.3rem;
	}
	.C-Single-data__item-body{
		width: calc(100% - 12.4rem);
		padding-left: 1.2rem;
		line-height: calc(2.4 / 1.3);
		font-size: 1.3rem;
	}
	.C-Single-data__item-body span{
		line-height: calc(2.4 / 1.3);
	}
	.C-Single-data__item-body span::after{
		line-height: calc(2.4 / 1.3);
	}

	/*----- エディタ用 */
	.C-Single-editor{
		margin-bottom: 4.2rem;
	}
	.C-Single-editor > *:last-child{
		margin-bottom: 0;
	}
	.C-Single-editor h2{
		font-size: 1.8rem;
		margin-bottom: 2rem;
		padding-left: 3.5rem;
		line-height: calc(3 / 1.8);
	}
	.C-Single-editor h2::before{
		width: 2.5rem;
		height: 3px;
	}
	.C-Single-editor h3{
		font-size: 1.6rem;
		margin-bottom: 2rem;
		padding-bottom: 1.3rem;
		line-height: calc(2.2 / 1.6);
	}
	.C-Single-editor h4{
		font-size: 1.4rem;
		margin-bottom: 3rem;
		padding: .3rem 1.1rem;
		line-height: calc(2.2 / 1.4);
	}
	.C-Single-editor p{
		line-height: var(--line-height);
		margin-bottom: 3rem;
	}
	.C-Single-editor p + p{
		margin-top: 0;
	}
	.C-Single-editor img{
		padding-left: 2rem;
		padding-right: 2rem;
		margin-bottom: 3rem;
		width: 100%;
	}
	.C-Single-editor p + img{
		margin-top: 1.5rem;
	}

}



/*-------------------------------
	よくあるご質問
-------------------------------*/

.C-Faq__title{
	margin-bottom: 4rem;
}
.C-Faq__title-balloon{
	background: var(--maincolor);
	width: fit-content;
	height: 5rem;
	border-radius: 2.5rem;
	padding-left: 1.8rem;
	padding-right: 1.8rem;
	margin-left: 1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(calc(-50% - .8rem));
	position: relative;
	z-index: 5000;
}
.C-Faq__title-balloon::before{
	content: "";
	display: block;
	width: 3.9rem;
	height: 4.6rem;
	background-image: url(../images/common/icon_balloon.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 1.8rem;
	bottom: -1.2rem;
	z-index: -1;
}
.C-Faq-block-wrap{
	margin-bottom: 7rem;
}
.C-Faq-block{
	border: 2px solid var(--subcolor);
}
.C-Faq-block:not(:last-child){
	margin-bottom: 2.8rem;
}
.C-Faq-block__title{
	background: var(--subcolor);
	width: 100%;
	min-height: 6rem;
	padding: 1rem 4rem 1rem 3.5rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.C-Faq-block__title::before{
	color: var(--maincolor);
	font-family: var(--en);
	content: "Q";
	width: 2.6rem;
	font-size: 3.2rem;
	line-height: 1;
	font-weight: 700;
	display: block;
}
.C-Faq-block__title-text{
	width: calc(100% - 2.6rem);
	padding-left: 1.2rem;
	font-size: 1.8rem;
	padding-bottom: .4rem;
	line-height: 1.5;
	font-weight: 700;
	color: #fff;
}
.C-Faq-block__body{
	padding: 2.5rem 4rem 2.5rem 3.5rem;
}
.C-Faq-block__text p{
	line-height: calc(3.6 / 1.6);
}
.C-Faq .C-Button{
	width: 28.7rem;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.C-Faq__title{
		margin-bottom: 3.2rem;
	}
	.C-Faq__title-balloon{
		height: 3.6rem;
		border-radius: 1.8rem;
		padding-left: 1.4rem;
		padding-right: 1.4rem;
		margin-left: 0;
		font-size: 1.4rem;
		position: absolute;
		transform: translate(8rem,-2.8rem);
	}
	.C-Faq__title-balloon::before{
		width: 2.8rem;
		height: 3.5rem;
		left: 1.3rem;
		bottom: -.9rem;
	}
	.C-Faq-block-wrap{
		margin-bottom: 4rem;
	}
	.C-Faq-block:not(:last-child){
		margin-bottom: 2rem;
	}
	.C-Faq-block__title{
		min-height: 4.4rem;
		padding: 1rem 1.8rem;
	}
	.C-Faq-block__title::before{
		width: 2.2rem;
		font-size: 2.6rem;
	}
	.C-Faq-block__title-text{
		width: calc(100% - 2.2rem);
		padding-left: .8rem;
		font-size: 1.4rem;
	}
	.C-Faq-block__body{
		padding: 1.2rem 2rem;
	}
	.C-Faq .C-Button{
		width: 25.8rem;
	}

}



.C-Column-block{
	transition: var(--transition);
	width: 100%;
	max-width: 36.8rem;
	margin-right: 1.4rem;
	margin-left: 1.4rem;
	background: #fff;
	height: auto;
	position: relative;
}
.C-Column-block.swiper-slide-active::before{
	/* border: 1px solid var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0; */
	display: none;
}
.C-Column-block a{
	width: 100%;
	padding: 1.4rem 1.3rem 1.8rem;
	height: 100%;
	display: block;
	opacity: 1 !important;
}
.C-Column-block__image{
	width: 100%;
	margin-bottom: 2rem;
	overflow: hidden;
}
.C-Column-block__image img{
	transition: var(--transition);
	width: 100%;
	aspect-ratio: 1 / .6198;
	max-height: 21.2rem;
	object-fit: cover;
}
.C-Column-block__body{
	line-height: 1;
}
.C-Column-block__category{
	width: 100%;
	margin-bottom: .8rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.C-Column-block__category-item{
	background: var(--subcolor);
	font-size: 1.3rem;
	padding: .5rem 1rem .4rem;
	height: 2.3rem;
	line-height: 1;
	font-weight: 700;
	display: inline-block;
	color: #fff;
}
.C-Column-block__title{
	font-weight: 700;
}
.C-Column-block__title > span{
	line-height: calc(2.9 / 1.6);
}

.C-Column-block a:hover .C-Column-block__image img{
	transform: scale(1.1);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.C-Column-block{
		width: 26.4rem;
		margin-right: .8rem;
		margin-left: .8rem;
	}
	.C-Column-block a{
		padding: 1rem 1rem 1.2rem;
	}
	.C-Column-block__image{
		margin-bottom: 1.4rem;
	}
	.C-Column-block__image img{
		max-height: 15.2rem;
	}
	.C-Column-block__category{
		margin-bottom: .6rem;
		gap: .5rem;
	}
	.C-Column-block__category-item{
		font-size: .9rem;
		padding: .3rem .6rem;
		height: 1.6rem;
	}
	.C-Column-block__title > span{
		line-height: calc(2.2 / 1.3);
	}

}



/*-------------------------------
	ページ内リンク
-------------------------------*/

.C-Pagelink{
	width: 100%;
	margin-bottom: 8.5rem;
	gap: 2.7rem 3.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.C-Pagelink__item{
	width: 20rem;
	height: 5.6rem;
}
.C-Pagelink__item a{
	border: 2px solid var(--subcolor);
	width: 100%;
	height: 100%;
	border-radius: 1.2rem;
	letter-spacing: .2em;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	opacity: 1 !important;
}
.C-Pagelink__item a:hover{
	background: var(--subcolor);
	color: #fff;
}
/*----- 矢印付き */
.C-Pagelink__item.-arrow a::after{
	transition: var(--transition);
	border-right: 1px solid var(--subcolor);
	border-bottom: 1px solid var(--subcolor);
	content: "";
	display: block;
	width: .9rem;
	height: .9rem;
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.C-Pagelink__item.-arrow a:hover::after{
	border-color: #fff;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.C-Pagelink{
		margin-bottom: 3.6rem;
		gap: 1rem;
	}
	.C-Pagelink__item{
		width: calc((100% - (1rem * 2)) / 3);
		height: 4rem;
	}
	.C-Pagelink__item a{
		border-radius: .7rem;
		font-size: 1.4rem;
	}
	/*----- 矢印付き */
	.C-Pagelink__item.-arrow a::after{
		width: .8rem;
		height: .8rem;
		right: 2rem;
	}

}



/*-------------------------------
	検索パネル
-------------------------------*/

.C-Panel__content{
	border: 2px solid var(--subcolor);
}
.C-Panel-header{
	width: 100%;
	height: 5.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ccc;
	position: relative;
}
.C-Panel-header__title{
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}
.C-Panel__close{
	width: fit-content;
	font-size: 1.4rem;
	padding-bottom: .6rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: .2em;
	display: block;
	cursor: pointer;
	position: absolute;
	right: 2.2rem;
	top: 50%;
	transform: translateY(-50%);
}
.C-Panel__close::after{
	background: var(--subcolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}
.C-Panel__body{
	width: 100%;
	padding: 2.5rem 4rem 3.2rem;
}
.C-Panel__body-inner{
	width: 100%;
	margin-bottom: 3.2rem;
}
.C-Panel-block{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.C-Panel-block:not(:first-child){
	margin-top: 2.5rem;
}
.C-Panel-block__title{
	width: 17.2rem;
	font-size: 1.8rem;
	line-height: 1;
	font-weight: 700;
}
.C-Panel-block__body{
	width: calc(100% - 17.2rem);
}
.C-Panel-block__list{
	width: 100%;
	display: flex;
	gap: 1.6rem;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.C-Panel-block__list-checkbox input[type="checkbox"]{
	display: none;
}
.C-Panel-block__list-checkbox-text{
	padding-left: 2rem;
	line-height: 1;
	display: block;
	position: relative;
}
.C-Panel-block__list-checkbox-text::before,
.C-Panel-block__list-checkbox-text::after{
	transition: var(--transition);
	border: 1px solid var(--subcolor);
	content: "";
	display: block;
	width: 1.3rem;
	height: 1.3rem;
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: .2rem;
}
.C-Panel-block__list-checkbox-text::after{
	background-color: var(--subcolor);
	background-image: url(../images/common/icon_checkbox-white.svg);
	background-size: .9rem;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0;
}
.C-Panel-block__list-checkbox input[type="checkbox"]:checked + .C-Panel-block__list-checkbox-text::after{
	opacity: 1;
}

.C-Panel-result{
	padding-top: 3.8rem;
}
.C-Panel-result__text{
	width: 100%;
	letter-spacing: .2em;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.C-Panel-result__text span{
	margin-left: 1em;
	line-height: 1;
	display: block;
}

.C-Panel__accordion{
	display: none;
}
.C-Panel__accordion .C-Panel-block:first-child{
	margin-top: 2.5rem;
}

.C-Panel__accordion-button{
	margin-top: 3rem;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
.C-Panel__accordion-button-text{
	padding-left: 2rem;
	line-height: 1;
	font-weight: 700;
	display: none;
	text-align: center;
	cursor: pointer;
}
.C-Panel__accordion-button::before,
.C-Panel__accordion-button::after{
	transition: var(--transition);
	background: var(--subcolor);
	content: "";
	display: block;
	width: 1.1rem;
	height: 2px;
	position: absolute;
	left: 0;
	top: 50%;
}
.C-Panel__accordion-button::before{
	transform: rotate(90deg);
}
.C-Panel__accordion-button.-open .C-Panel__accordion-button-text:nth-of-type(1){
	display: inline-block;
}
.C-Panel__accordion-button.-close .C-Panel__accordion-button-text:nth-of-type(2){
	display: inline-block;
}
.C-Panel__accordion-button.-close::before{
	transform: rotate(0deg);
}

.C-Panel__bottom .C-Button{
	height: 4.7rem;
	border-radius: 1.3rem;
	font-size: 1.5rem;
}
.C-Panel__bottom .C-Button::after{
	width: 1.3rem;
	height: .7rem;
	left: calc(50% + 4.5em);
	top: 50%;
	transform: translate(-50%,-50%);
}

@media screen and (min-width:769px) , print{

	.C-Panel__content{
		display: block !important;
	}

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.C-Panel-terms{
		margin-bottom: 2.5rem;
	}
	.C-Panel-terms__title{
		font-size: 1.4rem;
		margin-bottom: 1rem;
		font-weight: 700;
		line-height: 1;
	}
	.C-Panel-terms__list{
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.C-Panel-terms__list-item{
		line-height: 1;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.C-Panel-terms__list-item:not(:last-child)::after{
		content: "/";
		line-height: 1;
		display: block;
	}

	.C-Panel-button{
		border: 1px solid var(--subcolor);
		width: 100%;
		height: 4.5rem;
		padding: .5rem 1.5rem;
		background: #ccc;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.C-Panel-button::after{
		content: "";
		display: block;
		width: 1.2rem;
		height: .7rem;
		background-image: url(../images/common/icon_arrow-subcolor.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.C-Panel-button__text{
		width: 100%;
		height: 100%;
		font-size: 1.4rem;
		padding-right: 1.5rem;
		font-weight: 700;
		line-height: 1;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		position: relative;
	}
	.C-Panel-button__text::after{
		width: 1.2rem;
		height: .7rem;
	}

	.C-Panel__content{
		width: 100%;
		border: none;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 9900;
		background: #fff;
		display: none;
		overflow: auto;
	}
	.C-Panel-header{
		padding: .5rem var(--padding-leftright);
		border-bottom: 1px solid var(--subcolor);
		height: 5rem;
		justify-content: flex-start;
	}
	.C-Panel-header__title{
		font-size: 1.6rem;
	}
	.C-Panel-header__close{
		right: var(--padding-leftright);
		width: 2rem;
		height: 2rem;
		padding: .5rem;
		position: absolute;
		top: 50%;
		transform: translate(.5rem,-50%);
		cursor: pointer;
	}
	.C-Panel-header__close::before,
	.C-Panel-header__close::after{
		background: var(--subcolor);
		content: "";
		display: block;
		width: calc(100% - 1rem);
		height: 1px;
		position: absolute;
		left: 50%;
		top: 50%;
	}
	.C-Panel-header__close::before{
		transform: translateX(-50%) rotate(45deg);
	}
	.C-Panel-header__close::after{
		transform: translateX(-50%) rotate(-45deg);
	}
	.C-Panel__close{
		font-size: 1.2rem;
		padding-bottom: .5rem;
		padding-left: .2rem;
		padding-right: .2rem;
		position: relative;
		right: 0;
		top: 0;
		transform: translateY(0);
	}
	.C-Panel__close::after{
		background: var(--subcolor);
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		bottom: 0;
		right: 0;
	}
	.C-Panel__body{
		padding: 0;
	}
	.C-Panel__body-inner{
		padding: 2.5rem calc(var(--padding-leftright) * 2) 0;
	}
	.C-Panel-block{
		flex-direction: column;
	}
	.C-Panel-block:not(:first-child){
		margin-top: 2.4rem;
	}
	.C-Panel-block__title{
		border-bottom: 1px solid var(--subcolor);
		width: 100%;
		padding-bottom: .9rem;
		margin-bottom: 1.6rem;
		font-size: 1.6rem;
	}
	.C-Panel-block__body{
		width: 100%;
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.C-Panel-block__list{
		gap: 1.6rem;
	}
	.C-Panel-block__list-checkbox{
		width: calc(50% - .8rem);
	}
	.C-Panel-block__list-checkbox-text{
		padding-left: 2rem;
		min-height: 1.4rem;
	}
	.C-Panel-block__list-checkbox-text::before,
	.C-Panel-block__list-checkbox-text::after{
		width: 1.4rem;
		height: 1.4rem;
		top: 0;
	}

	.C-Panel-result{
		padding-top: 3rem;
	}
	.C-Panel-result__text{
		width: 100%;
		letter-spacing: .2em;
		font-weight: 700;
		line-height: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.C-Panel-result__text span{
		margin-left: 1em;
		line-height: 1;
		display: block;
	}

	.C-Panel__accordion .C-Panel-block:first-child{
		margin-top: 2.4rem;
	}
	.C-Panel__accordion .C-Panel-block:last-child{
		padding-bottom: 2.4rem;
	}

	.C-Panel__accordion-button{
		margin-top: 3.8rem;
		margin-bottom: 8.8rem;
	}
	.C-Panel__accordion-button-text{
		padding-left: 1.6rem;
	}
	.C-Panel__accordion-button::before,
	.C-Panel__accordion-button::after{
		width: .9rem;
		height: 1px;
	}
	.C-Panel__accordion-button.-close{
		display: none;
	}

	.C-Panel__bottom{
		border-top: 1px solid var(--subcolor);
		width: 100%;
		padding-top: 1.5rem;
		padding-bottom: 2.6rem;
		background: #ccc;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.C-Panel__bottom .C-Button{
		margin-bottom: 2rem;
	}

}