.l-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-pink-light);
}

.l-hero__container {
  width: 100%;
  max-width: 900px;
  position: relative;
  padding: 5.6rem 1rem 3rem 1rem;
  background-color: var(--color-pink-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-lead {
  font-family: var(--font-m-plus);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 4.5rem;
  margin-left: 2.4rem;
}

.p-hero {
  position: relative;
}

.p-hero__title {
  font-size: 4.6rem;
  font-family: var(--font-istok-web);
  color: var(--color-white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  padding-left: 2.4rem;
  position: relative;
  top: 3rem;
  z-index: 1;
}

.p-hero__img {
  width: 100%;
  position: relative;
  transform: translateX(-3rem);
}

.p-hero__img > img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  aspect-ratio: 100 / 58;
}

.l-boundary {
  position: relative;
  width: 100%;
  z-index: -1;
}

.l-boundary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4.6rem;
  width: 100%;
  height: 100px;
  background-image: url("../public/boundary/boundary-1.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  pointer-events: none;
}

/* コンセプト */
.l-concept {
  margin-top: 8rem;
  padding: 0 1.8rem;
}

.l-concept > p {
  text-align: center;
  font-family: var(--font-m-plus);
  font-weight: 500;
  line-height: 1.9;
  max-width: 900px;
}

.l-concept > p:nth-child(1) {
  font-weight: 800;
  font-size: 1.35rem;
}

.l-concept > p:nth-child(2) {
  margin-top: 2rem;
  font-size: 1.1rem;
}

.p-cup {
  margin-top: 3.4rem;
  width: 24%;
  max-width: 180px;
  aspect-ratio: 100 / 70;
  background-image: url("../public/teacup.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 予約ボタン */
.c-fab {
  display: none;
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 100;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2.5rem 2.3rem;
  border-bottom-left-radius: 24px;
  border-top-left-radius: 24px;
  background: var(--color-pink-medium);
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.c-fab > span {
  color: var(--color-white);
  font-family: var(--font-m-plus);
  font-weight: 500;
  font-size: 1.25rem;
}

.c-fab:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

/* スタイル */
.l-style {
  width: 100%;
  margin-top: 6.4rem;
  padding: 0 1.8rem;
  max-width: 900px;
}

.c-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-title > h2 {
  font-size: 3.45rem;
  font-family: var(--font-istok-web);
  font-weight: 700;
  color: var(--color-pink-deep);
}

.c-title > p {
  font-size: 1.3rem;
  font-family: var(--font-m-plus);
  font-weight: 800;
  color: var(--color-pink-deep);
}

.p-styles {
  width: 100%;
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.p-styles__style {
  width: 100%;
  cursor: zoom-in;
}

.p-styles__style > img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
}

.c-btn {
  width: 100%;
  margin: 0 auto;
  margin-top: 1.8rem;
  max-width: 43.75rem;
}

.c-btn > button {
  width: 100%;
  padding: 1.2rem 0;
  color: var(--color-white);
  background-color: var(--color-pink-deep);
  font-size: 1.3rem;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
}

.c-btn > a.c-btn__link {
  display: block;
  width: 100%;
  padding: 1.2rem 0;
  color: var(--color-white);
  background-color: var(--color-pink-deep);
  font-size: 1.3rem;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
}

/* Lightbox（ズーム後の表示） */
.c-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.72);
  z-index: 9999;
}

.c-lightbox.is-open {
  display: flex;
}

.c-lightbox__img {
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

body.is-modal-open {
  overflow: hidden;
}

/* メニュー */
.l-menu {
  width: 100%;
  margin-top: 7.7rem;
  padding: 0 1.8rem;
  max-width: 900px;
}

.c-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.2rem;
  padding: 2rem 1.6rem;
  background-color: var(--color-white);
  border-radius: 24px;
}

.c-menu.u-mt32 {
  margin-top: 2.46rem;
}

.c-menu-img {
  position: relative;
  width: 10rem;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.c-menu-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffc0ad33;
}

.c-menu-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.c-menu-img.u-reflect-x > img {
  transform: scaleX(-1);
}

.c-item-box__item {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.c-item-box__item > p {
  font-size: 2.15rem;
  color: var(--color-pink-deep);
}

.c-item-box__param {
  border-top: 2px solid var(--color-gray-light);
  padding-top: 1.2rem;
  margin-top: 1.2rem;
}

.c-item-box__param > p {
  font-size: 1.1rem;
  color: var(--color-gray);
}

.p-bird {
  margin-top: 4.3rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.p-bird__icon {
  width: 48%;
  max-width: 260px;
  aspect-ratio: 251 / 150;
  background-image: url("../public/bird.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* スタッフ */
.l-staff {
  width: 100%;
  margin-top: 7.7rem;
  padding: 0 1.8rem;
  max-width: 900px;
}

.c-staff-img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 2.4rem;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.c-staff-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.p-staff-name {
  width: 100%;
  margin-top: 2rem;
  text-align: center;
}

.p-staff-name > p {
  font-weight: bold;
  font-size: 1.4rem;
}

.p-staff-name > p > span {
  font-weight: normal;
  font-size: 1.1rem;
}

.p-staff-name > p > span:nth-child(1) {
  color: var(--color-pink-deep);
  margin-left: 0.6rem;
}

.p-message {
  margin-top: 2rem;
  padding: 1.8rem;
  background-color: var(--color-white);
  border-radius: 24px;
}

.p-message > p:nth-child(1) {
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--color-pink-deep);
}

.p-message > p:nth-child(2) {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 2px solid var(--color-gray-light);
  font-size: 1.2rem;
}

/* カレンダー */
.l-calender {
  width: 100%;
  margin-top: 3rem;
  padding: 0 0.4rem;
  padding: 0 1rem;
  max-width: 900px;
}

/* アクセス */
.l-access {
  width: 100%;
  margin-top: 7.7rem;
  padding: 0 1.8rem;
  max-width: 900px;
}

.p-access {
  /* margin-top: 1.2rem; */
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
}

.p-access__img {
  /* width: 76%; */
  width: 86%;
  margin: 0 auto;
  aspect-ratio: 100 / 71;
  /* aspect-ratio: 1 / 1.3; */
  border-radius: 16px;
  overflow: hidden;
}

.p-access__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.c-info {
  position: relative;
  top: -2rem;
  padding: 5.5rem 1.8rem 1.9rem;
  background-color: var(--color-white);
  /* border-radius: 24px; */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: -1;
}

.c-info__item > p:nth-child(1) {
  font-size: 1.3rem;
  font-weight: bold;
}

.c-info__item > p:nth-child(2) {
  font-size: 1.2rem;
  margin-top: 0.68rem;
  padding-top: 0.68rem;
  border-top: 2px solid var(--color-gray-light);
}

.c-info__item.u-title {
  display: none;
}

.p-gmap {
  margin-top: 4.3rem;
  width: 100%;
  height: 18rem;
}

.p-gmap > iframe {
  border-radius: 26px;
}

/* お問い合わせ */
.l-contact {
  width: 100vw;
  margin-top: 7.7rem;
  background-color: var(--color-green-deep);
}

.l-contact-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 2.4rem 1.8rem;
  max-width: 900px;
}

.c-title.u-contact > h2 {
  color: var(--color-white);
}

.c-title.u-contact > p {
  color: var(--color-white);
}

.p-contact-param {
  margin-top: 2.5rem;
}

.p-contact-param > p {
  text-align: center;
  color: var(--color-white);
  line-height: 1.7em;
}

.p-reserve {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.c-reserve-buttons {
  margin-top: 2.46rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.c-reserve-buttons__button {
  width: 100%;
  padding: 1.5rem 0;
  background-color: #d96c36;
  text-align: center;
  border-radius: 100px;
}

.c-reserve-buttons__button.u-phone {
  background-color: #6bb700;
  pointer-events: auto;
}

.c-reserve-buttons__button > p {
  font-size: 1.53rem;
  font-weight: bold;
  color: var(--color-white);
  vertical-align: bottom;
}

.c-reserve-buttons__button > p:nth-child(2) {
  margin-top: 0.6rem;
  font-size: 1.15rem;
  color: var(--color-white);
  font-weight: normal;
}

.c-reserve-buttons__button > p:nth-child(1)::before {
  content: "";
  display: inline-block;
  width: 2rem;
  aspect-ratio: 1/1;
  background-image: url("/assets/laptop.svg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-right: 0.8rem;
}

.c-reserve-buttons__button.u-phone > p:nth-child(1)::before {
  background-image: url("/assets/phone.svg");
}

.p-follow {
  padding: 1.85rem;
  background-color: var(--color-white);
  border-radius: 24px;
}

.p-follow > p {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
}

.p-follow > p:nth-child(1) {
  font-size: 2.2rem;
  color: var(--color-pink-deep);
  font-family: var(--font-istok-web);
  font-weight: 700;
}

.p-sns-icons {
  margin-top: 2rem;
  display: flex;
  gap: 3.8rem;
  justify-content: center;
  align-items: center;
}

.p-sns-icon {
  width: 5.4rem;
  padding: 1rem;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: flex;
}

.p-sns-icon > img {
  width: 100%;
  height: 100%;
}

/* お知らせ */
.l-news {
  width: 100%;
  margin-top: 6.7rem;
  padding: 0 1.8rem;
  max-width: 900px;
}

.p-board {
  margin-top: 2.46rem;
  display: flex;
  flex-direction: column;
  gap: 1.23rem;
}

.p-board__item {
  padding: 1.23rem 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.p-board__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-board__title p {
  display: block;
  width: 100%;
  max-width: 200px;
  font-size: 1.3rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-board__title__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.p-board__new {
  color: var(--color-white);
  background-color: #e34b4b;
  border-radius: 4px;
  padding: 0 0.3rem;
  font-size: 0.8rem;
  margin-left: 1rem;
}

.p-board__title time {
  font-size: 1rem;
}

.p-board-content {
  margin-top: 0.8rem;
}

.p-board-content > p {
  font-size: 1.15rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Q&A */
.l-qa {
  width: 100%;
  margin-top: 9.8rem;
  padding: 0 1.8rem;
  max-width: 900px;
}

.p-qa {
  display: flex;
  flex-direction: column;
  gap: 1.23rem;
  margin-top: 2.4rem;
}

.p-qa-list {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 2rem;
  background-color: var(--color-white);
  border-radius: 24px;
}

.p-qa-question {
  display: flex;
  justify-content: space-between;
}

.p-qa-question__param {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.p-qa-question__param > p:nth-child(1) {
  font-size: 2rem;
  color: var(--color-pink-deep);
  font-family: var(--font-istok-web);
  font-weight: 700;
}

.p-qa-question__param > p:nth-child(2) {
  font-size: 1.3rem;
  font-weight: bold;
}

.p-qa-answer > p {
  font-size: 1.15rem;
}

.p-qa-answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/*-------------------------
  タブレット
-------------------------*/
@media screen and (min-width: 768px) {
  .c-fab {
    display: flex;
  }

  .c-lead {
    font-size: 2.2rem;
    line-height: 2;
    margin-top: 8rem;
    margin-left: 4rem;
  }

  .l-hero__container {
    padding-bottom: 8rem;
  }

  .p-hero__title {
    font-size: 10rem;
    top: 6rem;
  }

  .l-boundary::after {
    background-image: url("../public/boundary/boundary-2.svg");
    bottom: -6.2rem;
    height: 120px;
  }

  /* コンセプト */
  .l-concept {
    margin-top: 12rem;
    padding: 0 1rem;
  }

  .l-concept > p:nth-child(1) {
    font-size: 1.5rem;
  }

  .l-concept > p:nth-child(2) {
    margin-top: 3rem;
    font-size: 1.4rem;
  }

  .p-cup {
    position: relative;
    left: -20%;
    margin-top: 5rem;
    width: 30%;
  }

  /* メニュー */
  .c-menu {
    flex-direction: row;
    gap: 2.3rem;
  }

  .c-menu-img {
    width: 42rem;
  }

  .c-item-box__item {
    margin-top: 0;
    justify-content: flex-start;
  }

  .c-item-box__param br {
    display: none;
  }

  .p-bird {
    margin-top: 8rem;
  }

  /* アクセス */
  .c-info {
    padding: 5.5rem 3rem 1.9rem;
  }

  .p-gmap {
    height: 26rem;
  }

  /* お問い合わせ */
  .l-contact-wrapper {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .c-reserve-buttons {
    flex-direction: row;
  }

  .p-reserve {
    gap: 3.5rem;
  }

  .p-follow {
    border-radius: 32px;
  }

  /* お知らせ */
  .p-board__item {
    padding: 1.5rem 0;
  }

  .p-board__title p {
    max-width: 500px;
  }

  .p-board-content {
    margin-top: 1rem;
  }
}

/*-------------------------
  PC
-------------------------*/
@media screen and (min-width: 1024px) {
  .l-hero__container {
    flex-direction: row-reverse;
    padding-top: 10rem;
  }

  .c-lead {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.5em;
    font-size: 2rem;
    line-height: 2.2;
    margin-left: 0;
    transform: translateX(-6rem);
  }

  .p-hero {
    width: 100%;
    margin-top: 2rem;
  }

  .p-hero__img {
    width: 50rem;
    position: relative;
    transform: translateX(-10rem);
  }

  .p-hero__title {
    font-size: 9.6rem;
    top: 6rem;
  }

  .l-boundary::after {
    background-image: url("../public/boundary/boundary-2.svg");
    bottom: -6.8rem;
  }

  /* メニュー */
  .c-menu-img {
    width: 50rem;
  }

  /* スタッフ */
  .p-message {
    padding: 2.4rem;
  }

  /* アクセス */
  .l-access {
    padding: 0;
  }

  .p-access {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
  }

  .p-access__img {
    width: 100%;
    margin: 0;
    border-radius: 12px;
  }

  .c-info {
    width: 80%;
    margin-left: auto;
    padding: 0;
    border-radius: 32px;
    background-color: transparent;
    top: 0;
  }

  .c-info__item {
    display: grid;
    grid-template-columns: 2fr 3fr;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--color-gray-light);
  }

  .c-info__item > p:nth-child(1) {
    font-size: 1.1rem;
  }

  .c-info__item > p:nth-child(2) {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    border: none;
  }

  .c-info__item.u-title > p {
    font-size: 1.7rem;
    color: var(--color-pink-deep);
    font-family: var(--font-istok-web);
    font-weight: 700;
  }

  .p-gmap {
    /* margin-top: -32rem; */
    margin-top: 4rem;
  }

  .p-gmap > iframe {
    border-radius: 12px;
  }

  /* お問い合わせ */
  .c-reserve-buttons__button.u-phone {
    pointer-events: none;
    cursor: default;
  }
}

@media screen and (min-width: 1260px) {
  .l-hero__container {
    gap: 6.5rem;
  }

  .l-boundary::after {
    background-image: url("../public/boundary/boundary-3.svg");
    bottom: -13.2rem;
    height: 400px;
  }

  .c-lead {
    transform: translateX(-2rem);
  }

  .p-hero__title {
    padding: 0;
    font-size: 10.6rem;
  }

  .p-hero__img {
    width: 64rem;
    transform: translateX(-12rem);
  }

  /* コンセプト */
  .l-concept {
    margin-top: 18rem;
  }
}
