/*============================
デコレーション素材
============================*/
.deco_header {
	width: 6.80rem;
	height: 2.40rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: url(../img/deco_header.svg);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width: 599px) {
	.deco_header {
		width: 3.00rem;
		height: 1.50rem;
	}
}

/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s, background-color 0.3s;
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	min-width: 1080px;
	background-color: rgba(255, 255, 255, 0);
}

@media screen and (max-width: 599px) {
	header {
		flex-wrap: wrap;
		min-width: 100%;
	}
}

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

@media screen and (max-width: 599px) {
	header.hide {
		transform: translateY(0);
	}
}

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

/* logo */
header .logo {
	padding: 0.45rem 0.50rem;
	width: 100%;
	max-width: 1.83rem;
}

@media screen and (max-width: 599px) {
	header .logo {
		padding: 0.20rem;
		width: 100%;
		max-width: 1.30rem;
	}
}

/* ナビゲーション */
header .glo_navi {
	position: relative;
	width: calc(100% - 3.00rem);
}

@media screen and (max-width: 599px) {
	header .glo_navi {
		position: relative;
		width: 100%;
		background-color: rgba(0,0,0,0.9);
		box-sizing: border-box;
		display: none;
	}
}

header .glo_navi .glo_navi_list {
	display: flex;
	justify-content: flex-end;
	padding-top: 0.75rem;
	padding-right: 1.70rem;
}

@media screen and (max-width: 599px) {
	header .glo_navi .glo_navi_list {
		display: block;
		padding: 0.20rem;
		padding-bottom: 0.10rem;
		box-sizing: border-box;
		border-bottom: 1px solid rgba(255,255,255,0.2);
	}
}

header .glo_navi .glo_navi_list .link {
	padding-left: 0.50rem;
}

@media screen and (max-width: 599px) {
	header .glo_navi .glo_navi_list .link {
		padding-left: 0;
		padding-top: 0.10rem;
		padding-bottom: 0.20rem;
		position: relative;
	}
}

header .glo_navi .glo_navi_list .link a {
	color: #111;
	font-family: 'Poppins', sans-serif;
	font-size: 0.18rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	position: relative;
	text-decoration: none;
}

@media screen and (max-width: 599px) {
	header .glo_navi .glo_navi_list .link a {
		color: #FFF;
		font-size: 0.16rem;
		display: block;
	}
}

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

@media screen and (max-width: 599px) {
	header .glo_navi .glo_navi_list .link a::after {
		content: none;
	}
	header .glo_navi .glo_navi_list .link a::before {
		content: "";
		width: 0.16rem;
		height: 0.10rem;
		background-image: url(../common/img/icon_right_white.svg);
		background-position: right center;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		right: 0.10rem;
		top: 50%;
		transform: translateY(-50%);
	}
}

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

header .glo_navi .glo_navi_list .link.active a {
	color: #B4091E;
}

@media screen and (max-width: 599px) {
	header .glo_navi .glo_navi_list .link.active a {
		color: #FFF;
	}
}

header .glo_navi .glo_navi_list .link.active a:after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* サブナビゲーション */
header .glo_navi .sub_navi {
	position: absolute;
	top: 0.35rem;
	right: 1.70rem;
	width: calc(100% - 1.70rem);
}

@media screen and (max-width: 599px) {
	header .glo_navi .sub_navi {
		position: relative;
		top: 0;
		right:0;
		width:100%;
	}
}

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

@media screen and (max-width: 599px) {
	header .glo_navi .sub_navi .sub_navi_list {
		display: block;
		padding: 0.20rem;
	}
}

header .glo_navi .sub_navi .sub_navi_list .link {
	padding-left: 0.50rem;
}

@media screen and (max-width: 599px) {
	header .glo_navi .sub_navi .sub_navi_list .link {
		padding: 0.10rem 0;
	}
}

header .glo_navi .sub_navi .sub_navi_list .link:first-child {
	padding-left: 0;
}

header .glo_navi .sub_navi .sub_navi_list .link a {
	color: #111;
	font-size: 0.12rem;
	letter-spacing: 0.05em;
	position: relative;
	text-decoration: none;
}

@media screen and (max-width: 599px) {
	header .glo_navi .sub_navi .sub_navi_list .link a {
		color: #FFF;
		font-size: 0.13rem;
	}
}

