@charset "utf-8";
/*====================================
	PC画面
====================================*/
html{
	font-size: 16px;
}
body{
    width: 100%;
	color: #222;
	font-size: 1rem;
	line-height: 1.6;
    font-weight: 400;
	-webkit-text-size-adjust: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #fff;
}
.serif{
	font-family: 'Noto Serif JP', serif;
}
a{
	transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
	color: #222;
}
a:hover{
	opacity: 0.7;
}

header{
    margin: 40px auto 0;
    display: flex;
	max-width: 970px;
}
header .logo{
    width: 250px;
}
header .logo a{
}
header .logo a img{
    vertical-align: text-top;
    display: block;
}
.globalMenuSp{
    margin: 15px 0 0 auto;
}
.globalMenuSp ul{
    display: flex;
	margin-top: 5px;
	font-size: 1.2rem;
}
.globalMenuSp ul li{
    margin-right: 48px;
}
.globalMenuSp ul li:last-child{
    margin-right: 0;
}
.globalMenuSp ul li a{
	color: #222;
}
.pc{}
.sp{
    display: none;
}
@media only screen and (max-width: 870px){
   .globalMenuSp ul li{
      margin-right: 30px;
   }
}
/*====================================
	TOP
====================================*/
.contents{
	margin: 50px auto 0;
    width: 100%;
    padding: 0 0px 0;
    max-width: 970px;
}
#movie {
	max-width: 700px;
	margin: 100px auto;
  height:auto;
  position:relative;
	border: 1px solid #ccc;
}
#movie::before {
  display:block;
  content:'';
  width:100%;height:0;
  padding-top:75%; /* ※1)ココがアスペクト比（縦横比）*/
}
#movie video {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;top:0;left:0;right:0;bottom:0;
}
#movie .play-btn{
	cursor: pointer;
    display: block;
    width: 100%;
	max-width: 100px;
    position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      -webkit- transform: translateY(-50%) translateX(-50%);
}
#movie .play-btn i{
	font-size: 80px;
}
#movie .play-btn.playActive{display:none;}
#top_navi{
	max-width: 800px;
	margin: 0 auto;
}
#top_navi ul{
	display: flex;
	justify-content: space-around;
}
#top_navi ul li a{
	text-align: center;
	font-size: 1.4rem;
	color: #222;
}
#top_navi ul li a span{
	display: block;
	font-size: 1rem;
}
.top_copy{
	text-align: center;
	font-size: 0.8rem;
	margin: 70px auto 100px;
}

/*
	フッター
====================================*/
footer{
	background: #dbdcdc;
	width: 100%;
}
.footer_cont{
	padding: 50px 0;
	text-align: center;
}
.footer_cont a{
	display: block;
	margin-bottom: 30px;
}

/*====================================
	スマホ画面
====================================*/
@media only screen and (max-width: 767px){
.pc{
    display: none;
    }
.sp{
    display: block;
    }
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position:
	  fixed;
  z-index : 3;
  right : 13px;
  top   : 18px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 25px;
  height  : 1px ;
  left    : 6px;
  background : #222;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 18px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.active .hamburger span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#222;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.active .hamburger span:nth-child(2),
.active .hamburger span:nth-child(3) {
  top: 16px;
  background :#222;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
    display: none;
  position: fixed;
  z-index : 2;
  top  : 0;
  right: 0;
  color: #222;
  background: rgba(255,255,255,1);
  text-align: center;
    height: 70vh;
  width: 80%;
	border: 1px solid #222;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
    margin: 0;
}

nav.globalMenuSp ul {
  margin: 0;
  display:block;
  width: 100%;
    padding: 0 20px;
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
    font-size: 1.2rem;
    font-weight: 500;
}
.globalMenuSp ul li.info {
    background: #1458ca;
    border-radius: 30px;
    margin-top: 20px;
    border: 2px solid #1458ca;
}

/* このクラスを、jQueryで付与・削除する */
.active nav.globalMenuSp {
  opacity: 100;
    display: block;

}
body.active{
    height: 100%;
    width: 100%;
    }
.overlay {
    background-color: rgb(195, 194, 194, 0.1);
    cursor: pointer;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    z-index: 2;
  }
.active .overlay {
    opacity: 0.8;
    visibility: visible;
  }
#header {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
	width: 100%;
	margin: 0px 0;
	padding: 10px 20px;
  background: #fff;
  box-sizing: border-box;
  transition: .3s;
}
#header.scroll {
  padding: 10px 20px 10px;
border-bottom: 1px solid #222;
	border-top:  1px solid #222;
}
header .logo{
    width: 150px;
	transition: .3s;
}
#header.scroll .logo{
	width: 134px;
	
	}
.contents{
	margin: 0;
    width: 100%;
    padding: 0 30px;
    max-width: 970px;
}
#movie {
      width: calc(100% - 40px);
	max-width: 700px;
	margin: 170px 20px;
  height:auto;
  position:relative;
	border: 1px solid #ccc;
}
#movie .play-btn{
	cursor: pointer;
    display: block;
    width: 100%;
	max-width: 60px;
    position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      -webkit- transform: translateY(-50%) translateX(-50%);
}
#movie .play-btn i{
	font-size: 60px;
}
    
/*
	フッター
====================================*/
footer{
	background: #dbdcdc;
	width: 100%;
}
.footer_cont{
	padding: 40px 0;
	text-align: center;
	font-size: 0.85rem;
}
.footer_cont a{
	display: block;
	margin-bottom: 25px;
}

}