@charset "UTF-8";

/*--------------------------------------------------------------------
 *	共通の記述
 *--------------------------------------------------------------------*/
*{
	box-sizing: border-box;
}
body{
	color: #333;
	-webkit-text-size-adjust: 100%;
}
.body_wrap{
	overflow: hidden;
}
.wrap {
	position: relative;
	padding: 1px 0;
}


/*------------------------------------------ hyperlink */
a {
	text-decoration: underline;
	vertical-align: baseline;
	transition : all 0.5s ease-out;
}
a:hover {
	text-decoration: none;
	opacity: 0.8;
}


/*------------------------------------------ header */

header {
	position: relative;
}
header #header_contents{
	display: flex;
	align-items: center;
	transition : all 0.5s ease-out;
}
header #header_contents .logo_unesco {
	margin: 0;
}
header #header_contents .logo {
	margin: 0;
}
header #header_contents .language {
	margin: 0;
}
header #header_contents .language a {
	margin: 0;
	background-repeat: no-repeat;
	background-position: center left;
	background-image: url('../images/language.png');
}
header nav ul {
	list-style-type: none;
	margin: 0;
}
header nav ul li {
	margin: 0;
	transition : all 0.5s ease-out;
}
header nav #gmenu {
	font-weight: bold;
}
header nav #gmenu li a {
	display: block;
	position: relative;
	text-decoration: none;
	color: #fff;
}
header nav #gmenu li a span {
	background-repeat: no-repeat;
	background-position: center left;
}
header nav #gmenu li:nth-child(1) a span {
	background-image: url('../images/gmenu_ic_01.png');
}
header nav #gmenu li:nth-child(2) a span {
	background-image: url('../images/gmenu_ic_03.png');
}
header nav #gmenu li:nth-child(3) a span {
	background-image: url('../images/gmenu_ic_02.png');
}
header nav #gmenu li:nth-child(4) a span {
	background-image: url('../images/gmenu_ic_04.png');
}


/*------------------------------------------ main */
main {
	display: block;
	overflow: hidden;
	position: relative;
}
main::before {
	content: "";
	display: block;
	position: absolute;
	top: -120px;
	left: -380px;
	width: 1090px;
	height: 688px;
	background-blend-mode: soft-light;
	background-image: url('../images/bg_top.png');
	background-repeat: no-repeat;
	background-position: top left;
	z-index: 10;
}
main article {
	position: relative;
	z-index: 20;
}


/*------------------------------------------ footer */
footer {
	position: relative;
	overflow: hidden;
}
footer #footer_contents {
	position: relative;
	background: linear-gradient(-225deg, rgba(43,140,186,1),rgba(14, 164, 223,1),rgba(0,104,181,1));
	color: #fff;
}
footer #footer_contents::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: -148px;
	width: 100%;
	height: 118px;
	background-blend-mode: soft-light;
	background-image: url('../images/bg_bottom.png');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 100% auto;
	z-index: 10;
}
footer #footer_contents .footer_logo {
	position: absolute;
	bottom: 0;
}
footer #footer_contents .footer_logo img {
	display: block;
}
footer .copyright {
	position: relative;
	margin: 0;
	padding: 1.5em 0;
	background-color: #fff;
	text-align:center;
	z-index: 10;
}


/*--------------------------------------------------------------------
 *	736px以下用（SP用）の記述
 *--------------------------------------------------------------------*/

@media screen and (max-width: 736px) {
/* 736px以下用（SP用）の記述 */
body {
	font-size: 1.4rem;
}
.wrap {
	padding: 0 4.8%;
}
.sp-hidden {
	display: none !important;
}

/*------------------------------------------ header */
header #header_contents {
	padding: 10px;
}
header #header_contents .logo_unesco {
	margin-right: 15px;
	width: 16%;
}
header #header_contents .logo {
	width: 56%;
}
header #header_contents .language {
	margin-left: 3%;
	z-index: 100;
}
header #header_contents .language a {
	display: block;
	width: 25px;
	height: 25px;
	background-size: 25px;
}
header #header_contents .language a span {
	display: none;
}
header #btn_hamburger {
	display: flex;
	position: relative;
	margin: 0 5px 0 auto;
}
header #btn_hamburger a {
	display: inline-block;
	width: 25px;
	padding: 25px 0 0;
	transition: all .4s;
	text-decoration: none;
}
header #btn_hamburger span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #0068b5;
	transition: all .4s;
}
header #btn_hamburger span:nth-of-type(1) {
	top: calc(50% - 8px);
}
header #btn_hamburger span:nth-of-type(2) {
	top: calc(50% - 2px);
}
header #btn_hamburger span:nth-of-type(3) {
	top: calc(50% + 4px);
}
header #btn_hamburger.active span:nth-of-type(1) {
	transform: translate3d(1px, 3px, 0) rotate(30deg);
	width: 55%;
}
header #btn_hamburger.active span:nth-of-type(2) {
	transform: translate3d(0px, 0px, 0) rotate(-30deg);
}
header #btn_hamburger.active span:nth-of-type(3) {
	transform: translate3d(11px, -3px, 0) rotate(30deg);
	width: 55%;
}
header nav {
	display: none;
	position: absolute;
	width: 100%;
	height: calc( 100vh - 54px );
	background: linear-gradient(-225deg, rgba(43,140,186,1),rgba(14, 164, 223,1),rgba(0,104,181,1));
	z-index: 100;
}
header nav #gmenu {
	width: 100%;
	margin: 30px 0;
}
header nav #gmenu li {
	position: relative;
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 1.5rem;
}
header nav #gmenu li::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 15%;
	height: 1px;
	margin: 0 auto;
	background-color: #fff;
}
header nav #gmenu li a span {
	display: inline-block;
	padding: 20px 0 20px 35px;
}
header nav #gmenu li:nth-child(1) a span {
	background-size: 25px auto;
}
header nav #gmenu li:nth-child(2) a span {
	background-size: 22px auto;
}
header nav #gmenu li:nth-child(3) a span {
	background-size: 25px auto;
}
header nav #gmenu li:nth-child(4) a span {
	background-size: 20px auto;
}


