@charset "UTF-8";

/*--------------------------------
reset
--------------------------------*/
html, body, div, p, img, iframe, a, span, blockquote, q, address, cite,
pre, code, em, small, strong, b, i,
header, article, section, nav, figure, figcaption, hgroup, menu, aside, footer, time,
h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
table, tbody, thead, tfoot, th, tr, td,
form, fieldset, legend, label, select, input, textarea, button {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	vertical-align: baseline;
}

header, article, section, nav, figure, figcaption, hgroup, menu, aside, footer {
	display: block;
}

ul li {
	list-style-type: none;
}

a {
	text-decoration: none;
}

img {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

select, option, input:not([type=checkbox]):not([type=radio]), textarea, button {
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
}

blockquote::before, blockquote::after, q::before, q::after {
	content: "";
	content: none;
}

[type=submit], [type=button], [type=reset], [type=file], button {
	cursor: pointer;
}

:focus {
	outline: none;
}

/*--------------------------------
common
--------------------------------*/
body {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
	color: #333;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

a {
	color: #66f;
	text-decoration: none;
	transition: all 0.3s ease;
	-webkit-tap-highlight-color: transparent;
}
a:hover {
	color: #c00;
}

button,
[type=submit],
[type=reset] {
	transition: all 0.3s ease;
	-webkit-tap-highlight-color: transparent;
}

strong {
	color: #002662;
	font-weight: inherit;
}

.vertical-text {
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
}

.fit-img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.has-max {
	height: auto;
	max-width: 100%;
}

.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.align-item-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-end {
	justify-content: flex-end;
}

.img-wrapper {
	position: relative;
}
.img-wrapper .caption {
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}

.inline-block {
	display: inline-block;
}

.grid-wrapper {
	display: grid;
}

/*--------------------------------
layout
--------------------------------*/
.scroll-disabled {
	height: 100%;
	overflow: hidden;
}

.wrapper {
	overflow: hidden;
}

.container {
	overflow: hidden;
}
.container.has-header {
	padding-top: 180px;
}
@media (max-width: 767px) {
	.container.has-header {
		padding-top: 60px;
	}
}

.inner {
	margin: 0 auto;
	width: calc(100% - 32px);
	max-width: 1200px;
}

.inner-narrow {
	max-width: 700px;
}

.inner-wide {
	max-width: 1500px;
}

.inner-fit {
	width: 100%;
	max-width: none;
}

.inner-full {
	max-width: none;
}

.general-section {
	position: relative;
}
.general-section .inner {
	padding: 80px 0;
}
@media (max-width: 991px) {
	.general-section .inner {
		padding: 32px 0;
	}
}
.general-section .inner + .inner {
	padding-top: 0;
}
.general-section .inner.mb-0 {
	padding-bottom: 0;
}
.general-section .inner-min {
	padding: 32px 0;
}
@media (max-width: 991px) {
	.general-section .inner-min {
		padding: 16px 0;
	}
}

.general-parts {
	margin-bottom: 32px;
}

.btn-space {
	margin: 16px 0 0;
	text-align: center;
}
.btn-space.btn-space-flex {
	display: flex;
	gap: 8px;
	justify-content: center;
}

.has-gap {
	gap: 32px;
}
@media (max-width: 991px) {
	.has-gap {
		gap: 16px;
	}
}

.col-2 {
	width: 50%;
}
.has-gap > .col-2 {
	width: calc(50% - 16px);
}

.col-3 {
	width: 33.3333333333%;
}
.has-gap > .col-3 {
	width: calc(33.3333333333% - 22px);
}

.col-4 {
	width: 25%;
}
.has-gap > .col-4 {
	width: calc(25% - 24px);
}

.col-5 {
	width: 20%;
}
.has-gap > .col-5 {
	width: calc(20% - 26px);
}

@media (max-width: 991px) {
	.col-2,
	.has-gap > .col-2 {
		width: 100%;
	}
	.col-3,
	.has-gap > .col-3 {
		width: 100%;
	}
	.sp-col-2 {
		width: 50%;
	}
	.has-gap > .sp-col-2 {
		width: calc(50% - 8px);
	}
}
/*--------------------------------
component
--------------------------------*/
.primary-heading {
	margin-bottom: 0.8em;
	font-size: 3.75rem;
	font-weight: 400;
	line-height: 1.3;
}
@media (max-width: 991px) {
	.primary-heading {
		font-size: 2rem;
	}
}
.primary-heading img {
	vertical-align: baseline;
}

.secondary-heading {
	margin-bottom: 0.8em;
	font-size: 2.5rem;
	line-height: 1.3;
}
@media (max-width: 991px) {
	.secondary-heading {
		font-size: 1.375rem;
	}
}

.tertiary-heading {
	margin-bottom: 0.8em;
	font-size: 1.875rem;
	font-weight: 400;
	line-height: 1.3;
}
@media (max-width: 991px) {
	.tertiary-heading {
		font-size: 1.125rem;
	}
}

.page-title {
	padding: 0 0 32px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
}
@media (max-width: 991px) {
	.page-title {
		font-size: 1rem;
	}
}

.primary-lead {
	display: block;
	font-size: 1.625rem;
	font-weight: 400;
}
@media (max-width: 991px) {
	.primary-lead {
		font-size: 0.75rem;
	}
}

.lead {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5;
}
@media (max-width: 991px) {
	.lead {
		font-size: 1rem;
	}
}

.note {
	margin-bottom: 1em;
	font-size: 1rem;
	line-height: 1.8;
}
.btn + .note {
	margin-top: 1em;
}
@media (max-width: 991px) {
	.note {
		font-size: 0.875rem;
	}
}

ul.note li {
	list-style: disc inside;
}

.small-note {
	font-size: 0.875rem;
}
@media (max-width: 991px) {
	.small-note {
		font-size: 0.75rem;
	}
}

.caption {
	margin: 0.4em 0;
	font-size: 0.75rem;
	line-height: 1.5;
}
@media (max-width: 767px) {
	.caption {
		font-size: 0.625rem;
	}
}

[type=text],
[type=search],
[type=password],
[type=tel],
[type=email],
[type=num],
[type=date],
select,
textarea {
	margin-right: 4px;
	padding: 12px 8px;
	max-width: 100%;
	background: #f3f3f3;
	font-size: 1.125rem;
	font-weight: inherit;
	color: inherit;
	line-height: 1.3;
	border-radius: 8px;
	vertical-align: middle;
}
[type=text]:last-child,
[type=search]:last-child,
[type=password]:last-child,
[type=tel]:last-child,
[type=email]:last-child,
[type=num]:last-child,
[type=date]:last-child,
select:last-child,
textarea:last-child {
	margin-right: 0;
}
[type=text]:focus,
[type=search]:focus,
[type=password]:focus,
[type=tel]:focus,
[type=email]:focus,
[type=num]:focus,
[type=date]:focus,
select:focus,
textarea:focus {
	background-color: #ebebeb;
}

select {
	padding: 6px 32px 6px 12px;
	background: url(images/select_arrow.png) no-repeat right 8px center #fff;
	background-size: 14px auto;
	text-indent: 0.01px;
	text-overflow: "";
	border: 1px solid #ccc;
	border-radius: 8px;
}

textarea {
	min-height: 100px;
}

.text-150 {
	width: 150px;
}

.text-180 {
	width: 180px;
}

.text-200 {
	width: 200px;
}

.text-fit {
	width: 100%;
}

.btn {
	padding: 8px 16px;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
}

.submit-btn {
	padding: 12px 24px;
	min-width: 140px;
	background: #21acea;
	position: relative;
	color: #fff;
	font-size: 1.25rem;
	border-radius: 40px;
	box-shadow: 0 0 12px rgba(158, 221, 255, 0.5) inset, 1px 3px 6px rgba(0, 147, 181, 0.27);
}
.submit-btn:hover {
	background: #50bdee;
	box-shadow: 0 0 12px rgba(196, 234, 255, 0.5) inset, 0 0 12px rgba(1, 141, 255, 0.4);
}
.submit-btn:disabled {
	opacity: 0.3;
}
.submit-btn:hover:not(:disabled) {
	color: #fff;
}
.submit-btn svg {
	margin: -20px 0 0 -20px;
	width: 40px;
	height: 40px;
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	animation: loader4 1.5s linear infinite;
	transform-origin: center center;
}
.submit-btn.is-submit svg {
	display: block;
}
.submit-btn.is-submit span {
	opacity: 0;
}

@keyframes loader4 {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}
.cancel-btn {
	padding: 12px 24px;
	background: #9a9a9a;
	position: relative;
	color: #fff;
	font-size: 1.125rem;
	border-radius: 40px;
	box-shadow: 0 0 12px rgba(244, 244, 244, 0.5) inset;
}
.cancel-btn:hover {
	background: #aeaeae;
	color: #fff;
}

.general-btn {
	margin: auto;
	padding: 0 16px;
	min-width: 300px;
	max-width: 360px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	position: relative;
	z-index: 1;
	background: #002662;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 600;
	border-radius: 8px;
	box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.16);
}
.general-btn:hover {
	opacity: 0.8;
	color: #fff;
	box-shadow: none;
}
.general-btn + .general-btn {
	margin-top: 16px;
}
.menu-btn{
	padding: 24px;
	height: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: #08589a;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.7;
	color: #fff;
	text-align: center;
	box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.16);
}
.menu-btn-2{
	background-color: #10ba98;
}
.menu-btn-3{
	background-color: #a17ee1;
}
.menu-btn-4{
	background-color: #39a6d5;
}
.menu-btn:hover{
	background-color: #384250;
	color: #fff;
}
.menu-num{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: #fff;
	color: #08589a;
	border-radius: 50%;
}
.menu-btn-2 .menu-num{
	color: #10ba98;
}
.menu-btn-3 .menu-num{
	color: #915ef1;
}
.menu-btn-4 .menu-num{
	color: #39a6d5;
}
.menu-num + span{
	flex: 1;
	text-align: center;
}
.menu-btn .note{
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
}

