@font-face {
  font-family: "Oswald";
  src: url("../font/Oswald-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url("../font/Oswald-VariableFont_wght.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
header {
  width: 100%;
  padding: 20px 66px 13px 34px;
  position: fixed;
  z-index: 999;
  top: 0;
}
@media only screen and (max-width: 1024px) {
  header {
    padding: 1.95vw 3.91vw 1.27vw 3.32vw;
  }
}
@media only screen and (max-width: 768px) {
  header .header__logo--sp {
    width: 50px;
    position: fixed;
    /* top: 20px; */
    top: 5px;
    left: 15px;
  }
}

.header__bg {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  background: rgba(38, 35, 35, 0.45);
  width: 100%;
  height: 70px;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .header__bg{
    height: 6.84vw;
  }
}
@media only screen and (max-width: 768px) {
  .header__bg{
    height: 60px;
  }
}


header #g-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  header #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #3B3A47;
    opacity: 0.95;
    transition: all 0.6s;
  }
}
@media only screen and (max-width: 768px) {
  header #g-nav.panelactive {
    right: 0;
  }
}
header #g-nav .header__logo {
  width: 198px;
}
@media only screen and (max-width: 1024px) {
  header #g-nav .header__logo {
    width: 19.14vw;
  }
}
@media only screen and (max-width: 768px) {
  header #g-nav .header__logo {
    width: 100px;
  }
}
header #g-nav .header__lists {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  header #g-nav .header__lists {
    font-size: 1.56vw;
  }
}
@media only screen and (max-width: 768px) {
  header #g-nav .header__lists {
    position: absolute;
    flex-direction: column;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
header #g-nav .header__lists li {
  margin-right: 50px;
}
@media only screen and (max-width: 1024px) {
  header #g-nav .header__lists li {
    margin-right: 3.42vw;
  }
}
@media only screen and (max-width: 768px) {
  header #g-nav .header__lists li {
    list-style: none;
    text-align: center;
    margin: 10px auto 0;
    font-size: 1.6rem;
  }
}
header #g-nav .header__lists li:first-child {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
}
header #g-nav .header__lists li:last-child {
  margin: 0;
  width: 30px;
}
@media only screen and (max-width: 1024px) {
  header #g-nav .header__lists li:last-child {
    width: 2.93vw;
  }
}
@media only screen and (max-width: 768px) {
  header #g-nav .header__lists li:last-child {
    width: 30px;
    margin: 20px auto 0;
  }
}
header #g-nav .header__lists li a {
  text-shadow: 0px 0px 10px rgba(38, 35, 35, 0.3);
}
@media only screen and (max-width: 768px) {
  header #g-nav .header__lists li a {
    text-decoration: none;
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}
@media only screen and (max-width: 768px) {
  header .openbtn {
    position: fixed;
    z-index: 9999;
    /* top: 10px; */
    top: 4px;
    right: 10px;
    cursor: pointer;
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 768px) {
  header .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    background-color: #C6C0AB;
    width: 60%;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  }
}
@media only screen and (max-width: 768px) {
  header .openbtn span:nth-of-type(1) {
    top: 15px;
  }
}
@media only screen and (max-width: 768px) {
  header .openbtn span:nth-of-type(2) {
    top: 25px;
  }
}
@media only screen and (max-width: 768px) {
  header .openbtn span:nth-of-type(3) {
    top: 35px;
  }
}
@media only screen and (max-width: 768px) {
  header .openbtn.active span {
    background-color: #FFFFFF;
  }
}
@media only screen and (max-width: 768px) {
  header .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
}
@media only screen and (max-width: 768px) {
  header .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
}
@media only screen and (max-width: 768px) {
  header .openbtn.active span:nth-of-type(3) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(45deg);
    width: 35%;
  }
}