/*------------------------------------------ main */
main::before {
	top: -100px;
	left: -194px;
	width: 436px;
	height: 275px;
	background-size: 100% auto;
}
article {
	padding: 30px 8%;
}


/*------------------------------------------ footer */
footer {
	margin-top: -64px;
	font-size: 1.3rem;
}
footer #footer_contents {
	padding: 45px 0 0;
	text-align: center;
}
footer #footer_contents {
	margin-top: 100px;
	min-height: 65px;
	padding: 65px 0 0;
}
footer #footer_contents::after {
	bottom: -137px;
	right: -173px;
	width: 436px;
	height: 275px;
	background-size: 100% auto;
}
footer #footer_contents .footer_logo {
	width: 100%;
	margin: 0 auto;
}
footer .copyright {
	font-size: 1.1rem;
}


/* 736px以上用（SP用）の記述 end */
}


/*--------------------------------------------------------------------
 *	737px以上用（PC用）の記述
 *--------------------------------------------------------------------*/
@media screen and (min-width: 737px), print {
/* 737px以上用（PC用）の記述 */

body {
	font-size: 1.8rem;
	position: relative;
}
.wrap {
	max-width: 1200px;
	margin: 0 auto;
}
.pc-hidden {
	display: none !important;
}


/*------------------------------------------ header */
header {
	position: relative;
	z-index: 100;
}
header #header_contents {
	margin-right: auto;
	margin-left: auto;
	padding: 10px;
}
header #header_contents .logo_unesco {
	margin-right: 30px;
}
header #header_contents .language {
	margin: 0 10px 0 auto;
}
header #header_contents .language a {
	display: block;
	padding-left: 30px;
	background-size: 25px;
	font-weight: bold;
	color: #0068b5;
	text-decoration: none;
}
header #btn_hamburger {
	display: none;
}
header nav {
	background: linear-gradient(-225deg, rgba(43,140,186,1),rgba(14, 164, 223,1));
}
header nav #gmenu {
	display: flex;
	justify-content: space-between;
	max-width: 1300px;
	margin: 0 auto;
}
header nav #gmenu li {
	width: 25%;
	position: relative;
	text-align: center;
	font-size: 2.0rem;
}
header nav #gmenu li::after {
	content: "";
	display: block;
	position: absolute;
	top: 27.5%;
	right: 0;
	width: 1px;
	height: 45%;
	background-color: #fff;
}
header nav #gmenu li:last-child {
	border-right: none;
}
header nav #gmenu li:last-child::after {
	content: none;
}
header nav #gmenu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 20px 10px;
}
header nav #gmenu li span {
	padding: 10px 0 10px 50px;
	padding-bottom: 10px;
}
header nav #gmenu li:nth-child(1) a span {
	background-size: 34px auto;
}
header nav #gmenu li:nth-child(2) a span {
	background-size: 30px auto;
}
header nav #gmenu li:nth-child(3) a span {
	background-size: 33px auto;
}
header nav #gmenu li:nth-child(4) a span {
	background-size: 30px auto;
}


/*------------------------------------------ main */
main::before {
	top: -260px;
	left: -380px;
	width: 1090px;
	height: 688px;
}
article {
	max-width: 1100px;
	margin: 80px auto;
	padding: 0 40px;
}


/*------------------------------------------ footer */
footer {
	font-size: 1.4rem;
	margin-top: -200px;
}
footer #footer_contents {
	margin-top: 300px;
	min-height: 150px;
	padding: 70px 0 0;
}
footer #footer_contents::after {
	bottom: -140px;
	right: -660px;
	width: 1090px;
	height: 688px;
}
footer #footer_contents .wrap {
	display: flex;
	align-items: center;
}
footer #footer_contents .footer_logo {
	max-width: 1596px;
	margin: 0;
}
footer .copyright {
	font-size: 1.6rem;
}


/* 737px以上用（PC用）の記述 end */
}


/*--------------------------------------------------------------------
 *	印刷用（PC表示）の記述
 *--------------------------------------------------------------------*/
@media print {
/* 印刷用（PC表示）の記述 */



/* 印刷用（PC表示）の記述 end */
}


/*------------------------------------------ clear */
body,
.wrap,
header,
footer {
	zoom: 100%;
}

body:after,
.wrap:after,
header:after,
footer:after {
	content: "";
	display: block;
	clear: both;
}