.video-wrapper {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	display: block;
	content: "";
}
.video-wrapper iframe,
.video-wrapper video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.loading {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	content: "";
}

.bg-light {
	background: #f3f3f3;
}

.bg-dark {
	background: #384250;
	color: #fff;
}

.bg-gray {
	background: #f2f2f2;
}

.footer-container {
	padding: 86px 12px 40px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
}

.footer {
	padding: 40px 0;
}

.copyright {
	font-size: 0.6875rem;
	font-style: normal;
	text-align: center;
}
.footer .copyright {
	color: #333;
}
.corporation-logo{
	margin: 40px auto;
	width: 180px;
	display: block;
}


/*--------------------------------
state
--------------------------------*/
.is-none {
	display: none;
}

.is-hidden {
	visibility: hidden;
}

.disabled {
	opacity: 0.1;
	cursor: default;
	pointer-events: none;
}

.unscrollable {
	height: 100%;
	overflow: hidden;
}

.coming-soon {
	opacity: 0.8;
	pointer-events: none;
}

.none {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

.is-fv {
	opacity: 0;
	animation-fill-mode: both;
}

.is-light {
	color: #fff;
}

.is-dark {
	color: #333;
}

.gray-text {
	color: #555;
}

.is-key {
	color: #002662;
}

.is-key.has-line {
	display: inline;
	background: linear-gradient(transparent 0%, transparent 70%, #f0d32e 70%, #f0d32e 100%);
}

.strong-text {
	margin: 8px 0;
	padding: 0 8px;
	background: #002662;
	color: #fff;
}

.light-text {
	color: #9a9a9a;
}

.is-shadow {
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.4);
}

.is-alert {
	color: #e00000;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.small-text {
	font-size: 70%;
}

.large-text {
	font-size: 150%;
}

.en-font {
	font-family: "Poppins", sans-serif;
}

.en-font2 {
	font-family: futura-pt, serif;
}

.has-border-top {
	border-top: 1px solid #ccc;
}

.is-bold {
	font-weight: 700;
}

.underline {
	text-decoration: underline;
}

@media (min-width: 992px) {
	.pc-none {
		display: none;
	}
}
@media (max-width: 991px) {
	.sp-none {
		display: none;
	}
}
@media (max-width: 767px) {
	.mobile-none {
		display: none;
	}
}
@media (min-width: 768px) {
	.tab-none {
		display: none;
	}
}
/* Hides from IE-mac \*/
.clearfix {
	display: block;
}

/* End hide from IE-mac */
