@charset "UTF-8";
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (max-width:1024px) {
  .hidden-spTb {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .hidden-pc {
    display: none;
  }
}

body {
  font-family: "Noto Sans JP", "Noto Sans", "Noto Serif", "Yusei Magic", "Yuji Syuku", sans-serif, serif;
  font-style: normal;
}

.body__inner {
  overflow: hidden;
}

.header {
  border-bottom: 0.667px solid #F3F4F6;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media screen and (max-width:1024px) {
  .header {
    width: 100%;
    position: fixed;
    z-index: 150;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
}

.header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header__title-img {
  padding: 10px 14px;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  border-radius: 12px;
  background: linear-gradient(135deg, #1E293B 0%, #1E3A8A 50%, #0F172A 100%);
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.header__title-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__title-head-top {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  background: -webkit-gradient(linear, left top, right top, from(#1E293B), to(#1E3A8A));
  background: linear-gradient(90deg, #1E293B 0%, #1E3A8A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .header__title-head-top {
    font-size: 18px;
    line-height: 28px; /* 155.556% */
  }
}

.header__title-head-sub {
  color: #6B7280;
  font-family: Geist;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
  letter-spacing: 0.3px;
}
@media screen and (max-width: 767px) {
  .header__title-head-sub {
    display: none;
  }
}

.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.drawer-icon {
  display: none;
}
@media screen and (max-width:1024px) {
  .drawer-icon {
    display: block;
    position: relative;
  }
}

.drawer-icon.is-open .drawer-icon__bar:nth-of-type(1) {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-open .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-open .drawer-icon__bar:nth-of-type(3) {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  right: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background: #4a3636;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  top: -10px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 0px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 10px;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width:1024px) {
  .header__menu {
    display: none;
  }
}

.header__menu-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.sp-menu__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px 5px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 100;
}
.sp-menu__container.is-open {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.sp-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.sp-header__menu-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__menu-ul li a {
  display: inline-block;
  color: #374151;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.header__menu-ul li a:hover {
  color: #FBBF24;
}

.button-blue {
  padding: 12px 16px;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#1E293B), to(#1E3A8A));
  background: linear-gradient(90deg, #1E293B 0%, #1E3A8A 100%);
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.button-blue:hover {
  opacity: 0.9;
}
.button-blue:hover .button-blue-text {
  color: #FBBF24;
}

.button-blue-text {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.fv {
  padding: 80px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #E0E7FF 100%);
}
@media screen and (max-width:1024px) {
  .fv {
    padding: 110px 0 80px;
  }
}

.fv__inner {
  padding: 0 16px;
}

.fv__grid {
  display: grid;
  gap: 0 5%;
  grid-template-columns: 47.5% 47.5%;
  grid-template-rows: auto auto;
}
@media screen and (max-width:1024px) {
  .fv__grid {
    grid-template-columns: 100%;
    gap: 0;
  }
}

.fv__grid-title {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width:1024px) {
  .fv__grid-title {
    grid-column: 1;
    grid-row: 1/2;
  }
}

.fv__grid-title .title-icon {
  padding: 3px 10.3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 30px;
  border: 1px solid #FDE68A;
  background: -webkit-gradient(linear, left top, right top, from(#FEF3C7), to(#FFEDD5));
  background: linear-gradient(90deg, #FEF3C7 0%, #FFEDD5 100%);
  color: #92400E;
}

.fv__grid-title .title-icon span {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
}

.fv__grid-title .title-header {
  padding-top: 22px;
  font-family: "Noto Sans JP";
  font-size: 72px;
  font-style: normal;
  line-height: 72px; /* 100% */
}
@media screen and (max-width: 767px) {
  .fv__grid-title .title-header {
    font-size: 30px;
    line-height: 37.5px;
  }
}

.title-header-top {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#1E293B), color-stop(50%, #1E3A8A), to(#1E293B));
  background: linear-gradient(90deg, #1E293B 0%, #1E3A8A 50%, #1E293B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-header-2nd {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#D97706), color-stop(50%, #EA580C), to(#DC2626));
  background: linear-gradient(90deg, #D97706 0%, #EA580C 50%, #DC2626 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv__grid-title .title-text {
  padding-top: 22px;
  color: #4B5563;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 32.5px; /* 162.5% */
}
@media screen and (max-width: 767px) {
  .fv__grid-title .title-text {
    font-size: 16px;
    line-height: 26px; /* 162.5% */
  }
}

.fv__grid-btn {
  padding-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .fv__grid-btn {
    gap: 8px;
  }
}

.button-white {
  padding: 12px 16px;
  border-radius: 6px;
  border: 2px solid #CBD5E1;
  background: #FFF;
  -webkit-box-shadow: 0px 2px 10px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 10px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.button-white:hover .button-white-text i {
  color: #FBBF24;
}
.button-white:hover .button-white-text span {
  color: #FBBF24;
}

.button-white-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #334155;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.fv__grid-img {
  padding: 12px;
  grid-column: 2/3;
  grid-row: 1/3;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width:1024px) {
  .fv__grid-img {
    margin-top: 32px;
    padding: 12px;
    grid-column: 1;
    grid-row: 2/3;
  }
}

.fv__grid-img-item {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  background-color: #6c6e6f;
  border-radius: 10px;
}

.fv__grid-about {
  grid-column: 1/2;
  grid-row: 2/3;
  padding-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .fv__grid-about {
    margin: 0 auto;
    padding-top: 32px;
    grid-column: 1;
    grid-row: 3/4;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .fv__grid-about {
    margin: 0 auto;
    padding-top: 32px;
    grid-column: 1;
    grid-row: 3/4;
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
  }
}

.fv__grid-about__content {
  padding: 26px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
@media screen and (max-width: 767px) {
  .fv__grid-about__content {
    padding: 12px;
    max-width: 200px;
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .fv__grid-about__content {
    padding: 20px 25px;
    max-width: 200px;
  }
}

.fv__grid-about__content-icon {
  padding: 10px;
  border-radius: 8px;
  aspect-ratio: 1/1;
  max-width: 40px;
  max-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hour .fv__grid-about__content-icon {
  background: -webkit-gradient(linear, left top, right top, from(#3B82F6), to(#2563EB));
  background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
}

.access .fv__grid-about__content-icon {
  background: -webkit-gradient(linear, left top, right top, from(#22C55E), to(#16A34A));
  background: linear-gradient(90deg, #22C55E 0%, #16A34A 100%);
}

.service .fv__grid-about__content-icon {
  background: -webkit-gradient(linear, left top, right top, from(#F59E0B), to(#F97316));
  background: linear-gradient(90deg, #F59E0B 0%, #F97316 100%);
}

.fv__grid-about__content-container {
  font-family: "Noto Sans JP";
  font-style: normal;
}

.fv__grid-about__content-title {
  color: #1E293B;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
}

.fv__grid-about__content-text {
  color: #4B5563;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.news {
  padding: 64px 0;
}

.news__inner {
  padding: 0 16px;
}

.news__title {
  font-family: "Noto Sans JP";
  font-style: normal;
  text-align: center;
}

.news__title-main {
  color: #1E40AF;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px; /* 120% */
}

.news__title-text {
  padding-top: 17px;
  color: #4B5563;
  font-size: 16px;
  font-weight: 350;
  line-height: 24px; /* 150% */
}

.news__list {
  padding-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.news__item {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 75%;
  border-radius: 8px;
  border: 1px solid #E4E4E7;
  background: #FFF;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .news__item {
    padding: 24px 10px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .news__item {
    padding: 24px 10px 24px 24px;
    width: 100%;
  }
}

.news__item-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.news__item-date {
  color: #6B7280;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.news__item-icon {
  padding: 3px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
  border-radius: 30px;
}
@media screen and (max-width:1024px) {
  .news__item-icon {
    max-width: 100px;
  }
}

.news__item-icon.notice {
  color: #1E40AF;
  background: #DBEAFE;
}
.news__item-icon.latest {
  color: #FFF;
  background: #EF4444;
}

.news__item-icon.info {
  color: #854D0E;
  background: #FEF9C3;
}

.news__item-icon.limited {
  color: #166534;
  border: 1px solid #E4E4E7;
  background: #DCFCE7;
}

.news__item-title a {
  color: #1F2937;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
@media screen and (max-width:1024px) {
  .news__item-title a {
    grid-column: 1/-1; /* 1列目〜最後の列を占有 */
    justify-self: start;
  }
}

.menu {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#F8FAFC));
  background: linear-gradient(180deg, #FFF 0%, #F8FAFC 100%);
}

.menu__inner {
  padding: 96px 56px;
}
@media screen and (max-width:1024px) {
  .menu__inner {
    padding: 96px 32px;
  }
}

.menu__title {
  text-align: center;
}

.menu__title-icon {
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#F97316), to(#EF4444));
  background: linear-gradient(90deg, #F97316 0%, #EF4444 100%);
}

.menu__title-icon {
  padding: 3px 10.3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 30px;
  border: 1px solid #FDE68A;
  background: -webkit-gradient(linear, left top, right top, from(#FEF3C7), to(#FFEDD5));
  background: linear-gradient(90deg, #FEF3C7 0%, #FFEDD5 100%);
  color: #92400E;
}

.menu__title-icon span {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
}

.menu__title-main {
  padding-top: 20px;
  font-family: "Noto Sans JP";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 100% */
  background: -webkit-gradient(linear, left top, right top, from(#1E293B), to(#1E3A8A));
  background: linear-gradient(90deg, #1E293B 0%, #1E3A8A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width:1024px) {
  .menu__title-main {
    font-size: 30px;
    line-height: 40px;
  }
}

.menu__title-text {
  padding-top: 16px;
  color: #4B5563;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 28px; /* 140% */
}

.menu__boxes {
  padding-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .menu__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .menu__boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.menu__box {
  width: 30%;
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width:1024px) {
  .menu__box {
    width: 100%;
  }
}

.menu__box-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 278/224;
  border-radius: 8px 8px 0 0;
}

.menu__box-inner {
  padding: 24px;
  font-family: "Noto Sans JP";
  font-style: normal;
}

.menu__box-title {
  color: #1E293B;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px; /* 140% */
}

.menu__box-price {
  padding-top: 6px;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 120% */
  background: -webkit-gradient(linear, left top, right top, from(#D97706), to(#EA580C));
  background: linear-gradient(90deg, #D97706 0%, #EA580C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu__box-text {
  padding-top: 15px;
  color: #4B5563;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 22.75px; /* 162.5% */
}

.menu__button {
  padding-top: 48px;
  text-align: center;
}

.menu__button-link span {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.menu__button-link {
  padding: 12px 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
  color: #fff;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#2563EB), to(#4338CA));
  background: linear-gradient(90deg, #2563EB 0%, #4338CA 100%);
  -webkit-box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.menu__button-link:hover {
  background: -webkit-gradient(linear, left top, right top, from(#1E40AF), to(#1E3A8A));
  background: linear-gradient(90deg, #1E40AF 0%, #1E3A8A 100%);
}

.information {
  padding: 64px 0;
}

.information__inner {
  padding: 0 16px;
}
@media screen and (max-width:1024px) {
  .information__inner {
    padding: 0 32px;
  }
}

.information__title {
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
}

.information__title-top {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px; /* 100% */
}
@media screen and (max-width:1024px) {
  .information__title-top {
    font-size: 30px;
    line-height: 36px;
  }
}

.information__title-text {
  padding-top: 24px;
  color: #CBD5E1;
  font-size: 20px;
  font-weight: 350;
  line-height: 28px; /* 140% */
}
@media screen and (max-width:1024px) {
  .information__title-text {
    padding-top: 17px;
    font-size: 16px;
    line-height: 24px;
  }
}

.information__container {
  padding-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:1024px) {
  .information__container {
    padding-top: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.information__boxes {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width:1024px) {
  .information__boxes {
    width: 100%;
  }
}

.information__boxes-inner {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0px 15px 20px -4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 15px 20px -4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.information__box {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

.information__box-title {
  color: #1E40AF;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: -0.6px;
}

.information__box-title i {
  padding-right: 16px;
}

.information__box-list {
  padding-top: 22px;
}

.information__box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-size: 16px;
  line-height: 24px; /* 150% */
  color: #09090B;
}

.information__box-items.red {
  color: #DC2626;
}

.information__box-items.custom {
  display: none;
}

.item-left {
  font-weight: 350;
}

.item-right {
  font-weight: 500;
}

.information__box-text {
  grid-column: 2/3;
  grid-row: 2;
  color: #CBD5E1;
  font-size: 16px;
  font-weight: 350;
  line-height: 26px; /* 162.5% */
}

.information__map {
  width: 50%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
@media screen and (max-width:1024px) {
  .information__map {
    width: 100%;
  }
}

.information__map-content {
  position: relative;
  width: 100%;
  padding-bottom: 60.4%; /* 調整 */
  height: 0;
  overflow: hidden;
}

.information__map-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.information__map-box {
  padding: 12px 24px;
  font-family: "Noto Sans JP";
  font-style: normal;
}

.information__map-box-address {
  padding-top: 3px;
  font-size: 16px;
  color: #DC2626;
  font-weight: 400;
  line-height: 22.75px; /* 162.5% */
}
@media screen and (max-width:1024px) {
  .information__map-box-address {
    color: #09090B;
    font-weight: 500;
    line-height: 24px; /* 150% */
  }
}

.information__map-box-text {
  color: #09090B;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 24px;
}
@media screen and (max-width:1024px) {
  .information__map-box-text {
    color: #6B7280;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
  }
}

.footer {
  padding: 64px 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #0F172A 100%);
}

.footer__inner {
  padding: 0 50px;
}
@media screen and (max-width:1024px) {
  .footer__inner {
    padding: 0 32px;
  }
}

.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5%;
}
@media screen and (max-width:1024px) {
  .footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__title {
  width: 35%;
}
@media screen and (max-width:1024px) {
  .footer__title {
    width: 100%;
  }
}

.footer__title-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__title-img {
  padding: 10px 14px;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  border-radius: 12px;
  background: linear-gradient(135deg, #1E293B 0%, #1E3A8A 50%, #0F172A 100%);
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.footer__title-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Sans JP";
  font-style: normal;
}

.footer__title-head-top {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  background: -webkit-gradient(linear, left top, right top, from(#FFF), to(#BFDBFE));
  background: linear-gradient(90deg, #FFF 0%, #BFDBFE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__title-head-sub {
  color: #BFDBFE;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.35px;
}

.footer__title-text {
  padding-top: 28px;
  color: #DBEAFE;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 36px; /* 162.5% */
}
@media screen and (max-width:1024px) {
  .footer__title-text {
    line-height: 26px;
  }
}

.footer__content-outer {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  .footer__content-outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .footer__content-outer {
    width: 100%;
  }
}

.footer__content {
  width: 50%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-style: normal;
}
@media screen and (max-width:1024px) {
  .footer__content {
    padding-top: 48px;
    width: 100%;
  }
}

.footer__content-head {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.footer__grid {
  padding-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.footer__grid-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
}

.footer__grid-content-icon {
  padding: 10px;
  border-radius: 8px;
  aspect-ratio: 1/1;
  max-width: 40px;
  max-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hour .footer__grid-content-icon {
  background: -webkit-gradient(linear, left top, right top, from(#3B82F6), to(#2563EB));
  background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
}

.access .footer__grid-content-icon {
  background: -webkit-gradient(linear, left top, right top, from(#22C55E), to(#16A34A));
  background: linear-gradient(90deg, #22C55E 0%, #16A34A 100%);
}

.service .footer__grid-content-icon {
  background: -webkit-gradient(linear, left top, right top, from(#F59E0B), to(#F97316));
  background: linear-gradient(90deg, #F59E0B 0%, #F97316 100%);
}

.footer__grid-content-container {
  font-family: "Noto Sans JP";
  font-style: normal;
}

.footer__grid-content-title {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.footer__grid-content-text {
  color: #BFDBFE;
  font-size: 14px;
  font-weight: 350;
  line-height: 20px; /* 142.857% */
}

.footer__menu {
  width: 40%;
}
@media screen and (max-width:1024px) {
  .footer__menu {
    padding-top: 48px;
    width: 100%;
  }
}

.footer__menu-title {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.footer__menu-list {
  padding-top: 12px;
  color: #BFDBFE;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 24px; /* 150% */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}

.footer__menu-item a:hover {
  color: #FBBF24;
}

.footer__menu-best {
  padding-top: 27px;
}

.footer__menu-best-title {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.footer__menu-best-list {
  padding-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.footer__menu-best-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width:1024px) {
  .footer__menu-best-item {
    max-width: 300px;
  }
}

.footer__menu-best-item .best-left {
  color: #BFDBFE;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 20px; /* 142.857% */
}

.footer__menu-best-item .best-right {
  color: #FBBF24;
  font-family: Geist;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.footer__pageTop-link i {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: block;
  font-size: 50px;
  color: #d1d3d7;
  z-index: 20;
}

.footer__copyLights {
  padding-top: 60px;
  color: #93C5FD;
  text-align: center;
  font-family: Geist;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width:1024px) {
  .footer__copyLights {
    font-size: 14px;
  }
}

.menu__fv {
  padding: 64px 0;
}
@media screen and (max-width:1024px) {
  .menu__fv {
    padding: 144px 0;
  }
}

.menu__fv-inner {
  padding: 0 16px;
}

.menu__fv-title {
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
}

.menu__fv-title-top {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px; /* 111.111% */
  background: -webkit-gradient(linear, left top, right top, from(#1E293B), to(#1E3A8A));
  background: linear-gradient(90deg, #1E293B 0%, #1E3A8A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu__fv-title-sub {
  padding-top: 16px;
  color: #4B5563;
  font-size: 16px;
  font-weight: 350;
  line-height: 24px; /* 150% */
}
@media screen and (max-width:1024px) {
  .menu__fv-title-sub {
    font-size: 14px;
    line-height: 20px; /* 142.857% */
  }
}

.menu__fv-link {
  padding-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:1024px) {
  .menu__fv-link {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
  }
}

.menu__fv-link-item {
  padding: 12px 16px;
  color: #334155;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  border-radius: 6px;
  border: 1px solid #CBD5E1;
  -webkit-transition: color 0.5s ease, background 0.5s ease;
  transition: color 0.5s ease, background 0.5s ease;
}
@media screen and (max-width:1024px) {
  .menu__fv-link-item {
    padding: 12px 8px;
    font-size: 12px;
  }
}
.menu__fv-link-item:hover {
  color: #FFF;
  background: -webkit-gradient(linear, left top, right top, from(#1E293B), to(#1E3A8A));
  background: linear-gradient(90deg, #1E293B 0%, #1E3A8A 100%);
}

.newMenu__inner {
  padding: 0 16px;
}
@media screen and (max-width:1024px) {
  .newMenu__inner {
    padding: 0 32px;
  }
}

.menuPage_title {
  border-bottom: 2px solid #FDE68A;
}

.menuPage_title-name {
  padding-bottom: 10px;
  color: #1E293B;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 120% */
}
@media screen and (max-width:1024px) {
  .menuPage_title-name {
    font-size: 20px;
    line-height: 28px; /* 140% */
  }
}

.newMenu__contents {
  padding: 32px 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width:1024px) {
  .newMenu__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.newMenu__dailyMenu {
  padding: 24px;
  width: 50%;
  border-radius: 8px;
  background: linear-gradient(135deg, #EFF6FF 0%, #EEF2FF 100%);
}
@media screen and (max-width:1024px) {
  .newMenu__dailyMenu {
    width: 100%;
  }
}

.newMenu__dailyMenu-title {
  color: #1E40AF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
@media screen and (max-width:1024px) {
  .newMenu__dailyMenu-title {
    font-size: 18px;
    line-height: 28px; /* 140% */
  }
}

.newMenu__dailyMenu-list {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.newMenu__dailyMenu-item {
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Noto Sans JP";
  font-style: normal;
  border-bottom: 0.667px solid #BFDBFE;
}
@media screen and (max-width:1024px) {
  .newMenu__dailyMenu-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.newMenu__dailyMenu-item .name {
  color: #1F2937;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
@media screen and (max-width:1024px) {
  .newMenu__dailyMenu-item .name {
    font-size: 14px;
    line-height: 20px; /* 142.857% */
  }
}

.newMenu__dailyMenu-item .price p {
  color: #DC2626;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}
@media screen and (max-width:1024px) {
  .newMenu__dailyMenu-item .price p {
    font-size: 16px;
    line-height: 24px; /* 150% */
  }
}

.newMenu__dailyMenu-text {
  padding-top: 26px;
  color: #4B5563;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 20px; /* 142.857% */
}

.menuPage-contents {
  padding: 0 24px 24px;
}

@media screen and (max-width:1024px) {
  .menuPage-contents.newMenu__content {
    padding: 0 0 20px;
    background-color: transparent;
  }
}

.newMenu__content {
  width: 50%;
  background-color: #FFF8E1;
  border-radius: 8px;
}
@media screen and (max-width:1024px) {
  .newMenu__content {
    width: 100%;
  }
}

.newMenu__content-title {
  padding-top: 24px;
  color: #166534;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
@media screen and (max-width:1024px) {
  .newMenu__content-title {
    font-size: 18px;
    line-height: 28px; /* 140% */
  }
}

.newMenu__content-grid {
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 17px;
}

.menuPage-content {
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.menuPage-content__img img {
  width: 100%;
  aspect-ratio: 3/3;
  border-radius: 8px 8px 0 0;
  background-color: dimgray;
}

.menuPage-content__box {
  padding: 18px 16px;
  font-family: "Noto Sans JP";
  font-style: normal;
}
@media screen and (max-width:1024px) {
  .menuPage-content__box {
    padding: 12px;
  }
}

.menuPage-content__name {
  color: #1E40AF;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.35px;
}
@media screen and (max-width:1024px) {
  .menuPage-content__name {
    font-size: 12px;
    line-height: 16px;
  }
}

.menuPage-content__price {
  padding-top: 6px;
  color: #DC2626;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}
@media screen and (max-width:1024px) {
  .menuPage-content__price {
    font-size: 14px;
    line-height: 20px;
  }
}

.menuPage-content__text {
  padding-top: 6px;
  color: #4B5563;
  font-size: 12px;
  font-weight: 350;
  line-height: 16px; /* 133.333% */
}

.menuPage-section {
  padding: 64px 0 40px;
}

.menuPage-section__inner {
  padding: 0 16px;
}

.newMenu__content-grid.grid5 {
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 17px;
}
@media screen and (max-width: 767px) {
  .newMenu__content-grid.grid5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .newMenu__content-grid.grid5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menuPage-about {
  padding: 0 0 64px;
}

.menuPage-about__inner {
  margin: 0 16px;
  padding: 0 24px;
  border-radius: 8px;
  background: #EFF6FF;
}

.menuPage-about_title {
  padding-top: 24px;
  color: #1E40AF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
}

.menuPage-about__contents {
  padding-top: 16px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Sans JP";
  font-style: normal;
  color: #374151;
  font-size: 14px;
}
@media screen and (max-width:1024px) {
  .menuPage-about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.menuPage-about__takeOut {
  width: 50%;
}
@media screen and (max-width:1024px) {
  .menuPage-about__takeOut {
    width: 100%;
  }
}

.menuPage-about__takeOut-title {
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}

.takeOut-list {
  padding-top: 8px;
  list-style-type: disc;
  list-style-position: inside;
}
@media screen and (max-width:1024px) {
  .takeOut-list {
    padding: 8px 0 0 15px;
    list-style-position: outside;
  }
}

.takeOut-item {
  font-weight: 350;
  line-height: 20px; /* 142.857% */
}

.takeOut-item + .takeOut-item {
  padding-top: 4px;
}

.menuPage-about__eatIn {
  width: 50%;
}
@media screen and (max-width:1024px) {
  .menuPage-about__eatIn {
    width: 100%;
  }
}

.menuPage-about__eatIn-title {
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}

.eatIn-list {
  padding-top: 8px;
  list-style-type: disc;
  list-style-position: inside;
}
@media screen and (max-width:1024px) {
  .eatIn-list {
    padding: 8px 0 0 15px;
    list-style-position: outside;
  }
}

.eatIn-item {
  font-weight: 350;
  line-height: 20px; /* 142.857% */
}

.eatIn-item + .eatIn-item {
  padding-top: 4px;
}

.menu__drinks {
  padding-top: 62.5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#EFF6FF), to(#FFF)), #FFF;
  background: linear-gradient(180deg, #EFF6FF 0%, #FFF 100%), #FFF;
}

.menu__drinks-inner {
  padding: 0 66px;
}

.menu__drinks-container {
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.menu__drinks-title {
  padding: 32px 20px;
  border-radius: 16px 16px 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#F59E0B), to(#EA580C));
  background: linear-gradient(90deg, #F59E0B 0%, #EA580C 100%);
  color: #FFF;
  text-align: center;
  font-style: normal;
}

.menu__drinks-title-top {
  font-family: Geist;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px; /* 111.111% */
}

.menu__drinks-title-sub {
  padding-top: 8px;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 350;
  line-height: 28px; /* 140% */
}

.menu__drinks-lead {
  padding: 20px 20px;
  background: -webkit-gradient(linear, left top, right top, from(#FB923C), color-stop(50%, #EF4444), to(#EC4899));
  background: linear-gradient(90deg, #FB923C 0%, #EF4444 50%, #EC4899 100%);
  -webkit-box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #FFF;
  text-align: center;
  font-style: normal;
}

.menu__drinks-lead-icon {
  padding: 8px 15px 8px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.menu__drinks-lead-title {
  padding-top: 16px;
  font-family: Geist;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px; /* 120% */
}

.menu__drinks-lead-text {
  padding-top: 12px;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 350;
  line-height: 28px; /* 155.556% */
}

.menu__drinks-contents {
  padding: 48px 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 32px;
}

.menu__drinks-content {
  border-radius: 8px;
  border: 1px solid #E4E4E7;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.menu__drinks-content-title {
  padding: 24px;
  border-radius: 8px 8px 0 0;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  letter-spacing: -0.5px;
}

.menu__drinks-content.beer .menu__drinks-content-title {
  background: #F59E0B;
}

.menu__drinks-content.sake .menu__drinks-content-title {
  background: #4F46E5;
}

.menu__drinks-content.wine .menu__drinks-content-title {
  background: #9333EA;
}

.menu__drinks-content.Non-alcoholic .menu__drinks-content-title {
  background: #16A34A;
}

.menu__drinks-group {
  padding: 24px 50px;
}

.menu__drinks-item {
  font-size: 16px;
  font-style: normal;
  line-height: 24px; /* 150% */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.menu__drinks-item .name {
  color: #09090B;
  font-family: "Noto Sans JP";
  font-weight: 500;
}

.menu__drinks-item .price {
  color: #EA580C;
  font-family: "noto Sans";
  font-weight: 700;
}

.setMenu {
  padding: 64px 0;
  background: linear-gradient(135deg, #FFEDD5 0%, #FEE2E2 100%);
}

.setMenu__inner {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.setMenu__title {
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
}

.setMenu__title-icon {
  padding: 10px 16px;
  border-radius: 30px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  background: -webkit-gradient(linear, left top, right top, from(#F97316), to(#EF4444));
  background: linear-gradient(90deg, #F97316 0%, #EF4444 100%);
}

.setMenu__title-main {
  padding-top: 16px;
  color: #9A3412;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px; /* 111.111% */
}

.setMenu__title-text {
  padding-top: 16px;
  color: #4B5563;
  font-size: 18px;
  font-weight: 350;
  line-height: 28px; /* 155.556% */
}

.setMenu__title-price {
  padding-top: 8px;
  color: #EA580C;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}

.setMenu__container {
  margin-top: 48px;
  width: 80%;
  border-radius: 8px;
  border: 4px solid #FB923C;
  background: #FFF;
  -webkit-box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.setMenu__container-title {
  padding: 32px 0;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  letter-spacing: -0.6px;
  background: -webkit-gradient(linear, left top, right top, from(#F97316), to(#EF4444));
  background: linear-gradient(90deg, #F97316 0%, #EF4444 100%);
}

.setMenu__container-inner {
  position: relative;
}

.setMenu__container-left {
  position: absolute;
  top: 63px;
  left: calc(50% - 200px);
  -webkit-transform: scale(3);
          transform: scale(3);
}

.setMenu__container-right {
  position: absolute;
  top: 63px;
  right: calc(50% - 200px);
  -webkit-transform: scale(3);
          transform: scale(3);
}

.setMenu__contents {
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px 40px;
}

.setMenu__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.setMenu__content.tittle1 {
  grid-column: 1/2;
  grid-row: 1/2;
}

.setMenu__content.tittle2 {
  grid-column: 2/3;
  grid-row: 1/2;
}

.setMenu__content.tittle3 {
  grid-column: 3/4;
  grid-row: 1/2;
}

.setMenu__content-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  height: 80px;
  padding: 22px 19.2px 22px 19.4px;
  font-size: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: #F59E0B;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.setMenu__content-title {
  color: #1F2937;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
}

.setMenu__content-drink {
  grid-column: 1/3;
  grid-row: 2/3;
  padding: 16px;
  background: #FFFBEB;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.setMenu__content-drink-title {
  padding-left: 8px;
  color: #374151;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}

.setMenu__content-drink-inner {
  padding-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.setMenu__item .name {
  color: #4B5563;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 20px; /* 142.857% */
}

.setMenu__group1,
.setMenu__group2,
.setMenu__group3 {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  list-style-type: disc;
  list-style-position: inside;
}

.setMenu__content-food {
  grid-column: 3/4;
  grid-row: 2/3;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  background: #F0FDF4;
  font-family: "Noto Sans JP";
  font-style: normal;
}

.setMenu__food-img {
  width: 264px;
  height: 122px;
  background-color: gray;
}

.setMenu__food-title {
  padding-top: 11px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}

.setMenu__food-text {
  padding-top: 8px;
  color: #4B5563;
  font-size: 12px;
  font-weight: 350;
  line-height: 16px; /* 133.333% */
}

.setMenu__about {
  padding: 24px;
  margin: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-style: normal;
  border-radius: 16px;
  background: -webkit-gradient(linear, left top, right top, from(#FB923C), to(#F87171));
  background: linear-gradient(90deg, #FB923C 0%, #F87171 100%);
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.setMenu__about-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px; /* 140% */
}

.setMenu__about-text {
  padding-top: 18px;
  display: grid;
  gap: 16px;
  width: 80%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  list-style-type: "✓";
  list-style-position: outside;
}

.setMenu__about-item {
  padding-left: 8px;
  font-size: 14px;
  font-weight: 350;
  line-height: 20px; /* 142.857% */
}

.snacks {
  padding-top: 64px;
  background: -webkit-gradient(linear, left top, left bottom, from(#EFF6FF), to(#FFF)), #FFF;
  background: linear-gradient(180deg, #EFF6FF 0%, #FFF 100%), #FFF;
}

.snacks__container {
  margin: 0 44px;
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.snacks__title {
  padding: 32px;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  border-radius: 16px 16px 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#22C55E), to(#059669));
  background: linear-gradient(90deg, #22C55E 0%, #059669 100%);
}

.title__top {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px; /* 111.111% */
}

.title__sub {
  padding-top: 8px;
  font-size: 20px;
  font-weight: 350;
  line-height: 28px; /* 140% */
}

.menu-contents {
  padding: 32px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
}

.menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.menu-content__img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px 12px 0 0;
  background-color: dimgray;
}

.menu-content__box {
  padding: 18px 16px;
  font-family: "Noto Sans JP";
  font-style: normal;
}

.box-name {
  color: #1F2937;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}

.box-price {
  padding-top: 10px;
  color: #EA580C;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.menu-others {
  padding: 32px;
}

.menu-others-title {
  color: #1F2937;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
}

.menu-others-container {
  padding-top: 16px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.menu-others-item {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
  background: #F9FAFB;
}

.others-item-title {
  font-family: "Noto Sans JP";
  font-style: normal;
}

.others-item-title-top {
  color: #1F2937;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
}

.others-item-title-text {
  color: #4B5563;
  font-size: 14px;
  font-weight: 350;
  line-height: 20px; /* 142.857% */
}

.others-item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #EA580C;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.meat {
  padding-top: 64px;
  background: -webkit-gradient(linear, left top, left bottom, from(#EFF6FF), to(#FFF)), #FFF;
  background: linear-gradient(180deg, #EFF6FF 0%, #FFF 100%), #FFF;
}

.meat__container {
  margin: 0 44px;
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.meat__title {
  padding: 32px;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  border-radius: 16px 16px 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#EF4444), to(#DB2777));
  background: linear-gradient(90deg, #EF4444 0%, #DB2777 100%);
}

.fish {
  padding: 64px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#EFF6FF), to(#FFF)), #FFF;
  background: linear-gradient(180deg, #EFF6FF 0%, #FFF 100%), #FFF;
}

.fish__container {
  margin: 0 44px;
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.fish__title {
  padding: 32px;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  border-radius: 16px 16px 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#3B82F6), to(#0891B2));
  background: linear-gradient(90deg, #3B82F6 0%, #0891B2 100%);
}

.form-page {
  padding: 64px 0;
}
@media screen and (max-width:1024px) {
  .form-page {
    padding: 144px 0 64px;
  }
}

.form-page__inner {
  padding: 0 20px;
}

.form-page__title {
  color: #1E40AF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 111.111% */
}

.form-page__text {
  padding-top: 16px;
  color: #4B5563;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 24px; /* 150% */
}

.form-page__flex {
  padding-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media screen and (max-width:1024px) {
  .form-page__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form-page__form {
  width: 40%;
  border-radius: 8px;
  border: 1px solid #E4E4E7;
  background: #FFF;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width:1024px) {
  .form-page__form {
    width: 100%;
  }
}

.form-page__form-title {
  padding: 26px 24px 0;
  color: #1E40AF;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: -0.6px;
}

.form-page__form-title-sub {
  padding: 6px 24px 0;
  color: #4B5563;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 20px; /* 142.857% */
}

/* 引き取り時間の幅を調整 */
#time {
  max-width: 160px;
  margin-top: 4px;
}

.form-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: white;
}

.wpcf7-form-control {
  margin-top: 4px;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.full-width {
  grid-column: 1/-1;
}

.form-label {
  margin-bottom: 4px;
  font-weight: bold;
}

.form-input,
.form-select,
.form-textarea {
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  min-width: 0;
  background-color: white;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-textarea {
  resize: vertical;
}

.form-submit {
  grid-column: 1/-1;
  padding: 10px;
  font-size: 1rem;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-submit:hover {
  background-color: #004999;
}

.required-mark {
  color: red;
  font-size: 0.9em;
  margin-left: 6px;
}

.error-message {
  color: red;
  font-size: 0.85em;
  margin-top: 4px;
}

.product-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin: 4px 0 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product-row-l {
  width: 80%;
}

.product-row-r {
  width: 10%;
}

.wpcf7-form-control.wpcf7-select {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  font-size: 1rem;
  border: 1px solid #ccc;
}

.product-row-r input {
  text-align: center;
  width: 100%;
}

.quantity-input {
  width: 80px;
}

.form-add-button {
  margin-top: 4px;
  padding: 6px 12px;
  font-size: 0.95rem;
  background-color: #e2e2e2;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-add-button:hover {
  background-color: #cfcfcf;
}

.remove-button {
  background: #f44336;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
}

.form-page__contents {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .form-page__contents {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .form-page__contents {
    width: 100%;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
}

.form-page__tel {
  padding: 22px 0 24px;
  border-radius: 8px;
  border: 1px solid #E4E4E7;
  background: #FFF;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  font-family: "Noto Sans JP";
  font-style: normal;
}

.form-page__tel-inner {
  padding: 0 24.6px;
}

.form-page__tel-title {
  color: #1E40AF;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: -0.6px;
}

.form-page__tel-title .fa-solid.fa-phone {
  padding-right: 8px;
}

.form-page__tel-number {
  padding-top: 22.6px;
  color: #2563EB;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px; /* 120% */
}

.form-page__tel-text {
  padding-top: 8px;
  color: #4B5563;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.form-page__tel-button__container {
  padding-top: 16px;
}

.tel-button {
  display: block;
  padding: 12px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  border-radius: 6px;
  background: #EF4444;
}

.form-page__hour {
  border-radius: 8px;
  border: 1px solid #E4E4E7;
  background: #FFF;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.form-page__note {
  padding: 24px 0;
  border-radius: 8px;
  border: 1px solid #FEF08A;
  background: #FFF;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .form-page__note {
    grid-column: 1/-1;
  }
}

.form-page__note-inner {
  padding: 0 10px 0 24px;
}

.form-page__note-title {
  color: #A16207;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: -0.6px;
}

.form-page__note-list {
  padding-top: 24px;
}

.form-page__note-item {
  color: #374151;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 20px; /* 142.857% */
}
.form-page__note-item::before {
  content: "•";
  color: inherit;
  padding-right: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
}

.form-page__note-item + .form-page__note-item {
  padding-top: 8px;
}