@charset "utf-8";
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');*/
/* --------
[コーディングルール]
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・トップページはロゴを<h1>、他のページはロゴを<p>でページタイトルを<h1>にする
・メディアクエリーはPCファーストで、@media (max-width: 767px) {}を使用
-------- */

/* reset -------- */
*, *:before, *:after {
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  margin: 0;
  padding: 0;
  /*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family: "Noto Serif JP", YuMincho, Yu Mincho, serif;
  font-size: 13px;
  color: #000;
  /*
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  */
}
article h1,
.header .gnav li a { letter-spacing: .08em; }


.footer__menu { letter-spacing: .1em; }

article, aside, figure, footer, header, hgroup, nav, section {
  display: block;
}
h1, h2, h3, h4, h5, h6, p, th, td, address, small, i {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
}
ol, ul, dl, dt, dd {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
img, object, embed {
  border: 0;
  vertical-align: bottom;
}
img {
  max-width: 100%;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
th {
  text-align: left;
}
em {
  font-style: normal;
  font-weight: bold;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}

@media (max-width: 767px) {
}

/* all -------- */
.clearfix {zoom: 1;}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.container {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.text-center {text-align: center;}
.text-right {text-align: right;}

.display-inline {display: inline;}
.display-inline-block {display: inline-block;}
.display-block {display: block;}
.display-table {display: table;}
.display-table-cell {display: table-cell;}

.bg-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 0;
  padding-top: 71.42%;
}

@media (max-width: 767px) {
  .pc {display: none !important;}
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .sp {display: none !important;}
  .over {
    transition: opacity .3s;
  }
  .over:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
  }
}

/* header -------- */
.header-wrap {
  height: 100px;
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
  background-color: #fff;
  opacity: 0.85;
}
.header-inner {
  position: relative;
  /* max-width: 990px; */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 0 10px; /* 0 15px*/
  height: 100px;
}
.header-inner h1{
  display: block;
  width: 400px;
  position: absolute;
  top:21px;
  left: 180px;
  color: #555;
}
@media (max-width: 767px) {
  .header-inner h1{
    display: block;
    width: 100%;
    top:55px;
    left: 0;
    color: #FFF;
    font-size: 0.7em;
    text-align: center;
    background-color: #111;
  }
}

.header .logo {
  position: relative;
  z-index: 2;
  float: left;
  padding-top: 7px; /*17px*/
}

.header .gnav {
  position: absolute;
  left: 0;
  z-index: 1;
  top: 50px; /*22px*/
  width: 100%;
  text-align: center;
  letter-spacing:-.40em;
}
.header .gnav li {
  /*display: inline-block;*/
  /* float: left; */
  letter-spacing:normal;
  width:12.5%; /*16.6666667%*/
}
.header .gnav a {
  position: relative;
  display: inline-block;
  padding: 10px 0; /*10px 6px*/
  /*font-family: 'Barlow Condensed';*/
  font-size: 20px; /*23px*/
}
.header .gnav a .fonts {
  padding: 8px 0;
  display: block;
}
.header .gnav a img {
  display: block;
}
.header .gnav li.contact a img {
  display: inline-block;
  vertical-align: middle;
}
.header .sns {
  position: relative;
  z-index: 2;
  float: right;
  padding-top:15px; /*37px*/
}
.header .sns li {
  float: left;
  margin-left: 10px; /*17px*/
}
.header .sns li a {
  display: block;
}

.header .icon-tel{
	position:absolute;
	top:-33px;
	right:120px;
	width:205px;
	height:22px;
}
.header .icon-tel img{
	width:205px;
	height:auto;
}

.header .logo img.pc {
	width:130px;
	height:auto;
}

@media (min-width: 768px) {
  body.admin-bar .header {
    top: 32px;
  }
  .header .gnav a:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 2px;
    margin-top: -1px;
    /* background-color: #cf1e28; */
    transition: all .3s;
    -webkit-transition: all .3s;
  }
  .header .gnav a:hover:after {
    left: 0;
    width: 100%;
  }
  .header .gnav a.current:after {
    left: 0;
    width: 100%;
  }
}

@media (max-width: 850px) {
  .header .gnav {
    padding-left:0; /* 100px*/
  }
}


