@charset "utf-8";

/*============================
html
============================*/
html {
	background-image: url(../img/common/body_bg_type02.jpg);
	background-position: center;
	background-size: auto;
}

/*============================
body
============================*/
body::before {
	content: "";
	width: 50%;
	max-width: 7.00rem;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../img/common/bgdeco_left.svg);
	background-position: left top;
	background-repeat: repeat-y;
	background-size: 100% auto;
	z-index: -1;
	opacity: 0.7;
}

body::after {
	content: "";
	width: 50%;
	max-width: 7.00rem;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background-image: url(../img/common/bgdeco_right.svg);
	background-position: right top;
	background-repeat: repeat-y;
	background-size: 100% auto;
	z-index: -1;
	opacity: 0.7;
}

body.menu_active {
	overflow: hidden;
}

/*============================
ページ表示時の演出
============================*/
.splash_screen {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	background-color: #FFF;
}

/*============================
モーダル用
============================*/
.modal_wrap {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	background-color: rgba(0,0,0,0.9);
	display: none;
}

/*============================
準備中リンク
============================*/
a.soon {
	pointer-events: none;
	opacity: 0.4;
}

/*============================
ヘッダー
============================*/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

@media screen and (max-width: 640px) {
	header #SPnaviBtn {
		transition: right 0.5s 0.5s;
	}
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える */
@media screen and (max-width: 640px) {
	header.hide #SPnaviBtn,
	header.hide .sp_icon_wrap {
		right: -1.00rem;
	}
}

/* スクロールで表示された状態
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
 */

/* ロゴ */
header .logo {
	max-width: 2.00rem;
	margin: 0.20rem;
	padding-bottom: 0.10rem;
	border-bottom: 1px solid #FFF;
}

@media screen and (max-width: 640px) {
	header .logo {
		max-width: 1.50rem;
		margin: 0.20rem;
		padding-bottom: 0.10rem;
		border-bottom: 1px solid #FFF;
	}
}

header #SPnaviBtn {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2;
}

header #SPnaviBtn.scr .text {
	color: #000;
}

header #SPnaviBtn.scr #SPmenuBars span {
	background-color: #000;
}

header #SPnaviBtn.scr.active .text {
	color: #fff;
}

header #SPnaviBtn.scr.active #SPmenuBars span {
	background-color: #fff;
}

/* グローバルメニュー */
header .nav_wrap {
	width: 100vw;
	height: 100dvh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	z-index: 1;
	display: none;
}

