@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
main {
	display: block;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}
a {
	background-color: transparent;
}
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}
b,
strong {
	font-weight: bolder;
}
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}
img {
	border-style: none;
}
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}
button,
input {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}
fieldset {
	padding: 0.35em 0.75em 0.625em;
}
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
details {
	display: block;
}
summary {
	display: list-item;
}
template {
	display: none;
}
[hidden] {
	display: none;
}
/* --------------------------------------------------
	全体
-------------------------------------------------- */
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
    line-height: 1.5;
    background-color: #111;
    font-family: "Noto Sans JP","游ゴシック Medium",YuGothic,YuGothicM,"-apple-system,BlinkMacSystemFont","Helvetica Neue","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
    font-size: 16px;
    color: #FFF;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
table {
	border-collapse: collapse;
}
p,dl,dd {
    margin: 0;
}
img {
	max-width: 100%;
	height: auto;
}
/* --------------------------------------------------
	ヘッダー
-------------------------------------------------- */
.g-header_body {
	position: relative;
	z-index: 100;
}
.g-header_inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
    margin: 0 auto;
	padding: 65px 20px;
    width: 1320px;
    max-width: 100%;
}
.g-header_logo_link {
	display: inline-block;
}
.g-header_logo_img {
	vertical-align: middle;
}
.g-header_logo_txt {
	padding-top: 20px;
	font-size: 12px;
	color: #BBB;
}
.g-header_logo_txt a {
	color: #BBB;
}
.g-header_logo_txt a:hover {
	text-decoration: none;
}
.g-header_list {
	display: flex;
	padding-top: 10px;
}
.g-header_item {
	position: relative;
	padding: 0 16px;
}
.g-header_item:before {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	width: 1px;
	height: 24px;
	background-color: #d10000;
	transform: translate(0,-50%) rotate(30deg);
}
.g-header_item:first-child:before {
	display: none;
}
.g-header_item a {
	position: relative;
	display: inline-block;
	padding: 3px 0;
	text-decoration: none;
	color: #FFF;
}
.g-header_item a:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #FFF;
	transition: .15s linear;
}
.g-header_item a:hover:after {
	width: 100%;
}
/*---------- 画面固定時 ----------*/
.g-header.is-fixed .g-header_body {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #111;
}
.g-header.is-fixed .g-header_inner {
	padding: 20px;
	animation: gHeaderFade .3s;
}
@keyframes gHeaderFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*---------- スマホ表示用 ----------*/
.g-header_trigger,
.g-header_menu,
.g-header_menu-bg {
	display: none;
}
/* --------------------------------------------------
	フッター
-------------------------------------------------- */
.g-footer {
    margin: 0 auto;
	padding: 100px 0;
    width: 1320px;
    max-width: 100%;
}
.g-footer_txt {
	margin-bottom: 10px;
	font-size: 14px;
	text-align: center;
	color: #888;
}
.g-footer_more {
	font-size: 14px;
	text-align: center;
}
.g-footer_more a {
	display: inline-block;
	padding: 0 20px;
	color: #888;
}
.g-footer_more a:hover {
	text-decoration: none;
}
/* --------------------------------------------------
	見出し
-------------------------------------------------- */
.section-ttl {
	margin-bottom: 58px;
	line-height: 1.2;
	font-size: 100px;
	font-weight: normal;
}
.section-ttl_txt {
	display: block;
	padding-left: 105px;
}
.section-ttl_icon {
	position: relative;
	display: inline-block;
}
.section-ttl_icon:before {
	position: absolute;
	content: "";
	top: 50%;
	left: 24px;
	margin: -2px 0 0 -105px;
	width: 28px;
	height: 86px;
	background-color: #d10000;
	border-radius: 15px 0 15px 0;
	transform: translate(0,-50%) rotate(30deg) skewY(-30deg);
}
.section-ttl_sub {
	position: relative;
	display: block;
	padding-left: 45px;
	font-size: 16px;
}
.section-ttl_sub:before {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	width: 40px;
	height: 1px;
	background-color: #d10000;
	transform: translate(0,-50%);
}
.js-flash.is-active {
	animation: flashGlow 2s ease-in-out 1;
}
@keyframes flashGlow {
	0% {
		text-shadow: 0 0 0 transparent;
	}
	50% {
		text-shadow: 0 0 10px rgba(255,255,255,.6), 0 0 30px rgba(255,255,255,.6);
	}
	100% {
		text-shadow: 0 0 0px transparent;
	}
}
/* --------------------------------------------------
	画面幅別
-------------------------------------------------- */
@media screen and (max-width: 980px) {
	/*---------- 全体 ----------*/
	.pc-display {
		display: none;
	}
	/*---------- ヘッダー ----------*/
	.g-header_body {
		background-color: #111;
		box-shadow: 0 3px 6px rgba(255,255,255,.7);
	}
	.g-header_inner {
		position: relative;
		align-items: center;
		padding: 0 50px 0 20px;
		height: 50px;
	}
	.g-header_logo_img {
		width: auto;
		max-height: 22px;
	}
	.g-header_logo_txt {
		position: absolute;
		top: 100%;
		left: 0;
		padding: 10px 20px 0;
		width: 100%;
		font-size: 9px;
		color: #FFF;
	}
	.g-header_logo_txt a {
		color: #FFF;
	}
	.g-header.is-fixed .g-header_logo_txt {
		display: none;
	}
	.g-header_list {
		display: none;
	}
	.g-header_trigger {
		display: block;
		position: absolute;
		z-index: 5;
		top: 0;
		right: 0;
		padding: 0;
		width: 50px;
		height: 50px;
		background-color: transparent;
		border: none;
	}
	.g-header_trigger_icon {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 16px;
		height: 2px;
		background-color: #FFF;
		border-radius: 1px;
		transform: translate(-50%,-50%);
		transition: .2s ease-in-out;
	}
	.g-header_trigger_icon:before {
		position: absolute;
		content: "";
		top: -7px;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #FFF;
		border-radius: 1px;
		transition: .2s ease-in-out;
	}
	.g-header_trigger_icon:after {
		position: absolute;
		content: "";
		bottom: -8px;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #FFF;
		border-radius: 1px;
		transition: .2s ease-in-out;
	}
	.g-header_trigger.is-active .g-header_trigger_icon {
		background-color: transparent;
	}
	.g-header_trigger.is-active .g-header_trigger_icon:before {
		top: 50%;
		left: 50%;
		width: 22px;
		transform: translate(-50%,-50%) rotate(-45deg);
	}
	.g-header_trigger.is-active .g-header_trigger_icon:after {
		top: 50%;
		left: 50%;
		width: 22px;
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.g-header_menu {
		display: block;
		position: fixed;
		z-index: 4;
		top: 0;
		right: 0;
		width: 80vw;
		height: 100vh;
		background-color: #111;
		transition: .2s ease-in-out;
		overflow: scroll;
		visibility: hidden;
		opacity: 0;
	}
	.g-header_trigger.is-active ~ .g-header_menu {
		visibility: visible;
		opacity: 1;
	}
	.g-header_menu_body {
		padding: 70px 20px 50px;
	}
	.g-header_menu_item {
		margin-bottom: 20px;
	}
	.g-header_menu_item a {
		position: relative;
		display: inline-block;
		padding-left: 45px;
		text-decoration: none;
		color: #FFF;
	}
	.g-header_menu_item a:before {
		position: absolute;
		content: "";
		top: 50%;
		left: 0;
		width: 40px;
		height: 1px;
		background-color: #d10000;
		transform: translate(0, -50%);
	}
	.g-header_trigger.is-active ~ .g-header_menu-bg {
		display: block;
		position: fixed;
		z-index: 3;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(32,32,32,.9);
	}
	/*---------- 見出し ----------*/
	.section-ttl {
		margin-bottom: 48px;
		font-size: 50px;
	}
	.section-ttl_txt {
		margin-bottom: 7px;
		padding-left: 50px;
	}
	.section-ttl_icon:before {
		left: 13px;
		margin: -1px 0 0 -50px;
		width: 15px;
		height: 46px;
		border-radius: 8px 0 8px 0;
	}
}
@media screen and (max-width: 375px) {
	/*---------- 見出し ----------*/
	.section-ttl {
		font-size: 40px;
	}
}