@charset "utf-8";

/*=========================================================

LP共通header用CSS

=========================================================*/

:root {
    --font-yu-gothic: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

/* ヘッダー
=========================================================*/

header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	width: 100%;
	max-width: 750px;
	box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, .3);
	z-index: 100;
}
@media screen and (max-width: 750px) {
	header {
		box-shadow: 0px 1.33vw 1.33vw -1.33vw rgba(0, 0, 0, .3);
	}
}
header.pc_view {
	max-width: 100%;
}
header.position_r {
	position: relative;
}


/* ヘッダー中身 */
.c_header {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	height: min(90px, calc(calc(90/750) * 100vw));
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ヘッダー中身 - ロゴ（左側） */
.c_header__logo h1 {
	margin-left: min(15px, calc(calc(15/750) * 100vw));
	width: min(250px, calc(calc(250/750) * 100vw));
	display: flex;
	align-items: center;
}
.c_header__logo h1 img {
	max-width: 100%;
}

.c_header__logo._jp h1 {
	width: min(315px, calc(calc(315/750) * 100vw));
}

/* ヘッダー中身 - ロゴ以外の中身（右側） */
.c_header__cont {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	margin-right: min(20px, calc(calc(20 / 750) * 100vw));
}

/* CTAボタン */
.header_cta {
	position: relative;
    display: block;
    width: min(190px, calc(calc(190 / 750) * 100vw));
	height: auto;
}
.header_cta img {
	filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 750px) {
	.header_cta img {
		filter: drop-shadow(0.4vw 0.4vw 0.4vw rgba(0, 0, 0, 0.3));
	}
}


/* 多言語リンク */
.c_header__cont--lang {
    display: flex;
    text-align: center;
	align-items: center;
	font-family: var(--font-yu-gothic);
	font-size: min(20px, calc(calc(20 / 750) * 100vw));
	font-weight: 600;
	margin-left: min(22px, calc(calc(22 / 750) * 100vw));
	letter-spacing: min(1px, calc(calc(1 / 750) * 100vw));
}
.c_header__cont--lang p {
	color: #444;
	margin: 0 min(1px, calc(calc(1 / 750) * 100vw));
}
.c_header__cont--lang a {
	color: #444;
}
.c_header__cont--lang a:hover {
	color: #444;
}



/* ハンバーガーメニュー
=========================================================*/
.c_header__cont--menu {
	display: flex;
	align-items: center;
	position: relative;
	margin-left: min(24px, calc(calc(24 / 750) * 100vw));
}

/* ドロワーボタン */
.drawer-btn {
	display: block;
	position: static;
	width: min(50px, calc(calc(50/750) * 100vw));
	height: min(40px, calc(calc(40/750) * 100vw));
	cursor: pointer;
}
@media screen and (max-width: 750px) {
	.drawer-btn {
		width: min(70px, calc(calc(70/750) * 100vw));
		height: min(56px, calc(calc(56/750) * 100vw));
	}
}

.drawer-btn span {
	display: block;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: min(2px, calc(calc(2/750) * 100vw));
	background-color: #000;
	transition: all ease 0.3s;
}
@media screen and (max-width: 750px) {
	.drawer-btn span {
		height: min(4px, calc(calc(4/750) * 100vw));
	}
}

.drawer-btn span::before,
.drawer-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: min(2px, calc(calc(2/750) * 100vw));
	background-color: #000;
	transition: all ease 0.3s;
}
@media screen and (max-width: 750px) {
	.drawer-btn span::before,
	.drawer-btn span::after {
		height: 2px;
	}
}

.drawer-btn span::before {
	top: max(-15px, calc(-1 * (calc(15/750) * 100vw)));
}
@media screen and (max-width: 750px) {
	.drawer-btn span::before {
		top: max(-22px, calc(-1 * (calc(22/750) * 100vw)));
	}
}

.drawer-btn span::after {
	bottom: max(-15px, calc(-1 * (calc(15/750) * 100vw)));
}
@media screen and (max-width: 750px) {
	.drawer-btn span::after {
		bottom: max(-22px, calc(-1 * (calc(22/750) * 100vw)));
	}
}

.drawer-btn.active span {
	background-color: transparent;
}

.drawer-btn.active span::before {
	top: 0;
	transform: rotate(45deg);
}

.drawer-btn.active span::after {
	bottom: 0;
	transform: rotate(-45deg);
}

/* ハンバーガーメニュー中身 */
.c_header__nav {
	font-family: var(--font-yu-gothic);
	display: none;
	position: fixed;
	top: min(90px, calc(calc(90/750) * 100vw));
	left: 100%;
	bottom: 0;
	width: 100%;
	min-height: 100vh;
	padding: 0;
	background-color: #fff;
	overflow: auto;
	z-index: 60;
}

.c_header__nav-list {
	display: flex;
}

.c_header__nav-list a {
	font-size: clamp(15px, 1vw, 18px);
	min-height: 30px;
	display: flex;
	align-items: center;
	padding: 0 clamp(20px, 3vw, 60px);
	position: relative;
	transition: .3s;
	letter-spacing: 0;
}

.c_header__nav-list a:hover {
	color: #289ef6;
	text-decoration: underline;
}
.is-drawer_open .c_header__nav {
	display: block;
	left: 0;
}

.c_header__nav-inner {
	margin: clamp(40px, 11vw, 80px) auto 100px;
	max-width: 1000px;
}

.c_header__nav-list {
	max-width: 85%;
	margin: 0 auto;
	justify-content: center;
	flex-direction: column;
	margin-bottom: clamp(30px, 8vw, 60px);
}

.c_header__nav-list a {
	font-size: 20px;
	color: #3D3D3D;
	padding: 0 15px 0 clamp(40px, 8vw, 65px);
	border: none;
	border-bottom: 1px solid #A5A5A5;
	padding-bottom: 20px;
	background: url(../img/header/menu_tcb_icon.png) no-repeat;
	background-size: 40px;
	position: relative;
}

.c_header__nav-list li:not(:last-child) a {
	margin-bottom: clamp(15px, 2vw, 20px);
}

.c_header__nav-list li a:hover {
	text-decoration: none;
}

.c_header__nav-list li a::before {
	content: '';
	background: url(../img/header/icn_arrow.png) no-repeat;
	background-size: 100%;
	background-position: center;
	width: 33px;
	height: 14px;
	position: absolute;
	top: calc(50% - 22px);
	right: 0;
	display: inline-block;
}

@media screen and (max-width: 767px) {
	.c_header__nav-list a {
		background-position: 0 4px;
	}
	.c_header__nav-list li:not(:last-child) a {
		margin-bottom: 12px;
	}
	.c_header__nav-list a {
		font-size: 16px;
		padding: 0 12px 0 40px;
		padding-bottom: 10px;
		background-size: 26px;
	}
	.c_header__nav-list li a::before {
		width: 23px;
		top: calc(50% - 17px);
	}
}
