@charset "utf-8";
/* CSS Document */


/********** home **********/

main.home {
  .p-catch {
    .p-catch__inner {
      position: relative;
      .swiper {
        .swiper-wrapper {
          .swiper-slide {
            position: relative;
            aspect-ratio: 10/8;
            width: 100%;
            height: 100%;
            max-height: 960px;
            min-height: 640px;
            &::after {
              content: "";
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background: rgb(0, 0, 0, .2);
              z-index: 1;
            }
            img {
              object-fit: cover;
              width: 100%;
              height: 100%;
            }
          }
        }
      }
      h1 {
        position: absolute;
        top: 10%;
        right: 10%;
        width: 240px;
        z-index: 1;
        img {
          width: 100%;
        }
      }
      p {
        position: absolute;
        top: 10%;
        left: 10%;
        height: calc(100% - 20%);
        writing-mode: vertical-rl;
        font-size: 2.1rem;
        color: #fff;
        z-index: 1;
        letter-spacing: 0.15em;
        line-height: 2.5;
      }
    }
  }

  .p-body {
    position: relative;
    padding: 6rem 0 0;
    gap: 0 6rem;
    background: #fff;
    .p-chapter {
      width: 100%;
      padding: 8rem 0;
      .p-chapter__inner {
        margin: 0 auto;
        padding: 0 4rem;
        max-width: 1200px;
        h2 {
          margin: 0 0 8rem;
          font-size: 4.2rem;
          letter-spacing: .05em;
          font-weight: 700;
          text-align: center;
        }
      }
    }

    #menu {
      position: relative;
      .p-chapter__inner {
        .tableArea {
          overflow: scroll;
          table {
            margin: 0 auto;
            border-spacing: 4px;
            tbody {
              tr {
                th, td {
                  font-weight: 900;
                  vertical-align: top;
                  background-color: #b88952;
                  width: 2em;
                  padding: 1rem 0;
                  background-image:
                  repeating-linear-gradient(
                    90deg,
                    rgba(0,0,0,0.08) 0px,
                    rgba(0,0,0,0.08) 1px,
                    rgba(255,255,255,0.05) 3px,
                    rgba(255,255,255,0.05) 6px
                  );
                  p {
                    -webkit-writing-mode: vertical-rl;
                    writing-mode: vertical-rl;
                    text-orientation: mixed;
                    white-space: nowrap;
                    display: block;
                    margin: 0 auto;
                  }
                }
                th {
                  font-size: 2.7rem;
                }
                td {
                  font-size: 2.1rem;
                  min-height: 150px;
                  .price {
                    display: inline-block;
                    margin: 1rem 0 0;
                    font-size: 1.8rem;
                    color: #d30c1d;
                  }
                }
              }
            }
          }
        }
        .note {
          margin: 4rem 0 0;
          font-size: 1.5rem;
          text-align: center;
        }
      }
    }

    #coupon {
      .p-chapter__inner {
        >ul {
          display: flex;
          justify-content: center;
          gap: 4rem;
          >li {
            padding: 2.5rem;
            border-radius: 8px;
            filter: drop-shadow(0 4px 4px rgb(0, 0, 0, .25));
            width: 270px;
            &:nth-child(1) {
              background: #f1e5c7;
              h4 {
                color: #C73A31;
                border-bottom: 4px dotted #C73A31;
              }
              >ul {
                border-top: 2px dotted #222;
                >li {
                  &::before {
                    color: #C73A31;
                  }
                }
              }
            }
            &:nth-child(2) {
              background: #6a6d79;
              color: #fff;
              h4 {
                color: #e2bb44;
                border-bottom: 4px dotted #e2bb44;
              }
              >ul {
                border-top: 2px dotted #fff;
                >li {
                  &::before {
                    color: #e2bb44;
                  }
                }
              }
            }
            &:nth-child(3) {
              background: #cde2d1;
              h4 {
                color: #48290b;
                border-bottom: 4px dotted #48290b;
              }
              >ul {
                border-top: 2px dotted #222;
                >li {
                  &::before {
                    color: #48290b;
                  }
                }
              }
            }
            h4 {
              padding: 0 0 1rem;
              font-size: 3.2rem;
              font-weight: 900;
              line-height: 1.1;
              text-align: center;
            }
            img {
              display: block;
              margin: 2rem auto 0;
              width: 160px;
            }
            small {
              display: block;
              text-align: center;
            }
            >ul {
              margin: 1rem 0 0;
              padding: 1rem 0 0;
              >li {
                padding-left: 1em;
                text-indent: -1em;
                font-size: 1.5rem;
                &::before {
                  content: "・";
                  font-weight: 700;
                }
              }
            }
          }
        }
        .note {
          margin: 4rem 0 0;
          font-size: 1.5rem;
          text-align: center;
        }
      }
    }

    #access {
      padding-bottom: 0;
      .p-chapter__inner {
        padding: 0;
        max-width: 100%;
        iframe {
          display: block;
          width: 100%;
          height: 600px;
        }
      }
    }

  }
}

@media (max-width: 1024px) {
  main.home {
    .p-body {
      #coupon {
        .p-chapter__inner {
          >ul {
            display: flex;
            flex-direction: column;
            align-items: center;
          }
        }
      }
    }
  }
}

@media (max-width: 768px) {
  main.home {
    .p-catch {
      .p-catch__inner {
        h1 {
          width: 180px;
        }
      }
    }
  }
}

@media (max-width: 480px) {
  main.home {
    .p-catch {
      .p-catch__inner {
        h1 {
          width: 140px;
        }
        p {
          position: relative;
          top: auto;
          left: auto;
          margin: 4rem auto 0;
          height: auto;
          font-size: 1.8rem;
          color: var(--text);
        }
      }
    }
    .p-body {
      .p-chapter {
        padding: 4rem 0;
        .p-chapter__inner {
          padding: 0 2rem;
          h2 {
            margin: 0 0 5rem;
            font-size: 3.6rem;
          }
        }
      }
    }
  }
}