@charset "UTF-8";

/*
	base
=========================================*/
html {
	background: #fff;
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}
html:target {
	overflow: hidden;
}
body {
	height: auto;
	letter-spacing: normal;
	text-align: justify;
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: 400;
	color: #000;
}
a {
	text-decoration: none;
	color: inherit;
	cursor: inherit;
}
a[href] {
	text-decoration: underline;
	cursor: pointer;
	color: #2C71BA;
}
strong {
	font-weight: 500;
}
em {
	font-style: normal;
	font-weight: bold;
}
img {
	max-width: 100%;
	max-height: 100%;
}
small {
	font-size: 0.75em;
}
hr {
	margin: 2em 160px;
	border: none;
	border-top: 1px dashed #bbb;
}
@media screen and (max-width: 1200px) {
	html:not(:target) body {
		font-size: 13px;
	}
}
@media screen and (max-width: 1000px) {
	html {
		scroll-padding-top: 50px;
	}
	html:not(:target) body {
		font-size: 10px;
	}
}

/*
	form
=========================================*/
select,
textarea,
input {
	background: #fff;
	box-sizing: border-box;
	max-width: 100%;
	height: 40px;
	padding: 0 0.857em;
	border: 1px solid #808080;
	border-radius: 0;
	font: inherit;
	color: #808080;
}
select {
	background: url(../img/select.png) 100% 50% no-repeat #fff;
	appearance: none;
	padding-right: calc(0.857em + 13px);
}
select::-ms-expand {
	display: none;
}
input[type="radio"],
input[type="checkbox"] {
	background: none;
	box-sizing: border-box;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	border-radius: 0;
	font: inherit;
}
textarea {
	width: 100%;
	height: auto;
	min-height: 7em;
	padding: 0.857em;
	line-height: 1.25;
}
textarea[readonly],
input[readonly] {
	border: none;
	outline: none;
}
button {
	cursor: pointer;
}

/*
	x-align
=========================================*/
.x-left {
	text-align: left !important;
}
.x-center {
	text-align: center !important;
}
.x-right {
	text-align: right !important;
}
.x-top {
	vertical-align: top !important;
}
.x-middle {
	vertical-align: middle !important;
}
.x-bottom {
	vertical-align: bottom !important;
}
.x-baseline {
	vertical-align: baseline !important;
}

/*
	x-text 
=========================================*/
.x-underline {
	text-decoration: underline;
}
.x-small {
	font-size: 0.8em;
}

/*
	x-color
=========================================*/
.x-alert {
	font-weight: bold !important;
	color: #f33 !important;
}

/*
	x-display
=========================================*/
.x-hide {
	display: none !important;
}
@media screen and (max-width: 1000px) {
	.x-pc {
		display: none !important;
	}
}
@media screen and (min-width: 1001px) {
	.x-sp {
		display: none !important;
	}
}

/*
	.area-container
=========================================*/
.area-container {
	padding-top: 90px;
}
.area-container .heading {
	padding: 6px 0 7px;
	border-width: 2px;
	border-style: solid none;
	border-color: #2C71BA;
	text-align: center;
	font-size: 2.125em;
}
@media screen and (max-width: 1000px) {
	.area-container {
		padding-top: 50px;
	}
}

/*
	.area-wrap
=========================================*/
.area-wrap {
	max-width: 1200px;
	margin: auto;
	padding: 0 30px;
}
@media screen and (max-width: 1000px) {
	.area-wrap {
		padding: 0 20px;
	}
}

/*
	.area-header
=========================================*/
.area-header {
	background: #fff;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.area-header .area-wrap {
	display: flex;
	align-items: center;
}
.area-header .area-wrap::before {
	content: "";
	display: block;
	height: 90px;
}
.area-header .logo {
	display: flex;
	align-items: center;
	font-weight: 800;
	font-size: 1.125em;
}
.area-header .logo > .wrap {
	margin-left: 1em;
}
.area-header .link {
	display: flex;
	align-items: center;
	margin-left: auto;
	font-weight: 500;
	font-size: 1.125em;
}
.area-header .link li {
	margin-left: 1em;
}
.area-header .link li a {
	text-decoration: none;
}
@media screen and (max-width: 1000px) {
	.area-header .area-wrap {
		flex-wrap: wrap;
	}
	.area-header .area-wrap::before {
		height: 38px;
	}
	.area-header .logo img {
		width: 100px;
	}
	.area-header .link {
		flex-grow: 1;
		justify-content: space-between;
		padding-bottom: 0.25em;
		font-size: 1em;
	}
	.area-header .link li {
		margin-left: 0.5em;
	}
	.area-header .link li:first-child {
		margin-left: 0;
	}
	
}

