@charset "UTF-8";

/*共通*/
:root {
  --text-color-01: #000000;
  --text-color-02: #333333;
  --text-color-02: #444444;
  --primary-color-01: #ffff66;
  --primary-color-02: #eecce8;
  --primary-color-03: #ff5153;
  --bg-color-01: #f3eec9;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  height: 100%;
  font-size: 14px;
  color: var(--text-color-01);
  letter-spacing: 0.04rem;
}
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;
}
li {
  list-style: none;
}
h1 {
  font-size: 2rem;
  font-weight: 600;
}
.zcontainer {
  padding: 1vw 5vw;
  margin: 0 auto;
  max-width: 1280px;
}

/*header*/
#header {
  position: fixed;
  width: 100%;
  z-index: 1000;
}
.menu-wrapper {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  padding: 2vw;
  align-items: center;
  gap: 1vw;
}
.header-deco {
  display: block;
  width: 8%;
  z-index: 1000;
}
.top-logo {
  width: 12%;
  z-index: 1000;
}
.pcmenu-wrapper {
  z-index: 1000;
}
.pc-menu {
  display: flex;
  gap: 2vw;
  background-color: var(--primary-color-01);
  border: 2px solid #fff;
  padding: 1vw 2vw;
  margin-left: 6vw;
  margin-right: 1vw;
  border-radius: 6vw;
}

