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