@import url("https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap");

/*
GROOWEB SCSS SMACSS BEM
*/

/* Tools */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

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

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

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

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

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

.display-block {
	display: block;
}

.hidden {
	display: none !important;
	visibility: hidden;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both;
}

/* show only  SP/PC
-------------------------------*/

.sp-only {
	display: none !important;
}

.sp-only-2 {
	display: none !important;
}

.pc-only {
	display: block !important;
}

.pc-only-2 {
	display: inline-block !important;
}

/* font
-------------------------------*/

.bold {
	font-weight: bold;
}

/* margin
-------------------------------*/

/* padding
-------------------------------*/

/* base */

html {
	font-size: 62.5%;
}

body {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.4rem;
	color: #000000;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

input,
textarea,
select,
button {
	font-family: inherit;
}

button {
	cursor: pointer;
	font-size: inherit;
}

/* Layout */

.l-body.is-fixed {
	position: fixed;
}

.l-main {
	padding-top: 50px;
}

.l-wrapper-lg {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 86%;
}

.l-wrapper-sm {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 86%;
}

.l-wrapper-md {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 86%;
}

/* Module */

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

html.with-featherlight { /* disable global scrolling when featherlights are visible */
	overflow: hidden;
}

.featherlight {
	display: none; /* dimensions: spanning the background from edge to edge */
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2147483647; /* z-index needs to be >= elements on the site. */ /* position: centering content */
	text-align: center; /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
	white-space: nowrap; /* styling */
	cursor: pointer;
	background: #333; /* IE8 "hack" for nested featherlights */
	background: rgba(0, 0, 0, 0);
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */

.featherlight:last-of-type {
	background: rgba(0, 0, 0, 0.8);
}

.featherlight:before { /* position: trick to center content vertically */
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.featherlight .featherlight-content { /* make content container for positioned elements (close button) */
	position: relative; /* position: centering vertical and horizontal */
	text-align: left;
	vertical-align: middle;
	display: inline-block; /* dimensions: cut off images */
	overflow: auto;
	padding: 25px 25px 0;
	border-bottom: 25px solid transparent; /* dimensions: handling large content */
	margin-left: 5%;
	margin-right: 5%;
	max-height: 95%; /* styling */
	background: #fff;
	cursor: auto; /* reset white-space wrapping */
	white-space: normal;
}

/* contains the content */

.featherlight .featherlight-inner { /* make sure its visible */
	display: block;
}

/* don't show these though */

.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
	display: none;
}

.featherlight .featherlight-close-icon { /* position: centering vertical and horizontal */
	position: absolute;
	z-index: 9999;
	top: 0;
	right: 0; /* dimensions: 25px x 25px */
	line-height: 25px;
	width: 25px; /* styling */
	cursor: pointer;
	text-align: center;
	font-family: Arial, sans-serif;
	background: #fff; /* Set the background in case it overlaps the content */
	background: rgba(255, 255, 255, 0.3);
	color: #000;
	border: none;
	padding: 0;
}

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */

.featherlight .featherlight-close-icon::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.featherlight .featherlight-image { /* styling */
	width: 100%;
}

.featherlight-iframe .featherlight-content { /* removed the border for image croping since iframe is edge to edge */
	border-bottom: 0;
	padding: 0;
	-webkit-overflow-scrolling: touch;
}

.featherlight iframe { /* styling */
	border: none;
}

.featherlight * { /* See https://github.com/noelboss/featherlight/issues/42 */
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* handling phones and small screens */

/* hide non featherlight items when printing */

.modal {
	display: none;
}

.featherlight .featherlight-close-icon {
	font-size: 36px;
	width: 40px;
	height: 40px;
	color: #02449b;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	height: 50px;
	z-index: 100;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	padding: 10px 20px 10px 49px;
	background: #ffffff;
}

.header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: calc(70% - 40px);
	max-width: 172px;
}

.header__logo a {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.header__logo a:hover {
	opacity: .7;
}

.header__logo img {
	display: block;
}

.footer {
	background: #f2f2f1;
	padding: 25px;
}

.footer__nav {
	display: none;
}

.footer__nav__item {
	position: relative;
	text-align: center;
}

.footer__nav__item a {
	display: block;
	padding: 10px 20px;
	font-size: 1.4rem;
	letter-spacing: .1em;
}

.footer__copy {
	display: block;
	font-size: 1.1rem;
	line-height: 1.5;
	letter-spacing: .1em;
	text-align: center;
}

.nav {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000000;
	z-index: 10;
	padding: 100px 50px;
	overflow: auto;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}

.is-menu-open .nav {
	opacity: 1;
	visibility: visible;
}

.nav__item {
	border-bottom: 1px solid #ffffff;
}

.nav__item:first-of-type {
	border-top: 1px solid #ffffff;
}

.nav__item a {
	position: relative;
	display: block;
	padding: 17px 0 16px;
	letter-spacing: .09em;
	font-size: 1.6rem;
	font-weight: bold;
	color: #ffffff;
}

.nav__item a::before {
	content: '';
	width: 100%;
	height: 3px;
	background: #02449b;
	position: absolute;
	bottom: -3px;
	left: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	opacity: 0;
}

.nav__item a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0px;
	width: 8px;
	height: 25px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: url(../img/arrow_nav.svg) no-repeat center center/contain;
}

.nav__item a:hover::before {
	opacity: 1;
}

.sp-sub-menu {
	margin-top: 50px;
}

.sp-sub-menu__button {
	margin-bottom: 48px;
}

.sp-sub-menu__button__item:not(:last-of-type) {
	margin-bottom: 20px;
}

.sp-sub-menu__link__item {
	text-align: center;
}

.sp-sub-menu__link__item:not(:last-of-type) {
	margin-bottom: 9px;
}

.sp-sub-menu__link__item a {
	color: #ffffff;
	line-height: 1.5;
}

.bg-blue {
	background: #02449b;
}

.bg-gray {
	background: #f2f2f1;
}

.heading-1 {
	margin-bottom: 15px;
	text-align: center;
	font-weight: bold;
	font-size: 2.8rem;
	line-height: 1.4;
}

.heading-1--white {
	color: #ffffff;
}

.heading-1--mbsm {
	margin-bottom: 3px;
}

.heading-2 {
	margin-bottom: 20px;
	font-size: 2rem;
	text-align: center;
	font-weight: bold;
}

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

.heading-3 {
	margin-bottom: 15px;
	color: #02449b;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.4;
}

.heading-4 {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 1.6rem;
	line-height: 1.875;
}

.heading-5 {
	margin-bottom: 20px;
	font-weight: bold;
	text-align: center;
	font-size: 2rem;
	line-height: 1.875;
}

.heading-6 {
	font-weight: bold;
	margin-bottom: 10px;
}

.sns-icons {
	display: none;
	position: fixed;
	z-index: 10;
	top: 50%;
	right: 22px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.sns-icons__item {
	width: 29px;
	margin-bottom: 24px;
}

.sns-icons__item a {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	display: block;
}

.sns-icons__item a:hover {
	opacity: .6;
}

.sns-icons__item a img {
	display: block;
	width: 100%;
}

.page-title {
	padding: 55px 0 60px;
	text-align: center;
	line-height: 1.5;
	font-size: 3rem;
	font-weight: bold;
}

.page-title-2 {
	position: relative;
	padding: 55px 0 60px;
	text-align: center;
	line-height: 1.5;
	font-weight: bold;
}

.page-title-2__title {
	position: relative;
	padding-top: 70px;
	font-size: 4rem;
}

.page-title-2__title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: url(../img/icon_ball.svg) no-repeat center center/contain;
	width: 72px;
	height: 60px;
	margin-left: 17px;
}

.page-title-2__text {
	font-size: 1.6rem;
}

.page-title-2__area {
	position: relative;
	top: -20px;
	font-size: 2rem;
}

.lead-1 {
	margin-bottom: 26px;
}

.lead-1--white {
	color: #ffffff;
}

.lead-1 p {
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	font-weight: bold;
	font-size: 1.2rem;
	line-height: 1.5;
	text-align: center;
}

.lead-1 a {
	color: #02449b;
	text-decoration: underline;
}

.lead-1 a:hover {
	text-decoration: none;
}

.button-1 {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto;
	padding: 12px;
	border-radius: 50px;
	font-weight: bold;
	font-size: 1.6rem;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.button-1--shadow {
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.8);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.8);
}

.button-1--blue {
	background: #02449b;
	color: #ffffff;
	border: 2px solid #02449b;
}

.button-1--blue:hover {
	background: #ffffff;
	color: #02449b;
}

.button-1--white {
	background: #ffffff;
	color: #000000;
	border: 2px solid #ffffff;
}

.button-1--white--hover-blue:hover {
	background: #02449b;
	color: #ffffff;
}

.button-1--white--hover-black:hover {
	background: #000000;
	color: #ffffff;
}

.button-1--white--hover-transparent:hover {
	color: #ffffff;
	background: transparent;
}

.button-1--black {
	background: #000000;
	color: #ffffff;
	border: 2px solid #000000;
}

.button-1--black:hover {
	background: #ffffff;
	color: #000000;
}

.button-1--frame {
	border: 1px solid #000000;
}

.button-1--frame:hover {
	background: #000000;
	color: #ffffff;
}

.button-1--white-frame {
	border: 1px solid #ffffff;
	color: #ffffff;
}

.button-1--fs-sm {
	font-size: 1.4rem;
}

.button-1--submit {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	cursor: pointer;
	background: #02449b;
	color: #ffffff;
	border: 2px solid #02449b;
}

.button-1--submit:hover {
	background: #ffffff;
	color: #02449b;
}

.button-1--submit:disabled {
	pointer-events: none;
	background: #999999;
	border-color: #999999;
}

.btn-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
}

