@charset "UTF-8";
/* CSS Document */
/* Fonts Settings */
@import url("https://use.typekit.net/clz7lte.css");
@font-face {
	font-family: 'hiragino_w4';
	src: url('../fonts/hiragino_w4.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'hiragino_w6';
	src: url('../fonts/hiragino_w6.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'hiragino_w7';
	src: url('../fonts/hiragino_w7.woff') format('woff');
	font-display: swap;
}
:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-navy: #171c61;
	--color-blue: #108fbc;
	--color-orange: #efaf3a;
	--color-green: #46a236;
	--color-yellow: #ffec00;
	--color-gd1: #6ec5ce;
	--color-gd2: #2f9cd8;
	--color-gray: #f7f7f7;
}
html {
	height: 100%;
	font-size: 100%;
	line-height: 1.8;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	width: 100%;
	min-height:100%;
	font-size: 16px;
	line-height: 1.8;
	font-family: "hiragino_w6";
	font-style: normal;
	color: var(--color-black);
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow-x: hidden;
	/* ノッチ付きデバイスへの対応 */
	padding-top: env(safe-area-inset-top);
	padding-right: env(safe-area-inset-right);
	padding-bottom: env(safe-area-inset-bottom);
	padding-left: env(safe-area-inset-left);
}
a {
	text-decoration: none;
	color: var(--color-black);
}
::selection {
	background: var(--color-navy);
	color: var(--color-white);
}
.en {
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	font-style: normal;
}
/* breadcrumb */
nav.breadcrumb {
	background-color: var(--color-gray);
	padding: 12px 0;
}
nav.breadcrumb div.inner {
	width: 100%;
	max-width: 1280px;
	padding: 0 60px;
	margin: 0 auto;
}
nav.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	list-style: none;
}
nav.breadcrumb ol li {
	font-size: 13px;
	line-height: 1;
	color: var(--color-navy);
	font-family: 'hiragino_w4';
}
nav.breadcrumb ol li + li::before {
	content: ">";
	display: inline-block;
	margin: 0 8px;
	color: var(--color-navy);
	opacity: 0.5;
}
nav.breadcrumb ol li a {
	color: var(--color-navy);
	position: relative;
	padding: 0 0 2px 0;
}
nav.breadcrumb ol li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-navy);
	transition: width 0.3s ease;
}
nav.breadcrumb ol li a:hover::after {
	width: 0;
}
@media only screen and (max-width: 1279px) {
	nav.breadcrumb div.inner {
		padding: 0 30px;
	}
}
@media only screen and (max-width: 767px) {
	nav.breadcrumb {
		padding: 10px 0;
	}
	nav.breadcrumb div.inner {
		padding: 0 15px;
	}
	nav.breadcrumb ol li {
		font-size: 11px;
	}
	nav.breadcrumb ol li + li::before {
		margin: 0 6px;
	}
}
/* modal */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.6);
	justify-content: center;
	align-items: center;
}
.modal-overlay.active {
	display: flex;
}
.modal-dialog {
	background: var(--color-white);
	border-radius: 12px;
	padding: 40px 32px 32px;
	max-width: 480px;
	width: calc(100% - 40px);
	text-align: center;
}
.modal-message {
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-black);
}
.modal-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 28px;
}
.modal-btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 50px;
	font-family: 'hiragino_w6';
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	transition: opacity 0.3s ease;
}
.modal-btn:hover {
	opacity: 0.7;
}
.modal-btn--cancel {
	background: none;
	border: 2px solid var(--color-navy);
	color: var(--color-navy);
}
.modal-btn--proceed {
	background: var(--color-navy);
	border: 2px solid var(--color-navy);
	color: var(--color-white);
}
/* flex */
.flex {
	display: flex;
	width: 100%;
}