@charset "UTF-8";
/** メディアクエリ **/
/*=============
mixin.scss
=============*/
/** メディアクエリ **/
/*　見出し設定　*/
/*幅設定*/
/*=============
base.scss
=============*/
/* =======================================
　フォント
======================================= */
* {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/*------- 共通フォント -------*/
html {
  font-size: 62.5%;
  /*主要ブラウザのデフォルトサイズ16pxに対する62.5% => 10px;*/
  text-align: justify;
  /*bodyにoverflow:hiddenをかけたときのios対策*/
  overflow: auto;
  height: 100%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

body,
p,
table,
td,
th,
input,
textarea,
dt,
dd,
ul,
em,
span,
div,
b,
strong,
.bold {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  line-height: 2;
}

#hero {
  background: url(../img/hero--img.jpg) center;
  background-size: cover;
  height: 100vh;
  position: relative;
}

#hero::before {
  content: '';
  display: block;
  height: 100vh;
  background-color: #705A53;
  mix-blend-mode: multiply;
  opacity: 0.7;
  z-index: -1;
}

.hero-content {
  position: absolute;
  top: 53%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
}

@media (min-width: 80em) {
  .hero-content {
    top: 60%;
  }
}

.hLogo {
  text-align: center;
}

.hLogo img {
  width: 100%;
  max-width: 307px;
}

.hSns {
  text-align: center;
  padding-top: 8.6rem;
}

@media screen and (orientation: landscape) {
  .hSns {
    /* 横向きの場合のスタイル */
    padding-top: 4.6rem;
  }
}

@media screen and (orientation: landscape) and (min-height: 43.75em) {
  .hSns {
    padding-top: 8.6rem;
  }
}

.hSns a {
  text-decoration: none;
  color: #fff;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.hSns a .fa-brands {
  font-size: 4.5rem;
}

.hSns a .fa-facebook {
  margin-left: 2rem;
}

.hSns a:hover {
  opacity: 0.7;
}

.hBtn {
  padding-top: 7.8rem;
  text-align: center;
}

@media screen and (orientation: landscape) {
  .hBtn {
    /* 横向きの場合のスタイル */
    padding-top: 1.8rem;
  }
}

@media screen and (orientation: landscape) and (min-height: 43.75em) {
  .hBtn {
    padding-top: 7.8rem;
  }
}

.hBtn p {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  font-weight: 600;
}

@media (min-width: 41.25em) {
  .hBtn p {
    font-size: 1.8rem;
    letter-spacing: 1.8px;
  }
}

.hBtn a {
  display: inline-block;
  background: #fff;
  padding: 0.8rem 2.5rem;
  border-radius: 1rem;
  margin-top: 0.5em;
}

.hBtn a img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  width: 100%;
}

.hBtn a:hover img {
  -webkit-filter: none;
          filter: none;
}
/*# sourceMappingURL=style.css.map */