@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
*, ::before, ::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  html {
    font-size: 0.715vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.334vw;
  }
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif, "Noto Sans JP", sans-serif;
  color: #323232;
  line-height: 1;
  background-color: #f8f8f8;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  overflow-x: hidden;
}

a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70); /* ie lt 8 */
  -ms-filter: "alpha(opacity=70)"; /* ie 8 */
  -moz-opacity: 0.7; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0.7; /* Safari 1.x */
  zoom: 1;
}

p {
  line-height: 1.5;
  text-align: left;
  margin: 0;
}

a {
  color: #323232;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
}

#wrap {
  position: relative;
  width: 100%;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  text-align: center;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #wrap {
    height: auto;
    height: 100vh;
    line-height: 1;
  }
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* Header Style */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 0;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 998;
}
@media screen and (max-width: 768px) {
  header {
    padding: 0;
    margin: 3rem auto;
  }
}

header h1 {
  text-align: left;
  margin: 0;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
@media screen and (min-width: 769px) {
  header h1 {
    padding-left: 5rem;
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  header h1 {
    padding-left: 5rem;
    height: auto;
    font-size: 3.2rem;
    letter-spacing: 0.2em;
    line-height: 1.3em;
  }
}

header h1 a {
  text-decoration: none;
  color: #323232;
}

/* GrovalNavi Style */
#gnav {
  padding-right: 5rem;
  margin: 0;
  font-family: "Oswald", sans-serif;
}

#gnav ul {
  list-style: none;
}

#gnav ul li {
  display: inline-block;
  padding: 0 0 0 2.5vw;
  margin: 0;
  text-align: right;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

#gnav ul li:first-of-type {
  padding: 0;
}

#gnav ul li a {
  display: inline-block;
  text-decoration: none;
  position: relative;
}

#gnav ul li a:hover {
  text-decoration: none;
  opacity: 1;
}

#gnav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #323232;
  bottom: -0.7rem; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}

#gnav ul li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

/* ウィンドウ幅が0〜768pxの場合に適用するCSS */
@media screen and (max-width: 768px) {
  #nav-toggle {
    display: block;
    width: 3rem;
    height: 3rem;
    top: 0;
    right: 0;
    padding-top: 0.3rem;
    padding-right: 0.5rem;
    margin-left: auto;
    cursor: pointer;
    position: absolute;
    z-index: 999;
  }
  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 3rem;
    top: 3.4rem;
    width: 11rem;
    height: 7rem;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 8.8rem;
    height: 0.2rem;
    left: 1.2rem;
    background: #555;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 1.6rem;
  }
  .hamburger span:nth-child(2) {
    top: 3.2rem;
  }
  .hamburger span:nth-child(3) {
    top: 4.8rem;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 3.2rem;
    left: 1.2rem;
    background: #fff;
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background: #fff;
    transform: rotate(45deg);
  }
  header #gnav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.85);
    text-align: center;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  header #gnav ul {
    margin: 0 auto;
    padding: 20rem 0;
    width: 100%;
  }
  header #gnav ul li {
    list-style-type: none;
    padding: 0 0 50px 0;
    width: 100%;
    transition: 0.4s all;
    text-align: center;
  }
  header #gnav ul li:first-of-type {
    padding-bottom: 50px;
  }
  header #gnav ul li:last-child {
    padding-bottom: 0;
  }
  header #gnav ul li a {
    display: block;
    color: #fff;
    padding: 0;
    text-decoration: none;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
  header #gnav ul li a::after {
    background: none;
  }
  /* このクラスを、jQueryで付与・削除する */
  header #gnav.active {
    opacity: 100;
    visibility: visible;
  }
}
/* Contents Style */
#contents {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #contents {
    margin: 20rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  #contents {
    margin: 20rem auto 0;
  }
}

/* Contents Style */
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

/* Pagetop Style */
#pagetop {
  position: fixed;
  right: 0;
  text-indent: -9999px;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #pagetop {
    bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #pagetop {
    bottom: 5rem;
  }
}

#pagetop a {
  position: relative;
  display: block;
  background: rgb(0, 0, 0);
  transition: opacity 0.6s ease;
}
@media screen and (min-width: 769px) {
  #pagetop a {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  #pagetop a {
    width: 6rem;
    height: 6rem;
  }
}

@media screen and (min-width: 769px) {
  #pagetop a:hover {
    opacity: 0.3;
  }
}

#pagetop a::before {
  position: absolute;
  margin: auto;
  content: "";
  transform: rotate(-45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
@media screen and (min-width: 769px) {
  #pagetop a::before {
    top: 0.7rem;
    width: 0.6rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  #pagetop a::before {
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
  }
}

/* Footer Style */
#footer {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #footer {
    padding: 15rem 0 7rem;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 15rem 0 7rem;
  }
}

.copyright {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  color: #323232;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .copyright {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 2.2rem;
  }
}/*# sourceMappingURL=template.css.map */