/*
	.area-visual
=========================================*/
@keyframes area-visual {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(0%);
	}
}
@keyframes area-visual-passive {}
.area-visual {
	width: 100%;
	padding-bottom: calc(567 / 1440 * 100%);
	overflow: hidden;
}
.area-visual figure {
	display: contents;
}
.area-visual img {
	display: block;
	width: 100%;
}
.area-visual ul li {
	display: block;
	width: 100%;
	position: absolute;
}
.area-visual ul li:first-child {
	z-index: 1;
}
.area-visual ul li.active {
	z-index: 3;
	transform: translateX(100%);
	animation-name: area-visual;
	animation-duration: 1s;
	animation-delay: 3s;
}
.area-visual ul li.passive {
	z-index: 2;
	animation-name: area-visual-passive;
	animation-duration: 1s;
	animation-delay: 3s;
}
.area-visual .anchor {
	width: 213px;
	margin: auto 0.5em 0.5em auto;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 5;
	transform: scale(1);
	transition: none;
}
.area-visual .anchor a {
	display: block;
	position: relative;
}
.area-visual .anchor a svg {
	width: 25%;
	height: 25%;
	position: absolute;
	top: 15.5%;
	left: 37.5%;
}
@media screen and (max-width: 1000px) {
	.area-visual .anchor {
		width: 80px;
	}
}

/*
	.area-intro
=========================================*/
.area-intro {
	padding: 3em 0 7.5em;
	line-height: 1.6;
}
.area-intro h2 {
	margin-top: 1.8em;
	font-weight: 500;
	font-size: 2em;
}
.area-intro p {
	text-indent: 1em;
	font-size: 1.5em;
}
.area-intro strong {
	font-weight: inherit;
	color: #D51D28;
}

/*
	.area-message
=========================================*/
.area-message {
	background: #2C71BA;
	padding: 4.375em 0 7.5em;
	color: #fff;
}
.area-message .heading {
	border-color: #fff;
}
.area-message h3 {
	max-width: 840px;
	margin: 3.478em auto 1.4375em;
	padding-bottom: 0.25em;
	border-bottom: 1px solid;
	font-weight: 500; 
	font-size: 1.4375em;
}
.area-message p {
	max-width: 840px;
	margin: 0 auto;
	text-indent: 1em;
	font-size: 1.375em;
	line-height: 1.818;
}
.area-message .signature {
	max-width: 840px;
	margin: 3.478em auto 1.4375em;
	text-align: right;
}
.area-message .signature p {
	margin: 1em 0 0;
}
@media screen and (max-width: 1000px) {
	.area-message .signature img {
		zoom: 0.5;
	}
}

