@charset "UTF-8";
/* =========================================================
  header
========================================================= */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 32px 16px 24px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.lp-header.is-hide {
  transform: translateY(-100%);
}

.logo {
  display: inline-block;
  max-width: 210px;
}

.logo img {
  width: 100%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* pc
--------------------------------------------------------- */
.header-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  max-height: 33px;
  padding: 8px 16px;
  border-radius: 16px;
  border: 1px solid #DBDBDB;
  color: var(--black, #333);
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
}
.header-nav a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
}

@media (min-width: 981px) {
  .header-nav ul {
    display: flex;
    gap: 8px;
  }
}
/* TB-SP
--------------------------------------------------------- */
.hamburger {
  display: none;
}

@media (max-width: 980px) {
  .lp-header {
    padding: 16px 12px;
  }
  .header-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    width: 100%;
    height: calc(100vh - 64px);
    padding-top: 20px;
    background: rgba(255, 255, 255, 0.95);
  }
  .header-nav ul li {
    width: 100%;
  }
  .header-nav ul li a {
    display: flex;
    width: 100%;
    padding: 3vw 12px;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    max-height: max-content;
    border: none;
  }
  .hamburger {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 13px 10px;
    border-radius: 50%;
    background: var(--black);
  }
  .hamburger span {
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  /* ハンバーガーメニュー展開後 */
  .lp-header.is-open .header-nav {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s; /* ← 即 visible */
  }
  .lp-header.is-open .hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .lp-header.is-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .lp-header.is-open .hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
/* =========================================================
  footer
========================================================= */
/* top・ctaボタン
--------------------------------------------------------- */
@media (max-width: 980px) {
  .fixed-content {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
    min-height: 50px;
  }
}
/* ----- topボタン ----- */
.top-to-btn {
  position: fixed;
  bottom: 3dvh;
  right: 2dvw;
  z-index: 10;
}

@media (max-width: 980px) {
  .top-to-btn {
    position: static;
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
}
/* ----- ctaボタン ----- */
.cta-btn {
  position: fixed;
  z-index: 10;
  top: 90px;
  right: 0;
}
.cta-btn ul {
  background: var(--white);
  display: flex;
  flex-direction: column;
  border-radius: 23px 0 0 23px;
}
.cta-btn a {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  min-width: 48px;
  padding: 22px 14px;
  writing-mode: vertical-rl;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
}
.cta-btn li:first-child a {
  border-radius: 23px 0 0 0;
  background: #06C755;
}
.cta-btn li:nth-child(2) a {
  background: var(--pink);
}
.cta-btn li:last-child a {
  background: var(--blue);
  border-radius: 0 0 0 23px;
}

@media (max-width: 980px) {
  .cta-btn {
    position: static;
  }
  .cta-btn ul {
    display: grid;
    grid-template-columns: 25% 1fr 28%;
    width: 100vw;
    border-radius: 23px 23px 0 0;
  }
  .cta-btn a {
    writing-mode: lr;
    justify-content: center;
    padding: 18px 8px;
    font-size: clamp(1.2rem, 2vw, 2rem);
    white-space: nowrap;
  }
  .cta-btn li:last-child a {
    border-radius: 0 23px 0 0;
  }
}
/* footer-banner
--------------------------------------------------------- */
.footer-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
}

.footer-banner li {
  position: relative;
  height: 100%;
  width: 100%;
}

.footer-banner li::before,
.footer-banner li::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: no-repeat center/cover;
}

.footer-banner li::before {
  background: #000;
}

.footer-banner li::after {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.footer-banner li:first-child::after {
  background-image: url(../img/footer-bnr-img01.png);
}

.footer-banner li:last-child::after {
  background-image: url(../img/footer-bnr-img02.png);
}

.footer-banner li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 201px;
}

.footer-banner li a > img {
  display: block;
  width: 100%;
  height: 50px;
}

@media (hover: hover) {
  .footer-banner li:has(a:hover)::after,
  .footer-banner li a:hover {
    opacity: 1;
  }
}
@media (max-width: 980px) {
  .footer-banner li a {
    min-height: 100px;
  }
  .footer-banner li a > img {
    height: 32px;
  }
  footer small {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .footer-banner {
    grid-template-columns: 1fr;
  }
  .footer-banner li a {
    min-height: 80px;
  }
}
/* copyright
--------------------------------------------------------- */
.footer {
  padding: 0;
}

footer small {
  display: block;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}

@media (max-width: 980px) {
  footer {
    padding-bottom: 60px;
  }
  footer small {
    font-size: 1.2rem;
  }
}