@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, address, img, strong, sub, sup, b, i, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, figure, footer, header, hgroup, nav, section, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
html {
	overflow-y: scroll;
}
img {
	border: none;
	vertical-align: top;
}
table {
	border-collapse: collapse;	
}

body {
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
}
body.device_tablet {
	min-width: 1200px;
}

@media (max-width: 768px) {
body,
body.device_tablet  {
	min-width: initial;
}
}

.contents_area.open {
    position: fixed;
    width: 100%;
}

header.desktop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
.header_langselect {
	padding: 10px 40px 10px 0;
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.5) 100%);
}
.header_langselect_inner {
	display: flex;
	justify-content: flex-end;
	max-width: 1200px;
	margin: 0 auto;
}
.header_langselect ul {
	display: flex;	
}
.header_langselect li {
	list-style: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
}
.header_langselect li a {
	padding: 0 10px;
	text-decoration: none;
	color: #fff;
	position: relative;
}
.header_langselect li.current a {
	color: rgba(255,255,255,0.5);
}

.header_langselect li a::after {
	content: '';
	display: block;
	width: 1px;
	height: 10px;
	position: absolute;
	top: 4px;
	right: 0;
	background: #fff;	
}
.header_langselect li:last-child a::after {
	display: none;	
}
.header_nav {
	height: 66px;
	background: #C11F24;
	margin-left: 50px;
	position: relative;
}
@media(min-width: 1300px) {
.header_nav {
	margin-left: calc(calc(calc(100vw - 1090px) * 0.5) - 70px);
}
}
.header_nav::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: -33px;
	width: 100px;
	height: 66px;
	background: #C11F24;
	transform: skewX(-45deg);
	z-index: 1;
}
.header_nav::before {
	content: '';
	display: block;
	position: absolute;
	bottom: -4px;
	height: 4px;
	background: rgb(0,0,0,0.7);
	z-index: 1;
}
.header_nav::before,
.header_nav .subnav {
	left: -66px;
	width: calc(100% + 66px);
}


.header_nav_inner {
	max-width: 1200px;
	padding-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between; 
	position: relative;
	z-index: 10;
}

.header_nav_inner h1 {
	width: 224px;
	margin-left: 10px;
}


.header_nav_inner h1 img {
	width: 100%;
	height: auto;	
}

.header_nav_inner ul {
	display: flex;
	transform: translateY(-10px);
}
.header_nav_inner ul li {
	list-style: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}
.header_nav_inner ul li a {
	display: block;
	padding: 10px 20px;
	color: #fff;
	text-decoration: none;
	position: relative;
}
.header_nav_inner ul li a::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	left: calc(50% - 2px);
	bottom: -5px;
	opacity: 0;
	transition: opacity 0.2s;
}
.header_nav_inner ul li a:hover::after,
.header_nav_inner ul li.nav_active a::after {
	opacity: 1;
}


@media(max-width: 1400px) {

.header_nav_inner ul li {
	font-size: 15px;
}
.header_nav_inner ul li a {
	padding: 10px 15px;
}
}
@media(max-width: 1000px) {
.header_nav_inner ul li {
	font-size: 14px;
}
.header_nav_inner ul li a {
	padding: 10px;
}
}




.header_nav .subnav {
	position: absolute;
	top: 70px;
	background: #fff;
	min-height: 230px;
	box-sizing: border-box;
	padding: 50px 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	display: none;
}
.subnav_inner {
	display: flex;
	align-items: center;
	max-width: 1200px;
}
.subnav_hdr {
	width: 23.3%;
	padding-left: 50px;
	box-sizing: border-box;
}
.subnav_hdr h2 {
	font-size: 22px;	
}
.subnav_hdr h2 a {
	color: #333;
	text-decoration: none;
	position: relative;	
}
.subnav_hdr h2 a:hover {
	color: #E30C14;	
}

.subnav_hdr h2 a::before,
.subnav_hdr h2 a::after {
	content: '';
	display: block;
	position: absolute;
}
.subnav_hdr h2 a::before {
	height: 2px;
	width: 30px;
	background: #C11F24;
	left: -50px;
	top: 50%;
	transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.subnav_hdr h2 a:hover::before {
	width: 40px;
	background: #E30C14;	
}

.subnav_hdr h2 a::after {
	height: 10px;
	width: 10px;
	border-top: 2px solid #C11F24;
	border-right: 2px solid #C11F24;
	right: -23px;
	top: calc(50% - 4px);
	transform: rotate(45deg);
	transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.subnav_hdr h2 a:hover::after {
	right: -43px;
	border-top: 2px solid #E30C14;
	border-right: 2px solid #E30C14;
	
}



.subnav_cont {
	width: 76.7%;
	display: flex;
}
.subnav_tile {
	width: calc(20% - 15px);
	margin-right: 30px;
	font-size: 14px;
	cursor: pointer;
}
.subnav_cont .subnav_tile:last-child {
	margin-right: 0;	
}

.subnav_tile_thumb img {
	width: 100%;
	height: auto;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.subnav_tile:hover .subnav_tile_thumb img {
	transform: scale(1.15);
}

.subnav_tile_thumb {
	margin: 0 0 12px;
	overflow: hidden;	
}
.subnav_tile_caption a {
	color: #333;
	text-decoration: none;
	display: block;
	position: relative;	
}
.subnav_tile_caption a::after {
	content: '';
	display: block;
	height: 7px;
	width: 7px;
	border-top: 2px solid #E30C14;
	border-right: 2px solid #E30C14;
	position: absolute;
	right: 15px;
	top: calc(50% - 4px);
	transform: rotate(45deg);
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	opacity: 0;
}
.subnav_tile:hover .subnav_tile_caption a::after {
	right: 2px;
	opacity: 1;
}
.subnav_tile:hover .subnav_tile_caption a {
	color: #E30C14;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.3);
	z-index: 15;
	display: none;	
}



.anchor {
	position: relative;
	padding-top: 150px;
	margin-top: -150px;
	z-index: -1;
}
