@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* common style */
* {
	box-sizing: border-box;
}
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
}

body {
	font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.container-full {
	width: 100%;
	margin: 0 auto;
	padding: 0 25px;
}

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

h2, h3 {
	margin: 0;
}

p {
	margin: 0;
	padding-bottom: 1.5rem;
}

a:hover img {
	opacity:0.7;
	transition:0.3s;
}


/*-- btn --*/
.btn-area {
	margin-top: 6rem;
	text-align: center;
}
a.btn {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	border-radius: 0.5rem;
	color: #fff;
	background-color: var(--main_color);
	border-bottom: 5px solid;
	border-bottom-color: rgba(0, 0, 0, 0.5);	
	padding: 1rem 1.5rem;
	min-width: 400px;
	font-family: "Noto Serif JP", serif;
}
a.btn.btn-w {
	background-color: #fff;
	border-bottom-color: #999;
	color: #721c45;
}
a.btn:hover {
	opacity: 0.7;
}

a.btn span {
	position: relative;
	padding-right: 15px;
	display: inline-block;
	font-weight: 500;
	color: var(--main_color);
	font-weight: 700;
}
a.btn span:before {
	position: absolute;
	content: '';
	right: -15px;
	top: 50%;
	width: 18px;
	height: 18px;
		background: url(../img/common/btn_arrow.svg) no-repeat 0 50%;
	background-size: 18px auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}


.font-mink {
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

@media screen and (max-width: 782px) {
	.container {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	body {
		font-size: 14px;
	}

	a.btn {
		min-width: 90%;
		font-size: 1.35rem;
		letter-spacing: 0.05em;
		padding: 0.75rem;
	}
}

/*-- common style --*/
:root {
	--main_color: #721c45;
	--main_color_rgb: rgb(114, 28, 69);
}

header {
	padding: 6rem 0 0;
	min-height: 100vh;
	position: relative;
}
header:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url(../img/main_mv2.jpg);
	background-size: cover;
	background-position: center bottom;

	z-index: -1;
}
header .header-inner {
	max-width: 680px;
	padding: 3rem;
	margin: 0 auto;
	background-color: rgba(114, 28, 69, 0.95);
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}
header .header-inner .logo {
	margin-bottom: 3rem;
}
header .header-inner .logo img {
	width: 60%;
	height: auto;
}
header .header-inner .c-date {
	padding: 1rem;
	background-color: #561434;
	border: 1px solid #FFF;
}
header .plane-img {
	display: block;
	margin: 1.5rem auto 0;
}

#ss-area {
	position: relative;
}
#ss-area:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/world_map.png);
	background-size: 45%;
	background-repeat: no-repeat;
	background-position: top center;
	z-index: 1;
}
#ss-area h2 {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Noto Serif JP", serif;
	text-align: center;
	font-style: italic;
	font-size: 4rem;
	letter-spacing: 2px;
	text-shadow: 0 0 3px #fff;
	z-index: 1;
}
#ss-area h2 span {
	display: inline-block;
	background-color: rgba(255,255,255,0.75);
	padding: 10px 15px;
	line-height: 1;
	margin-bottom: 1rem;
}

.f-box4 {
	display: flex;
	justify-content: center;
	align-items: stretch;
}
.f-box4 .f-item {
	width: calc(100% / 4);
	min-height: 600px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.f-box4 .f-item.ss-img01 {
	background-image: url(../img/ss_img01.jpg);
}
.f-box4 .f-item.ss-img02 {
	background-image: url(../img/ss_img02.jpg);
}
.f-box4 .f-item.ss-img03 {
	background-image: url(../img/ss_img03.jpg);
}
.f-box4 .f-item.ss-img04 {
	background-image: url(../img/ss_img04.jpg);
}


#schedule01 {
	background-color: #565253;
	color: #fff;
	padding: 3rem 0;
}
#schedule01 .hosoku {
	text-align: center;
	border-top: 1px solid #fff;
	padding-top: 0.5rem;
	padding-bottom: 0;
	font-weight: 400;
	line-height: 1.4;
}

.schedule-main {
	background-color: var(--main_color);
	color: #fff;
	padding: 3rem 6rem;
	margin-bottom: 3rem;
}
.schedule-main .hosoku {
	text-align: center;
	border-top: 1px solid #fff;
	padding-top: 0.5rem;
	padding-bottom: 0;
	font-weight: 400;
	line-height: 1.4;
}

#schedule02 {
	padding: 3rem 0 6rem;
}
#schedule02 .container {
	max-width: 1200px;
}
#schedule02 .icon {
	text-align: center;
}
#schedule02 .icon img {
	width: 140px;
}
#schedule02 h2 {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 3rem;
}
#schedule02 h2 .sub-title {
	font-size: 2rem;
}
#schedule02 .plane-img {
	padding-bottom: 0;
}
#schedule02 .hosoku {
	padding-bottom: 0;
	font-weight: 400;
	line-height: 1.3;
}

#about {
	padding: 6rem 0;
	background-color: #721c45;
	color: #fff;
}
#about h2 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 6rem;
}
#about .logo {
	margin-bottom: 3rem;
	text-align: center;
}
#about .logo img {
	width: 280px;
}
#about p {
	text-align: justify;
}
#about h3 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 3px;
}
#about img.sdw {
	box-shadow: 10px 10px 0px rgba(0,0,0,0.2);
}

