@charset "utf-8";
/* Copyright 2022 FSFIELD All Rights Reserved. */

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

PC、タブレット、スマートフォン共通

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/* ------------------------------------------------------------

トップページ（英）

------------------------------------------------------------ */

#header {
	border-bottom: none;
}


/* メインビジュアル
---------------------------------------------- */
.main {
	position: relative;
}

.image_main {
	display: block;
	width: 70%;
	min-height: 500px;
	height: calc(100vh - 166px);
	margin: 0 0 0 auto;
}

.image_main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.txt_main01 {
	position: absolute;
	top: 50%;
	padding-left: 5%;
	transform: translateY(-50%);
	-webkit-clip-path: inset(0 70% 0 0);
	clip-path: inset(0 70% 0 0);
	width: 100%;
}

.txt_main01 .txt01 {
	margin-bottom: 40px;
}

.txt_main01 .txt01 p {
	font-size: 6.66vw;
	font-size: min(12.8rem, 9.091vw);
	font-weight: 700;
	line-height: 1;
	color: #8E1728;
}

.txt_main01 .txt01 p:nth-of-type(1) span {
	display: block;
}

.txt_main01 .txt01 p:nth-of-type(2) {
	color: #2A2F34;
}

.txt_main01.white {
	-webkit-clip-path: inset(0 0 0 30%);
	clip-path: inset(0 0 0 30%);
}

.txt_main01.white .txt01 p {
	color: #FFF;
}

/* コンテンツ
---------------------------------------------- */
.home_container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 100px 60px 160px;
}

.lead_txt {
	max-width: 760px;
	margin: 0 auto 100px;
}

.lead_txt p:not(:last-of-type) {
	margin-bottom: 30px;
}

/* 共通
---------------------------------------------- */
.home_container .ico_tab {
	width: 19px;
	height: 19px;
	fill: #2A2F34;
	margin: 0 0 -4px 3px;
}

.home_container .dowmload_icon a {
	display: block;
	width: 25px;
}

.home_container .dowmload_icon a:hover {
	opacity: .8;
}

.home_container .dowmload_icon a img {
	width: 100%;
	height: auto;
}

.home_container .tbl_type01 td .item_block {
	display: inline-block;
}

/* Program Overview
---------------------------------------------- */
.wrap_overview {
	margin-bottom: 100px;
}

.wrap_overview .txt {
	max-width: 760px;
	margin: 0 auto;
}

.wrap_overview .txt p:not(:last-of-type) {
	margin-bottom: 30px;
}

.wrap_overview .txt .note {
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.5;
	color: #7F8285;
}

/* Selection Schedule
---------------------------------------------- */
.wrap_schedule {
	margin-bottom: 100px;
}

.wrap_schedule .tbl_type01 th:nth-of-type(1) {
	width: 207px;
}

.wrap_schedule .tbl_type01 th:nth-of-type(2) {
	width: 317px;
}

.wrap_schedule .tbl_type01 td p:not(:last-of-type) {
	margin-bottom: 10px;
}

.wrap_schedule .tbl_type01 tr:last-of-type td {
	background: #E9EDF1;
}

.bg_gray01 td{
	background: #E9EDF1 !important;
} 

.bg_gray02 td{
	background: #F6F8F9 !important;
}

.red {
	color: #eb1c3a;
}


/* Application Guideline & Application document
---------------------------------------------- */
.wrap_download {
	margin-bottom: 100px;
}

.wrap_download .heading01 {
	margin-bottom: 30px;
}

.wrap_download>p {
	font-size: 2.4rem;
	margin-bottom: 60px;
	line-height: 1.3;
	padding-left: 9px;
	text-indent: -9px;
}

.wrap_download .movie {
	display: flex;
	gap: 40px;
	margin-bottom: 80px;
}

.wrap_download .movie .movie-item {
	width: 500px;
}

.wrap_download .movie .movie-item img {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}

.wrap_download .movie .movie-item p {
	font-size: 2.4rem;
	line-height: 1.3;
}

.wrap_download .tbl_type01 th {
	width: 50%;
}

/* Form
---------------------------------------------- */
.wrap_form {
	margin-bottom: 100px;
}

.wrap_form .tbl_type01 tr:nth-of-type(even) td {
	background: #E9EDF1;
}

.wrap_form .tbl_type01 tr:nth-of-type(odd) td {
	background: #F6F8F9;
}

.wrap_form .tbl_type01 tr:first-of-type td:first-of-type {
	width: 207px;
}

/* FAQ
---------------------------------------------- */
.wrap_faq .txt {
	max-width: 760px;
	margin: 0 auto;
	line-height: 2;
}

