@charset "UTF-8";
/* Body */
body {
	font-family: noto-serif, serif;
	font-weight: 400;
	font-style: normal;
	background-color: #fff;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

.hidden {
	display: none;
}

/* Container */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 1000px;
	background-color: #fff;
}

/* Navigation */

#header {
  background-color: rgba(0,0,0,0);
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

#header.transform{
    background-color:rgba(0,0,0,0.80);
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}


/* ヘッダーのロゴ部分 */
.header__title {
  width: 130px;
}

.header__title a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 960px) {
.header__title {
  width: 150px;
}
  .header__title a {
  font-size: 15px;
  }
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #004B65;
  transition: ease .4s;
}


@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 40%;
  }
}


@media screen and (min-width: 960px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}


@media screen and (min-width: 960px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);

  }
}

/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 17px;
  margin-bottom: 24px;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
  }
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 48px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}


/* Hero Section */
.hero {
	background-color: #f2f2f2;
	padding-top: 0;
	padding-bottom: 0;
}

video {
    object-fit: contain;
}

.main-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100vh;
}

.main-visual::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -100;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.video {
  min-width: 100vw;
  min-height: 100vh;
}

.main-visual-catch {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(50% - 100px);
  margin: auto;
  text-align: center;
  color: #fff;
}
	
@media screen and (max-width:960px) {
  .main-visual {
    width: 100%;
    height: 50vh;
  }
  .video {
    height: 100%;
    min-height: auto;
  }
  .main-visual-catch img {
    max-width: 70%;
  }
  .main-visual-catch {
    padding: 0 10%;
    top: 30%;
  }
}

/* NewsReleaseTable */

.c-h2 {
	padding-top: 50px;
    padding-bottom: 20px;
	padding-left: 20px;
    font-size: 1.7em;
	font-weight: normal;
	color: #8C7C7C;
	letter-spacing: 0.1em;
	text-align: center;
	margin: 0;
}

.h2 {
	padding-top: 20px;
    padding-bottom: 11px;
	padding-left: 20px;
    font-size: 20px;
    line-height: 1.2777;
	text-align: center;
	margin: 0;
}

.nrtbl{
	width: 50%;
	margin:0 auto 50px auto;
	background-color: #fff;
}

@media screen and (max-width: 960px) {
.nrtbl{
	width: 90%;
	margin:0 auto 50px auto;
	background-color: #fff;
}
}

.nrtbl table {
    width: 100%;
    border-collapse: collapse;
	border-spacing: 0;
    border-top: 1px solid #dddddd;
}

.nrtbl tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.nrtbl th {
    box-sizing: border-box;
    padding: 5px 20px;
    width: 20%;
    vertical-align: middle;
}

.nrtbl td {
    box-sizing: border-box;
    padding: 10px 20px 0px 0;
    width: 80%;
    vertical-align: top;
}

.nrtbl tr {
    border-bottom: 1px solid #dddddd;
}

.nrtbl_info {
    margin: 0;
}

.nrtbl_info ul {
    margin: -20px 0 0 0;
}

.nrtbl_info ul li {
    padding: 20px 0 0;
}

.tr {
    font-size: 0.9em;
	letter-spacing: 0.1em;
	font-weight: normal;
}

.nrtbl_label {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: #237287;
    margin: 0 5px 5px 0;
    padding: 5px 7px 5px 7px;
}

.nrtbl_link {
    padding: 5px 0 10px 0;
	font-size: 0.9em;
}

.nrtbl_link a {
    position: relative;
    display: inline-block;
    padding: 0;
	font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    top: -0.1em;
    color: #cc0000;
    font-size: 0.9em;
}

@media screen and (max-width:960px) {
.tr {
    font-size: 0.7em;
	letter-spacing: 0.1em;
}
.nrtbl_label {
    font-size: 9px;
}
.nrtbl_link {
    padding: 5px 0 10px 0;
	font-size: 0.7em;
}
.nrtbl_link a {
    position: relative;
    display: inline-block;
    padding: 0;
	font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    top: -0.1em;
    color: #cc0000;
    font-size: 0.9em;
}
}

/* SDGS banner */