@media (max-width: 767px) {
  .header-wrap {
    height: 55px;
  }
  body.admin-bar .header-wrap {
    height: 0;
  }
  .header-inner {
    height: 55px;
  }
  .header .logo {
    padding-top: 10px;
  }
  .header .gnav {
    display: none;
    top: 0;
    left: auto;
    right: 0;
    width: 200px; /*160px*/
    padding-left: 0;
    background-color: #000;
  }
  .header .gnav ul {
    padding: 60px 0 20px;
  }
  .header .gnav li {
    display: block;
   width: inherit;
 }
  .header .gnav a {
    display: block;
    padding: 8px 20px;
    color: #fff;
    font-size: 18px;
    /* text-align: left; */
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
  
  .header .gnav li.contact a span {
    display: block;
    background-color: #fff;
    text-align: center;
  }
  .header .gnav li.lang {
    text-align: center;
  }
  .header .gnav li.lang a {
    display: inline-block;
    position: relative;
  }
  .header .gnav li.lang a.jp {
    padding: 10px 8px 10px 10px;
  }
  .header .gnav li.lang a.jp:after {
    content: '';
    position: absolute;
    right: 0;
    top: 15px;
    display: block;
    width: 1px;
    height: 17px;
    background-color: #fff;
  }
  .header .gnav li.lang a.en {
    padding: 10px 10px 10px 5px;
  }

  .header .sns {
    padding:17px 60px 0 0; /*17px 40px 0 0*/
  }
  .header .sns li {
    margin-left: 13px;
  }
  .header .sns li a {
    position: relative;
  }
  .header .sns li a .close {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
  body.is-sp-nav-open .header .sns li a .close {
    opacity: 1;
  }

  .header .sp-menu {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }
  .header .sp-menu a {
    display: block;
    width: 55px;
    height: 55px;
  }
  .header .sp-menu span,
  .header .sp-menu span:before,
  .header .sp-menu span:after {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: block;
    margin: 0 auto;
    width: 20px;
    height: 2px;
    margin-top: -1px;
    background: #000;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .header .sp-menu span:before {
    content: "";
    margin-top: -8px;
  }
  .header .sp-menu span:after {
    content: "";
    margin-top: 6px;
  }
  body.is-sp-nav-open .header .sp-menu span {
    background: transparent;
  }
  body.is-sp-nav-open .header .sp-menu span:before {
    margin-top: -2px;
    margin-left: -2px;
    height: 2px;
    width: 26px;
    background: #fff;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  body.is-sp-nav-open .header .sp-menu span:after {
    margin-top: -2px;
    margin-left: -2px;
    height: 2px;
    width: 26px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

/* footer -------- */


.footer-inner {
  position: relative;
  /* max-width: 990px; */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  min-height: 180px;
}
.footer .logo {
  position: relative;
  z-index: 2;
  float: left;
  padding-top: 35px;
}

.footer .gnav {
  position: absolute;
  left: 230px; /*0*/
  z-index: 1;
  top: 48px; /*44px*/
  /*width: 100%;
  text-align: center;*/
}
.footer .gnav li {
  display: inline-block;
}
.footer .gnav a {
  display: inline-block;
  padding: 10px 6px;
  /*font-family: 'Barlow Condensed';*/
  font-size: 18px; /*23px*/
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.footer .gnav a img {
  vertical-align: middle;
}
.footer .sns {
  position: relative;
  z-index: 2;
  float: right;
  padding-top: 120px; /*59px→100px */
}
.footer .sns li {
  float: left;
  margin-left: 19px; /*15px*/
}
.footer .sns li a {
  display: inline-block;
}
.footer .sns li.contact {
  position: relative;
  top: -5px;
  margin-left: 32px; /*24px*/
}
.footer .sns li.contact a {
  padding: 0 22px;
  /*font-family: 'Barlow Condensed';*/
  font-size: 20px;
  background-color: #fff;
}
.footer .sns li.contact a img {
  vertical-align: middle;
}
.footer .sns li.privacy {
  position: absolute;
  right: 5px;
  bottom: -30px; /*-70px*/
}
.footer .sns li.privacy a img {
  vertical-align: middle;
}
.footer .sns li.privacy a {
  line-height: 1;
  padding: 0 9px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  /*font-family: 'Barlow Condensed';*/
  font-size: 15px;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.footer .copyright {
  clear: both;
  padding-top: 35px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 14px;
  /*font-family: 'Barlow Condensed';*/
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.footer .copyright img {
  vertical-align: middle;
}
@media (max-width: 1000px) {
/*  .footer .logo {
    width: 125px;
    padding-top: 47px;
  }
  .footer .gnav {
    padding-left: 170px;
    font-size: 20px;
    text-align: left;
  }
  .footer .gnav a {
    padding: 10px 4px;
  }*/
}
@media (max-width: 950px) {
/*  .footer .sns {
    padding-top: 99px;
  }
  .footer .sns li.privacy {
    bottom: -30px;
  }*/
}

@media (max-width: 930px) {
/*  .footer .gnav {
    padding-left: 100px;
  }*/
 /* .footer .sns {
    padding-top: 99px;
  }*/
  .footer .sns li.privacy {
    bottom: -30px;
  }
}

@media (max-width: 767px) {
  .footer-inner {
	height: 370px; /*384px*/
    padding: 0 20px;
  }
  .footer .logo {
    position: absolute;
    left: 20px;
    bottom: 34px;
    float: none;
    padding: 0;
  }

  .footer .gnav {
    position: relative;
    left: auto;
    top: auto;
    text-align: left;
    padding: 22px 0 0 7px;
  }
  .footer .gnav li {
    display: block;
    float: left;
    width: 50%;
  }
  .footer .gnav a {
    display: block;
    padding: 10px 6px;
    font-size: 18px;
  }

  .footer .sns {
    float: none;
    padding-top: 15px;
    padding-left: 12px;
    padding-bottom: 20px; /*25px*/
    border-bottom: 1px solid #fff;
  }
  .footer .sns li {
    margin-left: 0;
    margin-right: 15px;
  }
  .footer .sns li.contact {
    position: relative;
    float: right;
    top: -5px;
    width: 50%;
    margin: 0;
  }
  .footer .sns li.contact a {
    padding: 0 45px 0 10px;
    font-size: 18px;
  }
  .footer .sns li.privacy {
    right: 5px;
    bottom: -97px;
    margin: 0;
  }
  .footer .sns li.privacy a {
    padding: 0 5px;
    font-size: 12px;
  }

  .footer .copyright {
    position: absolute;
    left: 20px;
    bottom: 10px;
    font-size: 8px;
    /*font-family: 'Barlow Condensed';*/
    color: #fff;
  }
}