/* ===== ハンバーガーメニュー ===== */
.hamburger {
  position: relative;
  width: 50px;
  aspect-ratio: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  padding: 0;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-color-01);
}
.hamburger-line:nth-of-type(1) {
  animation: btn2-bar01 0.75s forwards;
}
.hamburger-line:nth-of-type(2) {
  animation: btn2-bar02 0.75s forwards;
}
@keyframes btn2-bar01 {
  0% {
    transform: translateY(6px) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes btn2-bar02 {
  0% {
    transform: translateY(-6px) rotate(-45deg);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.hamburger.active .hamburger-line:nth-of-type(1) {
  animation: active-btn2-bar01 0.75s forwards;
}
.hamburger.active .hamburger-line:nth-of-type(2) {
  animation: active-btn2-bar02 0.75s forwards;
}
@keyframes active-btn2-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(6px) rotate(45deg);
  }
}
@keyframes active-btn2-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.hamburger-menu {
  box-sizing: border-box;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-color-02);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
.hamburger-menu.active {
  visibility: visible;
  opacity: 1;
  overflow-y: scroll;
  display: block grid;
  place-items: center;
}
.menu-content {
  width: 70%;
  display: flex;

  & p {
    font-size: 1.4rem;
    margin: 0;
    padding-bottom: 1vw;
    font-weight: 500;
  }
}
.menu-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 1vw 5vw;
}
.menu-content li:nth-of-type(2) {
  grid-row: span 3 / span 3;
  grid-column-start: 1;
  grid-row-start: 2;
}
.menu-content li:nth-of-type(3) {
  grid-column-start: 1;
  grid-row-start: 5;
}
.menu-content li:nth-of-type(4) {
  grid-column-start: 1;
  grid-row-start: 6;
}
.menu-content li:nth-of-type(5) {
  grid-column-start: 2;
  grid-row-start: 1;
}
.menu-content li:nth-of-type(6) {
  grid-column-start: 2;
  grid-row-start: 2;
}
.menu-content li:nth-of-type(7) {
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1vw 3vw;

  font-size: 1.2rem;

  & a {
    border-bottom: 1px solid;
  }
}
.menu-content li:nth-of-type(8) {
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.menu-line {
  border-bottom: 1px solid;
  display: flex;
  align-items: center;
  justify-content: space-between;

  &::after {
    content: "";
    display: block;
    background: no-repeat url(../img/common/icon/icon-arrow_header.svg);
    background-position: center;
    width: 2vw;
    aspect-ratio: 1;
  }
}
.menu-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 1rem;

  & a {
    display: block;
  }
}
.menu-inst {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;

  &::before {
    content: "";
    background: no-repeat url(../img/common/icon/icon_instagram.svg);
    width: 1.5vw;
    aspect-ratio: 1;
  }
}
.menu-onlineshop {
  width: 80%;
  margin-inline: auto;
  box-sizing: border-box;

  & img {
    height: 100%;
    width: 100%;
    display: block;
  }
}

/*footer*/
footer {
  background-color: var(--primary-color-01);
  padding: 100px 0;
}
.footer-container {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.footer-logo {
  margin: 1vw auto 3vw;
  font-size: 1.1rem;
  text-align: justify;

  & img {
    display: block;
    margin: 0 auto 2vw;
    width: 30%;
  }
}
.footer-access {
  font-size: 1rem;
  font-weight: 500;

  & a {
    color: #6f0000;
  }
  & p {
    margin: 1vw auto;
  }
}
.footer-map {
  margin-bottom: 3vw;
}
.footer-tel {
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin: 5vw auto;
  padding: 2vw 0;
  font-size: 1.5rem;
  line-height: 2rem;

  & p {
    margin: 1vw auto;
  }
}
.tel-no {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}
.footer-message {
  background-color: #ffffcc;
  display: flex;
  justify-content: center;
  gap: 2vw;
  border: 3px solid #fff;
  border-radius: 1vw;
  padding: 3vw 2vw 2vw;
  margin-bottom: 5vw;

  & img {
    width: 13%;
  }
}
.footer-message-text {
  width: 80%;

  & h3 {
    font-size: 2rem;
    line-height: 2.3rem;
    margin: 0;
  }
  & p {
    text-align: justify;
    font-size: 1.2rem;
  }
  & a {
    color: #6f0000;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    text-align: right;
  }
}
.footer-iso {
  display: block;
  width: 30%;
  margin: 1vw auto 3vw;
}

/*SPサイズ*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .no-scroll {
    overflow: hidden;
  }

  /*ヘッダー*/
  .hamburger-menu.active {
    display: block;
  }
  .menu-wrapper {
    padding: 3vw 0 0;
    display: grid;
    grid-template-columns: 20% 35% 20%;
  }
  .header-deco {
    width: 100%;
  }
  .top-logo {
    width: 100%;
    padding-top: 2vw;
  }
  .hamburger {
    width: 10vw;
    margin-left: auto;
  }
  .hamburger-line {
    width: 100%;
  }

  .menu-content {
    width: 90%;
    padding-top: 20vw;
    margin-inline: auto;
    overflow-y: scroll;
    max-height: 80vh;
    -ms-overflow-style: none;
    scrollbar-width: none;

    & p {
      font-size: 1.2rem;
    }
  }
  .menu-content::-webkit-scrollbar {
    display: none;
  }
  .menu-content ul {
    display: block;
    height: 100%;

    & li {
      margin: 4vw auto;
    }
  }
  .menu-child {
    padding-bottom: 2vw;
        font-size: 0.9rem;
    gap: 3vw;
    grid-template-columns: 1fr auto;
  }
  .menu-line {
    &::after {
      content: "";
      width: 8vw;
    }
  }
  .menu-content li:nth-of-type(7) {
    gap: 5vw 3vw;
    font-size: 1rem;

    & a {
      padding-bottom: 2vw;
    }
  }
  .menu-inst {
    justify-content: center;

    &::before {
      content: "";
      width: 5vw;
    }
  }

  /*フッター*/
  footer {
    background-color: var(--primary-color-01);
    padding: 10vw 0;
  }
  .footer-container {
    width: 85%;
  }
  .footer-logo {
    margin: 6vw auto 7vw;
    font-size: 1rem;

    & img {
      width: 70%;
    }
  }
  .footer-map {
    & iframe {
      height: 200px;
    }
  }
  .footer-tel {
    padding: 7vw 0;
    font-size: 1.2rem;
  }
  .tel-no {
    font-size: 2rem;
  }
  .footer-message {
    padding: 4vw 3vw 3vw;

    & img {
      width: 25%;
    }
  }
  .footer-message-text {
    & h3 {
      font-size: 1rem;
      line-height: 1.5rem;
    }
    & p {
      font-size: 0.8rem;
      line-height: 1.4rem;
    }
    & a {
      font-size: 0.8rem;
    }
  }
  .footer-iso {
    width: 40%;
    margin: 6vw auto 8vw;
  }
}

/*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) {
}

@media screen and (max-width: 767px) {
    .container {
      width: 90%;
      float: none;
    }
}