@charset "UTF-8";
/* CSS Document */

.site-header{
	mix-blend-mode: normal;
	display: flex;
	position: fixed;
	z-index : 997;
	justify-content: space-between;
	width: 95vw;
	height: 70px;
	top: 0px;
	background-color: rgba(255,255,255,0.80);
}
.site-logo img{
  max-height: 40px;
  padding: 12px 0 0 30px;
  margin: 0 auto;
}
#navi .navi-in > ul > li{
}
.gnav__menu{
  display: flex;
}
.gnav__menu__item{
  margin-left: -2px;
}
/* nav-wrap */
nav.globalMenuSp {
  width: auto;
  /* center align the menu */
  padding: 25px 30px 20px 30px;
}

nav {
  overflow: hidden; /* はみ出したものは隠す */
  _height: 1.5em; /* IE6用。祖先要素に幅や高さが指定していれば必要 */
}
ul {
  margin-left: -2px; /* 一番左のボーダー幅と同じ値の負のマージン */
  padding: 0;
  margin: 0;
}
li {
  padding: 0 10px;
  display: inline; /* 横並びにさせる */
  border-left: 0px solid #4a4a4a; /* 区切り線 */
}
li:first-child {
  border: none; /* 親要素から見て一番目のli要素のボーダーを無しに */
}

/* Links */
nav.globalMenuSp ul li a {
  font-family: a-otf-kaimintustd-bold, serif;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: normal;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
.site-header{
  mix-blend-mode: normal;
}
.site-logo img{
  max-height: 40px;
  padding: 10px 0 0 20px;
  margin: 0 auto;
}
.gnav__menu{
  display: flex;
}
.gnav__menu__item{
  margin-left: 0px;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: absolute;
  z-index : 3;
  right : 15px;
  top   : 15px;
  width : 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 27px;
  height  : 2px ;
  left    : 6px;
  background : #333;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 9px;
}
.hamburger span:nth-child(2) {
  top: 18px;
}
.hamburger span:nth-child(3) {
  top: 27px;
}

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

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

nav.globalMenuSp {
  position: absolute;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background-color: rgba(255,255,255,0.95);
  width: 100vw;
  height: 100vh;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  padding: 45px 0 0 0;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 15px 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-right: none;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}
nav.globalMenuSp ul li a {
  display: block;
  text-decoration : none;
  font-size: 27px;
  text-align: center;
  padding: 30px 0; 
  }
li+ li {
  height: initial;
  border-left: initial;
  padding-left: initial;
}
  
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
  }
}


/* top */
#topbg {
	background-image: url("../images/top_bg.jpg");
	width: 95vw;
	height: 88vh;
	z-index: 0;
	margin: 0 auto;
	background-repeat: no-repeat;
  background-position: 50% 100%;
	background-size: cover;
	border-radius: 15px;
}
@media only screen and (max-width: 768px) {
  #topbg {
    width: 95vw;
    height: 92vh;
    }
  }
@media only screen and (max-width: 480px) {
  #topbg {
  	background-image: url("../images/top_bg.jpg");
    width: 93vw;
    height: 91vh;
    }
  }



/* footer */
.footer {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
	background-color: rgba(255,255,255,0.80);
}
.footer img {
  max-width: auto;
  max-height: 320px;
}
.footer h4 {
  line-height: 1.4em;
  padding: 0 0 5px;
  margin: 0 auto;
}
.footer p {
  display: inline-block;
  font-size: 100%;
  line-height: 1.4em;
  padding: 0 0 5px;
  margin: 0 auto;
}
.footer .fas, .fab {
  margin: 6px 10px 0 0;
}
@media only screen and (min-width: 769px) and (max-width: 820px)  {
  .footer {
    width: 90vw;
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .footer{
    margin: 0 auto;
  }
  .footer .footer-center i {
    margin-left: 0;
  }
}

.copyright{
  text-align: center;
  padding: 20px 0 0 0;
}

.blend {
 mix-blend-mode: screen;
}