.banner {
	background-color: #FFFFFF;
	background-image: url("../images/AdobeStock_74291486.jpeg");
	height: 600px;
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

.banner_title {
	font-weight: bold;
	font-size: 1.5em;
	color: #003035;
	text-align: left;
	padding-top: 120px;
	padding-left: 20%;
	letter-spacing: 2px;
	margin: 0;
}
.banner_description {
	font-size: 1.1em;
	font-weight: bold;
	color: #003035;
	text-align: left;
	padding-top: 50px;
	padding-left: 25%;
	line-height: 50px;
	margin: 0px;
}

/* link section */

.ls{
	margin: 0;
	padding: 0;
}

.ls ul {
	font-size: 0;
	letter-spacing: 0;
	padding: 0;
}

.ls li {
	width:33.3333333%;
	padding:100px 5px 90px;
	float: left;
	text-align:center;
	color:#fff;
	background-size:cover;
	display: inline-block;
	box-sizing: border-box;
}

.ls .sec-title {
	margin-bottom:30px;
}

.ls .sec-title .en {
	font-size: 0.8rem;
	line-height: 1.9em;
}

.ls .sec-title .jp {
	display: block;
	width: 80%;
	margin: 0 auto;
	font-size: 0.9rem;
	font-wight: bold;
	margin-top: 50px;
	line-height: 1.8em;
	letter-spacing: 0.1em;
}

.link1 {
	background:url("../images/link1.png") no-repeat center center;
}

.link2 {
	background:url("../images/link2.png") no-repeat center center;
}

.link3 {
	background:url("../images/link3.png") no-repeat center center;
}

.sec-title {
	font-size: 20px;
	font-weight:bold;
	margin-bottom: 30px;
}

.sec-title span {
	font-weight:normal;
	letter-spacing: 0.1em;
	display:block;
	font-size:1.0rem;
	margin-top:5px;
}

@media only screen and (max-width: 768px) {
	.sec-title {
		font-size:1.8rem;
	}
	.sec-title span {
		font-size:1.2rem;
	}
}

@media only screen and (max-width: 600px) {
	.sec-title {
		font-size:1.7rem;
	}
	.sec-title span {
		font-size:1.1rem;
	}
}

@media only screen and (max-width: 450px) {
	.sec-title {
		font-size:1.6rem;
	}
	.sec-title span {
		margin-top:0;
	}
}
@media only screen and (max-width: 1000px) {
	.ls li {
		padding:90px 3px 80px;
	}
	.ls .sec-title {
		margin-bottom:50px;
	}
}

@media only screen and (max-width: 768px) {
	.ls li {
		padding:70px 3px 60px;
	}
}

@media only screen and (max-width: 768px) {
	.ls li {
		width:100%;
		float:none;
	}
	.ls .sec-title {
		margin-bottom:40px;
	}
}

@media only screen and (max-width: 450px) {
	.ls li {
		padding:60px 3px 50px;
	}
}

.cf:after {
	content:'.';
	display:block;
	height:0;
	font-size:0;
	clear:both;
	visibility:hidden;
}

.ls .button {
	width: 100px;
	margin-top: 50px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	color: #FFF;
	letter-spacing: 2px;
	transition: all 0.4s linear;
}

.ls .button a{
	font-weight: 500;
	font-style: normal;
	display: block;
	font-size: 11px;
	color: #FFF;
	background: transparent;
	padding: 10px;
	border-radius: 6px;
	position: relative;
	z-index: 1;
	transition: .3s;
	border: 1px solid #FFFFFF;
}

.ls .button a:hover {
	color: #FF0004;
	background-color: #FFF;
	cursor: pointer;
}

.ls .button a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .4s;
}

.ls .button a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}


/* Form */
.footer_banner {
	background-color: #ffffff;
	padding-top: 30px;
	padding-bottom: 30PX;
	margin-bottom: 0px;
	background-image: url("../images/");
	background-attachment: scroll;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	text-align: center;
}

footer {
	display: inline-block;
}

#sport {
	font-size: 1.1em;
	text-align: center;
	padding-top: 50px;
}

#sport p{
	margin-top: 20px;
	font-size: 0.8em;
}

/* copyright */
.copyright {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgba(0,0,0,0.80);
	color: #FFFFFF;
	font-size: 0.8em;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
}

@media screen and (max-width: 960px) {
.banner {
	background-color: #FFFFFF;
	margin-top: 5px;
	background-image: url("../images/sdgs2.png");
	height: 500px;
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	background-attachment: scroll;
}
.banner_title {
	text-align: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 100px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	width: 100%;
	font-size: 1.1em;
}
.banner_description {
	text-align: right;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	margin-top: 50px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: none;
	width: 100%;
	font-size: 0.8em;
}
.banner {
	padding-left: 20px;
	padding-right: 20px;
}
}

@media screen and (max-width: 700px) {
.banner {
	background-color: #FFFFFF;
	margin-top: 5px;
	background-image: url("../images/AdobeStock_264960623.png");
	height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: scroll;
}
.banner_title {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 90px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	width: 100%;
	font-size: 1.1em;
	color: #fff;
}
.banner_description {
	text-align: center;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: none;
	width: 100%;
	font-size: 0.8em;
	color: #fff;
}
.banner {
	padding-left: 20px;
	padding-right: 20px;
}
}