.btn-list__item {
	width: calc(100% / 3 - 10px);
	margin-bottom: 15px;
}

.btn-list__item a {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #000000;
	color: #ffffff;
	font-weight: bold;
	padding: 8px 2px;
	border-radius: 20px;
	font-size: 1.3rem;
	border: 2px solid #000000;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.btn-list__item a:hover {
	background: #ffffff;
	color: #000000;
}

.parts-1__movie {
	margin-bottom: 30px;
}

.parts-1__movie__inner {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.parts-1__movie__inner iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.parts-1__movie__head {
	margin-top: 15px;
	line-height: 1.4;
	font-size: 1.2rem;
	text-align: center;
	font-weight: bold;
}

.parts-1__movie__head::before {
	content: '▲';
}

.parts-1__section {
	margin-bottom: 18px;
}

.parts-1__head {
	margin-bottom: 5px;
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: bold;
	color: #02449b;
	font-weight: bold;
}

.parts-1__text {
	font-size: 1.3rem;
	line-height: 1.4;
}

.parts-1__note {
	margin-top: 32px;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.45;
}

.parts-1__note strong {
	color: #e60012;
}

.accodion-1 {
	border-bottom: 1px solid #e0e0e0;
}

.accodion-1__item {
	border-top: 1px solid #e0e0e0;
}

.accodion-1__head {
	position: relative;
	padding: 12px 0;
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: bold;
	cursor: pointer;
}

.accodion-1__head::before,
.accodion-1__head::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #02449b;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.accodion-1__head::before {
	width: 13px;
	height: 1px;
}

.accodion-1__head::after {
	width: 1px;
	height: 13px;
	right: 7px;
}

.accodion-1__head.is-active::after {
	opacity: 0;
}

.accodion-1__main {
	display: none;
	padding-bottom: 30px;
}

.banner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.banner__item {
	width: calc(50% - 5px);
	margin-bottom: 10px;
}

.content-xs {
	margin-bottom: 15px;
}

.content-sm {
	margin-bottom: 30px;
}

.content-md {
	margin-bottom: 60px;
}

.content-lg {
	margin-bottom: 60px;
}

.content-p-md {
	padding: 30px 0;
	margin-bottom: 60px;
}

.text--fs16 {
	line-height: 1.875;
	font-size: 1.4rem;
}

.text--fs14 {
	font-size: 1.3rem;
	line-height: 1.875;
}

.text strong {
	font-weight: bold;
}

.text p:not(:last-of-type) {
	margin-bottom: 2em;
}

.text__b-blue {
	font-weight: bold;
	color: #02449b;
}

.text a {
	text-decoration: underline;
	color: #02449b;
}

.gray-box {
	padding: 30px 15px;
	border-radius: 5px;
	background: #f5f5f5;
}

.tab-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.tab-1__item {
	width: calc(100% / 5);
}

