@charset "utf-8";

/* CSS Document */

/* --------------------------------
	- Noto Sans JP Regular 400
	- Noto Sans JP Medium 500
    https://fonts.google.com/share?selection.family=Barlow:wght@600%7CNoto%20Sans%20JP:wght@400;500
-------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');


/* --------------------------------
	- common
-------------------------------- */
* {

	margin: 0;
	padding: 0;
}

html {
	
	background: transparent;
}

body {

	/*background-color: #ffffff;*/
	background: transparent;
	overflow-x: hidden;
}

a,
img {

	border: 0;
}


/* --------------------------------
	- wrapper
-------------------------------- */
#wrapper {

	width: 100vw;
	min-height: calc(var(--vh, 1vh) * 100);
	display: flex;
    flex-flow: column;
}


/* --------------------------------
	- header
-------------------------------- */
#header {

	width: 100vw;
	height: calc(100vw * 200 / 375);
}

#ci_base {

	position: absolute;
	width: calc(100vw * 44 / 375);
	height: calc(100vw * 44 / 375);
	background-color: #0081b6;
}

#ci {

	position: absolute;
	left: calc(100vw * 8 / 375);
	top: calc(100vw * 8 / 375);
	width: calc(100vw * 28 / 375);
}

#logo {

	position: absolute;
	left: calc((100vw - (100vw * 198 / 375)) / 2);
	top: calc(100vw * 44 / 375);
	width: calc(100vw * 198 / 375);
	height: calc(100vw * 44 / 375);
}

#title {

	position: absolute;
	top: calc(100vw * 112 / 375);
	width: 100vw;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: calc(100vw * 34 / 375);
	letter-spacing: calc(300em / 1000);
	text-align: center;
}


/* --------------------------------
	- contents
-------------------------------- */
#contents {

	width: 100vw;
	flex: 1;
}

.contents_title {

	width: 100vw;
	height: calc(100vw * 33 / 375);
}

.contents_title_label {

	float: left;
	width: calc(100vw * 247 / 375);
	height: calc(100vw * 24 / 375);
	padding-top: calc(100vw * 2 / 375);
	color: #666666;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: calc(100vw * 18 / 375);
	letter-spacing: calc(150em / 1000);
	text-align: center;
}

.contents_divider_L {

	float: left;
	width: calc(100vw * 64 / 375);
	height: calc(100vw * 1 / 375);
	margin-top: calc(100vw * 16 / 375);
	background-color: #0084b9;
}

.contents_divider_R {

	float: right;
	width: calc(100vw * 64 / 375);
	height: calc(100vw * 1 / 375);
	margin-top: calc(100vw * 16 / 375);
	background-color: #b2b2b2;
}

.contents_sentence {

	width: 90vw;
	margin-top: calc(100vw * 6 / 375);
	margin-bottom: calc(100vw * 60 / 375);
	margin-left: 5vw;
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: calc(100vw * 12 / 375);
	line-height: calc(22 / 12);
}


/* --------------------------------
	- footer
-------------------------------- */
#footer {

	width: 100vw;
	text-align: center;
	background-color: #f0f0f0;
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: calc(100vw * 12 / 375);
	letter-spacing: calc(100em / 1000);
	padding-top: calc(100vw * 42 / 375);
	padding-bottom: calc(100vw * 42 / 375);
}