@charset "utf-8";
/* CSS Document */
header{
	min-width: 1020px;
}
#global {
	position: fixed;
  display:flex;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(0,0,0,0.8);
	z-index: 777;
	padding: 1rem 2rem;
	font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
	
}
#global .button,
#overlday {
  display: none;
}
.global-nav{
	display: flex;
	align-items: center;
}
.global-nav h1{
	width: 200px;
	margin-right: 1rem;
}
#global .items {
  display: flex;
  justify-content: center;
}
#global .items .item {
  display: block;
  text-decoration: none;
  box-sizing: border-box;
  padding: 10px 20px;
}
.items li a {
  text-decoration: none;
  color: #fff;
  display: block;
  /*height: 100%;*/
  display: flex;
  align-items: center;
  transition: .3s;
  font-weight: bold;
  position: relative;
  padding: 0 10px;
}
.items li a::after {
  content: '';
  display: block;
  height: 1px;
  width: 0%;
  background: #2FA5CB;
  position: absolute;
  bottom: 0;
  left: 10%;
  transition: .3s;
}
.items li a:hover {
  color: #2FA5CB;
}
.items li a:hover::after {
  width: 80%;
}
.nav_twi{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.fa-twitter{
	margin-right: 5px;
}
.patch{
	position: relative;
}
/*.patch::before{*/
	/*font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;*/
	/*content: "9/8up!";*/
	/*color: #fff;*/
	/*font-size: 10px;*/
	/*position: absolute;*/
	/*padding: 0 .5rem;!*余白*!*/
	/*background: red;!*背景色*!*/
	/*border-radius: 50px;*/
	/*top:-3px;*/
	/*left:50%;*/
	/*line-height: normal !important;*/
	/*-webkit-transform : translateX(-50%);*/
  /*transform : translateX(-50%);*/
/*}*/
@media only screen and (max-width: 844px) {
	.global-nav h1{
		width: 150px;
		margin-right:0;
	}
    #overlday {
      display: none;
      position: fixed;
      z-index: 9;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, .65);
    }
    #overlday.active {
      display: block;
    }
	
    #global {
      position: fixed;
      z-index: 10;
      left: 0;
      top: 0;
      text-align: right;
      margin-top: 0;
      background-color: #000;
		padding: 0;
		height: 50px;
    }
    #global .button,
    #global .button > span {
      display: inline-block;
      transition: all .4s;
      box-sizing: border-box;
    }
    #global .button {
      position: absolute;
      width: 40px;
      height: 30px;
      border: none;
      cursor: pointer;
      background: transparent;
      margin: 10px;
    }
    #global .button > span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 4px;
      background-color: #fff;
      border-radius: 4px;
    }
    #global .button > span:nth-of-type(1) {
      top: 0;
    }
    #global .button > span:nth-of-type(2) {
      top: 13px;
    }
    #global .button > span:nth-of-type(3) {
      bottom: 0;
    }
    #global.active .button > span {
      background-color: #fff;
    }
    #global.active .button > span:nth-of-type(1) {
      transform: translateY(13px) rotate(-45deg);
    }
    #global.active .button > span:nth-of-type(2) {
      opacity: 0;
    }
    #global.active .button span:nth-of-type(3) {
      transform: translateY(-13px) rotate(45deg);
    }
    #global .items {
      display: none;
		flex-direction: row;
      flex-wrap: wrap;
      text-align: center;
      background-color: #000;
		width: 100%;
		margin-top: 8vh;
    }
    #global.active .items {
      display: flex;
    }
    #global .items > .item {
      width: 100%;
      padding: 10px;
      border-right: none;
      border-bottom: 1px solid #fff;
    }
    #global .items > .item:last-of-type {
      border-bottom: none;
    }
    .items li{
        width: 50%;
    }
	.global-nav{
	display: flex;
		flex-direction: column;
	align-items: center;
		width: 100%;
		font-size: 20px;
		line-height: 3;
		padding-top: 6px;
}
	#global.active{
		background-color: #000;
		height: 100vh;
		z-index: 99999;
	}
    .patch::before{
	top:5px;
}
}