footer {
  width: 100%;
  padding-top: 80px;
}
@media only screen and (max-width: 1024px) {
  footer {
    padding-top: 7.81vw;
  }
}
footer .inner {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  footer .inner {
    flex-direction: column;
  }
}
footer .inner .footer__address .footer__logoContainer {
  width: 128px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1024px) {
  footer .inner .footer__address .footer__logoContainer {
    width: 12.5vw;
    margin-bottom: 1.46vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .inner .footer__address .footer__logoContainer {
    width: 100px;
    margin-bottom: 30px;
  }
}
footer .inner .footer__address .footer__name {
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 1024px) {
  footer .inner .footer__address .footer__name {
    font-size: 2.44vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .inner .footer__address .footer__name {
    font-size: 16px;
  }
}
footer .inner .footer__address address {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin-top: 5px;
}
@media only screen and (max-width: 1024px) {
  footer .inner .footer__address address {
    font-size: 1.56vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .inner .footer__address address {
    font-size: 13px;
  }
}
footer .inner .footer__address address a {
  margin-top: 10px;
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  footer .inner .footer__address address a {
    margin-top: 0.98vw;
  }
}
footer .inner .footer__address .footer__ig {
  width: 35px;
  margin-top: 35px;
}
@media only screen and (max-width: 1024px) {
  footer .inner .footer__address .footer__ig {
    width: 3.42vw;
    margin-top: 3.42vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .inner .footer__address .footer__ig {
    width: 30px;
  }
}
footer .inner .footer__map {
  width: 335px;
  height: 297px;
}
@media only screen and (max-width: 1024px) {
  footer .inner .footer__map {
    width: 32.71vw;
    height: 29vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .inner .footer__map {
    width: 100%;
    height: 180px;
    margin-top: 30px;
  }
}
footer .inner .footer__map iframe {
  width: 100%;
  height: 100%;
}
footer .footer__nav {
  width: 80%;
  max-width: 900px;
  margin: 60px auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  footer .footer__nav {
    margin: 5.86vw auto 2.34vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer__nav {
    align-items: flex-end;
  }
}
footer .footer__nav nav ul {
  display: flex;
  color: #FFFFFF;
  font-size: 1rem;
  width: 497px;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  footer .footer__nav nav ul {
    width: 48.83vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer__nav nav ul {
    flex-direction: column;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer__nav nav ul li {
    margin-bottom: 10px;
  }
}
footer .footer__nav small {
  font-size: 1rem;
  font-family: "Oswald", sans-serif;
  color: #FFFFFF;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  background-color: #252528;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

ol,
ul {
  list-style: none;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  word-break: break-word;
}

address {
  font-style: normal;
}

.forSP {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .forSP {
    display: block !important;
  }
}

.forPC {
  display: block !important;
}
@media only screen and (max-width: 768px) {
  .forPC {
    display: none !important;
  }
}

.bl-ttl h2 {
  letter-spacing: 0.05em;
  font-size: 4rem;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .bl-ttl h2 {
    font-size: 3.91vw;
  }
}
@media only screen and (max-width: 768px) {
  .bl-ttl h2 {
    font-size: 22px;
  }
}

.bl-ttl-black h2 {
  color: #262323;
}

.bl-ttl-white h2 {
  color: #FFFFFF;
}
.bl-ttl-white p {
  color: #D9D9D9;
}

.bl-ttl_left h2 {
  text-align: left;
}
.bl-ttl_left p {
  text-align: left;
}

.bl-ttl_center h2 {
  text-align: center;
  text-transform: uppercase;
}
.bl-ttl_center p {
  text-align: center;
}

.bl-supplement {
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  position: relative;
  align-items: center;
  padding-left: 10px;
  margin-left: 10px;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .bl-supplement {
    font-size: 2.44vw;
    padding-left: 0.98vw;
    margin-left: 0.98vw;
    margin-bottom: 3.91vw;
    margin-top: 8.3vw;
  }
}
@media only screen and (max-width: 768px) {
  .bl-supplement {
    font-size: 1.8rem;
    padding-left: 10px;
    margin-left: initial;
    margin-top: 50px;
    margin-bottom: 35px;
  }
}
.bl-supplement::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 39px;
  background-color: #A39671;
  margin-right: 10px;
  left: -10px;
}
@media only screen and (max-width: 1024px) {
  .bl-supplement::before {
    width: 0.98vw;
    height: 3.81vw;
    margin-right: 0.98vw;
    left: -0.98vw;
  }
}
@media only screen and (max-width: 768px) {
  .bl-supplement::before {
    width: 5px;
    height: 22px;
  }
}

.btn {
  width: 365px;
  margin: 26px auto 19px;
  position: relative;
  text-decoration: none;
  display: block;
  text-align: center;
  background: transparent;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  outline: none;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1024px) {
  .btn {
    width: 35.64vw;
    margin: 2.54vw auto 1.86vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn {
    width: 200px;
    margin: 15px auto;
  }
}
.btn:hover {
  border-color: transparent;
}
.btn span {
  position: relative;
  z-index: 2;
  display: block;
  background: #000000;
  color: #FFFFFF;
  transition: all 0.3s ease;
  padding: 24px 103px;
  font-size: 2rem;
}
@media only screen and (max-width: 1024px) {
  .btn span {
    padding: 2.34vw 10.06vw;
    font-size: 1.95vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn span {
    padding: 20px 30px;
    font-size: 15px;
  }
}

.pushdown::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
}
.pushdown:hover span {
  background-color: #333;
  color: #FFFFFF;
  transform: translateY(4px);
}

.fadeInUpTrigger {
  opacity: 0;
}

.fadeInRightTrigger {
  opacity: 0;
  overflow: hidden;
}

.fadeInLeftTrigger {
  opacity: 0;
}/*# sourceMappingURL=common.css.map */