@charset "utf-8";

/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	padding-left: 0.3rem;
}

@media screen and (max-width: 640px) {
	header {
		padding-left: 0.2rem;
		height: 0.60rem;
	}
}

header::before {
	content: '';
	width: 2.5rem;
	height: 1.8rem;
	background: rgba(241, 133, 159, 0.1);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

@media screen and (max-width: 640px) {
	header::before {
		width: 1.5rem;
		height: 1.0rem;
	}
}

/* ロゴ */
header .logo {
	width: 2.8rem;
	padding-top: 0.25rem;
}

@media screen and (max-width: 640px) {
	header .logo {
		width: 1.7rem;
		padding-top: 0.13rem;
	}
}

/* ナビゲーション */
header .glo_navi {
	width: calc(100% - 3.1rem);
	text-align: right;
	display: flex;
	justify-content: flex-end;
}

@media screen and (max-width: 640px) {
	header .glo_navi {
		width: 100%;
		text-align: left;
		display: none;
		position: absolute;
		top: 0.60rem;
		left: 0;
		z-index: 10;
	}
}

header .glo_navi .list {
	display: flex;
	justify-content: flex-end;
}

@media screen and (max-width: 640px) {
	header .glo_navi .list {
		background-color: rgba(241, 133, 159, 0.8);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		display: block;
		padding: 0.15rem 0;
	}
}

header .glo_navi .list .link {
	box-sizing: border-box;
	padding: 0.35rem 0.35rem 0.35rem 0;
	position: relative;
}

@media screen and (max-width: 640px) {
	header .glo_navi .list .link {
		padding: 0.15rem 0.20rem;
	}
}

header .glo_navi .list .link::before,
header .glo_navi .list .link.active::before {
	content: "";
	width: calc(100% - 0.35rem);
	height: 2px;
	background-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s;
}

@media screen and (max-width: 640px) {
	header .glo_navi .list .link::before,
	header .glo_navi .list .link.active::before {
		content: none;
	}
}

header .glo_navi .list .link:hover::before {
	height: 5px;
	background-color: #F1859F;
}

header .glo_navi .list .link a {
	box-sizing: border-box;
	color: #000;
	font-size: 0.16rem;
	font-weight: 500;
	text-align: center;
	display: block;
	position: relative;
}

@media screen and (max-width: 640px) {
	header .glo_navi .list .link a {
		color: #FFF;
		font-size: 0.18rem;
		font-weight: 500;
		text-align: left;
	}
	header .glo_navi .list .link a::before {
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0.04rem 0 0.04rem 0.05rem;
		border-color: transparent transparent transparent #ffffff;
		margin-right: 0.10rem;
		position: relative;
		top: -0.03rem;
	}
	/* SP時の会員ページボタン */
	header .glo_navi .list .member {
		padding: 0.15rem 0.20rem 0.20rem;
	}
	header .glo_navi .list .member a {
		display: block;
		background-color: #FFF;
		padding: 0.15rem 0 0.18rem;
		font-size: 0.18rem;
		text-align: center;
		color: #13AFAF;
		font-size: 0.18rem;
	}
	header .glo_navi .list .member a span::before {
		content: "";
		display: inline-block;
		width: 0.20rem;
		height: 0.16rem;
		background-image: url(../img/common/icon_member_lock.svg);
		background-position: left center;
		background-repeat: no-repeat;
		background-size: contain;
		position: relative;
	}
}

header .glo_navi .list .link a span {
	color: #727071;
	display: block;
	font-size: 0.12rem;
	font-weight: 500;
	margin-top: 0.1rem;
	transition: all .3s;
	font-family: 'Zen Kaku Gothic New',"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
}

@media screen and (max-width: 640px) {
	header .glo_navi .list .link a span {
		color: #FFF;
		display: inline-block;
		font-size: 0.14rem;
		font-weight: 500;
		margin-top: 0;
		padding-left: 0.08rem;
		opacity: 0.5;
	}
}

header .glo_navi .list .link a:hover span {
	color: #F1859F;
}

@media screen and (max-width: 640px) {
	header .glo_navi .list .link a:hover span {
		color: #FFF;
	}
}

/* お問い合わせ・会員専用 */
header .color_list {
	display: flex;
}

header .color_list .link {
	width: 1.2rem;
}

@media screen and (max-width: 640px) {
	header .color_list .link {
		width: 0.60rem;
	}
}

header .color_list .link:first-child {
	margin-right: 0.01rem;
}

@media screen and (max-width: 640px) {
	header .color_list .link:first-child {
		margin-right: 0;
	}
}

header .glo_navi .color_list .link a {
	display: block;
	color: #fff;
	background: #13AFAF;
	font-size: 0.16rem;
	font-weight: 500;
	text-align: center;
	padding-top: 0.35rem;
	height: 100%;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.contact_btn {
		width: 0.60rem;
		height: 0.60rem;
		position: absolute;
		right: 0.60rem;
		top: 0;
	}
	.contact_btn a {
		display: block;
		height: 100%;
		background-color: #F1859F;
		position: relative;
	}
	.contact_btn a::before {
		content: "";
		width: 0.28rem;
		height: 0.28rem;
		background-image: url(../common/img/icon_mail02_white.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.menu-trigger .text {
		font-family: 'Zen Kaku Gothic New', sans-serif;
		font-size: 0.10rem;
		font-weight: 700;
		position: absolute;
		bottom: 0.15rem;
		left: 0.02rem;
		text-align: center;
	}
	.menu-trigger .menu_bar_wrap {
		width: 0.23rem;
		height: 0.13rem;
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

header .glo_navi .color_list .link a:hover {
	opacity: 0.7;
}

header .color_list .link:first-child a {
	background: #F1859F;
}

header .glo_navi .color_list .link a span {
	color: #fff;
	display: block;
	font-size: 0.12rem;
	font-weight: 500;
	margin-top: 0.1rem;
}

header .color_list .link:last-child {
	display: none !important;
}

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

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
 */

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

/*============================
コピーライト
============================*/
.copyright {
	position: absolute;
	left: 0.45rem;
	top: 2.9rem;
}

@media screen and (max-width: 640px) {
	.copyright {
		display: none;
	}
}

.copyright small {
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode:vertical-rl;
	font-size: 0.12rem;
	color: #727071;
	font-family: 'Zen Kaku Gothic New',"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
}

/*============================
お知らせ
============================*/
.news {
	padding: 0.5rem 0;
	position: relative;
}

@media screen and (max-width: 640px) {
	.news {
		padding: 0.20rem 0 0.40rem;
	}
}

.news .list {
	max-width: 10rem;
	margin: auto;
	margin-bottom: 0.55rem;
}

@media screen and (max-width: 640px) {
	.news .list {
		margin-bottom: 0.30rem;
	}
}

.news .list .item {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0.30rem;;
}

/* 日付 */
.news .list .item .date {
	font-family: 'Zen Kaku Gothic New',"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
	width: 0.9rem;
	padding-top: 0.04rem;
	padding-right: 0.3rem;
	box-sizing: border-box;
	font-size: 0.15rem;
	font-weight: 500;
	letter-spacing: 0.10em;
}

@media screen and (max-width: 640px) {
	.news .list .item .date {
		width: 0.75rem;
		font-size: 0.14rem;
		padding-right: 0.20rem;
	}
}

/* カテゴリ */
.news .list .item .category {
	width: 1rem;
	font-size: 0.14rem;
	font-weight: 500;
}

@media screen and (max-width: 640px) {
	.news .list .item .category {
		width: auto;
		min-width: 0.60rem;
		font-size: 0.12rem;
		position: relative;
		top: 0.01rem;
	}
}

.news .list .item .category span {
	box-sizing: border-box;
	color: #fff;
	text-align: center;
	padding: 0.05rem 0.1rem;
	border-radius: 0.05rem;
	display: block;
}

@media screen and (max-width: 640px) {
	.news .list .item .category span {
		padding: 0.04rem 0.06rem;
		border-radius: 0.03rem;
	}
}

.news .list .item .category.osirase span {
	background: #F1859F;
}

.news .list .item .category.katudou span {
	background: #5BB48F;
}


/* タイトル */
.news .list .item .title {
	box-sizing: border-box;
	padding-left: 0.3rem;
	width: calc(100% - 1.9rem);
}

@media screen and (max-width: 640px) {
	.news .list .item .title {
		padding-left: 0;
		padding-top: 0.05rem;
		width: 100%;
	}
}

.news .list .item .title a {
	color: #000;
	font-size: 0.16rem;
	font-weight: 500;
	text-decoration: underline;
	line-height: 1.65;
}

@media screen and (max-width: 640px) {
	.news .list .item .title a {
		font-size: 0.15rem;
		line-height: 1.85;
	}
}

.news .list .item .title a:hover {
	text-decoration: none;
}

@media screen and (max-width: 640px) {
	.news .btn {
		padding: 0 0.10rem;
	}
}

/*============================
フッター
============================*/
footer {
	background-color: #F1859F;
	padding-top: 1rem;
	margin-top: 1rem;
}

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

footer .cont_wrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

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

/* 左側コンテンツ */
footer .cont_wrap .left_cont {
	width: 4rem;
}

@media screen and (max-width: 640px) {
	footer .cont_wrap .left_cont {
		width: 100%;
		text-align: center;
	}
}

/* ロゴ */
footer .cont_wrap .left_cont .logo {
	margin-bottom: 0.2rem;
}

@media screen and (max-width: 640px) {
	footer .cont_wrap .left_cont .logo {
		max-width: 2.00rem;
		margin: 0.10rem auto 0.20rem;
	}
}

/* 住所、電話番号 */
footer .cont_wrap .left_cont address {
	color: #fff;
	font-size: 0.16rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 0.27rem;
}

@media screen and (max-width: 640px) {
	footer .cont_wrap .left_cont address {
		font-size: 0.14rem;
		font-weight: 400;
		margin-bottom: 0.20rem;
		text-align: center;
	}
}

footer .cont_wrap .left_cont address a {
	color: #fff;
}

footer .cont_wrap .left_cont address span {
	font-size: 0.16rem;
}

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

/* SNS */
footer .cont_wrap .left_cont .sns {
	display: flex;
}

@media screen and (max-width: 640px) {
	footer .cont_wrap .left_cont .sns {
		justify-content: center;
	}
}

footer .cont_wrap .left_cont .sns .item {
	padding-right: 0.2rem;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	footer .cont_wrap .left_cont .sns .item {
		padding:0 0.15rem;
	}
}

footer .cont_wrap .left_cont .sns .item a:hover {
	opacity: 0.7;
}

/* 右側コンテンツ（サイトマップ） */
footer .cont_wrap .right_cont {
	width: calc(100% - 4.5rem);
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (max-width: 640px) {
	footer .cont_wrap .right_cont {
		width: 100%;
	}
}

footer .cont_wrap .right_cont .list {
	width: 32%;
}

@media screen and (max-width: 640px) {
	footer .cont_wrap .right_cont .list {
		width: 50%;
	}
	footer .cont_wrap .right_cont .list.bottom_list {
		width: 100%;
		padding-top: 0.20rem;
		border-top: 1px solid rgba(255,255,255,0.3);
	}
}

footer .cont_wrap .right_cont .item {
	margin-bottom: 0.25rem;
}

footer .cont_wrap .right_cont .item a {
	font-size: 0.15rem;
	font-weight: 500;
	color: #fff;
}

footer .cont_wrap .right_cont .item a::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 4px;
	border-color: transparent transparent transparent #FFF;
	display: inline-block;
	margin-right: 0.08rem;
	position: relative;
	top: -0.02rem;
}

footer .cont_wrap .right_cont .item a:hover {
	text-decoration: underline;
	opacity: 0.7;
}

footer .cont_wrap .right_cont .item.blank a::after {
	content: "";
	width: 0.18rem;
	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;
	top: -0.01rem;
}

@media screen and (max-width: 640px) {
	footer .cont_wrap .right_cont .member {
		padding: 0.05rem 0 0.40rem;
	}
	footer .cont_wrap .right_cont .member a {
		display: block;
		background-color: #FFF;
		padding: 0.15rem 0 0.18rem;
		font-size: 0.18rem;
		text-align: center;
		color: #13AFAF;
		font-size: 0.18rem;
	}
	footer .cont_wrap .right_cont .member a span::before {
		content: "";
		display: inline-block;
		width: 0.20rem;
		height: 0.16rem;
		background-image: url(../img/common/icon_member_lock.svg);
		background-position: left center;
		background-repeat: no-repeat;
		background-size: contain;
		position: relative;
	}
	footer .cont_wrap .footer_copyright {
		width: 100%;
		text-align: center;
		padding-top: 0.20rem;
		color: #FFF;
		font-family: 'Poppins', sans-serif;
		font-size: 0.11rem;
	}
}


/* 下部画像 */
footer .bottom_img {
	width: 100%;
	height: 1.5rem;
	margin-top: 1rem;
	background-image: url(../img/common/footer_back.jpg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (max-width: 640px) {
	footer .bottom_img {
		height: 1.2rem;
		margin-top: 0.40rem;
		background-image: url(../img/common/footer_back_sp.jpg);
	}
}



/*============================
タイトル
============================*/
.sec_title {
	margin-top: 0.38rem;
	margin-bottom: 0.37rem;
}

@media screen and (max-width: 640px) {
	.sec_title {
		margin-top: 0.40rem;
		margin-bottom: 0.25rem;
	}
}

/* 中央寄せ */
.sec_title.center {
	text-align: center;
}

.sec_title .title {
	font-size: 0.28rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 0.1rem;
	display: inline-block;
	position: relative;
	line-height: 1.42;
}
@media screen and (max-width: 640px) {
	.sec_title .title {
		font-size: 0.2rem;
	}
}

.sec_title .title em {
	position: relative;
}

.sec_title .title em::before {
	content: '';
	width: 0.77rem;
	height: 0.7rem;
	background: url(../img/common/title_icon.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: -0.38rem;
	left: -0.55rem;
}

@media screen and (max-width: 640px) {
	.sec_title .title em::before {
		width: 0.46rem;
		height: 0.42rem;
		top: -0.16rem;
		left: -0.35rem;
	}
}

.sec_title span  {
	font-family: 'Zen Kaku Gothic New',"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
	font-size: 0.2rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: #F1859F;
	display: block;
}

@media screen and (max-width: 640px) {
	.sec_title span  {
		font-size: 0.12rem;
	}
}


/*============================
ボタン
============================*/
.btn a {
	display: block;
	max-width: 4.5rem;
	text-align: center;
	color: #000;
	border: 1px solid #000;
	box-sizing: border-box;
	padding: 0.2rem 0;
	font-size: 0.2rem;
	font-weight: 500;
	position: relative;
}
@media screen and (max-width: 640px) {
	.btn a {
		font-size: 0.16rem;
		letter-spacing: 0.075em;
	}
}


.btn a span {
	position: relative;
	z-index: 1;
}


.btn a::after {
	content: '';
	width: 0.31rem;
	height: 0.043rem;
	background: url(../img/common/arrow_bk.svg) no-repeat right center;
	background-size: auto 100%;
	position: absolute;
	right: 0.2rem;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
	.btn a::after {
		content: '';
		width: 0.18rem;
		height: 0.043rem;
		background-size: auto 100%;
		background-position: right center;
		right: 0.15rem;
	}
}


.btn a::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background: #000;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
}
.btn a:hover {
	color: #fff;
}

.btn a:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

.btn a:hover::after {
	background-image: url(../img/common/arrow_wh.svg);
}

/* 中央寄せ */
.btn.center a {
	margin: auto;
}