.tab-1__item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #02449b;
	font-weight: bold;
	border-radius: 20px;
	border: 1px solid #02449b;
	margin: 6px 2px;
	padding: 6px 2px;
	font-size: 1.2rem;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.tab-1__item a:hover {
	background: #02449b;
	color: #ffffff;
}

.tab-1__item.is-active a {
	pointer-events: none;
	background: #02449b;
	color: #ffffff;
}

.list-1 {
	border-bottom: 1px solid #e7eaed;
}

.list-1__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100px;
	padding: 10px 0px 10px 0;
	border-top: 1px solid #e7eaed;
}

.list-1__col-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 24.5%;
}

.list-1__col-2 {
	width: 50%;
	width: 48%;
}

.list-1__col-2__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 10px;
}

.list-1__col-3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 7px 0 9px;
}

.list-1__text01 {
	color: #02449b;
	font-weight: bold;
	word-break: break-all;
}

.list-1__text02 {
	width: 50px;
	font-weight: bold;
	font-size: 1.2rem;
}

.list-1__text02 span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 8px 2px;
	background: #eee;
}

.list-1__text03 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.list-1__text04 {
	font-weight: bold;
}

.list-1__text05 {
	white-space: nowrap;
	font-size: 1.2rem;
	line-height: 1.3;
}

.list-1__text06 {
	font-size: 1.2rem;
}

.list-1__text07 {
	font-size: 1.2rem;
}

.list-1__text08 {
	font-size: 1.1rem;
	margin-left: 10px;
	margin-left: 2vw;
}

.list-2 {
	counter-reset: number;
}

.list-2--order li {
	padding-left: 1.5em;
	position: relative;
}

.list-2--order li::before {
	counter-increment: number;
	content: counter(number) ".";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	text-align: right;
	width: 1.5rem;
}

.list-3 {
	border-top: 1px solid #e7eaed;
}

.list-3__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 17px 0 11px;
	border-bottom: 1px solid #e7eaed;
}

.list-3__position {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 65px;
}

.list-3__position__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 50%;
	background: #cccccc;
	color: #ffffff;
	font-weight: bold;
	width: 30px;
	height: 30px;
	border-radius: 3px;
	margin-bottom: 6px;
}

.list-3__position__item.is-active {
	background: #02449b;
}

.list-3__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -2px;
	width: calc(100% - 65px);
	padding-left: 12px;
	line-height: 1.3;
}

.list-3__id {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #02449b;
	font-size: 1.6rem;
	font-weight: bold;
	width: auto;
	margin-bottom: 10px;
}

.list-3__age {
	width: auto;
	margin-bottom: 10px;
	font-weight: bold;
}

.list-3__data {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.list-3__data__item {
	width: calc(100% / 3);
	font-size: 1.1rem;
}

.list-3__data__item span {
	font-weight: bold;
}

.list-3__speed {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 12px;
	font-size: 1.1rem;
}

.list-3__speed__type {
	padding-left: 10px;
}

.cv {
	padding: 25px 0;
}

.cv__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 36px 20px;
	border-radius: 5px;
}

.cv__item:not(:last-of-type) {
	margin-bottom: 25px;
}

.cv__item--blue {
	background: #02449b;
}

.cv__item--black {
	background: #000000;
}

.cv__head {
	margin-bottom: 5px;
	font-size: 3rem;
	text-align: center;
	line-height: 1.5;
	color: #ffffff;
	font-weight: bold;
}

.cv__text {
	margin-bottom: 16px;
	text-align: center;
	line-height: 1.5;
	color: #ffffff;
	font-size: 1.2rem;
}

.flow__main {
	margin-bottom: 31px;
	color: #ffffff;
}

.flow__head {
	margin-bottom: 9px;
	font-size: 2.4rem;
	line-height: 1.3;
	font-weight: bold;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

.flow__text {
	margin-bottom: 5px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	line-height: 1.7;
	font-size: 1.2rem;
	font-weight: bold;
}

.flow__note {
	font-size: 0.9rem;
	line-height: 1.5;
}

.area {
	padding: 27px 0 30px;
}

.scout__tab {
	margin-bottom: 18px;
}

.scout__list {
	margin-bottom: 24px;
}

.mv {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding: 31px 0 32px;
	height: 560px;
	background: url(../img/bg_mv_sp.jpg) no-repeat center left 60%/cover;
}

.mv__wrapper {
	height: 100%;
}

.mv__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%;
}

.mv__text-1 {
	font-size: 4.5rem;
	line-height: 1.35;
	margin-bottom: 15px;
	font-weight: bold;
	color: #ffffff;
	text-shadow: 0 0 9px rgba(0, 0, 0, 0.8);
}

.mv__text-2 {
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.4;
	color: #ffffff;
	text-shadow: 0 0 9px rgba(0, 0, 0, 0.8);
}

.mv__note {
	margin-top: 10px;
	color: #ffffff;
	font-size: 1.2rem;
}

.mv__buttons {
	width: 100%;
	margin: 0 auto;
}

.mv__buttons__item:not(:last-of-type) {
	margin-bottom: 20px;
}

.top-flow {
	padding: 30px 0;
}

.top-scout {
	padding: 30px 0 50px;
}

.top-banner-1 {
	padding: 40px 0 30px;
}

.top-banner-2 {
	padding: 40px 0 30px;
}

.top-movie {
	padding: 57px 0;
}

.top-movie__content {
	position: relative;
	padding: 42px 24px 30px;
	background: #ffffff;
	border-radius: 10px;
}

.top-movie__content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 45px;
	height: 35px;
	background: url(../img/logo_yt_blue.svg) no-repeat center center/contain;
}

.top-movie__head {
	margin-bottom: 15px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

.top-movie__lead {
	margin-bottom: 23px;
	font-size: 1.2rem;
	line-height: 1.5;
	font-weight: bold;
}

.top-movie__lead strong {
	color: #e60012;
}

.top-notice {
	position: relative;
	padding: 50px 0;
	border-bottom: 1px solid #e5e5e5;
}

.top-notice::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: url(../img/icon_notice.svg) no-repeat center center/contain;
	width: 47px;
	height: 41px;
}

.top-notice__section:not(:last-of-type) {
	margin-bottom: 60px;
}

.top-notice__head {
	margin-bottom: 20px;
	font-size: 2rem;
	line-height: 1.5;
	text-align: center;
	font-weight: bold;
}

