@charset "utf-8";

/*  =============================================================

　　基本設定

============================================================= */


/*  全体　基本設定
---------------------------------------------*/

html,
body {
  width: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  font-family:'Oswald', "Sawarabi Gothic", "游ゴシック体", "Yu Gothic",  "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", 'Meiryo', 'Verdana', sans-serif;
  font-size:16px;
  font-size:1.6rem;
  line-height:1.0em;
  letter-spacing: 0;
  text-align: center;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  color: #313131;
}

@media screen and (max-width:768px){

  input, button, select, textarea {
      -webkit-appearance: none;
  }


}

.grecaptcha-badge { visibility: hidden; }

/*  ボックス 基本設定
-------------------------- */
.displayPC {
  display: block;
}

.displaySP {
  display: none;
}

.disnon {
  display: none;
}

@media screen and (max-width: 768px){
  .displayPC {
    display: none;
  }

  .displaySP {
    display: block;
  }
}

/*  画像 基本設定
-------------------------- */

img {
  width: auto;
  vertical-align: top;
  border: none;
}

a:hover img {
  filter: alpha(opacity=70);
  -moz-opacity:0.70;
  opacity:0.70;
}

@media screen and (max-width: 768px){
  img {
    width: 100%;
    vertical-align: top;
    border: none;
  }

  a:hover img {
  filter: alpha(opacity=100);
  -moz-opacity:1;
  opacity:1;
  }
}

/*  テキスト 共通設定
-------------------------- */

em {
  font-weight: bold;
}


/*  リンク 基本設定
-------------------------- */

a {
  display: inline-block;
  outline: none;
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  color: #333;
}


/* 　コンテナー　設定
---------------------------------------------*/

#container {
  position: relative;
  //padding-top: 80px;
  line-height: 1.5;
}

.boxInner {
  width: 1000px;
  min-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

@media screen and (max-width: 768px){
  #container {
    //padding-top: 65px;
  }

  .boxInner {
    width: auto;
    min-width: 0;
    margin: 0 2%;
  }
}

/*  ヘッダー レイアウト
---------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  height: 80px;
}

#header .headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 1000px;
  padding: 15px 0 0;
}

#header .siteLogo {
  width: 40%;
  padding: 0 0 0 30px;
  text-align: left;
}

#header .siteLogo img {
  width: 120px;
  max-width: 100%;
  height: auto;
}

#header .boxGlobalNav {
  width: 55%;
}

#header .boxGlobalNav .btnOpen {
  display: none;
}

#header .boxGlobalNav .boxMenu {
  padding: 15px 10px 0 0;
  text-align: right;
}

#header .boxGlobalNav .boxMenu li {
  display: inline-block;
  margin: 0 15px;
}

#header .boxGlobalNav .boxMenu li a {
  padding: 0 10px;
  font-weight: bold;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  transition: all .3s;
}

#header .boxGlobalNav .boxMenu li a:hover {
  background: #333;
  color: #fff;
}

@media screen and (max-width: 768px){
  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: auto;
    height: 65px;
    border-bottom: none;
    background: none;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }


  #header .headerInner {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 0;
  }

  #header .siteLogo {
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }

  #header .siteLogo img {
    width: 60px;
    margin: 0 auto;
    max-width: 200px;
  }

  #header .boxGlobalNav {
    display: none;
  }

}

/*  ドロワーメニュー
---------------------------------------------*/
.header__menu {
  display: none;
  @media screen and (max-width: 768px){
    display: block;
  }
}

#drawer-checkbox {
  display: none;
}
#drawer-icon {
  cursor: pointer;
  display: inline-block;
  position: fixed;
  z-index: 9998;
  top: 10px;
  right: 4%;
  width: 40px;
  height: 40px;
}
#drawer-icon span {
  background:  #000;
  display: block;
  height: 2px;
  left: 0;
  right: 0;
  margin: -5% auto 0;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease-in-out;
  width: 80%;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #000;
  border-radius: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0%;
  margin: -5% 0 0 0;
  position: absolute;
  top: 50%;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#drawer-icon span::before {
  margin-top: -30%;
}
#drawer-icon span::after {
  margin-top: 28%;
}
#drawer-checkbox:checked ~ #drawer-icon span {
  background: rgba(51, 51, 51, 0);
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  height: 100%;
  left: 5%;
  margin: 0% 0 0 0%;
  position: absolute;
  top: 50%;
  width: 90%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
#drawer-content {
  visibility: hidden;
  overflow: auto;
  position: fixed;
  top: 0;
  left:0;
  z-index: -1;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #fff;
  transition: all .2s ease-in-out 0s;
  transform: translateX(0%);
  opacity: 0;
}
#drawer-checkbox:checked ~ #drawer-content {
  visibility: visible;
  z-index: 998;
  transition: all .8s ease-in-out 0s;
  transform: translateX(0);
  opacity: 1;
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0.3;
}


/*  メニュー
---------------------------------------------*/
.gNav {
  max-width: 580px;
  margin: 0 auto;
  padding: 120px 4% 40px;
  -webkit-overflow-scrolling: touch;
}

.gNav__title {
  width: 160px;
  margin: 0 auto 40px;
}

.gNav__list {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.gNav__list li {
  margin: 0 0 60px;
  padding: 0;
}

.gNav__list li a {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
}

.gNav__list li a:hover {
  text-decoration: underline;
}

/*  フッター レイアウト
---------------------------------------------*/
#footer {
  padding: 40px 0;
  border-top: 1px solid #333;
}


#footer .boxCopyright {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 768px){
  #footer {
    padding: 20px 0;
  }


  #footer .boxCopyright {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
  }

}