/*
	.area-network
=========================================*/
.area-network {
	background: #f5f5f5;
	padding: 3.5em 0 1em;
}
.area-network .heading {
	background: #f5f5f5;
	margin-bottom: 2.353em;
}
.area-network figure {
	position: relative;
}
.area-network figure .mapping {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.area-network figure .mapping a {
	display: block;
	position: absolute;
}

/*
	.area-mission
=========================================*/
.area-mission {
	padding: 3.5em 0 5em;
}
.area-mission dl {
	display: flex;
	align-items: center;
	max-width: 800px;
	margin: 3.25em auto 0;
}
.area-mission dl + dl {
	margin-top: 1.875em;
}
.area-mission dl dt {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 8.642em;
	border-radius: 0.357em;
	font-size: 1.75em;
	line-height: 1.428;
	color: #fff;
}
.area-mission dl:nth-of-type(5n + 1) dt {
	background: #D51D28;
}
.area-mission dl:nth-of-type(5n + 2) dt {
	background: #E7701A;
}
.area-mission dl:nth-of-type(5n + 3) dt {
	background: #3AAB30;
}
.area-mission dl:nth-of-type(5n + 4) dt {
	background: #1F99DD;
}
.area-mission dl:nth-of-type(5n + 5) dt {
	background: #104C8B;
}
.area-mission dl dt::before {
	content: "";
	display: block;
	height: 7em;
}
.area-mission dl dd {
	margin-left: 1.625em;
}
.area-mission dl dd ul li {
	display: flex;
	align-items: center;
	font-size: 1.4375em;
	line-height: 1.565;
}
.area-mission dl dd ul li + li {
	margin-top: 1em;
}
.area-mission dl dd ul li::before {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 0;
	height: 0;
	margin-right: 0.913em;
	border-style: solid none solid solid;
	border-width: 0.478em 0.782em;
	border-color: transparent transparent transparent #c4c4c4;
}
@media screen and (max-width: 1000px) {
	.area-mission dl {
		display: block;
	}
	.area-mission dl dt {
		width: auto;
		margin-bottom: 0.5em;
	}
	.area-mission dl dt::before {
		content: "";
		display: block;
		height: 2.15em;
	}
}

/*
	.area-activity
=========================================*/
.area-activity {
	background: #2C71BA;
	padding: 3.375em 0 1em;
	color: #fff;
}
.area-activity .heading {
	border-color: #fff;
}
.area-activity ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: 2.375em;
}
.area-activity ul li {
	flex-grow: 1;
	margin-bottom: 4.625em;
}
.area-activity ul li h3 {
	text-align: left;
	font-size: 1.75em;
	line-height: 1.428;
}
.area-activity ul li h3 .icon {
	display: inline-flex;
	align-items: center;
	margin: 0.25em 0.25em 0.25em 0;
	padding: 0 1em;
	border-radius: 0.5em;
	vertical-align: middle;
	font-size: 0.714em;
}
.area-activity ul li h3 .icon--1 {
	background: #D51D28;
}
.area-activity ul li h3 .icon--2 {
	background: #E7701A;
}
.area-activity ul li h3 .icon--3 {
	background: #3AAB30;
}
.area-activity ul li h3 .icon--4 {
	background: #1F99DD;
}
.area-activity ul li h3 .icon--5 {
	background: #104C8B;
}
.area-activity ul li h3 .icon::before {
	content: "";
	display: block;
	height: 2.15em;
}
.area-activity ul li p {
	margin-top: 1em;
	font-size: 1.25em;
	line-height: 1.3;
}
.area-activity ul li .images {
	display: flex;
	justify-content: space-between;
	margin-top: 1em;
}
.area-activity ul li .images figure + figure {
	margin-left: 1em;
}
.area-activity ul li .images figure figcaption {
	margin-top: 0.625em;
	font-size: 1.125em;
	line-height: 1.333;
}
.area-activity ul li .images.grid {
	--column: 4;
	display: grid;
	grid-template-columns: repeat(var(--column), auto);
	gap: 0.75em 1em;
}
.area-activity ul li .images.grid figure {
	display: contents;
}
.area-activity ul li .images.grid figure img {
	grid-row: 1;
	max-width: none;
}
.area-activity ul li .images.grid figure figcaption {
	grid-row: 2;
	width: fit-content;
	margin: 0;
}
.area-activity ul li:nth-of-type(1) {
	flex-grow: 0;
	width: 560px;
}
.area-activity ul li:nth-of-type(2) {
	flex-grow: 0;
	width: 560px;
}
.area-activity ul li:nth-of-type(6) .images {
	justify-content: flex-start;
}
@media screen and (max-width: 1000px) {
	.area-activity ul li .images.grid figure img {
		max-width: 100%;
		align-self: stretch;
		object-fit: cover;
	}
}

/*
	.area-PRmovie
=========================================*/
.area-PRmovie {
	padding: 3.5em 0 5em;
}
.area-PRmovie figure {
	padding-top: calc(315 / 560 * 100%);
	position: relative;
}
.area-PRmovie figure iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
	.area-footer
=========================================*/
.area-footer {
	padding: 2em 0 1em;
}
@media screen and (max-width: 1000px) {
	.area-footer .logo img {
		width: 100px;
	}
}

/*
	.area-overlay
=========================================*/
.area-overlay {
	display: none;
}
html:target .area-overlay {
	background: #000c;
	display: grid;
	align-items: center;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.area-overlay .close {
	margin-bottom: 0.25em;
	text-align: right;
	font-size: 2em;
	color: #fff;
}
.area-overlay .close a {
	text-decoration: none;
	font-weight: bold;
	color: inherit;
}

/*
	
=========================================*/


 