.top-notice__text p {
	font-size: 1.2rem;
	line-height: 1.75;
}

.top-notice__text strong {
	color: #e60012;
}

.top-notice__list {
	font-size: 1.2rem;
	line-height: 1.75;
	counter-reset: item;
}

.top-notice__list li {
	text-indent: -1em;
	padding-left: 1em;
}

.top-notice__list li::before {
	counter-increment: item;
	content: counter(item) ".";
}

.top-notice__list li strong {
	color: #e60012;
}

.top-notice__button {
	margin-top: 24px;
}

.top-sponsor__text {
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: bold;
	letter-spacing: .1em;
}

.top-comment {
	padding-top: 30px;
}

.top-comment__item {
	margin-bottom: 40px;
}

.top-comment__item__img {
	margin-bottom: 15px;
}

.top-comment__item__img img {
	width: 100%;
	height: auto;
}

.top-comment__item__text .text {
	font-style: italic;
}

.top-comment__item__head {
	color: #02449b;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 20px;
}

.top-comment__item__head__name {
	font-size: 2.2rem;
}

.belt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 250px;
	text-align: center;
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-size: 2.8rem;
	color: #ffffff;
	background: url(../img/bg_belt.jpg) no-repeat center center/cover;
	letter-spacing: .15em;
	line-height: 1.5;
}

