@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, .3);
              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;
        text-shadow: 2px 2px 4px rgb(0, 0, 0, .3);
      }
    }
  }

  .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 {
        .scroll {
          margin: 0 0 .5rem;
          text-align: center;
        }
        .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;
                  min-width: 2em;
                  padding: 1.5rem 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 {
                    display: block;
                    margin: 0 auto;
                    -webkit-writing-mode: vertical-rl;
                    writing-mode: vertical-rl;
                    text-orientation: mixed;
                    white-space: nowrap;
                  }
                }
                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;
                  }
                }
              }
            }
          }
        }
      }
    }

    #coupon {
      .p-chapter__inner {
        >ul {
          display: flex;
          align-items: center;
          flex-direction: column;
          gap: 4rem;
          >li {
            position: relative;
            display: flex;
            justify-content: space-between;
            filter: drop-shadow(0 4px 4px rgb(0, 0, 0, .25));
            width: 640px;
            background: #f1e5c7;
            border: 4px solid #0c0d4d;
            &:nth-child(1) {
              .textArea {
                width: calc(100% - 210px);
              }
              .imgArea {
                margin-right: 0;
              }
            }
            &::before {
              content: "";
              position: absolute;
              top: 6px;
              left: 6px;
              width: calc(100% - 12px);
              height: calc(100% - 12px);
              display: block;
              border: 1px solid #0c0d4d;
              background: none;
            }
            .textArea {
              padding: 2.5rem 0 2.5rem 2.5rem;
              width: calc(100% - 230px);
              h4 {
                margin: 0 0 1rem;
                font-size: 2.7rem;
                font-weight: 900;
                line-height: 1.2;
                text-align: center;
                color: #ab2a21;
                word-break: keep-all;
                >small {
                  font-size: 2.1rem;
                }
                .large {
                  font-size: 3.6rem;
                }
              }
              p {
                font-size: 1.5rem;
                text-align: center;
              }
              >ul {
                margin: 1rem 0 0;
                padding: 1rem 0 0;
                border-top: 2px dotted #222;
                >li {
                  padding-left: 1em;
                  text-indent: -1em;
                  font-size: 1.6rem;
                  line-height: 1.4;
                  &::before {
                    content: "・";
                    font-weight: 700;
                    color: #C73A31;
                  }
                }
              }
            }
            .imgArea {
              position: absolute;
              top: 0;
              right: 0;
              height: 100%;
              display: grid;
              place-content: center;
              margin-right: 2rem;
              img {
                display: block;
                margin: auto;
                width: 210px;
              }
            }
          }
        }
        .note {
          margin: 4rem 0 0;
          text-align: center;
        }
      }
    }

    #reservation {
      .p-chapter__inner {
        p {
          text-align: center;
        }
        .btnLink {
          margin: 4rem auto 0;
        }
      }
    }

    #access {
      padding-bottom: 0;
      .p-chapter__inner {
        padding: 0;
        max-width: 100%;
        p {
          display: block;
          width: fit-content;
          margin: 0 auto 4rem;
        }
        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;
        }
      }
    }
    .p-body {
      #coupon {
        .p-chapter__inner {
          >ul {
            >li {
              width: 440px;
              &:nth-child(1) {
                .textArea {
                  width: calc(100% - 120px);
                }
                .imgArea {
                  margin-right: 0;
                  img {
                    width: 120px;
                  }
                }
              }
              .textArea {
                padding: 2rem 0 2rem 2rem;
                width: calc(100% - 165px);
                h4 {
                  font-size: 2.2rem;
                  >small {
                    font-size: 1.6rem;
                  }
                  .large {
                    font-size: 2.8rem;
                  }
                }
                p {
                  font-size: 1.4rem;
                }
                >ul {
                  margin: 1rem 0 0;
                  padding: 1rem 0 0;
                  border-top: 2px dotted #222;
                  >li {
                    font-size: 1.5rem;
                  }
                }
              }
              .imgArea {
                margin-right: 1.5rem;
                img {
                  width: 150px;
                }
              }
            }
          }
        }
      }
    }
  }
}

@media (max-width: 480px) {
  main.home {
    .p-catch {
      .p-catch__inner {
        .swiper-slide {
          &.slide01 {
            img {
              object-position: 65% 50%;
            }
          }
          &.slide02 {
            img {
              object-position: 0 0;
            }
          }
          &.slide03 {
            img {
              object-position: 0 0;
            }
          }
        }
        h1 {
          width: 120px;
        }
        p {
          font-size: 1.8rem;
          line-height: 2;
        }
      }
    }
    .p-body {
      padding: 3rem 0 0;
      .p-chapter {
        padding: 4rem 0;
        .p-chapter__inner {
          padding: 0 2rem;
          h2 {
            margin: 0 0 3rem;
            font-size: 3.2rem;
          }
        }
      }
      #menu {
        .p-chapter__inner {
          .tableArea {
            table {
              tbody {
                tr {
                  th, td {
                    padding: 1.2rem 0;
                  }
                  th {
                    font-size: 2.4rem;
                  }
                  td {
                    font-size: 1.8rem;
                    min-height: 130px;
                    .price {
                      font-size: 1.5rem;
                    }
                  }
                }
              }
            }
          }
        }
      }
      #coupon {
        .p-chapter__inner {
          >ul {
            gap: 2.5rem;
            >li {
              width: 100%;
              border: 3px solid #0c0d4d;
              &::before {
                top: 4px;
                left: 4px;
                width: calc(100% - 8px);
                height: calc(100% - 8px);
              }
              &:nth-child(1) {
                .textArea {
                  width: calc(100% - 80px);
                }
                .imgArea {
                  margin-right: 0;
                  img {
                    width: 80px;
                  }
                }
              }
              .textArea {
                padding: 1.5rem 0 1.5rem 1.5rem;
                width: calc(100% - 115px);
                h4 {
                  font-size: 1.9rem;
                  >small {
                    font-size: 1.3rem;
                  }
                  .large {
                    font-size: 2.4rem;
                  }
                }
                p {
                  font-size: 1.2rem;
                }
                >ul {
                  margin: 1rem 0 0;
                  padding: 1rem 0 0;
                  border-top: 2px dotted #222;
                  >li {
                    font-size: 1.3rem;
                  }
                }
              }
              .imgArea {
                margin-right: .5rem;
                img {
                  width: 110px;
                }
              }
            }
          }
        }
      }
      #access {
        .p-chapter__inner {
          p {
            margin: 0 auto 2rem;
          }
        }
      }
    }
  }
}