@charset "UTF-8";

@font-face {
  font-family: "LINE Seed JP";
  src:
  url("../fonts/LINESeedJP_OTF_Rg.woff") format("woff"),
  url("../fonts/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "LINE Seed JP Bold";
  src:
  url("../fonts/LINESeedJP_OTF_Bd.woff") format("woff"),
  url("../fonts/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: bold;
}
@font-face {
  font-family: "LINE Seed JP Thin";
  src:
  url("../fonts/LINESeedJP_OTF_Th.woff") format("woff"),
  url("../fonts/LINESeedJP_OTF_Th.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
body {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.04rem;
}
body {
  visibility: hidden;
}
img {
  width: 100%;
  height: auto;
}
#header-spacer {
  height: 0;
}
/* -----------------------------------------------

header

----------------------------------------------- */
.header {
  padding: 24px 40px;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1920px;
  margin: auto;
}
.header .header_logo {
  width: 16.4%;
}
.header .nav {
  display: flex;
  gap: 4px;
  font-size: 14px;
}
.header .nav a {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-size: 1.315rem;
  background: #f5f5f5;
  padding: 10px 24px;
  border-radius: 5px;
  width: 15vw;
  text-align: center;
  transition: 0.4s;
}
.header .nav a span {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1rem;
}
.header .nav a:hover {
  background: #fcaf17;
}
.header .hamburger {
  display: none;
}
.header .address {
  display: none;
}
.header .googlemaps {
  display: none;
}
.header .ham_logo {
  display: none;
}
@media screen and (max-width: 947px) {
  .header .nav a {
    font-size: 18px;
  }
  .header .nav a span {
  font-size: 13px;
  }
}
@media screen and (max-width: 850px) {
  .header .nav a {
    font-size: 14px;
  }
  .header .nav a span {
  font-size: 11px;
  }
}
@media screen and (max-width: 750px) {
  .header .hamburger {
    display: block;
    width: 44px;
    height: 44px;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 2001;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
  }
  .header .hamburger span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background: #000;
    transition: 0.4s;
  }
  .header .hamburger span:nth-child(1) {
    top: 14px;
  }
  .header .hamburger span:nth-child(2) {
    top: 21px;
  }
  .header .hamburger span:nth-child(3) {
    top: 28px;
  }
  .header .hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #fff;
  }
  .header .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #fff;
  }
  .header .nav {
    display: block;
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.4s, visibility 0.4s, z-index 0s 0.4s;
  }
  .header .nav > a {
    display: block;
    margin: auto;
    margin-top: 2%;
    width: 83%;
    padding: 4% 5%;
    font-size: min(60px, 8vw);
  }
  .header .nav a:nth-of-type(1) {
    margin-top: 20%;
  }
  .header .nav a span {
    font-size: min(21px, 2.8vw);
  }
  .header .nav.is-open {
    opacity: 1;
    visibility: visible;
    z-index: 10000;
    transition: opacity 0.4s, visibility 0.4s, z-index 0s;
    pointer-events: auto;
  }
  .header .address {
    display: block;
    color: #fff;
    font-family: "LINE Seed JP Thin";
    font-weight: 100;
    font-size: 1rem;
    width: 83%;
    margin: 11% auto 6%;
  }
  .header .googlemaps {
    display: flex;
    color: #fff;
    width: 83%;
    margin: auto;
  }
  .header .googlemaps a {
    display: inline-flex;
    background: none;
    padding: 0;
    margin: 0 !important;
    width: 58%;
  }
  .header .googlemaps a img {
    width: 9%;
    margin-right: 5%;
  }
  .header .googlemaps a p {
    font-family: "LINE Seed JP Thin";
    font-weight: 100;
    border-bottom: 1px solid #fff;
  }
  .header .ham_logo {
    display: block;
    position: fixed;
    bottom: -2px;
  }
  .header .header_logo {
    width: 25.9%;
  }
}
/* -----------------------------------------------

article

----------------------------------------------- */
body.no-scroll {
  overflow: hidden;
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
@media screen and (max-width: 750px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/* -----------------------------------------------

footer

----------------------------------------------- */
.logo {
  max-width: 1920px;
  margin: 0 auto -5px;
}
.logo img {
  width: 100%;
}
.footer {
  background: #000;
}
.footer .footer_inner {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #fff;
}
.footer .footer_inner .back-top {
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .footer .footer_inner {
    padding: 50px 0;
    display: block;
    text-align: center;
  }
  .footer .footer_inner > div {
    display: none;
  }
}

/* CONTACT */
.contact {
  background: #f7f7f7;
  padding: 100px 20px 0px;
}
.contact-inner {
  margin: 0 auto;
  max-width: 1920px;
}
.contact-inner iframe {
  width: 100%;
  height: 1350px;
}
.contact-title {
  text-align: center;
  font-size: 48px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.contact-form {
  padding: 0px 40px 100px;
}
.form-agree {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 13px;
}
.privacy-link {
  padding: 10px 20px;
  text-decoration: none;
  color: #000;
  background: #fff;
  border-radius: 5px;
  transition: 0.4s;
}
.privacy-link:hover {
  background: #fcaf17;
}
@media screen and (max-width: 750px) {
  .contact {
    padding: 120px 0px 0px;
  }
  .contact-form {
    padding: 0px 20px 60px;
  }
  .contact-inner iframe {
    height: 1450px;
  }
  .form-agree {
    display: block;
    text-align: center;
  }
  .privacy-link {
    display: inline-block;
    margin: 20px auto 0;
  }
}