header .nav_wrap .ph_wrap {
	width: 50%;
	height: 100dvh;
	background-image: url(../img/top/mv_pc.jpg);
	background-position: center;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

@media screen and (max-width: 1079px) {
	header .nav_wrap .ph_wrap {
		width: 35%;
	}
}

@media screen and (max-width: 800px) {
	header .nav_wrap .ph_wrap {
		display: none;
	}
}

header .nav_wrap .glo_navi {
	width: 50%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
}

@media screen and (max-width: 1079px) {
	header .nav_wrap .glo_navi {
		width: 60%;
		left: 40%;
	}
}

@media screen and (max-width: 800px) {
	header .nav_wrap .glo_navi {
		width: 100%;
		left: 0;
	}
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 5.70rem;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap {
		min-width: 100%;
		padding: 0 0.20rem;
		box-sizing: border-box;
	}
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .link a span {
	position: relative;
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .link a span::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .link a:hover span::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* リンク上段 */
header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper {
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper {
		flex-wrap: wrap;
	}
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper .list {
	width: 50%;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper .list {
		width: 100%;
	}
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper .list .link {
	padding-bottom: 0.30rem;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper .list .link {
		padding-bottom: 0.15rem;
	}
}
@media screen and (max-width: 375px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper .list .link {
		padding-bottom: 0.15rem;
	}
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper .list .link a {
	color: #fff;
	font-size: 0.16rem;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper .list .link a {
		font-size: 0.14rem;
	}
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper .list .link a span em {
	display: inline-block;
	font-size: 0.11rem;
	padding-right: 0.06rem;
	position: relative;
	top: -0.01rem;
	letter-spacing: 0;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_upper .list .link a span em {
		top: 0;
	}
}

/* 中段SNSリンク */
header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_middle {
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	padding: 0.10rem 0 0.20rem;
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_middle .list .link {
	padding: 0.15rem 0;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_middle .list .link {
		padding: 0.08rem 0;
	}
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_middle .list .link a {
	color: #fff;
	font-size: 0.14rem;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_middle .list .link a {
		font-size: 0.13rem;
	}
}

/* SNSアイコン共通 */
header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_middle .list .link a::before {
	content: "";
	width: 0.30rem;
	height: 0.22rem;
	display: inline-block;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_middle .list .link a::before {
		width: 0.26rem;
		height: 0.18rem;
	}
}

/* 新しいウィンドウアイコン */
header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_middle .list .link a::after {
	content: "";
	width: 0.20rem;
	height: 0.10rem;
	display: inline-block;
	background-image: url(../common/img/icon_newwin_white.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
}

/* LINE */
header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_middle .list .link.line a::before {
	background-image: url(../common/img/icon_line_white.svg);
	top: 0.05rem;
}

/* instagram */
header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_middle .list .link.insta a::before {
	background-image: url(../common/img/icon_insta_white.svg);
	top: 0.06rem;
}

/* 下段サブリンク */
header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_bottom {
	padding-top: 0.25rem;
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_bottom .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_bottom .list .link {
	width: 50%;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_bottom .list .link {
		width: 100%;
		padding-bottom: 0.15rem;
	}
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_bottom .list .link a {
	color: #fff;
	font-size: 0.13rem;
}

@media screen and (max-width: 640px) {
	header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_bottom .list .link a {
		font-size: 0.12rem;
	}
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_bottom .list .link a em {
	font-size: 0.11rem;
}

header .nav_wrap .glo_navi .glo_navi_layout_wrap .glo_navi_bottom .list .link a::before {
	content: "";
	width: 0.15rem;
	height: 0.08rem;
	display: inline-block;
	background-image: url(../img/common/glonavi_link_arrow.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* SP時のアイコン */
.sp_icon_wrap {
	width: 0.60rem;
	position: fixed;
	right: 0;
	top: 0.60rem;
	transition: right 0.5s 0.5s;
}

.sp_icon_wrap .link {
	padding: 0.07rem 0;
}

.sp_icon_wrap .link a {
	height: 0.36rem;
	max-width: 0.30rem;
	display: block;
	margin: auto;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.sp_icon_wrap .link.tel a {
	background-image: url(../img/common/sp_icon_tel.svg);
}
.sp_icon_wrap .link.line a {
	background-image: url(../common/img/icon_line_white.svg);
}
.sp_icon_wrap .link.insta a {
	background-image: url(../common/img/icon_insta_white.svg);
}
.sp_icon_wrap .link.chat a {
	background-image: url(../img/common/sp_icon_chat.svg);
}

.sp_icon_wrap.scr .link.tel a {
	background-image: url(../img/common/sp_icon_tel_black.svg);
}
.sp_icon_wrap.scr .link.line a {
	background-image: url(../common/img/icon_line_black.svg);
}
.sp_icon_wrap.scr .link.insta a {
	background-image: url(../common/img/icon_insta_black.svg);
}
.sp_icon_wrap.scr .link.chat a {
	background-image: url(../img/common/sp_icon_chat_black.svg);
}

@media screen and (max-width: 640px) {
	header #SPnaviBtn {
		width: 0.60rem;
		height: 0.60rem;
	}
	#SPnaviBtn .text {
		font-size: 0.10rem;
		bottom: 0.10rem;
	}
	.menu-trigger span {
		width: 80%;
		left: 10%;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 35%;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 50%;
	}
}

/*============================
フッター
============================*/
footer {
	padding: 1.10rem 0 0;
	box-sizing: border-box;
	background: url(../img/common/footer_bg.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	footer {
		padding: 0.50rem 0 0;
	}
}

footer .title {
	font-size: 0.16rem;
	font-weight: 600;
	text-align: center;
	color: #fff;
	letter-spacing: 0.05em;
	margin-bottom: 0.33rem;
}

@media screen and (max-width: 640px) {
	footer .title {
		font-size: 0.14rem;
	}
}

footer .box_01 {

}

footer .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer .flex_cont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (max-width: 640px) {
	footer .flex_cont {
		display: block;
	}
}

footer .box_02 {
	/* width: calc(100% - 3.4rem); */
}

@media screen and (max-width: 640px) {
	footer .box_02 {
		width: 100%;
		padding-bottom: 0.20rem;
	}
}

footer .list .item {
	max-width: 4.90rem;
	width: 100%;
	margin-bottom: 0.23rem;
}

@media screen and (max-width: 640px) {
	footer .list .item {
		max-width: 2.80rem;
		width: 100%;
		margin: 0 auto 0.20rem;
	}
}

footer .list .item a {
	display: block;
	font-size: 0.17rem;
	font-weight: 600;
	color: #000;
	background-color: #fff;
	box-sizing: border-box;
	padding: 0.21rem 0.40rem;
	letter-spacing: 0.025em;
	position: relative;
}

@media screen and (max-width: 640px) {
	footer .list .item a {
		font-size: 0.15rem;
		padding: 0.20rem 0.20rem 0.22rem 0.30rem;
	}
}

footer .list .item a::before {
	content: '';
	width: 0.06rem;
	height: 0.08rem;
	background: url(../img/common/icon_btn_footer_arrow.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 55%;
	left: 0.20rem;
	transform: translateY(-50%);
	display: block;
}

@media screen and (max-width: 640px) {
	footer .list .item a::before {
		height: 0.07rem;
		top: 50%;
		left: 0.15rem;
	}
}

footer .list .item a::after {
	content: '';
	width: 0.13rem;
	height: 0.11rem;
	background: url(../img/common/icon_btn_link_bk.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.20rem;
	transform: translateY(-50%);
	display: block;
}

@media screen and (max-width: 640px) {
	footer .list .item a::after {
		width: 0.11rem;
		height: 0.10rem;
		right: 0.15rem;
	}
}

footer a:hover {
	opacity: 0.7;
}

footer .list .item a span {
	font-size: 0.13rem;
	font-weight: 300;
	display: inline-block;
	padding-right: 0.1rem;
}

@media screen and (max-width: 640px) {
	footer .list .item a span {
		font-size: 0.11rem;
		padding-right: 0.06rem;
	}
}

/* デイサービス */
footer .box_03 {
	width: calc(100% - 6.8rem);
	height: 2.22rem;
	background-color: #fff;
}

@media screen and (max-width: 640px) {
	footer .box_03 {
		width: calc(100% - 0.20rem);
		margin: 0 auto 0.20rem;
		height: 1.40rem;
	}
}

footer .box_03 a::before {
	content: '';
	width: 60%;
	height: calc(100% - 0.10rem);
	background-color: #fff;
	background-image: url(../img/common/footer_day_bg_2025.jpg);
	background-position: center left;
	background-size: cover;	
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	margin: 0.05rem;
	z-index: -1;
}
@media screen and (max-width: 640px) {
	footer .box_03 a::before {
		width: 50%;
		background-image: url(../img/common/footer_day_bg.png);
	}
}

footer .box_03 a {
	display: block;
	color: #000;
	box-sizing: border-box;
	height: 100%;
	position: relative;
	z-index: 1;
}

footer .box_03 .text_box {
	width: 52%;
	height: 100%;
	margin-left: auto;
	margin-right: 0;
	box-sizing: border-box;
	padding-top: 0.60rem;
	padding-right: 0.10rem;
}
@media screen and (max-width: 640px) {
	footer .box_03 .text_box {
		padding-top: 0.20rem;
	}
}

footer .box_03 .text_box .day_title_box span  {
	font-size: 0.13rem;
	display: block;
	margin-bottom: 0.10rem;
}

footer .box_03 .text_box .day_title_box .day_title {
	font-size: 0.18rem;
	font-weight: 600;
	margin-bottom: 0.10rem;
}

footer .box_03 .text_box  .text {
	font-size: 0.10rem;
	line-height: 1.75;
}

/* リクルートバナー */
footer .bottom_bnr {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 3px solid #fff;
	box-sizing: border-box;
	align-items: center;
	background-color: #E8E0D2;
	margin-bottom: 0.70rem;
}

@media screen and (max-width: 640px) {
	footer .bottom_bnr {
		border: 4px solid #fff;
		width: calc(100% - 0.20rem);
		margin:0 auto 0.50rem;
	}
}

/* 写真 */
footer .bottom_bnr .ph_wrap {
	width: 3.20rem;
	height: 1.80rem;
}

@media screen and (max-width: 640px) {
	footer .bottom_bnr .ph_wrap {
		width: 100%;
		height: 1.30rem;
	}
}

footer .bottom_bnr .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

footer .bottom_bnr .textbox {
	width: calc(100% - 3.50rem);
	padding-right: 0.20rem;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

@media screen and (max-width: 640px) {
	footer .bottom_bnr .textbox {
		width: 100%;
		padding: 0.20rem;
		display: block;
		text-align: center;
	}
}

footer .bottom_bnr .bnr_text_wrap {
	box-sizing: border-box;
}

footer .bottom_bnr .bnr_text_wrap .bnr_title_box span {
	font-size: 0.20rem;
	color: #B4272D;
	letter-spacing: 0.08em;
	margin-bottom: 0.08rem;
	display: block;
}

@media screen and (max-width: 640px) {
	footer .bottom_bnr .bnr_text_wrap .bnr_title_box span {
		font-size: 0.11rem;
		margin-bottom: 0.10rem;
	}
}

footer .bottom_bnr .bnr_text_wrap .bnr_title_box .bnr_title {
	font-size: 0.26rem;
	font-weight: 600;
	margin-bottom: 0.15rem;
}

@media screen and (max-width: 640px) {
	footer .bottom_bnr .bnr_text_wrap .bnr_title_box .bnr_title {
		font-size: 0.19rem;
		margin-bottom: 0.10rem;
	}
}

footer .bottom_bnr .bnr_text_wrap .bnr_title_box .text {
	font-size: 0.15rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 640px) {
	footer .bottom_bnr .bnr_text_wrap .bnr_title_box .text {
		font-size: 0.11rem;
		letter-spacing: 0;
		padding-bottom: 0.15rem;
	}
}

footer .bottom_bnr .btn_list {
	width: 2.30rem;
}

@media screen and (max-width: 640px) {
	footer .bottom_bnr .btn_list {
		margin: auto;
	}
}

footer .bottom_bnr .btn_list .item {
	width: 100%;
	margin-bottom: 0.10rem;
}

@media screen and (max-width: 640px) {
	footer .bottom_bnr .btn_list .item {
		margin-bottom: 0.15rem;
	}
}

footer .bottom_bnr .btn_list .item:last-child {
	margin-bottom: 0;
}

footer .bottom_bnr .btn_list .item a {
	display: block;
	width: 100%;
	text-align: center;
	background-color: #4E3838;
	color: #fff;
	font-size: 0.15rem;
	font-weight: 600;
	padding: 0.15rem 0.10rem 0.15rem 0;
	box-sizing: border-box;
	position: relative;
}

footer .bottom_bnr .btn_list .item a:hover {
	opacity: 0.7;
}

footer .bottom_bnr .btn_list .item a::after {
	content: '';
	width: 0.12rem;
	height: 0.10rem;
	background: url(../common/img/icon_newwin_white.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.10rem;
	transform: translateY(-50%);
	display: block;
}

footer .bottom_bnr .btn_list .item a span {
	font-size: 0.12rem;
	display: block;
	padding-top: 0.08rem;
}

/* プライバシーポリシー */
footer .privacy_box {
	background-color: #382B29;
	padding: 0.33rem 0;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 0.70rem;
	align-items: center;
}

@media screen and (max-width: 640px) {
	footer .privacy_box {
		padding: 0.24rem 0;
		line-height: 2.5;
		gap: 0;
		display: block;
	}
}

footer .privacy_box a {
	color: #fff;
	font-size: 0.13rem;
	font-weight: 400;
	position: relative;
}

footer .privacy_box a::before {
    content: '';
    width: 0.06rem;
    height: 0.08rem;
    background: url(../img/common/icon_btn_privacy_arrow.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 55%;
    left: -0.2rem;
    transform: translateY(-50%);
    display: block;
}

/* コピーライト */
.copyright {
	text-align: center;
	font-size: 0.12rem;
	padding: 0.36rem 0;
	background: #fff;
}

@media screen and (max-width: 640px) {
	.copyright {
		font-size: 0.11rem;
		padding: 0.26rem 0 0.92rem;
	}
}

/*=============================
共通タイトル
=============================*/
.title_wrap {
	text-align: center;
	padding: 0.75rem 0 0.45rem;
}
@media screen and (max-width: 640px) {
	.title_wrap {
		padding: 0.55rem 0 0.35rem;
	}
}


.title_wrap .sec_title_jp {
	font-size: 0.26rem;
	font-weight: 600;
	margin-bottom: 0.15rem;
	line-height: 1.5;
	letter-spacing: 0.2em;
}
@media screen and (max-width: 640px) {
	.title_wrap .sec_title_jp {
		font-size: 0.22rem;
		margin-bottom: 0.10rem;
		letter-spacing: 0.1em;
	}
	.title_wrap .sec_title_jp span {
		display: block;
	}
}


.title_wrap .sec_title_en {
	font-size: 0.14rem;
	font-weight: 400;
	color: #B3896D;
	letter-spacing: 0.14em;
	font-family: 'Playfair Display', serif;
}

@media screen and (max-width: 640px) {
	.title_wrap .sec_title_en {
		font-size: 0.13rem;
	}
}

/*=============================
ボタン
=============================*/
.btn_common a {
	display: block;
	max-width: 3.50rem;
	width: 100%;
	background: #4E3838;
	font-size: 0.18rem;
	font-weight: 600;
	text-align: center;
	color: #fff;
	box-sizing: border-box;
	padding: 0.26rem 0;
	position: relative;
}

@media screen and (max-width: 640px) {
	.btn_common a {
		max-width: 2.60rem;
		margin: auto;
		font-size: 0.15rem;
		padding: 0.20rem 0 0.22rem;
	}
}

/* .btn_common a:hover {
	opacity: 0.7;
} */

.btn_common a span {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding-right: 0.15rem;
}

.btn_common a::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background: #B4272D;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
	z-index: 0;
}

/* 埜のてらすボタン */
.btn_common.nono a {
	background-color: #264526;
}

.btn_common.nono a::before {
	background-color: #0EA33C;
}

.btn_common a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* 矢印ボタン */
.btn_arrow a::after {
	content: '';
	width: 0.25rem;
	height: 0.055rem;
	background: url(../img/common/icon_btn_arrow.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.20rem;
	transform: translateY(-50%);
	display: block;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.btn_arrow a::after {
		width: 0.17rem;
		height: 0.05rem;
		background: url(../img/common/icon_btn_arrow.svg) no-repeat center right;
		background-size: auto 100%;
		right: 0.15rem;
	}
}

/* リンクボタン */
.btn_link a::after {
	content: '';
	width: 0.13rem;
	height: 0.11rem;
	background: url(../img/common/icon_btn_link.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.20rem;
	transform: translateY(-50%);
	display: block;
}

/*=============================
セクション上部丸
=============================*/
.circle {
	position: relative;
}

.circle::before {
	content: '';
	width: 0.80rem;
	height: 0.80rem;
	background: url(../img/common/icon_section_circle.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: -0.40rem;
	left: 50%;
	transform: translate(-50%);
}

/*============================
PHOTO GALLERY
============================*/
.gallery {
	position: relative;
}

@media screen and (max-width: 640px) {
	.gallery {
		padding-bottom: 0.30rem;
	}
}

.gallery .slides {
	position: relative;
	z-index: 1;
}

.gallery .slide {
	width: 100%;
	max-width: 8.00rem;
	height: 5.30rem;
	overflow: hidden;
	margin: 0 0.20rem;
}

@media screen and (max-width: 640px) {
	.gallery .slide {
		max-width: 2.95rem;
		height: 56vw;
		margin: 0 0.05rem;
	}
}

.gallery .slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* スライドボタン */
.gallery .slides .slick-arrow {
	width: 0.50rem;
	height: 0.50rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	cursor: pointer;
}

@media screen and (max-width: 640px) {
	.gallery .slides .slick-arrow {
		width: 0.40rem;
		height: 0.40rem;
	}
}

.gallery .slides .slick-arrow.prev_btn {
	background-image: url(../img/common/gallery_btn_prev.svg);
	left: calc(50% - 4.50rem);
}

@media screen and (max-width: 640px) {
	.gallery .slides .slick-arrow.prev_btn {
		left: 0.17rem;
	}
}

.gallery .slides .slick-arrow.next_btn {
	background-image: url(../img/common/gallery_btn_next.svg);
	right: calc(50% - 4.50rem);
}

@media screen and (max-width: 640px) {
	.gallery .slides .slick-arrow.next_btn {
		right: 0.17rem;
	}
}

/* スライドドット */
.gallery .slides .slick-dots {
	bottom: -0.30rem;
}

@media screen and (max-width: 640px) {
	.gallery .slides .slick-dots li {
		margin: 0 0.02rem;
	}
}

.gallery .slides .slick-dots li button::before {
	font-size: 0.08rem;
}


.gallery .slick-dots li {
	width: 0.25rem;
	height: 0.03rem;
}

.gallery .slick-dots li button::before {
	content: '';
	width: 0.25rem;
	height: 0.03rem;
	background: #fff;
	transition: all 0.5s;
	border-radius: 0.04rem;
	overflow: hidden;
}

.gallery .slides .slick-dots {
	bottom: 0.20rem;
}


/*============================
特別フロア「月星」
============================*/
#speciality {
	margin-top: 1.3rem;
	margin-bottom: 1.00rem;
}
@media screen and (max-width: 640px) {
	#speciality {
		margin-top: 0.8rem;
		margin-bottom: 0.50rem;
	}
}


#speciality a {
	display: block;
}

#speciality a:hover {
	opacity: 0.7;
}

#speciality .cont_box {
	display: flex;
	flex-wrap: wrap;
}

#speciality .cont_box .ph_wrap {
	width: 50%;
	height: 100%;
}
@media screen and (max-width: 640px) {
	#speciality .cont_box .ph_wrap {
		width: 100%;
	}
}


#speciality .cont_box .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#speciality .cont_box .text_wrap {
	background-color: #000;
	color: #fff;
	width: 50%;
	padding-top: 0.40rem;
	box-sizing: border-box;
	height: 3.00rem;
}
@media screen and (max-width: 640px) {
	#speciality .cont_box .text_wrap {
		width: 100%;
		height: auto;
		padding-top: 0.20rem;
	}
}

#speciality .cont_box .text_wrap .title {
	text-align: center;
	font-size: 0.22rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.88em;
	margin-bottom: 0.10rem;
}
@media screen and (max-width: 640px) {
	#speciality .cont_box .text_wrap .title {
		font-size: 0.18rem;
	}
}

#speciality .cont_box .text_wrap .text {
	text-align: center;
	font-size: 0.14rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-bottom: 0.20rem;
}

#speciality .cont_box .text_wrap .name_box {
	font-size: 0.22rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 2;
	background: #006837;
	padding: 0.25rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
@media screen and (max-width: 640px) {
	#speciality .cont_box .text_wrap .name_box {
		font-size: 0.18rem;
		display: block;
		padding: 0.15rem 0 0.15rem 0.20rem;
	}
}


#speciality .cont_box .text_wrap .name_box::after {
	content: '';
	width: 0.25rem;
	height: 0.055rem;
	background: url(../img/common/icon_btn_arrow.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.20rem;
	transform: translateY(-50%);
	display: block;
}

#speciality .cont_box .text_wrap .name_box span {
	font-size: 0.13rem;
	font-weight: 400;
	display: inline-block;
	padding-right: 0.30rem;
}
@media screen and (max-width: 640px) {
	#speciality .cont_box .text_wrap .name_box span {
		font-size: 0.12rem;
		display: block;
	}
}


/*============================
共通パーツ
============================*/
#room_parts .roomlink {
	background: rgba(255, 255, 255, 0.6);
	padding: 1.00rem 0;
}
@media screen and (max-width: 640px) {
	#room_parts .roomlink {
		padding:0.80rem 0 0.20rem;
	}
}



#room_parts .roomlink .link_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#room_parts .roomlink .link_wrap.col3 {
	max-width: 8.00rem;
	margin: auto;
}

#room_parts .roomlink .link_box {
	width: 23%;
}
#room_parts .roomlink .link_wrap.col3 .link_box {
	width: 30%;
}
@media screen and (max-width: 640px) {
	#room_parts .roomlink .link_box {
		width: 100%;
		margin-bottom: 0.40rem;
	}
	#room_parts .roomlink .link_wrap.col3 .link_box {
		width: 100%;
	}
}

#room_parts .roomlink .link_box .link_title {
	font-size: 0.18rem;
	font-weight: 600;
	border-bottom: 1px solid #707070;
	padding-bottom: 0.15rem;
	margin-bottom: 0.20rem;
	text-align: center;
}

#room_parts .roomlink .link_box .list .item {
	margin-bottom: 0.10rem;
}

#room_parts .roomlink .link_box .list .item a {
	color: #000;
	font-size: 0.13rem;
	line-height: 1.6;
	letter-spacing: 0;
	position: relative;
	display: flex;
	align-items: center;
}

#room_parts .roomlink .link_box .list .item a:hover {
	opacity: 0.7;
}

#room_parts .roomlink .link_box .list .item a::before {
	content: '';
	width: 0.04rem;
	height: 0.08rem;
	background: url(../img/room/icon_rooom_link.svg) no-repeat center;
	display: inline-block;
	padding-right: 0.10rem;
}