.f-box3 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.f-box3 .f-item {
	width: calc(95% / 3);
}


#outline {
	padding: 6rem 0;
	background-color: #182142;
	background-image: url(../img/outline_bg.jpg);
	background-size: cover;
	color: #fff;
}
#outline h2 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 6rem;
}
#outline .title {
	text-align: center;
	padding-bottom: 0;
}
#outline .title img {
	max-width: 600px;
	height: auto;
}
#outline .outline-table {
	display: block;
	max-width: 1050px;
	margin: 0 auto;
	border: 1px solid #fff;
	padding: 1.5rem 3rem;
	background: rgba(22, 33, 66, 0.75);
	position: relative;
}
#outline .outline-table:before {
	content: "";
	display: block;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border: solid 1px #fff;
	position: absolute;
	top: -5px;
	left: -5px;
}
#outline .outline-table th, #outline .outline-table td {
	border-bottom: 1px solid #555;
}
#outline .outline-table tr:last-child th, #outline .outline-table tr:last-child td {
	border-bottom: none;
}
#outline .outline-table th {
	text-align: left;
	vertical-align: middle;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
}


#outline .g-line {
	text-align: center;
	margin-bottom: 1.5rem;
}
#outline .g-line img {
	width: 180px;
}








@media screen and (max-width: 782px) {
	header {
		padding: 3rem 0 0;
		min-height: 75vh;
	}
	header .header-inner {
		padding: 1.5rem;
		margin: 0 30px;
	}
	#ss-area:before {
		background-size: 75%;
	}
	#ss-area h2 {
		width: 100%;
		font-size: 1.5rem;
		transform: translate(-50%, -10%);
	}
	#ss-area .f-box4 .f-item {
		min-height: 240px;
	}
	#schedule01 {
		padding: 1.5rem 0;
	}
	#schedule01 .hosoku {
		line-height: 1.4;
	}
	.schedule-main {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}
	#schedule02 .hosoku {
		font-size: 65%;
	}
	#schedule02 {
		padding: 1.5rem 0 3rem;
	}
	#schedule02 .icon img {
		width: 25%;
	}
	#schedule02 h2 {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}
	#schedule02 h2 .sub-title {
		font-size: 1.1rem;
	}
	#about {
		padding: 3rem 0;
	}
	#about h2 {
		font-size: 2rem;
		margin-bottom: 3rem;
	}
	#about .logo img {
		width: 50%;
	}
	#about h3 {
		margin-bottom: 1.5rem;
		font-size: 1.75rem;
	}
	.f-box3 {
		flex-wrap: wrap;
	}
	.f-box3 .f-item {
		width: 100%;
		margin-bottom: 2.5rem;
	}
	.btn-area {
		margin-top: 1.5rem;
	}
	#outline {
		padding: 3rem 0;
	}
	#outline h2 {
		font-size: 2rem;
		margin-bottom: 3rem;
	}
	#outline .outline-table {
		max-width: 100%;
		margin: 3rem auto;
		padding: 0.75rem 1.5rem;
	}
	#outline .outline-table th, #outline .outline-table td {
		display: block;
	}
	#outline .outline-table th {
		border-bottom: none;
		text-align: center;
		padding-top: 1.5rem;
	}
	#outline .outline-table td ul {
		padding-left: 1.5rem;
	}





	#outline .title img {
		width: 100%;
	}
}






/* fotter */
footer {
	background-color: #fff;
	padding: 6rem 0 0;
	text-align: center;
	position: relative;
}
footer .footer-logo img {
	width: 100%;
	max-width: 500px;
	height: auto;
}
footer .copyright {
	color: #666;
	font-size: 12px;
	padding-top: 6rem;
}

a.banner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: #fff;
	padding: 5px;
	height: 70px;
	text-align: center;
	transition: all 0.3s ease;
	opacity: 1;
}
a.banner:hover {
	opacity: 0.75;
}
a.banner img {
	height: 100%;
}
a.banner:hover img {
	opacity: 1;
}

@media screen and (max-width: 782px) {
	footer {
		padding: 3rem 0 0;
	}
	.f-box4 > .f-item {
		width: calc(100% / 2);
		padding: 0 15px 15px;
	}

	.f-box5 > .f-item {
		width: calc(95% / 2);
		margin-bottom: 3%;
	}

	footer .footer-logo img {
		width: 80%;
	}
	footer .copyright {
		font-size: 10px;
		padding-top: 3rem;
	}

	.featherlight-content {
		width: 90%;
		margin: 25px 0;
	}
}


/* other */
.text-c { text-align: center; }
.text-c__sp-left { text-align: center; }
br.sp { display:none; }

.dispPC { display:block; margin: auto; }
.dispSP { display:none; }

.imgPC { display:inline-block; }
.imgSP { display:none; }


@media screen and (max-width: 782px) {
	br.pc { display:none; }
	br.sp { display:inline; }

	.dispPC { display:none; }
	.dispSP { display:block; margin: auto; }

	.imgPC { display:none; }
	.imgSP { display:inline-block; }

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