.wrap_faq .txt p:not(:last-of-type) {
	margin-bottom: 26px;
}


/* タブ切り替え
---------------------------------------------- */

.application__tab-list {
	display: flex;
	margin-bottom: 5rem;
}

.application__tab-list-tab {
	padding: 2rem 0;
	width: 50%;
	text-align: center;
	cursor: pointer;
	transition: .3s;
	font-size: 2rem;
	font-weight: 700;
	background: #999;
}

.application__tab-list-tab.active {
	background: #8E1728;
	color: #fff;
}

.application__tab-content {
	margin-bottom: 6.4rem;
}

.application__tab-panel {
	display: none;
}

.application__tab-panel.show {
	display: block;
}




@media only screen and (max-width:1024px) {
	/* 表示領域が1024px以下の場合に適用するスタイル */

	/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	タブレット

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

	/* ------------------------------------------------------------

	トップページ（英）

	------------------------------------------------------------ */

	/* メインビジュアル
	---------------------------------------------- */
	.image_main {
		width: 80%;
		height: 100%;
		min-height: unset;
	}

	.image_main img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.txt_main01 {
		padding-left: 0;
		-webkit-clip-path: inset(0 80% 0 0);
		clip-path: inset(0 80% 0 0);
	}

	.txt_main01 .txt01 {
		margin-bottom: 0;
		overflow: hidden;
	}

	.txt_main01 .txt01 p {
		font-size: 11.02vw;
		white-space: nowrap;
		margin-left: -1vw;
	}

	.txt_main01.white {
		-webkit-clip-path: inset(0 0 0 20%);
		clip-path: inset(0 0 0 20%);
	}

	/* Selection Schedule
	---------------------------------------------- */
	.wrap_schedule .tbl_type01 th:nth-of-type(2) {
		width: 220px;
	}

}

/*--@media--*/


@media only screen and (max-width:767px) {
	/* 表示領域が767px以下の場合に適用するスタイル */
	/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	スマートフォン（iPhone,Android)

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

	/* ------------------------------------------------------------

	トップページ（英）

	------------------------------------------------------------ */

	/* コンテンツ
	---------------------------------------------- */
	.home_container {
		overflow: hidden;
		padding: 40px 25px 70px;
	}

	.lead_txt {
		margin-bottom: 60px;
	}

	.lead_txt p:not(:last-of-type) {
		margin-bottom: 23px;
	}

	/* 共通
	---------------------------------------------- */
	.home_container .tbl_type01 {
		width: 100vw;
		margin-left: -25px;
	}

	.home_container .ico_tab {
		width: 18px;
		height: 18px;
	}

	.home_container .dowmload_icon a {
		width: 20px;
		margin: 0 auto;
	}

	/* Program Overview
	---------------------------------------------- */
	.wrap_overview {
		margin-bottom: 60px;
	}

	.wrap_overview .txt p:not(:last-of-type) {
		margin-bottom: 23px;
	}

	/* Selection Schedule
	---------------------------------------------- */
	.wrap_schedule {
		margin-bottom: 60px;
	}

	.wrap_schedule .tbl_type01 th:nth-of-type(1) {
		width: 67px;
	}

	.wrap_schedule .tbl_type01 th:nth-of-type(2) {
		width: 112px;
	}

	.wrap_schedule .tbl_type01 td p:not(:last-of-type) {
		margin-bottom: 8px;
	}

	/* Application Guideline & Application document
	---------------------------------------------- */
	.wrap_download {
		margin-bottom: 60px;
	}

	.wrap_download .heading01 {
		margin-bottom: 20px;
	}

	.wrap_download>p {
		font-size: 1.8rem;
		margin-bottom: 40px;
	}

	.wrap_download .movie {
		flex-direction: column;
		gap: 40px;
		margin-bottom: 44px;
	}

	.wrap_download .movie .movie-item {
		width: 100%;
	}

	.wrap_download .movie .movie-item img {
		margin-bottom: 8px;
	}

	.wrap_download .movie .movie-item p {
		font-size: 1.8rem;
	}

	/* Form
	---------------------------------------------- */
	.wrap_form {
		margin-bottom: 60px;
	}

	.wrap_form .tbl_type01 tr:first-of-type td:first-of-type {
		width: 145px;
	}

	/* FAQ
	---------------------------------------------- */
	.wrap_faq .txt p:not(:last-of-type) {
		margin-bottom: 20px;
	}


	/* タブ切り替え
	---------------------------------------------- */

	.application__tab-list {
		flex-direction: column;
		gap: 10px;
	}

	.application__tab-list-tab {
		font-size: 1.7rem;
		width: 100%;
	}

}

/*--@media--*/