.header-button {
	position: fixed;
	top: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header-button__item {
	width: 19vw;
	max-width: 70px;
	height: 50px;
}

.header-button__item a {
	position: relative;
	display: block;
	text-align: center;
	font-weight: bold;
	color: #ffffff;
	padding-top: 33px;
	font-size: 1rem;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	width: 100%;
	height: 100%;
}

.header-button__item a::before {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 16px;
	height: 18px;
}

.header-button__item a:hover {
	opacity: .7;
}

.header-button__item--player a {
	background: #02449b;
}

.header-button__item--player a::before {
	background: url(../img/icon_prayer.svg) no-repeat center center/contain;
}

.header-button__item--scout a {
	background: #000000;
}

.header-button__item--scout a::before {
	background: url(../img/icon_scout.svg) no-repeat center center/contain;
}

.menu-btn {
	position: fixed;
	top: 14px;
	left: 10px;
	width: 25px;
	height: 35px;
	z-index: 11;
}

.menu-btn__icon {
	position: relative;
	width: 100%;
	height: 15px;
	margin-bottom: 3px;
}

.menu-btn__icon::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 45px;
	height: 45px;
	background: #3d3d3d;
	opacity: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.is-menu-open .menu-btn__icon::before {
	opacity: 1;
}

.menu-btn__icon span {
	position: absolute;
	width: 100%;
	height: 1px;
	background: #000;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.menu-btn__icon span:nth-of-type(1) {
	top: 0;
}

.menu-btn__icon span:nth-of-type(2) {
	top: 50%;
}

.menu-btn__icon span:nth-of-type(3) {
	top: 100%;
}

.is-menu-open .menu-btn__icon span {
	background: #ffffff;
}

.is-menu-open .menu-btn__icon span:nth-of-type(1) {
	top: 50%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.is-menu-open .menu-btn__icon span:nth-of-type(2) {
	opacity: 0;
	-webkit-transform: translateX(-5px);
	-ms-transform: translateX(-5px);
	transform: translateX(-5px);
}

.is-menu-open .menu-btn__icon span:nth-of-type(3) {
	top: 50%;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu-btn__text {
	display: block;
	font-size: 1rem;
	text-align: center;
	color: #02449b;
}

.is-menu-open .menu-btn__text {
	opacity: 0;
}

.movie {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.movie iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.player-id {
	font-weight: bold;
	color: #02449b;
	text-align: center;
}

.player-id__id {
	margin-bottom: 10px;
	font-size: 2.4rem;
	line-height: 1.4;
}

.player-id__text {
	font-size: 1.4rem;
	line-height: 1.4;
}

.table-1 {
	width: 100%;
	border-top: 1px solid #d1d1d1;
}

.table-1 tbody {
	width: 100%;
}

.table-1 tr {
	display: block;
	padding: 20px 0;
	width: 100%;
	border-bottom: 1px solid #d1d1d1;
	line-height: 1.4;
}

.table-1 th {
	display: block;
	margin-bottom: 10px;
	text-align: left;
	font-weight: bold;
}

.table-1 td {
	display: block;
}

.post-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	color: #02449b;
	padding: 0 20px;
}

.post-nav__item {
	display: inline-block;
	font-size: 1.6rem;
	line-height: 1.3;
	position: relative;
}

.post-nav__item:hover {
	text-decoration: underline;
}

.post-nav__item--prev {
	margin-right: auto;
}

.post-nav__item--prev::before {
	content: '<';
	position: absolute;
	top: 50%;
	left: -20px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.post-nav__item--next {
	margin-left: auto;
	text-align: right;
}

.post-nav__item--next::after {
	content: '>';
	position: absolute;
	top: 50%;
	right: -20px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.post-nav__item--disabled {
	color: #aaaaaa;
	pointer-events: none;
}

.post-nav__back {
	width: 100%;
	text-align: center;
	border: 1px solid #02449b;
	padding: 17px 45px;
	border-radius: 30px;
	font-weight: bold;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	max-width: 250px;
	margin: 30px auto 0;
}

.post-nav__back:hover {
	background: #02449b;
	color: #ffffff;
}

.form {
	margin-top: 22px;
}

.form__rows {
	margin-bottom: 30px;
}

.form__row {
	padding: 20px 0;
	border-bottom: 1px solid #dfdfdf;
}

.form__row:first-of-type {
	border-top: 1px solid #dfdfdf;
}

.form__head {
	width: 100%;
	display: block;
	margin-bottom: 15px;
	font-size: 1.6rem;
	line-height: 1.3;
	font-weight: bold;
}

.form__require {
	display: inline-block;
	font-size: 1.2rem;
	font-weight: bold;
	color: #ffffff;
	background: #ff0000;
	padding: 2px 5px;
	margin-left: 8px;
}

.form__message {
	margin-bottom: 28px;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.75;
}

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

.form__message a {
	font-weight: bold;
	color: #02449b;
	text-decoration: underline;
}

.form__submit {
	margin-bottom: 43px;
}

.form__agree {
	margin-bottom: 28px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.form .horizontal-item + .horizontal-item {
	margin-left: 0 !important;
}

.form .error {
	margin-top: 5px;
}

.form-upload {
	width: 100%;
	margin-top: 40px;
	margin-bottom: 30px;
}

.form-upload__head {
	font-size: 1.6rem;
	margin-bottom: 20px;
}

.input {
	background: #FFFFFF;
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#FFFFFF));
	background-image: linear-gradient(to right, #FFFFFF, #FFFFFF);
	border: none;
	padding: 8px 10px;
	border-radius: 0;
	-webkit-box-shadow: none inset;
	box-shadow: none inset;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 1.6rem;
	width: 100%;
}

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

.input--w01 {
	width: 80px;
}

.input--w02 {
	width: 115px;
}

.input:focus {
	outline: none;
}

.input::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.input::-moz-placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.input:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.input::-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.input::placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.input:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.input::-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.form-main--flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.form-main__text {
	font-size: 1.2rem;
	line-height: 1.7;
	text-align: left;
}

.form-main__text--margin {
	margin-top: 13px;
}

.form-main__horizontal-item:not(:last-of-type) {
	margin-right: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.form-main__unit {
	margin: 0 5px;
	font-size: 1.6rem;
}

.form-main__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 5px;
}

.form-main__link li {
	margin-right: 15px;
}

.form-main__link li a {
	display: block;
	text-decoration: underline;
}

.form-main__link li a:hover {
	text-decoration: none;
}

.select {
	background: #FFFFFF;
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#FFFFFF));
	background-image: linear-gradient(to right, #FFFFFF, #FFFFFF);
	border: 1px solid #D8D8D8;
	padding: 0 10px;
	border-radius: 4px;
	-webkit-box-shadow: none inset;
	box-shadow: none inset;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	outline: none;
	font-size: 1.6rem;
	font-weight: 500;
	color: #000000;
	width: 100%;
	height: 45px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 5px 15px;
	background: url(../img/arrow.svg) no-repeat right 25px center #FFFFFF;
	width: 220px;
}

.select--sm {
	background-position: right 13px center;
	width: 118px;
}

.select:focus {
	outline: none;
}

.select::-ms-expand {
	display: none;
}

.select::-webkit-input-placeholder {
	color: #B2B2B2;
}

.select::-moz-placeholder {
	color: #B2B2B2;
}

.select:-ms-input-placeholder {
	color: #B2B2B2;
}

.select::-ms-input-placeholder {
	color: #B2B2B2;
}

.select::placeholder {
	color: #B2B2B2;
}

.select:-ms-input-placeholder {
	color: #B2B2B2;
}

.select::-ms-input-placeholder {
	color: #B2B2B2;
}

.checkbox {
	text-align: center;
	line-height: 1.5;
}

.checkbox .mwform-checkbox-field,
.checkbox .mwform-radio-field {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 0;
	font-size: 1.6rem;
	margin-right: 12px;
	cursor: pointer;
}

.checkbox input {
	cursor: pointer;
}

.policy {
	height: 360px;
	overflow: auto;
	margin-bottom: 20px;
	background: #ffffff;
	padding: 25px 8px;
}

.policy__head {
	font-size: 1.8rem;
	margin-bottom: 18px;
}

.policy__section {
	margin-bottom: 25px;
	font-size: 1.3rem;
	line-height: 1.6;
}

.policy__head-2 {
	font-weight: bold;
}

.policy__text--indent {
	padding-left: 15px;
}

.policy__text p {
	margin-bottom: 10px;
}

.radio {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 0;
	font-size: 1.6rem;
	margin-right: 12px;
	cursor: pointer;
}

.radio input {
	cursor: pointer;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

.image {
	padding-top: 8px;
	margin-bottom: 30px;
}

.indent {
	padding-left: 20px;
}

.flow-2__item {
	position: relative;
	margin-bottom: 30px;
	padding: 20px;
	color: #02449b;
	background: #ccdaeb;
	font-weight: bold;
	border-radius: 10px;
}

.flow-2__item:last-of-type {
	color: #ffffff;
	background: #02449b;
}

.flow-2__item:not(:last-of-type)::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 100%);
	-ms-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	border-right: 12px solid transparent;
	border-top: 20px solid #ccdaeb;
	border-left: 12px solid transparent;
}

.flow-2__head {
	font-size: 2rem;
	margin-bottom: 15px;
}

.flow-2__text {
	font-size: 1.3rem;
	line-height: 1.5;
}

.table-2 {
	table-layout: fixed;
}

.table-2__tr {
	display: block;
	border: 1px solid #02449b;
}

.table-2__tr:not(:last-of-type) {
	margin-bottom: 20px;
}

.table-2__tr--thead {
	border: none;
}

.table-2__th {
	display: none;
	width: 100%;
	padding: 15px 10px;
	background: #e5ecf5;
	color: #02449b;
	font-weight: bold;
}

.table-2__td {
	position: relative;
	display: block;
	width: 100%;
	background: #ffffff;
	padding: 50px 10px 15px;
}

.table-2__td:not(:last-of-type) {
	border-bottom: 1px solid #02449b;
}

.table-2__td--center {
	text-align: center;
	vertical-align: middle;
}

.table-2__strong {
	display: block;
	margin-bottom: 2px;
	font-size: 1.8rem;
	font-weight: bold;
}

.table-2__main {
	padding: 0 10px;
}

.table-2__section:not(:last-of-type) {
	margin-bottom: 5px;
}

.table-2__head {
	font-weight: bold;
	font-size: 1.4rem;
	line-height: 1.3;
}

.table-2__text {
	line-height: 1.3;
}

.table-2__sp-head {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #e5ecf5;
	color: #02449b;
	padding: 10px;
	font-weight: bold;
	font-size: 1.6rem;
	border-bottom: 1px solid #02449b;
	text-align: center;
}

.table-3__th {
	width: 50%;
	border: 1px solid #000000;
	font-weight: bold;
	padding: 15px 10px;
	vertical-align: middle;
}

.table-3__td {
	width: 50%;
	border: 1px solid #000000;
	padding: 15px 10px;
	vertical-align: middle;
}

.table-3__td--bg-blue {
	background: #e5ecf5;
}

.lead-2 {
	margin-bottom: 16px;
	color: #02449b;
	font-size: 1.4rem;
	line-height: 1.3;
}

.lead-2 strong {
	font-weight: bold;
}

.pagination {
	margin-top: 50px;
	margin-bottom: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 25px;
	min-height: 25px;
}

.pagination .page-numbers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 7px 12px;
	text-decoration: none;
	font-size: 1.8rem;
	border: 1px solid #e6e6e6;
	margin: 0 5px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.pagination .page-numbers:not(.dots):hover {
	background: #f3f3f3;
}

.pagination .page-numbers.current {
	background: #f3f3f3;
}

.pagination .prev,
.pagination .next {
	position: relative;
	display: block;
	text-indent: 200%;
	white-space: nowrap;
	overflow: hidden;
}

.pagination .prev::before,
.pagination .next::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
}

.pagination .prev::before {
	top: 15px;
	left: 17px;
	border-top: 1px solid #000000;
	border-left: 1px solid #000000;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.pagination .next::before {
	top: 15px;
	right: 17px;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.pagination .dots {
	font-size: 1.4rem;
}

.not-found {
	padding: 100px 0;
}

.not-found__image {
	width: 154px;
	margin: 0 auto 40px;
}

.not-found__head {
	margin-bottom: 24px;
	color: #02449b;
	font-weight: bold;
	text-align: center;
	font-size: 2.4rem;
	line-height: 1.4;
}

.player-movie {
	margin-bottom: 50px;
}

/* State */

/* Theme */

@media screen and (min-width: 768px) {

body { /* pc */
	min-width: 1100px;
}

.l-main { /* pc */
	padding-top: 80px;
}

.l-main--top { /* pc */
}

.l-wrapper-lg { /* pc */
	width: 1060px;
}

.l-wrapper-sm { /* pc */
	width: 750px;
}

.l-wrapper-md { /* pc */
	width: 850px;
}

.header { /* pc */
	height: 80px;
	padding: 19px 20px 20px 26px;
	max-width: calc(100% - 200px);
}

.header__logo { /* pc */
	max-width: 400px;
	width: 36vw;
	margin-right: 32px;
	margin-right: 2.8vw;
}

.footer { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 29px 50px 29px 30px;
}

.footer__nav { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 0;
}

.footer__nav__item { /* pc */
	text-align: left;
}

.footer__nav__item::before {
	content: none;
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 10px;
	background: #000000;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.footer__nav__item:not(:last-of-type)::before {
	content: '';
}

.footer__nav__item a { /* pc */
	font-size: 1.2rem;
	padding: 0 20px;
}

.footer__copy { /* pc */
	font-size: 1.2rem;
	text-align: left;
}

.nav { /* pc */
	position: static;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 1;
	visibility: visible;
	background: transparent;
	padding: 10px 0 0;
	padding: 0;
}

.nav__items { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.nav__item a { /* pc */
	padding: 5px 0;
	margin: 0 1.3vw;
	color: #000000;
}

.nav__item a::after { /* pc */
	display: none;
}

.heading-1 { /* pc */
	margin-bottom: 24px;
	font-size: 4.8rem;
	letter-spacing: .05em;
}

.heading-2 { /* pc */
	margin-bottom: 40px;
	font-size: 3.6rem;
}

.heading-3 { /* pc */
	margin-bottom: 23px;
	font-size: 2rem;
}

.heading-4 { /* pc */
	margin-bottom: 7px;
	font-size: 1.8rem;
}

.heading-5 { /* pc */
	font-size: 2.4rem;
}

.heading-6 { /* pc */
	margin-bottom: 10px;
	font-size: 1.6rem;
}

.sns-icons { /* pc */
	display: block;
}

.page-title { /* pc */
	padding: 110px 0 85px;
	font-size: 4.8rem;
}

.page-title-2 { /* pc */
	padding: 58px 0 90px;
}

.page-title-2__title { /* pc */
	padding-top: 90px;
	font-size: 6rem;
}

.page-title-2__title::before { /* pc */
	width: 102px;
	height: 86px;
}

.page-title-2__area { /* pc */
	font-size: 3.2rem;
	top: -30px;
}

.lead-1 { /* pc */
	margin-bottom: 70px;
}

.lead-1--mbsm { /* pc */
	margin-bottom: 30px;
}

.lead-1 p { /* pc */
	font-size: 1.8rem;
}

.button-1 { /* pc */
	max-width: inherit;
	width: 380px;
	padding: 15px;
}

.button-1--fs18 { /* pc */
	font-size: 1.8rem;
}

.button-1--submit { /* pc */
	width: 450px;
	padding: 11px;
}

.btn-list { /* pc */
	width: 560px;
}

.btn-list__item { /* pc */
	width: calc(25% - 20px);
	margin-bottom: 20px;
}

.btn-list__item:not(:nth-of-type(4n)) { /* pc */
	margin-right: 25px;
}

.btn-list__item a { /* pc */
	width: 125px;
	padding: 11px;
	font-size: 1.4rem;
}

.parts-1 { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.parts-1__main { /* pc */
	width: calc(50% - 30px);
}

.parts-1__movie { /* pc */
	width: 50%;
	margin-bottom: 0;
	padding-top: 5px;
}

.parts-1__movie__head { /* pc */
	text-align: left;
	margin-top: 9px;
	font-size: 1.4rem;
}

.parts-1__head { /* pc */
	margin-bottom: 1px;
	font-size: 1.8rem;
}

.parts-1__text { /* pc */
	margin-top: -4px;
	font-size: 1.4rem;
}

.parts-1__note { /* pc */
	margin-top: 27px;
	font-size: 1.4rem;
}

.accodion-1__head { /* pc */
	padding: 22px 0 21px;
	font-size: 3rem;
}

.accodion-1__head::before,
.accodion-1__head::after { /* pc */
	right: 9px;
}

.accodion-1__head::before { /* pc */
	height: 2px;
	width: 28px;
}

.accodion-1__head::after { /* pc */
	width: 2px;
	height: 28px;
	right: 22px;
}

.accodion-1__main { /* pc */
	padding-bottom: 30px;
	padding-top: 0;
}

.banner__item--3col { /* pc */
	width: 340px;
	margin-bottom: 18px;
}

.banner__item--3col:not(:nth-of-type(3n)) { /* pc */
	margin-right: 20px;
}

.banner__item--4col { /* pc */
	width: 250px;
	margin-bottom: 20px;
}

.banner__item--4col:not(:nth-of-type(4n)) { /* pc */
	margin-right: 20px;
}

.content-xs { /* pc */
	margin-bottom: 20px;
}

.content-sm { /* pc */
	margin-bottom: 45px;
}

.content-md { /* pc */
	margin-bottom: 80px;
}

.content-lg { /* pc */
	margin-bottom: 120px;
}

.content-p-md { /* pc */
	padding: 40px 0;
	margin-bottom: 80px;
}

.text--fs16 { /* pc */
	font-size: 1.6rem;
}

.text--fs14 { /* pc */
	font-size: 1.4rem;
}

.text a:hover { /* pc */
	text-decoration: none;
}

.gray-box { /* pc */
	padding: 50px 50px;
	border-radius: 10px;
}

.tab-1__item { /* pc */
	width: auto;
}

.tab-1__item a { /* pc */
	width: 125px;
	padding: 10px 20px;
	margin: 5px 10px;
	border-width: 2px;
	font-size: 1.6rem;
}

.list-1__item { /* pc */
	padding: 10px 15px 10px 3px;
}

.list-1__col-1 { /* pc */
	width: 97px;
}

.list-1__col-2 { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 400px;
}

.list-1__col-2__wrap { /* pc */
	margin-bottom: 0;
}

.list-1__col-3 { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0;
}

.list-1__text01 { /* pc */
	font-size: 1.6rem;
}

.list-1__text02 { /* pc */
	font-size: 1.8rem;
	width: 100px;
	margin-right: 30px;
}

.list-1__text02 span { /* pc */
	padding: 12px 2px;
}

.list-1__text03 { /* pc */
	width: 60px;
	margin-bottom: 0;
	margin-right: 25px;
	font-size: 1.4rem;
}

.list-1__text04 { /* pc */
	width: 150px;
	font-size: 1.6rem;
}

.list-1__text05 { /* pc */
	width: 100px;
	margin-right: 35px;
	font-size: 1.4rem;
}

.list-1__text06 { /* pc */
	width: 100px;
	margin-right: 35px;
	font-size: 1.6rem;
}

.list-1__text07 { /* pc */
	width: 100px;
	margin-right: 12px;
	font-size: 1.6rem;
}

.list-1__text08 { /* pc */
	font-size: 1.6rem;
}

.list-3__item { /* pc */
	padding: 28px 10px 28px;
	height: 100px;
}

.list-3__position { /* pc */
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	width: 135px;
}

.list-3__position__item { /* pc */
	margin: 0;
	border-radius: 5px;
	font-size: 1.6rem;
}

.list-3__wrap { /* pc */
	width: auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	width: calc(100% - 135px);
	padding-left: 46px;
}

.list-3__id { /* pc */
	width: auto;
	width: 80px;
	margin: 0 27px 0 0;
}

.list-3__age { /* pc */
	width: auto;
	margin: 0 43px 0 0;
	font-size: 1.6rem;
}

.list-3__data { /* pc */
	width: auto;
}

.list-3__data__item { /* pc */
	width: auto;
	width: 96px;
	margin-right: 35px;
	font-size: 1.6rem;
}

.list-3__speed { /* pc */
	width: 180px;
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.6;
	margin-left: 10px;
}

.list-3__speed__type { /* pc */
	width: 100%;
	padding-left: 0;
}

.cv { /* pc */
	padding: 100px 0 80px;
}

.cv__inner { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.cv__item { /* pc */
	width: calc(50% - 10px);
	padding: 41px 10px 41px;
	border-radius: 10px;
}

.cv__item:not(:last-of-type) { /* pc */
	margin-bottom: 0;
}

.cv__head { /* pc */
	margin-bottom: 2px;
	font-size: 4.8rem;
}

.cv__text { /* pc */
	font-size: 1.6rem;
}

.flow { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flow__main { /* pc */
	width: 40%;
	margin: 0;
}

.flow__head { /* pc */
	margin-bottom: 30px;
	font-size: 3.6rem;
}

.flow__text { /* pc */
	margin-bottom: 11px;
	font-size: 1.6rem;
	line-height: 1.75;
}

.flow__note { /* pc */
	font-size: 1.2rem;
}

.area { /* pc */
	padding: 60px 0 70px;
}

.scout__tab { /* pc */
	margin-bottom: 45px;
}

.scout__list { /* pc */
	margin-bottom: 40px;
}

.mv { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 726px;
	padding: 0 0 37px;
	background: url(../img/bg_mv_pc.jpg) no-repeat center left 60%/cover;
}

.mv__wrapper { /* pc */
	height: auto;
}

.mv__content { /* pc */
	display: block;
	width: 470px;
}

.mv__main { /* pc */
	margin-bottom: 74px;
}

.mv__text-1 { /* pc */
	margin-bottom: 18px;
	padding-left: 0;
	line-height: 1.3;
	font-size: 7rem;
}

.mv__text-2 { /* pc */
	font-size: 2.8rem;
}

.mv__note { /* pc */
	font-size: 1.4rem;
}

.mv__buttons { /* pc */
	margin: 0;
	width: 300px;
}

.mv__buttons__item:not(:last-of-type) { /* pc */
	margin-bottom: 19px;
}

.top-flow { /* pc */
	padding: 58px 0 68px;
}

.top-scout { /* pc */
	padding: 111px 0 84px;
}

.top-banner-1 { /* pc */
	padding: 80px 0 60px;
}

.top-banner-2 { /* pc */
	padding: 80px 0 36px;
}

.top-movie { /* pc */
	padding: 115px 0 100px;
}

.top-movie__content { /* pc */
	padding: 71px 40px 52px;
}

.top-movie__content::before { /* pc */
	width: 90px;
	height: 68px;
}

.top-movie__head { /* pc */
	margin-bottom: 31px;
	font-size: 3.6rem;
}

.top-movie__lead { /* pc */
	font-size: 1.8rem;
	margin-bottom: 25px;
	text-align: center;
}

.top-notice { /* pc */
	padding: 67px 0 78px;
}

.top-notice::before { /* pc */
	width: 94px;
	height: 82px;
}

.top-notice__inner { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.top-notice__section:not(:last-of-type) { /* pc */
	margin-bottom: 0;
}

.top-notice__section { /* pc */
	width: calc(50% - 30px);
}

.top-notice__head { /* pc */
	font-size: 3rem;
}

.top-notice__text p { /* pc */
	font-size: 1.4rem;
}

.top-notice__list { /* pc */
	font-size: 1.4rem;
}

.top-sponsor__text { /* pc */
	width: 800px;
	margin: 0 auto;
	font-size: 1.6rem;
}

.top-comment { /* pc */
	padding-top: 120px;
	padding-bottom: 60px;
}

.top-comment__item { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: -15px;
	margin-right: -15px;
}

.top-comment__item__img { /* pc */
	width: 350px;
	padding-left: 15px;
	padding-right: 15px;
}

.top-comment__item__text { /* pc */
	width: calc(100% - 350px);
	padding-left: 15px;
	padding-right: 15px;
}

.top-comment__item__head { /* pc */
	font-size: 1.6rem;
}

.top-comment__item__head__name { /* pc */
	font-size: 2.8rem;
}

.belt { /* pc */
	height: 650px;
	font-size: 6rem;
	letter-spacing: .15em;
}

.header-button__item { /* pc */
	max-width: inherit;
	width: 100px;
	height: 80px;
}

.header-button__item a { /* pc */
	padding-top: 56px;
	font-size: 1.4rem;
}

.header-button__item a::before { /* pc */
	top: 10px;
	width: 33px;
	height: 36px;
}

.menu-btn { /* pc */
	display: none;
}

.player-id__id { /* pc */
	margin-bottom: 20px;
	font-size: 3rem;
}

.player-id__text { /* pc */
	font-size: 1.6rem;
}

.table-1 tr { /* pc */
	display: table-row;
	padding: 0;
	font-size: 1.8rem;
}

.table-1 th { /* pc */
	display: table-cell;
	width: 31%;
	padding: 37px 30px 37px 0;
	margin: 0;
	font-size: 1.6rem;
}

.table-1 td { /* pc */
	display: table-cell;
	width: 69%;
	padding: 37px 0;
	font-size: 1.8rem;
}

.post-nav { /* pc */
	width: 100%;
	padding: 0;
	max-width: 490px;
	margin: 65px auto 0;
}

.post-nav__back { /* pc */
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin-top: 0;
	font-size: 1.6rem;
	width: 220px;
}

.form__rows { /* pc */
	margin-bottom: 50px;
}

.form__row { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 25px 0;
}

.form__head { /* pc */
	width: 220px;
	margin-bottom: 0;
}

.form__message { /* pc */
	font-size: 1.4rem;
}

.form__message--sp-left { /* pc */
	text-align: center;
}

.form__message a:hover { /* pc */
	text-decoration: none;
}

.form-upload { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 450px;
	margin: 55px auto 52px;
}

.form-upload__head { /* pc */
	width: 138px;
	margin-bottom: 0;
}

.form-upload__main { /* pc */
	width: calc(100% - 138px);
}

.input { /* pc */
	padding: 11px 10px;
	font-size: 1.8rem;
}

.form-main { /* pc */
	width: calc(100% - 220px);
}

.form-main__text { /* pc */
	font-size: 1.4rem;
}

.form-main__horizontal-item:not(:last-of-type) { /* pc */
	margin-bottom: 0;
}

.form-main__unit { /* pc */
	font-size: 1.6rem;
}

.select { /* pc */
	height: 50px;
	font-size: 1.8rem;
}

.select--sm { /* pc */
}

.checkbox .mwform-checkbox-field,
.checkbox .mwform-radio-field { /* pc */
	padding: 14px 0;
}

.policy { /* pc */
	margin-bottom: 40px;
}

.policy__section { /* pc */
	margin-bottom: 45px;
	font-size: 1.4rem;
}

.policy__text p { /* pc */
	margin-bottom: 22px;
}

.radio { /* pc */
	padding: 14px 0;
}

.flow-2__item { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 30px;
	padding: 38px 35px;
	min-height: 123px;
}

.flow-2__head { /* pc */
	width: 200px;
	margin-bottom: 0;
	font-size: 2.4rem;
}

.flow-2__text { /* pc */
	width: calc(100% - 200px);
	padding-left: 10px;
	font-size: 1.6rem;
}

.table-2 { /* pc */
	width: 100%;
	background: #ffffff;
}

.table-2__tr { /* pc */
	display: table-row;
}

.table-2__tr:not(:last-of-type) { /* pc */
	margin-bottom: 0;
}

.table-2__th { /* pc */
	display: table-cell;
	border: 1px solid #02449b;
	padding: 28px 20px;
	font-size: 1.6rem;
}

.table-2__th--1 { /* pc */
	width: 20%;
}

.table-2__th--2 { /* pc */
	width: 57.5%;
}

.table-2__th--3 { /* pc */
	width: 22.5%;
}

.table-2__td { /* pc */
	position: static;
	display: table-cell;
	border: 1px solid #02449b;
	padding: 30px 15px;
}

.table-2__strong { /* pc */
	font-size: 2rem;
}

.table-2__sp-head { /* pc */
	display: none;
}

.table-3__th { /* pc */
	padding: 15px 20px;
}

.table-3__td { /* pc */
	padding: 15px 20px;
}

.lead-2 { /* pc */
	font-size: 1.6rem;
}

.not-found { /* pc */
	padding: 220px 0 144px;
}

.not-found__image { /* pc */
	width: 264px;
	margin-bottom: 68px;
}

.player-movie { /* pc */
	margin-bottom: 100px;
}

}

@media screen and (max-width: 767px) {

.sp-only { /* sp */
	display: block !important;
}

.sp-only-2 { /* sp */
	display: inline-block !important;
}

.pc-only { /* sp */
	display: none !important;
}

.pc-only-2 { /* sp */
	display: none !important;
}

.btn-list__item:not(:nth-of-type(3n)) { /* sp */
	margin-right: 15px;
}

.banner__item:not(:nth-of-type(2n)) { /* sp */
	margin-right: 10px;
}

.pagination { /* sp */
}

.pagination .page-numbers { /* sp */
	min-width: 25px;
	min-height: 25px;
	padding: 7px 5px;
	font-size: 1.3rem;
	margin: 0 2px;
}

.pagination .dots { /* sp */
	min-width: 10px;
	padding: 0;
}

}

@media only screen and (max-width: 767px) {

.featherlight .featherlight-content { /* dimensions: maximize lightbox with for small screens */
	max-height: 98%;
	padding: 10px 10px 0;
	border-bottom: 10px solid transparent;
}

}

@media print {

html.with-featherlight > * > :not(.featherlight) {
	display: none;
}

}

