/* ----------------------------------------------
フォント
----------------------------------------------- */
body {
  color: #4d4d4d;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.5;

  background-color: #ecece7;
}

/* ----------------------------------------------
PC・SPの切り替え
----------------------------------------------- */
@media screen and (min-width: 768px) {
  .-pc {
    display: block;
  }

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

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

  .-sp {
    display: block;
  }
}

/* ----------------------------------------------
レイアウト
----------------------------------------------- */

.l-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(80px, 6.25vw, 120px) 40px clamp(40px, 3.215vw, 80px) 40px;
}

.l-footer {
  padding-inline: 20px;
}

/* ----------------------------------------------
スタイル
----------------------------------------------- */

.p-logo {
  width: clamp(320px, 25vw, 500px);
  margin: 0 auto;
  margin-bottom: clamp(80px, 6.25vw, 120px);
}

.p-globalNav__list {
  display: flex;
  font-size: clamp(16px, 1.40625vw, 24px);
  justify-content: center;
  gap: 40px;
}

.p-globalNav__item > a {
  position: relative;
  letter-spacing: 0.18em;
  padding: 4px;
  transition: 0.4s ease;
}

@media screen and (min-width: 768px) {
  .p-globalNav__item > a:after {
    position: absolute;

    content: "";
    width: 100%;
    height: 1px;
    display: inline-block;
    background-color: #4d4d4d;

    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s ease;
  }

  .p-globalNav__item > a:hover {
    color: #b3b3b3;
  }

  .p-globalNav__item > a:hover:after {
    width: calc(100% + 24px);
    background-color: #f0882e;
  }
}

@media screen and (max-width: 767px) {
  .p-logo {
    width: 100%;
    max-width: 320px;
  }

  .p-globalNav__list {
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    gap: 20px;
  }
}

.p-copyright {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
}
