/* ==========================================================================
   Foundation
   ========================================================================== */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.l-header {
  width: 100%;
}

.l-header__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.l-main {
  width: 100%;
  margin: 0 auto;
}

.l-footer {
  width: 100%;
  position: relative;
  padding: 10px 0 3px;
  min-height: 212px;
  background: #f1e4d1;
}

.l-footer__inner {
  margin: 0 auto;
  padding: 0;
  max-width: 375px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-footer__logo {
  width: 136px;
  aspect-ratio: 136 / 30;
  object-fit: contain;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.l-footer__content {
  padding: 9px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.l-footer__company {
  font-weight: 700;
  font-size: 12px;
  line-height: normal;
  color: #6f583a;
  margin: 0 0 4px;
  text-align: center;
}

.l-footer__address {
  font-size: 12px;
  line-height: normal;
  color: #6f583a;
  text-align: center;
  margin: 0 0 4px;
}

.l-footer__tel,
.l-footer__email {
  font-size: 12px;
  line-height: normal;
  color: #6f583a;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 0 0 4px;
}

.l-footer__email {
  margin: 0;
}

.l-footer__links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.l-footer__link {
  font-size: 10px;
  line-height: normal;
  color: #aaa;
  text-decoration: none;
}

.l-footer__copyright {
  font-size: 10px;
  line-height: normal;
  color: #666;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Object - Component
   ========================================================================== */

/* Button */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  border-radius: 21px;
  cursor: pointer;
  border: none;
}

.c-button--primary {
  background-color: #4f3927;
  color: #fff;
  width: 250px;
  height: 40px;
  position: relative;
}

.c-button--secondary {
  background-color: #fefefe;
  color: #333;
  border: 1px solid #ddd;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 21px;
}

.c-button--large {
  background-color: #4f3927;
  color: #fff;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 21px;
}

.c-button--outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 14px;
  padding: 8px 16px;
}

.c-button--small {
  background-color: #4f3927;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
}

.c-button--tel {
  background-color: #4f3927;
  color: #fff;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 21px;
}

.c-button__text {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Object - Project
   ========================================================================== */

/* Hero */
.p-hero {
  background-color: #fff;
  margin: 0;
}

.p-hero__inner {
  margin: 0 auto;
  padding: 0;
}

.p-hero__image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.p-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Catchcopy */
.p-catchcopy {
  background-color: #fff;
  text-align: center;
  padding-bottom: 10px;
}

.p-catchcopy__inner {
  margin: 0 auto;
  padding: 0 16px;
}

.p-catchcopy__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: #333;
  margin-bottom: 16px;
}

.p-catchcopy__subtitle {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}

/* CTA */
.p-cta {
  background-color: #fff;
  text-align: center;
  position: relative;
}

.p-cta--top .p-cta__inner {
  padding: 0 16px;
}

.p-cta--bottom {
  background-color: #fff;
  color: #fff;
  padding: 35px 10px;
  position: relative;
}

.p-cta__bg {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  object-fit: contain;
}

.p-cta__bg--top-left {
  top: 0;
  left: 0;
  width: 96px;
  aspect-ratio: 96 / 150;
}

.p-cta__bg--top-right {
  top: 4px;
  right: 0;
  width: 56px;
  aspect-ratio: 56 / 104;
}

.p-cta__bg--bottom {
  bottom: 0;
  right: 0;
  width: 95px;
  aspect-ratio: 95 / 58;
}

.p-cta--bottom .p-cta__inner {
  padding: 0;
  position: relative;
  z-index: 5;
}

.p-cta__inner {
  margin: 0 auto;
  padding: 40px 16px;
  overflow: visible;
  max-width: 375px;
}

.p-cta__box {
  position: relative;
  background: url(../img/cta-box-bg.jpg) center no-repeat;
  background-size: cover;
  border: 2px solid #c0b6aa;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 30px 20px 40px;
  width: 284px;
  margin: 0 auto;
  min-height: 304px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.p-cta__title {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #000;
  margin: 0 0 16px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.p-cta__title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 47px;
  transform: translateX(-50%);
  width: 133px;
  aspect-ratio: 133 / 31;
  background-image: url('../img/cta-bottom-title.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.p-cta--bottom .p-cta__title {
  color: #000;
  margin-bottom: 26px;
}

.p-cta__subtitle {
  font-size: 12px;
  line-height: normal;
  color: #000;
  margin: 4px 0 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.p-cta--bottom .p-cta__subtitle {
  color: #000;
}

.p-cta__button-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.p-cta--bottom .p-cta__button {
  display: inline-block;
  position: relative;
  z-index: 2;
  border: none;
  background: none;
  padding: 0;
}

.p-cta__button--show {
  width: 242px;
  aspect-ratio: 242 / 48;
  margin-bottom: 16px;
}

.p-cta__links {
  display: flex;
  justify-content: center;
  gap: 11px;
  position: relative;
  z-index: 2;
}

.p-cta__button--reserve,
.p-cta__button--tel {
  width: 116px;
  aspect-ratio: 116 / 40;
}

/* CTA Button (専用デザイン - top用) */
.p-cta--top .p-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 250px;
  height: 40px;
  padding: 10px;
  background-color: #FAF7E4;
  border: 2px solid #AF8A4F;
  border-radius: 21px;
  text-decoration: none;
  overflow: visible;
}

.p-cta__button-illust {
  height: 28px;
  width: auto;
}

.p-cta__button-illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-cta__button-text {
  position: relative;
  z-index: 2;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #4f3927;
  text-align: center;
}

/* Problem */
.p-problem {
  background-color: #fff;
  padding: 40px 0 10px;
  position: relative;
}

.p-problem__inner {
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.p-problem__header {
  padding: 22px 0 27px;
  background-color: #f5ecdb;
  margin: 0 auto;
}

.p-problem__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  text-align: center;
  position: relative;
}

.p-problem__title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 207px;
  aspect-ratio: 207 / 66;
  background-image: url('../img/problem-header.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.p-problem__list {
  margin: 0 auto;
  max-width: 375px;
  width: 100%;
  aspect-ratio: 368 / 343;
  padding: 0 10px;
  position: relative;
  background-image: url('../img/problem-bg.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-problem__items {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-problem__item {
  display: flex;
  align-items: center;
  padding-bottom: 2px;
  position: relative;
}

.p-problem__check-icon {
  width: 31px;
  aspect-ratio: 31 / 27;
  flex-shrink: 0;
  object-fit: contain;
  margin-right: 4.5px;
}

.p-problem__text {
  font-weight: 500;
  font-size: 13px;
  line-height: 24px;
  color: #000;
  margin: 0;
  flex: 1;
}

.p-problem__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* Reasons */
.p-reasons {
  padding: 10px 0 40px;
  background-image: url('../img/reasons-bg.jpg');
  background-size: 100% auto;
  background-repeat: repeat-y;
}

.p-reasons__inner {
  margin: 0 auto;
  padding: 0 16px;
}

.p-reasons__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #000;
  margin: 0 auto 6px;
  padding: 6px 0 30px;
  background-image: url('../img/reasons-title.jpg');
  background-size: 300px auto;
  background-repeat: no-repeat;
  background-position: center top 18px;
}

.p-reasons__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-reason {
  margin-bottom: 40px;
  position: relative;
  width: 300px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #c0b6aa;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-reason:last-child {
  margin-bottom: 0;
}

.p-reason__number {
  position: absolute;
  left: 2.5px;
  top: 3.5px;
  width: 51px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleY(-1);
}

.p-reason__number-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-reason__number-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scaleY(-1);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #6f583a;
  z-index: 1;
}

.p-reason__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  padding-left: 50px;
  margin: 5px 0 16px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.p-reason__image {
  width: 199px;
  height: 116px;
  margin: 0 auto 16px;
}

.p-reason__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-reason__description {
  font-size: 12px;
  line-height: 24px;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}

.p-reason__tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.p-reason__tag {
  position: relative;
  width: 89px;
  aspect-ratio: 89 / 35;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-reason__tag-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-reason__tag-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  line-height: 24px;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

/* Products */
.p-products {
  padding: 0;
  position: relative;
  background-image: url('../img/product-bg.jpg');
  background-repeat: repeat;
  background-position: center;
}

.p-products__inner {
  margin: 0 auto;
  padding: 40px 16px;
  position: relative;
}

.p-products__header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.p-products__header-text {
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  color: #000;
  margin-bottom: 0;
}

.p-products__header-title {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #000;
  margin-top: 0;
  position: relative;
  padding-bottom: 18px;
}

.p-products__header-title::after {
  content: "";
  position: absolute;
  left: calc(50% + 20px);
  bottom: 8px;
  transform: translateX(-50%);
  width: 181px;
  aspect-ratio: 181 / 26;
  background-image: url('../img/product-header.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.p-product__category {
  background-color: #ecdbcb;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 12px;
  border-radius: 21px;
  width: 344px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.p-products__group {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.p-products__group:last-of-type {
  margin-bottom: 40px;
}

.p-product {
  margin: 0 auto;
  padding: 10px;
  position: relative;
  width: 300px;
  background-color: #fff;
  border: 1px solid #c0b6aa;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-product:last-child {
  margin-bottom: 0;
}

.p-product__badge {
  position: absolute;
  top: 12.5px;
  left: 12.5px;
  z-index: 2;
  background-color: #c23d34;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 15px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 83px;
}

.p-product__badge--popular {
  background-color: #c23d34;
}

.p-product__badge--value {
  background-color: #c23d34;
}

.p-product__badge--premium {
  background-color: #c23d34;
}

.p-product__image {
  width: 260px;
  height: 185px;
  border-radius: 26px;
  overflow: hidden;
  margin: 40px 0 16px;
}

.p-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-product__name {
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin: 0 0 16px;
}

.p-product__description {
  font-size: 12px;
  line-height: 24px;
  color: #000;
  text-align: left;
  margin: 0 0 16px;
  padding: 0 16.5px;
  width: 100%;
  box-sizing: border-box;
}

.p-product__price {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  text-align: left;
  margin: 0;
  padding: 0 16.5px;
  width: 100%;
  box-sizing: border-box;
}

.p-product__price-unit {
  font-size: 13px;
}

.p-products__notice {
  background-color: #faf7e4;
  border: 2px solid #ecdbcb;
  border-radius: 21px;
  padding: 16px;
  margin: 40px 16px 0;
  max-width: 286px;
  margin-left: auto;
  margin-right: auto;
}

.p-products__notice-title {
  font-weight: 700;
  font-size: 12px;
  color: #000;
  margin-bottom: 8px;
}

.p-products__notice-text {
  font-size: 10px;
  line-height: 16px;
  color: #000;
}

/* Scenes */
.p-scenes {
  padding: 39px 21px;
  position: relative;
  background-image: url('../img/scenes-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  line-height: normal;
}

.p-scenes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/scenes-bg_top.png');
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  pointer-events: none;
}

.p-scenes::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/scenes-bg_bottom.png');
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat;
  pointer-events: none;
}

.p-scenes__inner {
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  max-width: 375px;
}

.p-scenes__title {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.p-scenes__title-sub {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.p-scenes__title::after {
  content: "";
  position: absolute;
  left: calc(50% + 10px);
  bottom: 0;
  transform: translateX(-50%);
  width: 229px;
  aspect-ratio: 229 / 35;
  background-image: url('../img/scenes-header.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-scenes__box {
  background-color: #fff;
  border: 2px solid #c0b6aa;
  border-radius: 32px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 39px 0 20px;
  margin: 0 auto;
  width: 284px;
  position: relative;
}

.p-scenes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 0;
  padding: 0 20px;
}

.p-scenes__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-scenes__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 8px;
}

.p-scenes__text {
  font-size: 12px;
  color: #000;
  margin: 0;
}

.p-scenes__footer {
  background-color: #f0eade;
  border-radius: 14px;
  padding: 12px;
  width: 249px;
  margin: 20px auto 0;
  position: relative;
  z-index: 2;
}

.p-scenes__footer-text {
  font-size: 12px;
  line-height: 24px;
  color: #000;
  text-align: center;
  margin: 0;
}

/* Testimonials */
.p-testimonials {
  padding: 50px 10px;
  position: relative;
  background-image: url('../img/testimonial-bg.jpg');
  background-repeat: repeat;
  background-position: center;
}

.p-testimonials__inner {
  margin: 0 auto;
  padding: 0;
  max-width: 375px;
  position: relative;
}

.p-testimonials__title {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.p-testimonials__title::after {
  content: "";
  position: absolute;
  left: calc(50% + 25px);
  bottom: 0;
  transform: translateX(-50%);
  width: 275px;
  aspect-ratio: 275 / 39;
  background-image: url('../img/testimonial-header.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-testimonial {
  margin: 0 auto;
  padding: 19px 20px;
  position: relative;
  background-color: #fff;
  border: 2px solid #c0b6aa;
  border-radius: 32px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 284px;
  min-height: 186px;
}

.p-testimonial:last-child {
  margin-bottom: 0;
}

.p-testimonial__icon {
  position: absolute;
  left: 27px;
  top: 19px;
  width: 36px;
  aspect-ratio: 36 / 39;
  object-fit: contain;
}

.p-testimonial__header {
  margin-left: 63px;
  margin-bottom: 8px;
}

.p-testimonial__name {
  font-weight: 700;
  font-size: 12px;
  line-height: normal;
  color: #000;
  margin-bottom: 4px;
}

.p-testimonial__date {
  font-size: 12px;
  line-height: normal;
  color: #000;
}

.p-testimonial__text {
  font-size: 12px;
  line-height: normal;
  color: #000;
  margin-left: 63px;
  margin-top: 8px;
}

/* Stats */
.p-stats {
  padding: 35px 10px 30px;
  position: relative;
  background-image: url('../img/stats-bg.jpg');
  background-repeat: repeat;
  background-position: center;
}

.p-stats__inner {
  margin: 0 auto;
  padding: 0;
  max-width: 375px;
  position: relative;
}

.p-stats__title {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
  z-index: 2;
}

.p-stats__title::after {
  content: "";
  position: absolute;
  left: calc(50% + 25px);
  bottom: 0;
  transform: translateX(-50%);
  width: 190px;
  aspect-ratio: 190 / 39;
  background-image: url('../img/stats-title.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.p-stats__box {
  background-color: #fff;
  border: 2px solid #c0b6aa;
  border-radius: 32px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 18px 0;
  margin: 0 auto;
  width: 284px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-stat {
  text-align: center;
  position: relative;
  padding: 18px 0;
}

.p-stat__number {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  margin-bottom: 8px;
  width: 93px;
  height: 93px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-stat:nth-child(1) .p-stat__number {
  color: #fac8b2;
  background-image: url('../img/stats-circle_1.jpg');
}

.p-stat:nth-child(3) .p-stat__number {
  color: #e1d3b1;
  background-image: url('../img/stats-circle_2.jpg');
}

.p-stat:nth-child(5) .p-stat__number {
  color: #d2e7a2;
  background-image: url('../img/stats-circle_3.jpg');
}

.p-stat__label {
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  color: #000;
  margin-bottom: 4px;
  margin-top: 5px;
}

.p-stat__subtext {
  font-size: 10px;
  line-height: normal;
  color: #000;
}

.p-stats__line {
  width: 206px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Commitment */
.p-commitment {
  padding: 50px 46px;
  position: relative;
  background-image: url('../img/commitment-bg.jpg');
  background-repeat: repeat;
  background-position: center;
}

.p-commitment__inner {
  margin: 0 auto;
  padding: 0;
  max-width: 375px;
  position: relative;
}

.p-commitment__title {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
  background-image: url('../img/commitment-title.png');
  background-size: 119px 28px;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.p-commitment__grid {
  max-width: 278px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.p-commitment__item {
  background-color: #fff;
  border: 2px solid #c0b6aa;
  border-radius: 18px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 11px 5px;
  text-align: center;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.p-commitment__icon {
  width: 56px;
  aspect-ratio: 56 / 52;
  object-fit: contain;
  margin-bottom: 8px;
}

.p-commitment__item-title {
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  color: #000;
  margin-bottom: 8px;
}

.p-commitment__item-text {
  font-size: 12px;
  line-height: normal;
  color: #000;
  margin: 0;
}

/* Store */
.p-store {
  padding: 30px 10px 65px;
  position: relative;
  background-image: url('../img/store-bg.jpg');
  background-repeat: repeat;
  background-position: center;
}

.p-store__inner {
  margin: 0 auto;
  padding: 0;
  max-width: 375px;
  position: relative;
}

.p-store__title {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
  background-image: url('../img/store-title.png');
  background-size: 134px 19px;
  background-repeat: no-repeat;
  background-position: calc(50% + 15px) 100%;
}

.p-store__name {
  font-size: 12px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin-bottom: 4px;
}

.p-store__subname {
  font-size: 12px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.p-store__box {
  background-color: #fff;
  border: 1px solid #c0b6aa;
  border-radius: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  max-width: 294px;
  position: relative;
}

.p-store__map {
  width: 260px;
  height: 185px;
  margin: 0 auto 18px;
  border-radius: 26px;
  overflow: hidden;
}

.p-store__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 26px;
}

.p-store__info {
  margin: 0;
  padding: 0;
}

.p-store__info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  padding: 0 16.5px;
}

.p-store__info-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  flex-shrink: 0;
}

.p-store__info-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.p-store__info-label {
  font-weight: 700;
  font-size: 12px;
  line-height: normal;
  color: #000;
  margin-bottom: 8px;
}

.p-store__info-value {
  font-size: 12px;
  line-height: normal;
  color: #000;
  margin: 0;
}

.p-store__info-value p {
  margin: 0;
  line-height: normal;
}

.p-store__info-value p + p {
  margin-top: 4px;
}

.p-store__line {
  width: 206px;
  height: auto;
  object-fit: contain;
  margin: 8px auto 8px;
  display: block;
}

.p-store__button {
  object-fit: contain;
  flex-shrink: 0;
}

.p-store__button-link {
  display: inline-block;
  flex-shrink: 0;
}

.p-store__button--follow {
  aspect-ratio: 99 / 25;
  height: 25px;
}

.p-store__button--tel {
  height: 26px;
  aspect-ratio: 64 / 26;
}

/* FAQ */
.p-faq {
  padding: 50px 10px;
  background-image: url('../img/faq-bg.jpg');
  background-repeat: repeat;
  background-position: center;
}

.p-faq__inner {
  margin: 0 auto;
  padding: 0;
  max-width: 375px;
  position: relative;
}

.p-faq__title {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
  background-image: url('../img/faq-title.png');
  background-size: 144px 36px;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.p-faq__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  background-color: #fff;
  border: 2px solid #c0b6aa;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 17px 20px;
  width: 284px;
  margin: 0 auto;
  min-height: 88px;
}

.p-faq__icon {
  width: 27px;
  height: 27px;
  object-fit: contain;
  flex-shrink: 0;
}

.p-faq__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.p-faq__question {
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  color: #000;
  margin: 0 0 8px 0;
}

.p-faq__answer {
  font-size: 14px;
  line-height: normal;
  color: #000;
  margin: 0;
}

/* ==========================================================================
   Object - Utility
   ========================================================================== */

.u-text-center {
  text-align: center;
}

.u-mb-16 {
  margin-bottom: 16px;
}

.u-mb-24 {
  margin-bottom: 24px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 768px) {
  body::after {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url('../img/pc-bg.jpg');
    background-color: #FDFDFD;
    background-size: 800px;
    background-position: bottom;
    background-repeat: repeat-x;
    z-index: -1;
  }
  .l-header__inner,
  .l-main,
  .l-footer__inner {
    max-width: 960px;
  }

  .p-hero__inner,
  .p-catchcopy__inner,
  .p-cta__inner,
  .p-problem__inner,
  .p-reasons__inner,
  .p-products__inner,
  .p-scenes__inner,
  .p-testimonials__inner,
  .p-stats__inner,
  .p-commitment__inner,
  .p-store__inner,
  .p-faq__inner {
    max-width: 960px;
  }

  .p-catchcopy__title {
    font-size: 28px;
  }

  .p-catchcopy__subtitle {
    font-size: 16px;
  }

  .p-cta--top .p-cta__button {
    width: 300px;
  }

  .p-cta__button-text {
    font-size: 16px;
  }

  .p-problem__header {
    padding: 32px 0 48px;
  }

  .p-problem__title {
    font-size: 24px;
  }

  .p-problem__title::before {
    width: 280px;
    top: -12px;
  }

  .p-problem__list {
    max-width: 600px;
  }

  .p-problem__check-icon {
    width: 40px;
    margin-right: 8px;
  }

  .p-problem__text {
    font-size: 16px;
  }

  .p-reasons {
    padding: 60px 0;
  }

  .p-reasons__title {
    font-size: 24px;
    background-size: 400px auto;
    margin-bottom: 20px;
  }

  .p-reason__description {
    font-size: 14px;
  }

  .p-reason__tag {
    width: 120px;
  }

  .p-reason__tag-text {
    font-size: 14px;
  }

  .p-products__inner {
    padding: 60px 16px;
  }

  .p-products__header-text {
    font-size: 16px;
  }

  .p-products__header-title {
    font-size: 24px;
  }

  .p-products__header-title::after {
    width: 280px;
    bottom: 0;
  }

  .p-product__category {
    font-size: 18px;
  }

  .p-products__group {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-products__group .p-product {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 0 0 calc(50% - 10px);
    max-width: 300px;
    margin: 0;
  }

  .p-products__group .p-product.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .p-products__group .p-product:first-child {
    margin-bottom: 0;
  }

  .p-products__group .p-product:last-child {
    margin-bottom: 0;
  }

  .p-product__name {
    font-size: 18px;
  }

  .p-product__description {
    font-size: 14px;
  }

  .p-product__price {
    font-size: 24px;
  }

  .p-product__price-unit {
    font-size: 14px;
  }

  .p-products__notice {
    max-width: 400px;
  }

  .p-products__notice-title {
    font-size: 16px;
  }

  .p-products__notice-text {
    font-size: 14px;
  }

  .p-scenes {
    padding: 60px 21px;
  }

  .p-scenes__title {
    font-size: 24px;
  }

  .p-scenes__title-sub {
    font-size: 16px;
  }

  .p-scenes__title::after {
    width: 320px;
    bottom: -10px;
  }

  .p-scenes__box {
    width: 600px;
  }

  .p-scenes__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
    margin: 0 auto 24px;
  }

  .p-scenes__icon {
    width: 100px;
    height: 100px;
  }

  .p-scenes__text {
    font-size: 16px;
  }

  .p-scenes__footer {
    width: 400px;
  }

  .p-scenes__footer-text {
    font-size: 16px;
  }

  .p-testimonials {
    padding: 60px 10px;
  }

  .p-testimonials__title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .p-testimonials__title::after {
    width: 400px;
    bottom: -6px;
  }

  .p-testimonial__icon {
    width: 48px;
    left: 20px;
  }

  .p-testimonial__name,
  .p-testimonial__date,
  .p-testimonial__text {
    font-size: 14px;
  }

  .p-stats {
    padding: 60px 10px 60px;
  }

  .p-stats__box {
    width: auto;
    max-width: 600px;
  }

  .p-stats__title {
    font-size: 24px;
  }

  .p-stats__title::after {
    width: 240px;
    bottom: -6px;
  }

  .p-stat__number {
    width: 160px;
    height: 160px;
    font-size: 32px;
    margin-bottom: 12px;
  }

  .p-stat__label {
    font-size: 16px;
  }

  .p-stat__subtext {
    font-size: 14px;
  }

  .p-stats__line {
    width: 400px;
  }

  .p-commitment {
    padding: 60px 10px;
  }

  .p-commitment__title {
    font-size: 24px;
    margin-bottom: 20px;
    background-size: 240px auto;
    background-position: center 24px;
    padding-bottom: 40px;
  }

  .p-commitment__grid {
    max-width: 600px;
  }

  .p-commitment__icon {
    width: 80px;
  }

  .p-commitment__item-title {
    font-size: 18px;
  }

  .p-commitment__item-text {
    font-size: 14px;
  }

  .p-store {
    padding: 60px 10px;
  }

  .p-store__title {
    font-size: 24px;
    background-size: 240px auto;
    background-position: calc(50% + 15px) 24px;
    padding-bottom: 40px;
  }

  .p-store__name {
    font-size: 18px;
  }

  .p-store__subname {
    font-size: 14px;
  }

  .p-store__box {
    max-width: 600px;
    padding: 20px 20px 40px;
  }

  .p-store__map {
    width: 560px;
    height: 240px;
  }

  .p-store__info-item {
    padding: 0 40px;
    gap: 16px;
  }

  .p-store__info-icon {
    width: 48px;
    height: 48px;
  }

  .p-store__info-label {
    font-size: 18px;
  }

  .p-store__info-value {
    font-size: 16px;
  }

  .p-store__line {
    width: 400px;
    margin: 16px auto 16px;
  }

  .p-store__button--follow {
    height: 44px;
  }
  
  .p-store__button--tel {
    height: 44px;
  }

  .p-faq {
    padding: 60px 10px;
  }

  .p-faq__title {
    font-size: 24px;
    background-size: 240px auto;
    background-position: center 16px;
    padding-bottom: 40px;
  }

  .p-faq__item {
    width: 600px;
  }

  .p-faq__icon {
    width: 32px;
    height: 32px;
  }

  .p-faq__question {
    font-size: 18px;
  }

  .p-faq__answer {
    font-size: 16px;
  }

  .p-cta__bg--top-left {
    width: 120px;
  }

  .p-cta__bg--top-right {
    width: 64px;
  }

  .p-cta__bg--bottom {
    width: 120px;
  }

  .p-cta__box {
    width: 600px;
  }

  .p-cta--bottom .p-cta__title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .p-cta__title::after {
    width: 200px;
    top: 60px;
  }

  .p-cta--bottom .p-cta__subtitle {
    font-size: 16px;
  }

  .p-cta__button--show {
    width: 300px;
  }

  .p-cta__button--reserve, .p-cta__button--tel {
    width: 144px;
  }

  .l-footer {
    padding: 30px 0 10px;
  }

  .l-footer__logo {
    width: 182px;
  }

  .l-footer__company,
  .l-footer__address,
  .l-footer__tel,
  .l-footer__email {
    font-size: 14px;
  }

  .l-footer__link,
  .l-footer__copyright {
    font-size: 12px;
  }
}

@media (min-width: 980px) {
  .p-reasons__list {
    flex-direction: row;
    gap: 20px;
  }

  .p-reasons__list .p-reason {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .p-reasons__list .p-reason.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .p-testimonials__list {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .p-testimonials__list .p-testimonial {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 0 0 calc(33.333% - 14px);
    max-width: 300px;
    margin: 0;
  }

  .p-testimonials__list .p-testimonial.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .p-testimonials__list .p-testimonial:last-child {
    margin-bottom: 0;
  }

  .p-stats__box {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 920px;
    padding: 40px 20px;
  }

  .p-stat {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .p-stat.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .p-stat__number {
    width: 200px;
    height: 200px;
    font-size: 40px;
    margin-bottom: 16px;
  }

  .p-stat__label {
    font-size: 20px;
  }

  .p-stat__subtext {
    font-size: 16px;
  }

  .p-stats__line {
    display: none;
  }
}
