@charset "UTF-8";
/* CSS Document */
/* Fonts Settings */
@font-face {
	font-family: 'shingo-r';
	src: url('../fonts/shingo-r.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'shingo-db';
	src: url('../fonts/shingo-db.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'shingo-b';
	src: url('../fonts/shingo-b.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'helvetica';
	src: url('../fonts/helvetica.woff') format('woff');
	font-display: swap;
}
:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-gray: #eeeeee;
	--color-navy: #1c4b83;
	--color-orange: #f8c72a;
	--color-red: #e73d41;
	--color-blue1: #00ace6;
	--color-blue2: #0067b2;
	--color-yellow1: #fbe14c;
	--color-yellow2: #df9f07;
	--color-border-light: #cccccc;
}
html {
	height: 100%;
	font-size: 100%;
	line-height: 1.8;
	scroll-behavior: smooth;
	overflow-x: hidden;
	overflow-x: clip;
}
body {
	width: 100%;
	max-width: 100%;
	min-height:100%;
	font-size: 16px;
	line-height: 1.8;
	font-family: "shingo-r";
	font-style: normal;
	color: var(--color-navy);
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow-x: hidden;
	overflow-x: clip;
	position: relative;
	/* ノッチ付きデバイスへの対応 */
	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);
}
main {
	overflow-x: hidden;
	overflow-x: clip;
}
/* 全ページ共通: 横方向の漏れを各セクションで確実に閉じ込める */
main > section,
main > nav,
header,
footer {
	overflow-x: hidden;
	overflow-x: clip;
}
a {
	text-decoration: none;
	color: var(--color-navy);
}
::selection {
	background: var(--color-red);
	color: var(--color-white);
}
.en {
	font-family: "helvetica";
}
body.menu_open {
	overflow: hidden;
}
/* flex */
.skip-link {
	position: absolute;
	top: -100%;
	left: 0;
	z-index: 10000;
	padding: 8px 16px;
	background: var(--color-navy);
	color: var(--color-white);
	font-size: 14px;
}
.skip-link:focus {
	top: 0;
	color: var(--color-white);
}
.flex {
	display: flex;
	width: 100%;
}
/* Breadcrumb */
nav.breadcrumb {
	background-color: var(--color-gray);
}
nav.breadcrumb div.inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 12px 20px;
}
nav.breadcrumb div.inner ol {
	display: flex;
	flex-wrap: nowrap;
	list-style: none;
	gap: 0;
	font-size: 13px;
	line-height: 1;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
nav.breadcrumb div.inner ol::-webkit-scrollbar {
	display: none;
}
nav.breadcrumb div.inner ol li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	white-space: nowrap;
}
nav.breadcrumb div.inner ol li + li::before {
	content: ">";
	margin: 0 8px;
	color: var(--color-navy);
}
nav.breadcrumb div.inner ol li a {
	display: inline-flex;
	align-items: center;
	text-decoration: underline;
}
nav.breadcrumb div.inner ol li a:hover {
	text-decoration: none;
}
nav.breadcrumb div.inner ol li a .icon-home {
	margin-right: 4px;
}
nav.breadcrumb div.inner ol li[aria-current="page"] {
	color: var(--color-navy);
}
@media only screen and (min-width: 921px) and (max-width: 1400px) {
	nav.breadcrumb div.inner {
		padding-left: 80px;
	}
}
@media screen and (max-width: 920px) {
	nav.breadcrumb div.inner {
		padding: 10px 16px;
	}
	nav.breadcrumb div.inner ol {
		font-size: 12px;
	}
}
@media screen and (max-width: 767px) {
	nav.breadcrumb div.inner {
		padding: 8px 12px;
	}
	nav.breadcrumb div.inner ol {
		font-size: 11px;
	}
	nav.breadcrumb div.inner ol li + li::before {
		margin: 0 4px;
	}
}

/* No posts (empty state) */
p.no-posts {
	width: 100%;
	margin: 0;
	padding: 40px 20px;
	text-align: center;
	font-size: 15px;
	line-height: 1.6;
	color: #666666;
	background-color: var(--color-white);
	border: 1px dashed #cccccc;
	border-radius: 5px;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	p.no-posts {
		padding: 28px 16px;
		font-size: 14px;
	}
}