/* -----------------------------------------------------
    variables
----------------------------------------------------- */
:root {
    --colorBase: #fbf2e9;
    --colorBlack: #302e2b;
    --colorDarkGreen: #738931;
    --colorGray300: #cbcbcb;
    --colorGray400: #b8b8b8;
    --colorGreen: #30cd2a;
    --colorMain: #daecdb;
    --colorOrange: #fd713e;
    --colorPaleGreen: #f5f9e8;
    --colorWhite: #fff;
    --fontNotoSansJP: "Noto Sans JP", sans-serif;
    --fontOutfit: "Outfit", sans-serif;
    --fontZenKakuGothicAntique: "Zen Kaku Gothic Antique", sans-serif;
  }

  /* -----------------------------------------------------
      base
  ----------------------------------------------------- */
  html {
    overflow-x: hidden;
  }
  
  body {
    font-family: var(--fontZenKakuGothicAntique);
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  section {
    scroll-behavior: smooth;
    scroll-margin-top: 98px;
  }

  a {
    color: var(--colorBlack);
  }

  .main {
    padding-top: 98px;
  }

  .for-pc {
    display: block !important;
  }

  .for-sp {
    display: none !important;
  }

  @media screen and (max-width: 1080px) {
    .for-pc {
      display: none !important;
    }

    .for-sp {
      display: block !important;
    }
  }

.container {
    margin: 0 auto;
    max-width: 1080px;
    width: 100%;
}

.container1280 {
    margin: 0 auto;
    max-width: 1320px;
    padding: 20px;
    width: 100%;
}

@media screen and (max-width: 1080px) {
    .container {
        padding: 0 20px;
        width: auto;
    }

    .container1280 {
        padding: 0 20px;
        width: auto;
    }
}

/* -----------------------------------------------------
    header
----------------------------------------------------- */
.header {
    background: var(--colorWhite);
    padding: 16px 40px;
    position: fixed;
    width: 100%;
    z-index: 999;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
  }

  .header__container {
    max-width: 805px;
    width: 100%;
  }

  .headerEntry {
    display: grid;
    gap: 10px;
    margin-left: auto;
    max-width: 180px;
    width: 100%;
  }

  .headerBtn__column {
    display: none;
  }

  .headerEntry__item {
    align-items: center;
    border-radius: 40px;
    color: var(--colorWhite);
    display: flex;
    height: 34px;
    justify-content: center;
  }

  .headerEntry__item.is-line {
    background: var(--colorGreen);
  }

  .headerEntry__item.is-web {
    background: var(--colorOrange);
  }

  .headerNav {
    margin-top: 16px;
  }

  .headerNav__list {
    display: flex;
  }

  .headerNav__list li {
    border-left: 1px solid #d9d9d9;
  }

  .headerNav__list li a {
    color: var(--colorBlack);
    font-size: 14px;
    font-weight: 700;
    padding-inline: 20px;
  }

  .headerToggle {
    display: none;
  }

  .toggleMenu {
    display: none;
  }

  @media screen and (max-width: 1080px) {
    .header {
      padding-inline: 20px;
    }

    .header__inner {
      align-items: center;
      display: flex;
    }

    .header__logo img {
      height: 32px;
    }

    .headerBtn__column {
      display: flex;
      align-items: center;
      max-width: 180px;
      width: 100%;
      gap: 8px;
    }

    .headerBtn__column .headerEntry__item {
      font-size: 13px;
      width: 100%;
      display: flex!important;
    }

    .header__container {
      display: none;
    }

    .headerToggle {
      cursor: pointer;
      display: flex;
      height: 50px;
      position: relative;
      width: 50px;
      z-index: 1000;
    }

    .headerToggle span {
      background: var(--colorBlack);
      content: "";
      height: 2px;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      transition: .4s;
      width: 24px;
    }

    .headerToggle span:nth-of-type(1) {
      top: 35%;
    }

    .headerToggle span:nth-of-type(2) {
      top: 50%;
    }

    .headerToggle span:nth-of-type(3) {
      top: 65%;
    }

    .is-active .headerToggle span:nth-of-type(1) {
      top: 50%;
      transform: rotate(45deg);
    }

    .is-active .headerToggle span:nth-of-type(2) {
      display: none;
    }

    .is-active .headerToggle span:nth-of-type(3) {
      top: 50%;
      transform: rotate(-45deg);
    }

    .toggleMenu {
      background: #fff;
      display: block;
      height: 100vh;
      left: 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 998;
    }

    .toggleMenu__inner {
      align-items: center;
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
    }

    .toggleMenu__list {
      text-align: center;
    }

    .toggleMenu__list li {
      font-size: 16px;
      font-weight: bold;
    }

    .toggleMenu__list li:nth-child(n + 2) {
      margin-top: 32px;
    }

    .toggleMenu__list li a {
      color: var(--colorBlack);
    }
  }

  /* -----------------------------------------------------
      footer
  ----------------------------------------------------- */
  .footer {
    background: var(--colorPaleGreen);
    padding-block: 80px;
  }

  .footer__column {
    display: flex;
    justify-content: space-between;
  }

  .footer__left {
    position: relative;
  }

  .footer__name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.8;
    margin-top: 24px;
  }

  .footer__address {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1.8;
    margin-top: 16px;
  }

  .footer__address a {
    padding-left: 16px;
    position: relative;
    text-decoration: underline;
  }

  .footer__address a::before {
    background-image: url(../images/icon-map.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 15px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
  }

  .footerLink {
    display: grid;
    gap: 10px;
    margin-left: auto;
    max-width: 136px;
    width: 100%;
  }

  .footerLink__item a {
    color: var(--colorBlack);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.8;
  }

  .footer__privacy {
    bottom: 0;
    color: var(--colorBlack);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1.8;
    position: absolute;
  }

  .footer__copyRight {
    font-family: var(--fontOutfit);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 40px;
    text-align: end;
  }

  @media screen and (max-width: 1040px) {
    .footer__logo {
      display: block;
      margin-inline: auto;
      width: fit-content;
    }

    .footer__name {
      text-align: center;
    }

    .footer__column {
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr;
    }

    .footer__privacy {
      display: block;
      margin-top: 12px;
      position: relative;
      text-align: center;
    }

    .footerLink {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 100%;
    }

    .footer__copyRight {
      text-align: center;
    }
  }
