@charset "UTF-8";
html {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 100%;
  font-weight: 100;
}
body {
  background-color: #fff;
}
.header {
  position: relative;
  z-index: 10;
  background-color: #000000;
}
.header-wrap {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.header-wrap__logo {
  flex: 0 0 260px; /* 左の幅（調整） */
  display: flex;
  align-items: center;
  background-color: #fbc032;
  padding: 0 20px;
}

.header-wrap__nav {
  flex: 1 1 auto; /* ここが残り全部を取る */
  background: #000;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 15px;
  white-space: nowrap;
  margin-left: 3.5%;
}
.header-wrap__nav a {
  color: #fbc032;
  text-decoration: none;
  font-weight: bold;
}
.header-wrap__nav a::after {
  content: "/";
  margin-left: 15px;
}
.header-wrap__nav a:last-child:after {
  display: none;
}
.header-wrap__con {
  display: flex;
  flex: 0 0 400px;
  padding-right: 1.5%;
  justify-content: space-between;
  align-items: center;
}
.header-wrap__con__tel a {
  color: #fbc032;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  gap: 7px;
  white-space: nowrap;
  align-items: flex-end;
}
.header-wrap__con__tel a img {
  width: 20px;
  height: 20px;
}
.header-wrap__con__mail {
  background-color: #fbc032;
}
.header-wrap__con__mail a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  gap: 7px;
  padding: 12px 20px;
}
.ttl {
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-size: 60px;
  letter-spacing: -0.05em;
}
.sub__ttl {
  font-size: 18px;
  margin-top: 25px;
  margin-left: 10px;
}
.big__ttl {
  font-size: clamp(8.75rem, -2.5rem + 16.6667vw, 12.5rem);
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  letter-spacing: -0.05em;
}
.big__subttl {
  padding-top: 40px;
  font-size: 24px;
}
.footer-wrap {
  display: flex;
  background-color: #000000;
}
.footer-wrap__left {
  background-color: #fbc032;
  padding: 100px 10px;
}
.footer-wrap__right {
  width: 70%;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.footer-wrap__right__adresss {
  color: #fff;
  line-height: 2;
  font-weight: 100;
}
.footer-wrap__right__adresss a {
  color: #fff;
  text-decoration: none;
}
.footer-wrap__right__nav {
  display: flex;
  gap: 5px;
}
.footer-wrap__right__nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 100;
}
.footer-wrap__right__nav a::after {
  content: "/";
  margin-left: 5px;
}
.footer-wrap__right__nav a:last-child:after {
  display: none;
}
.footer-copy {
  text-align: center;
  margin: 30px auto;
}
/* =========================
  Hamburger (<=1280px)
========================= */
.header-burger {
  display: none;
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-right: 12px;
}

.header-burger__line {
  display: block;
  width: 40px;
  height: 2px;
  background: #fbc032;
  margin: 5px auto;
}

/* Drawer */
.header-drawer {
  display: none;
}

.header-drawer.is-open {
  display: block;
}

.header-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 90vw);
  height: 100vh;
  background: #000;
  z-index: 10000000;
  padding: 20px 18px 24px;
  overflow: auto;
}

.header-drawer__close {
  border: 0;
  background: transparent;
  color: #fbc032;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  display: block;
  margin-left: auto;
}

.header-drawer__nav {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.header-drawer__nav a {
  color: #fbc032;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 10px;
  border: 1px solid rgba(251, 192, 50, 0.3);
}

.header-drawer__nav a:hover {
  background: rgba(251, 192, 50, 0.1);
}

.header-drawer__cta {
  background: #fbc032;
  color: #000 !important;
  border-color: #fbc032 !important;
  text-align: center;
}

.header-drawer__tel {
  border-style: dashed;
  font-weight: bold;
}

/* 1280px以下で切替 */
@media (max-width: 1280px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 15000;
  }
  .header-wrap__nav,
  .header-wrap__con {
    display: none;
  }

  .header-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .footer-wrap__right {
    justify-content: center;
    gap: 40px;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 20px;
  }
}
@media (max-width: 1000px) {
  .big__ttl {
    padding-top: 10px;
    font-size: clamp(4rem, -1.5761rem + 16.5217vw, 8.75rem);
  }
  .big__subttl {
    padding-top: 0;
    font-size: 24px;
  }
  .footer-wrap__left {
    width: 150px;
    background-color: #fbc032;
    padding: 70px 10px;
  }
  .footer-wrap__left img {
    width: 100%;
  }
  .footer-wrap__right__nav a {
    font-size: 12px;
  }
  .footer-wrap__right__adresss {
    font-size: 14px;
  }
}
@media (max-width: 580px) {
  .footer-wrap {
    flex-direction: column;
    padding: 0 10px;
  }
  .footer-wrap__left {
    margin: 0 auto;
    width: 200px;
    background-color: #000;
    padding: 20px 10px 20px 0;
  }
  .footer-wrap__right {
    width: 100%;
    gap: 10px;
    margin-left: 0;
    padding-bottom: 20px;
  }
  .header-wrap__logo {
    flex: 0 0 200px;
  }
  .header-wrap__logo img {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .ttl {
    font-size: 42px;
  }
  .news-wrap__ttl h4 {
    font-size: 16px;
    margin-top: 10px;
    margin-left: 10px;
  }
  p {
    font-size: 14px;
  }
  .big__ttl {
    font-size: clamp(3rem, 0.1429rem + 11.4286vw, 4rem);
  }
  .big__subttl {
    padding-top: 0;
    font-size: 20px;
  }
  .footer-copy {
    font-size: 10px;
  }
  .footer-wrap__right__nav a {
    font-size: 14px;
  }
  .footer-wrap__right__nav {
    flex-direction: column;
    gap: 15px;
  }
  .footer-wrap__right__nav a::after {
    display: none;
  }
}
