@charset "UTF-8";

/*共通*/
:root {
  --text-color-01: #002553;
  --primary-color-01: #df701a;
  --primary-color-02: #95b6b6;
  --bg-color-01: #dfeeee;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  height: 100%;
  font-size: 18px;
  color: var(--text-color-01);
  letter-spacing: 0.03rem;
  font-weight: 300;
}
main {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: var(--text-color-01);
}
a:hover {
  opacity: 0.5;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
li {
  list-style: none;
}
h1 {
  font-size: 2rem;
  font-weight: 600;
}
p {
  line-height: 1.8rem;
}
.container {
  padding: 1vw 5vw;
  margin: 0 auto;
  max-width: 1200px;
}
.custom-page {
  padding-top: 5vw;
}
/* スクロールダウン */
.page-sub-ttl {
  position: relative;
  margin-top: 5vw;

  & h2 {
    width: 2vw;
    margin-inline: auto;
  }
}
.scroll {
  position: absolute;
  right: 50%;
  top: -150px;
  writing-mode: vertical-rl;
}
.scroll::before {
  animation: scroll 2s infinite;
  background-color: var(--text-color-01);
  bottom: -115px;
  content: "";
  height: 200px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.go-date {
  margin: 5vw auto 0;
  width: fit-content;

  & a {
    display: block;
  }
}
.under-line {
  text-align: center;
  margin-inline: auto;
  width: 45%;
}

/*header*/
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  background-color: #fff;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header.is-hide {
  transform: translateY(-100%);
  opacity: 0;
}
.menu-wrapper {
  position: relative;
  padding: 2vw;
}
.top-logo {
  width: 15%;
  min-width: 200px;
  max-width: 250px;
  display: flex;
  align-items: center;
  z-index: 90;
  position: absolute;
  inset: 0;
  margin: auto;

  & h1 {
    margin: 0 auto;
    line-height: 1rem;
    width: 100%;
  }
}
.no-scroll {
  overflow: hidden;
}
.toggle-menu {
  align-items: center;
  display: flex;
  justify-content: end;
  gap: 2vw;
}
.menu-logo {
  width: 5%;
}
.btn-trigger {
  position: relative;
  width: 40px;
  height: 20px;
  cursor: pointer;
  z-index: 90;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  height: 1px;
  background-color: var(--text-color-01);
  border-radius: 4px;
}
.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 50%;
  translate: 0 -50%;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#menu-btn.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-30deg);
}
#menu-btn.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-btn-bar 1s forwards;
}
@keyframes active-btn-bar {
  100% {
    height: 0;
  }
}
#menu-btn.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(30deg);
}

.menu-content {
  pointer-events: none;
  width: 100%;
  height: 60%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: var(--primary-color-02);
}
.menu-content.is-open {
  pointer-events: auto;
  opacity: 1;
}
.menucontent-wrapper {
  display: flex;
  margin: 7vw auto;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
}

.menu-group {
  display: flex;
  gap: 2vw;

  & ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 300px;
  }
  & a {
    display: block;
  }
  & p {
    width: 20%;
    min-width: 80px;
    max-width: 150px;
    margin: 0;
    padding-right: 1vw;
    border-right: 1px solid var(--primary-color-01);
  }
}
.menu-group01 {
  & a {
    width: 77%;
  }
  & ul {
    min-width: 160px;
    width: 60%;
  }
}
.menu-group02 {
  & ul {
    min-width: 200px;
  }
}
.menu-group03 {
  display: flex;
  justify-content: end;

  & p {
    margin: 0;
    width: 24%;
    min-width: 80px;
    max-width: 100px;
  }
}
.store-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  gap: 1vw;
}
.store-group {
  border: 1px solid var(--primary-color-01);
  padding: 1vw;
}
.store-logo {
  width: 80%;
  display: block;
  margin-inline: auto;
}
.header-sns {
  display: flex;
  align-items: center;
  gap: 1vw;
  justify-content: center;
  margin-top: 0.5vw;

  & a {
    display: block;
    width: 1vw;
    aspect-ratio: 1;
  }
}
.store-btn {
  display: block;
}