header .glo_navi .sub_navi .sub_navi_list .link a:hover {
	color: #B4091E;
}

@media screen and (max-width: 599px) {
	header .glo_navi .sub_navi .sub_navi_list .link a:hover {
		color: #FFF;
	}
}

header .glo_navi .sub_navi .sub_navi_list .link a::after {
	content: "";
	width: 0.18rem;
	height: 0.11rem;
	display: inline-block;
	background-image: url(../common/img/icon_newwin_black.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
}

@media screen and (max-width: 599px) {
	header .glo_navi .sub_navi .sub_navi_list .link a::after {
		width: 0.22rem;
		height: 0.12rem;
		background-image: url(../common/img/icon_newwin_white.svg);
	}
}

/* お問い合わせボタン */
header .glo_navi .contact_btn {
	position: absolute;
	top: 0.20rem;
	right: 0.25rem;
	width: 1.00rem;
	height: 1.00rem;
}

@media screen and (max-width: 599px) {
	header .contact_btn {
		width: 0.45rem;
		height: 0.45rem;
		position: absolute;
		top: 0.22rem;
		right: 0.70rem;
	}
}

header .glo_navi .contact_btn a {
	display: block;
	padding-top: 0.60rem;
	height: 100%;
	text-align: center;
	box-sizing: border-box;
	background-color: #B4091E;
	text-decoration: none;
	border-radius: 0.50rem;
	color: #FFF;
	text-decoration: none;
}

header .glo_navi .contact_btn a:hover {
	background-color: #111;
}

header .glo_navi .contact_btn a span {
	font-family: 'Poppins', sans-serif;
	font-size: 0.14rem;
	font-weight: 500;
	letter-spacing: 0;
	position: relative;
}

header .glo_navi .contact_btn a span::before {
	content: "";
	width: 0.33rem;
	height: 0.22rem;
	background-image: url(../common/img/icon_mail_white.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 50%;
	top: -0.30rem;
	transform: translateX(-50%);
}


/*============================
共通パーツ
============================*/
main {
	padding-top: 1.41rem;
}

@media screen and (max-width: 599px) {
	main {
		padding-top: 0.82rem;
	}
}

.box1100 {
	max-width: 11.00rem;
	padding: 0.65rem;
	margin: auto;
	border-radius: 0.20rem;
	box-shadow: 0 0.02rem 0.06rem rgba(0,0,0,0.2);
	background-color: #FFF;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	.box1100 {
		padding: 0.30rem;
		border-radius: 0.10rem;
	}
}

/*============================
footer
============================*/
footer {
	position: relative;
}

footer::before {
	content: "";
	background-color: #B4091E;
	width: 100%;
	height: 5.80rem;
	position: absolute;
	left: 0;
	bottom: -10px;
	z-index: -1;
}

footer .in::before {
	content: "";
	width: 6.00rem;
	height: 2.30rem;
	background-image: url(../img/deco_dot_pink.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: -1.50rem;
	top: -1.80rem;
	z-index: -1;
}

@media screen and (max-width: 599px) {
	footer .in::before {
		width: 4.00rem;
		top: -0.80rem;
	}
}

footer .in .box1100 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	flex-direction: row-reverse;
	margin-bottom: 0.60rem;
}

@media screen and (max-width: 599px) {
	footer .in .box1100 {
		display: block;
		margin-bottom: 0.20rem;
	}
}

footer .in .box1100 .ph_wrap {
	width: 4.14rem;
	height: 3.11rem;
}

@media screen and (max-width: 599px) {
	footer .in .box1100 .ph_wrap {
		max-width: 1.70rem;
		height: 1.50rem;
		margin: auto;
	}
}

footer .in .box1100 .textbox {
	width: 50%;
}

@media screen and (max-width: 599px) {
	footer .in .box1100 .textbox {
		width: 100%;
		padding-bottom: 0.20rem;
	}
}

footer .in .box1100 .sec_title {
	font-weight: 500;
	font-size: 0.20rem;
	letter-spacing: 0.05em;
	padding-bottom: 0.30rem;
}

@media screen and (max-width: 599px) {
	footer .in .box1100 .sec_title {
		font-size: 0.15rem;
		text-align: center;
		padding: 0.10rem 0 0.20rem;
	}
}

footer .in .box1100 .sec_title .en_text {
	font-size: 0.48rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #B4091E;
	display: block;
	font-family: 'Poppins', sans-serif;
	padding-bottom: 0.10rem;
}

@media screen and (max-width: 599px) {
	footer .in .box1100 .sec_title .en_text {
		font-size: 0.30rem;
		font-weight: 600;
		letter-spacing: 0.05em;
		color: #B4091E;
		display: block;
		font-family: 'Poppins', sans-serif;
		padding-bottom: 0.10rem;
	}
}

footer .in .box1100 .textbox .text {
	font-size: 0.17rem;
	letter-spacing: 0.075em;
	line-height: 2;
}

@media screen and (max-width: 599px) {
	footer .in .box1100 .textbox .text {
		font-size: 0.15rem;
		line-height: 1.85;
	}
	
}

footer .in .box1100 .textbox .more_btn {
	padding-top: 0.20rem;
}

@media screen and (max-width: 599px) {
	footer .in .box1100 .textbox .more_btn {
		padding-top: 0.10rem;
		text-align: center;
	}
}

footer .in .box1100 .textbox .more_btn a {
	font-size: 0.16rem;
	font-weight: 700;
	letter-spacing: 0.075em;
	color: #B4091E;
	text-decoration: none;
}

footer .in .box1100 .textbox .more_btn a:hover {
	opacity: 0.7;
}

footer .in .box1100 .textbox .more_btn a::after {
	content: "";
	width: 0.67rem;
	height: 0.47rem;
	display: inline-block;
	background-image: url(../img/link_round_red.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	top: 0.15rem;
	right: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	footer .in .box1100 .textbox .more_btn a::after {
		width: 0.42rem;
		height: 0.30rem;
		top: 0.07rem;
	}
}

footer .in .box1100 .textbox .more_btn a:hover::after {
	right: -0.06rem;
}

/* メインナビ */
footer .in .footer_navi_wrap {
	padding-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	footer .in .footer_navi_wrap {
		padding-bottom: 0.30rem;
	}
}

footer .in .footer_navi_wrap .main_navi_list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-bottom: 0.40rem;
}

@media screen and (max-width: 599px) {
	footer .in .footer_navi_wrap .main_navi_list {
		justify-content:space-between;
		padding:0 0.10rem 0.20rem;
	}
}

footer .in .footer_navi_wrap .main_navi_list .link {
	padding: 0 0.25rem;
}

@media screen and (max-width: 599px) {
	footer .in .footer_navi_wrap .main_navi_list .link {
		padding: 0.10rem 0;
		width: 50%;
	}
}

footer .in .footer_navi_wrap .main_navi_list .link a {
	color: #FFF;
	text-decoration: none;
	font-size: 0.15rem;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.05em;
	position: relative;
}

footer .in .footer_navi_wrap .main_navi_list .link a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #FFF;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

footer .in .footer_navi_wrap .main_navi_list .link a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* サブナビゲーション */
footer .in .footer_navi_wrap .sub_navi_list {
	max-width: 8.00rem;
	margin: auto;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0.20rem 0;
}

@media screen and (max-width: 599px) {
	footer .in .footer_navi_wrap .sub_navi_list {
		padding: 0.10rem;
		justify-content: space-between;
	}
}

footer .in .footer_navi_wrap .sub_navi_list .link {
	padding: 0 0.25rem;
}

@media screen and (max-width: 599px) {
	footer .in .footer_navi_wrap .sub_navi_list .link {
		padding: 0.10rem 0;
		width: 50%;
	}
}

footer .in .footer_navi_wrap .sub_navi_list .link a {
	color: #FFF;
	text-decoration: none;
	font-size: 0.12rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

footer .in .footer_navi_wrap .sub_navi_list .link a:hover {
	opacity: 0.7;
}

footer .in .footer_navi_wrap .sub_navi_list .link a::after {
	content: "";
	width: 0.18rem;
	height: 0.11rem;
	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;
}

/* フッターロゴ */
footer .in .logo {
	width: 100%;
	max-width: 1.83rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	footer .in .logo {
		max-width: 1.40rem;
	}
}

/* コピーライト */
footer .copyright {
	font-size: 0.12rem;
	letter-spacing: 0.10em;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: #FFF;
	text-align: center;
	padding: 0.20rem 0;
}

@media screen and (max-width: 599px) {
	footer .copyright {
		font-size: 0.10rem;
		padding: 0.30rem 0;
	}
}