@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 * 240 / 1280);
}

#ci_base {

	position: absolute;
	width: calc(100vw * 80 / 1280);
	height: calc(100vw * 80 / 1280);
	background-color: #0081b6;
}

#ci {

	position: absolute;
	left: calc(100vw * 12 / 1280);
	top: calc(100vw * 12 / 1280);
	width: calc(100vw * 56 / 1280);
}

#logo {

	position: absolute;
	left: calc((100vw - (100vw * 198 / 1280)) / 2);
	top: calc(100vw * 44 / 1280);
	width: calc(100vw * 198 / 1280);
	height: calc(100vw * 44 / 1280);
}

#title {

	position: absolute;
	top: calc(100vw * 128 / 1280);
	width: 100vw;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: calc(100vw * 42 / 1280);
	letter-spacing: calc(300em / 1000);
	text-align: center;
}


/* --------------------------------
	- contents
-------------------------------- */
#contents {

	width: 100vw;
	flex: 1;
}

.contents_title {

	width: 100vw;
	height: calc(100vw * 45 / 1280);
}

.contents_title_label {

	float: left;
	width: calc(100vw * 452 / 1280);
	height: calc(100vw * 24 / 1280);
	padding-left: calc(100vw * 32 / 1280); 
	padding-top: calc(100vw * 4 / 1280);
	color: #666666;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: calc(100vw * 24 / 1280);
	letter-spacing: calc(150em / 1000);
	text-align: left;
}

.contents_divider_L {

	float: left;
	width: calc(100vw * 156 / 1280);
	height: calc(100vw * 1 / 1280);
	margin-top: calc(100vw * 22 / 1280);
	background-color: #0084b9;
}

.contents_divider_R {

	float: right;
	width: calc(100vw * 640 / 1280);
	height: calc(100vw * 1 / 1280);
	margin-top: calc(100vw * 22 / 1280);
	background-color: #b2b2b2;
}

.contents_sentence {

	width: calc(100vw * 904 / 1280);
	margin-top: calc(100vw * 30 / 1280);
	margin-bottom: calc(100vw * 112 / 1280);
	margin-left: calc(100vw * 188 / 1280);
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: calc(100vw * 14 / 1280);
	line-height: calc(26 / 14);
	letter-spacing: calc(100em / 1000);
}


/* --------------------------------
	- footer
-------------------------------- */
#footer {

	clear: left;
	width: 100vw;
	text-align: center;
	background-color: #f0f0f0;
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: calc(100vw * 14 / 1280);
	letter-spacing: calc(200em / 1000);
	padding-top: calc(100vw * 42 / 1280);
	padding-bottom: calc(100vw * 42 / 1280);
}