@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  background-color: #37474F; /* RGB */
  color: #FFF;
  font-family: 'Noto Serif JP', serif, sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/*スタイル調整用*/
a{
  text-decoration: none;
}
li{
	list-style: none;
}

/* header */
.header {
  background-color: rgba(0,0,0,0);
  width: 100%;
  height: 110px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
}

.header__inner{
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
}
@media (max-width: 960px) {
	.header__inner{
		padding: 0 14px;
	}
}

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

@media screen and (min-width: 960px) {
  .header__title {
    width: 120px;
  }
}

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

/* headerのナビ背景分 */
.header__nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100vh;
  transform: translateX(0); 
  background-color: rgba(30,39,44,0.95); /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}
.hamburger p{
	color: #FFFFFF;
	margin: 10px 0;
	font-family: 'Noto Serif JP', serif, sans-serif;
	font-size: 8px;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1.5px;
  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 {
	width: 33%;
}
@media(max-width:960px){
	.header__nav.active{
		width: 100%;
	}
}

.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);
}
.hamburger.active p {
  opacity: 0;
}

.nav-items {
  padding: 0;
  position: absolute;
  top: calc(50% - 185px);
  left: 0;
  right: 0;
/*  transform: translate(-50%,-50%);*/
}

.nav-items a:hover {
  opacity: 0.5;
}

.nav-items img{
  width: 30px;
  height: 30px;
		
}

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

.nav-items__item:last-child a {
  margin-bottom: 0;
}
@media(max-width:960px){
	.nav-items__item a {
  font-size: 16px;
}
}

/* footer */

.footer {
  background-color: #323E45;
  position: relative;
  width: 100%;
  height: 590px;
  top: 0;
  left: 0;
  right: 0;
}

.footer__inner{
	display: block;
	align-items: center;
	justify-content: space-between;
}


/* フッターのロゴ部分 */
.footer__title{
	margin: 0 auto;
	padding: 70px 0;
	width: 150px;
}

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

.footer__nav a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 14px;
  padding-bottom: 30px;
}

.footer__nav a:hover {
  opacity: 0.5;
}

.footer__nav2-item img{
　display: block;
  width: 30px;
  height: 30px;
}

.footer__c {
	font-size:10px;
	text-align: right;
	position: absolute;
	right: 20px;
	bottom: 20px;
}



@media screen and (min-width: 960px) {
	.footer{
		width: 100%;
		height: 274px;
	}
	.footer__inner{
		padding-top: 50px; 
		display: inline-flex;
	}
	.footer-title{
		margin: 0;
		padding: 0;
	}
	.footer__nav{
		display: flex;
	}
	.footer__nav1{
		padding-left: 150px;
	}
	.footer__nav2{
		padding-left: 50px;
	}
	.footer__nav2-item img{
		margin-left: auto;
	}
}

/*フェードインアニメーション*/
.fadein{
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 2s, visibility 2s, transform 2s;
}
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}