/*footer*/
.footer-container {
  text-align: center;
  padding: 3vw 5vw;
}
.footer-date {
  margin: 0 auto;

  & h1 {
    margin: 0 auto 1vw;
    width: 20%;
    line-height: 1rem;
  }
  & p {
    margin: 0.5vw auto;
    font-size: 0.9rem;
    line-height: 1.7rem;
  }
}
.footer-logo {
  margin: 1vw auto;

  & a {
    display: block;
    width: 15%;
    margin-inline: auto;
  }
}
.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;

  & a {
    display: block;
    width: 2vw;
    aspect-ratio: 1;
  }
}
.copyright {
  background-color: var(--primary-color-01);
  color: #fff;
  padding: 1vw;
  text-align: center;

  & p {
    margin: 0;
    font-size: 0.8rem;
  }
}

.go-top {
  position: fixed;
  right: 3%;
  bottom: 5%;

  & a {
    background: no-repeat url(../img/common/go-top-btn.svg);
    display: block;
    width: 3vw;
    aspect-ratio: 1;
  }
}

/*SPサイズ*/
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .pc {
    display: none;
  }
  .no-scroll {
    overflow: hidden;
  }
  p {
    line-height: 1.5rem;
  }
  .custom-page {
    padding-top: 13vw;
  }
  .scroll {
    top: calc(-50vw - 20vw);
  }
  .scroll::before {
    height: 40vw;
    bottom: -63vw;
  }
  .page-sub-ttl {
    margin-top: 12vw;

    & h2 {
      width: 5vw;
    }
  }
  .under-line {
    width: 100%;
  }
  .go-date {
    margin: 6vw auto 0;

    & a {
      width: 90%;
      margin-inline: auto;
    }
  }

  /*spヘッダー*/
  .header {
    background-color: #fff;
    border-bottom: 1px solid var(--primary-color-01);
  }
  .top-logo {
    width: 40%;
    min-width: auto;

    & h1 {
      line-height: 0.9rem;
    }
  }
  .btn-trigger {
    width: 10vw;
    height: 6vw;
    background-color: #fff;
  }
  .btn-trigger.active {
    background-color: revert;
  }
  .btn-trigger span {
    width: 70%;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 1rem;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 1rem;
  }
  #menu-btn.active span:nth-of-type(1) {
    transform: translateY(-5px) rotate(-30deg);
  }
  #menu-btn.active span:nth-of-type(3) {
    transform: translateY(5px) rotate(30deg);
  }
  .menu-wrapper {
    padding: 4vw 3vw;
  }
  .menu-content {
    height: 100%;
  }
  .menucontent-wrapper {
    flex-direction: column;
    margin: 17vw auto 0;
    padding-bottom: 20vw;
    width: 80%;
    overflow-y: scroll;
    max-height: 70vh;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .menucontent-wrapper::-webkit-scrollbar {
    display: none;
  }
  .menu-group {
    flex-direction: column;
    border-top: 1px solid var(--primary-color-01);
    padding: 5vw 10vw;

    & p {
      width: 22vw;
      border-right: none;
    }
  }
  .menu-group01 {
    & ul {
      width: 85%;
    }
  }
  .menu-group03 {
    border-top: 1px solid var(--primary-color-01);
    padding: 5vw 10vw;
  }
  .store-block {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3vw;
    margin: 3vw auto;
  }
  .store-group {
    border: none;
    grid-column: span 2 / span 2;
    display: flex;
  }
  .store-logo {
    width: 50%;
    margin: 0;
  }
  .header-sns {
    justify-content: space-evenly;
    width: 50%;

    & a {
      width: 5vw;
      aspect-ratio: 1;
    }
  }
  .store-btn {
    display: block;
    grid-row-start: 2;
  }

  /*spフッター*/
  .footer-date {
    margin: 5vw auto;

    & h1 {
      margin: 2vw auto 5vw;
      width: 50%;
    }
    & p {
      margin: 3vw auto;
    }
  }
  .footer-logo {
    margin: 0 auto 3vw;

    & a {
      width: 50%;
    }
  }
  .footer-sns {
    gap: 7vw;

    & a {
      width: 7vw;
    }
  }
  .go-top {
    & a {
      width: 10vw;
      aspect-ratio: 1;
    }
  }
}

/*PCサイズ*/
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* タブレット */
@media screen and (min-width: 767px) and (max-width: 1280px) {
}
