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

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

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

body {
  font-family: 'Noto Sans JP', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

body.fade-in {
  opacity: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* Base
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.4;
}

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: blur(5px);
  transition: background-color 0.3s ease;
}

.l-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
}

body:not(.home) .l-header {
  background-color: rgba(255, 255, 255, 0.95);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  height: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.l-header__logo {
  height: 25px;
}

.l-header__logo-image {
  height: 100%;
  width: auto;
}

.l-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.l-header__phone {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #666;
  line-height: 1.334;
  white-space: nowrap;
  margin: 0;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s;
  flex: 1;
}

.l-header__phone:hover {
  opacity: 0.7;
}

.l-header__menu-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-header__menu-icon {
  width: 24px;
  height: 24px;
  padding: 5.5px 3.5px;
  position: relative;
  display: block;
  box-sizing: border-box;
}

.l-header__menu-icon::before {
  content: '';
  position: absolute;
  top: 5.5px;
  left: 3.5px;
  right: 3.5px;
  height: 1.5px;
  background-color: #333;
  box-shadow: 0 5.75px 0 #333, 0 11.5px 0 #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
  transform-origin: center;
}

.l-header__menu-icon::after {
  content: '';
  position: absolute;
  top: 17.25px;
  left: 3.5px;
  right: 3.5px;
  height: 1.5px;
  background-color: #333;
  transition: transform 0.3s ease, top 0.3s ease;
  transform-origin: center;
}

/* PC Navigation */
.l-header__nav {
  display: none;
}

/* Mobile: 電話番号とハンバーガーボタンのレイアウト */
@media (max-width: 767px) {
  .l-header__right {
    justify-content: flex-end;
    gap: 16px;
  }
  
  .l-header__phone {
    order: 1;
    flex: 0;
  }
  
  .l-header__menu-toggle {
    order: 2;
  }
  
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header__nav-item {
  margin: 0;
}

.l-header__nav-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

.l-header__nav-link:hover {
  opacity: 0.7;
}

/* Mobile Menu */
.l-header__mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.l-header__mobile-menu.is-open {
  transform: translateX(0);
}

.l-header__mobile-menu.is-open {
  transform: translateX(0);
}

.l-header__mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.l-header__mobile-menu-item {
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}

.l-header__mobile-menu-item:last-child {
  border-bottom: none;
}

.l-header__mobile-menu-link {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  padding: 16px 0;
  transition: opacity 0.3s;
}

.l-header__mobile-menu-link:hover {
  opacity: 0.7;
}

/* Menu Toggle Active State */
.l-header__menu-toggle.is-active .l-header__menu-icon::before {
  top: 11.5px;
  transform: rotate(45deg);
  box-shadow: 0 0 0 transparent;
}

.l-header__menu-toggle.is-active .l-header__menu-icon::after {
  transform: rotate(-45deg);
  top: 11.5px;
}

.l-main {
  padding-top: 0;
}

.l-section {
  padding: 40px 0;
}

.l-section--hero {
  padding: 0;
}

.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.l-footer {
  background-color: #fff;
}

.l-footer__inner {
  padding: 32px 16px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.p-footer__left {
  display: contents;
}

.p-footer__logo {
  order: 1;
}

.p-footer__nav-wrapper {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-footer__social {
  order: 3;
}

.l-footer__bottom {
  background-color: #333;
  padding: 16px;
}

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

/* Button
   ========================================================================== */
.c-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-radius: 35px;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.c-btn:hover {
  opacity: 0.8;
}

.c-btn--primary {
  background: linear-gradient(96.11deg, #caa24f 2.96%, #e7bc67 56.43%, #f2cd85 83.16%);
  color: #fff;
  border: 1px solid #ddb66a;
  box-shadow: 0px 3px 24.1px 0px rgba(255, 255, 255, 0.73);
  font-size: 18px;
  letter-spacing: 0.72px;
}

.c-btn--secondary {
  background-color: #fff;
  color: #333;
  border: 1px solid #4f4f4f;
  box-shadow: 0px 3px 24.1px 0px rgba(255, 255, 255, 0.73);
}

.c-btn__text {
  flex: 1;
  text-align: center;
  line-height: 23px;
}

.c-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Section Title
   ========================================================================== */
.c-section-title {
  text-align: center;
  margin-bottom: 24px;
}

.c-section-title__en {
  font-family: 'Italianno', serif;
  font-size: 40px;
  line-height: 1;
  text-transform: lowercase;
  background: linear-gradient(93.68deg, #caa24f 2.96%, #e7bc67 56.43%, #f2cd85 83.16%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  min-height: 50px;
}

.c-section-title__ja-wrapper {
  width: 100%;
  margin-top: 4px;
}

.c-section-title__ja {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  text-align: center;
}

.p-faq .c-section-title__ja {
  font-size: 28px;
  width: 343px;
  margin: 0 auto;
}

/* コンセプトセクションのみ */
.p-brand-concept .c-section-title {
  margin-bottom: 40px;
}

.p-brand-concept .c-section-title__ja {
  background-color: #333;
  color: #fff;
  padding: 2px 16px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.c-section-title__ja--white {
  color: #fff;
}

.p-why-jewel .c-section-title__ja {
  color: #fff;
}

/* Product Card
   ========================================================================== */
.c-product-card {
  border: 1px solid #d7217f;
  background-color: #fff;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-product-card__header {
  background-color: #d7217f;
  padding: 8px;
  text-align: center;
  width: 100%;
}

.c-product-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  line-height: 1.4;
}

.c-product-card__image-wrapper {
  width: 100%;
  height: 218px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 0 16px;
}

.c-product-card__image {
  max-width: 321px;
  width: 100%;
  height: 218px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.c-product-card__body {
  padding: 0 16px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.c-product-card__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
}

.c-product-card__price {
  font-family: 'Arial', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #4f4f4f;
  line-height: 1.5;
  margin-bottom: 16px;
}

.c-product-card__price span {
  font-size: 12px;
}

.c-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: auto 0 16px;
  padding: 0 11px;
}

.c-product-card__tag {
  background-color: #4f4f4f;
  color: #fff;
  padding: 4px 8px;
  border-radius: 1px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.c-product-card .c-btn {
  width: 280px;
}

/* Review Card
   ========================================================================== */
.c-review-card {
  background-color: #fff;
  border: 1px solid #4f4f4f;
  padding: 16px;
  margin-bottom: 0;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-review-card__header {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 11px;
}

.c-review-card__avatar {
  width: 87px;
  height: 87px;
  border-radius: 52px;
  object-fit: cover;
  flex-shrink: 0;
}

.c-review-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-review-card__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  font-size: 18px;
  color: #333;
  line-height: normal;
  margin-bottom: 0;
}

.c-review-card__author {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: normal;
  margin-bottom: 0;
}

.c-review-card__rating {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #f4c648;
  line-height: normal;
  margin-bottom: 0;
}

.c-review-card__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.c-review-card__text p {
  margin-bottom: 0;
}

.c-review-card__text p:last-child {
  margin-bottom: 0;
}

/* QA Item
   ========================================================================== */
.c-qa-item {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  padding: 8px 0;
}

.c-qa-item__question {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 8px 0;
}

.c-qa-item__label {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-qa-item__label--q {
  font-family: 'Italianno', serif;
  font-size: 32px;
  line-height: 1;
  background: linear-gradient(91.2deg, #caa24f 2.96%, #e7bc67 56.43%, #f2cd85 83.16%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c-qa-item__label--a {
  font-family: 'Italianno', serif;
  font-size: 32px;
  line-height: 1;
  color: #c9c9c9;
}

.c-qa-item__text {
  flex: 1;
  font-family: 'Shippori Mincho', serif;
  font-weight: bold;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.36px;
}

.c-qa-item__answer {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 8px 0;
}

.c-qa-item__answer-text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Feature Box
   ========================================================================== */
.c-feature-box {
  border: 1px solid #c9c9c9;
  padding: 14px 16px 16px;
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-feature-box__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.c-feature-box__bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}


.c-feature-box__number,
.c-feature-box__content,
.c-feature-box__highlight {
  position: relative;
  z-index: 2;
}

.c-feature-box__number {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.c-feature-box__number-badge {
  background-color: #ddb66a;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-feature-box__number-text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

.c-feature-box__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 20px;
  color: #333;
  line-height: 1.4;
  flex: 1;
  margin-bottom: 0;
}

.c-feature-box__content {
  margin-bottom: 37px;
}

.c-feature-box__content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1em;
}

.c-feature-box__content p:last-child {
  margin-bottom: 0;
}

.c-feature-box__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.c-feature-box__text p:last-child {
  margin-bottom: 0;
}

.c-feature-box__highlight {
  background-color: rgba(18, 74, 117, 0.69);
  padding: 16px 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-feature-box__highlight-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

/* Point Card
   ========================================================================== */
.c-point-card {
  background-color: #fff;
  border: 1px solid #b78a30;
  padding: 16px;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-point-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 0;
  margin-bottom: 16px;
}

.c-point-card__label {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  color: #ddb66a;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.c-point-card__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: bold;
  font-size: 22px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 6px;
  width: 295px;
  text-align: center;
}

.c-point-card__badge {
  border: 1px solid #d7217f;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 8px;
}

.c-point-card__badge-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #d7217f;
  line-height: 1.6;
}

.c-point-card__image {
  width: 100%;
  height: 172px;
  object-fit: cover;
  margin-bottom: 16px;
}

.c-point-card__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.c-point-card__text p:not(:last-child) {
  margin-bottom: 1.5em;
}

.c-point-card__text strong {
  font-weight: 500;
}

.c-point-card__features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.c-point-card__feature {
  background-color: #d7217f;
  padding: 2px 8px;
  width: 100%;
}

.c-point-card__feature p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.c-point-card__cost-comparison {
  background-color: #ebebeb;
  padding: 8px;
  margin-top: 16px;
}

.c-point-card__cost-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 16px;
}

.c-point-card__cost-table {
  display: flex;
  gap: 8px;
}

.c-point-card__cost-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-point-card__cost-column:first-child {
  background-color: #fff;
  padding: 16px 4px;
  gap: 4px;
}

.c-point-card__cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
}

.c-point-card__cost-item p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.2;
  margin: 0;
}

.c-point-card__cost-divider {
  height: 1px;
  background-color: #333;
}

.c-point-card__cost-product {
  background-color: #333;
  padding: 16px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.c-point-card__cost-product p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: normal;
  margin: 0;
  padding: 0 8px;
}

.c-point-card__cost-product .c-point-card__cost-divider {
  background-color: #fff;
}

.c-point-card__cost-product .c-point-card__cost-item {
  padding: 0;
}

.c-point-card__cost-total {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.c-point-card__cost-badge {
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.c-point-card__cost-badge p {
  font-family: 'Shippori Mincho', serif;
  font-weight: bold;
  font-size: 18px;
  color: #333;
  line-height: normal;
  margin: 0;
}

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

/* Hero
   ========================================================================== */
.p-hero {
  position: relative;
  height: 612px;
  width: 100%;
  overflow: hidden;
}

@keyframes hero-zoom {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes hero-bg-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.p-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform-origin: center center;
  animation: hero-bg-zoom 20s ease-in-out infinite;
}

.p-hero__bg--1 {
  z-index: 1;
}

.p-hero__bg--2 {
  z-index: 2;
  mix-blend-mode: multiply;
  opacity: 0.2;
}

.p-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 100px 30px 40px;
}

.p-hero__title {
  font-family: 'Yu Mincho', serif;
  font-size: 32px;
  line-height: 1.25;
  background: linear-gradient(98.61deg, #996908 2.96%, #d9c08e 26.34%, #b9944b 59.53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 4;
  white-space: nowrap;
  margin-bottom: 28px;
}

.p-hero__subtitle {
  font-family: 'Yu Mincho', serif;
  font-size: 20px;
  line-height: 1.7;
  color: #3c0718;
  z-index: 4;
}

.p-hero__image {
  position: absolute;
  top: 212px;
  left: 50%;
  width: 571px;
  max-width: none;
  z-index: 3;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  animation: hero-zoom 20s ease-in-out infinite;
}

.p-hero__btn {
  z-index: 4;
  width: 280px;
  margin: auto auto 0;
}

/* Brand Concept Section
   ========================================================================== */
.p-brand-concept {
  padding: 40px 0 0;
  overflow: hidden;
}

.p-brand-concept__intro {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 40px;
}

.p-brand-concept__image {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
}

.p-brand-concept__boxes {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-bottom: 40px;
}

.p-brand-concept__conclusion {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 223px;
  background: url(../images/concept-conclusion.jpg);
  background-size: 130%;
  background-position: 20% center;
  margin: 0 calc(50% - 50vw);
}

.p-brand-concept__conclusion-text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 26px;
  color: #333;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1em;
}

/* Product Lineup
   ========================================================================== */
.p-product-lineup {
  background-color: #fff;
}

.p-product-lineup__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}

.p-product-lineup__list .c-product-card {
  margin-bottom: 0;
}

.p-product-lineup__btn {
  width: 280px;
  margin: 44px auto 0;
}

/* Why Jewel Japan
   ========================================================================== */
.p-why-jewel {
  background-color: #333;
  max-width: 100%;
}

.p-why-jewel__intro {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 40px;
}

.p-why-jewel__intro p {
  margin-bottom: 2em;
}

.p-why-jewel__image {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
}

.p-why-jewel__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* First Time
   ========================================================================== */
.p-first-time {
  background: linear-gradient(179.95deg, rgba(246, 227, 187, 0.43) 0%, rgba(255, 249, 238, 0.43) 49.97%, rgba(244, 228, 197, 0.43) 99.91%);
}

.p-first-time__intro {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 24px;
}

.p-first-time__features {
  border: 1px solid #4f4f4f;
  padding: 8px;
  margin-bottom: 24px;
  width: 271px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-first-time__features-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #4f4f4f;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

.p-first-time__btn {
  width: 280px;
  margin: 20px auto 0;
}

/* Travel Set
   ========================================================================== */
.p-travel-set {
  background-color: #fff;
  border: 1px solid #333;
  padding-bottom: 24px;
  position: relative;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-travel-set__header {
  background-color: #333;
  padding: 8px;
  text-align: center;
  margin: 0 auto 16px;
  width: 100%;
  position: relative;
}

.p-travel-set__badge {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 16px;
  margin: 0;
  padding: 4px 0;
  z-index: 2;
  width: 64px;
  height: 63px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  background: #d7217f;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.p-travel-set__badge:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 32px solid #d7217f;
  border-right: 32px solid #d7217f;
  border-bottom: 20px solid transparent;
}

.p-travel-set__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

.p-travel-set__image-wrapper {
  width: 100%;
  height: 218px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  padding: 0 16px;
}

.p-travel-set__image {
  max-width: 308px;
  width: 100%;
  height: 218px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.p-travel-set__body {
  text-align: center;
  padding: 0 16px;
}

.p-travel-set__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
}

.p-travel-set__price {
  font-family: 'Arial', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #4f4f4f;
  margin-bottom: 12px;
  line-height: 1.5;
}

.p-travel-set__price span {
  font-size: 12px;
}

.p-travel-set__contents {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin-top: 12px;
}

/* Our Commitment
   ========================================================================== */
.p-commitment__intro {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 24px;
}

.p-commitment__intro p {
  margin-bottom: 0;
}

.p-commitment__image {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
}

.p-commitment__btn {
  width: 280px;
  margin: 20px auto 0;
}

/* Customer Reviews
   ========================================================================== */
.p-reviews {
  background: linear-gradient(180deg, #f7f7f7 0%, #ebebeb 100%);
}

.p-reviews__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 24px;
  justify-items: center;
}

.p-reviews__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  text-align: center;
  margin-top: 24px;
}

/* FAQ
   ========================================================================== */
.p-faq {
  padding-bottom: 49px;
}

.p-faq__btn {
  width: 280px;
  margin: 20px auto 0;
}

.p-faq__list {
  margin-bottom: 44px;
}

.p-faq__contact {
  border-top: 1px solid #c9c9c9;
  padding-top: 24px;
  margin-top: 24px;
  text-align: center;
}

.p-faq__contact-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.334;
  margin-bottom: 12px;
}

.p-faq__contact-phone {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  color: #333;
  margin-bottom: 12px;
}

.p-faq__contact-time {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}

.p-faq__contact-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: #000;
  text-align: center;
}

.p-faq__contact-note p {
  margin: 0;
}

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

/* Final CTA
   ========================================================================== */
.p-final-cta {
  background-image: url('../images/final-cta-bg.jpg');
  background-size: cover;
  background-position: center;
}

.p-final-cta .l-container {
  position: relative;
  z-index: 3;
}

.p-final-cta__content {
  text-align: center;
}

.p-final-cta__text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 26px;
  color: #4f4f4f;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 8px;
  width: 343px;
  margin-left: auto;
  margin-right: auto;
}

.p-final-cta__text p {
  margin: 0;
}

.p-final-cta__btn {
  width: 280px;
  margin: 0 auto;
  padding-top: 20px;
}

.p-final-cta__btn .c-btn--primary {
  box-shadow: 0px 3px 24.1px 0px #F2CD85;
  border: none;
}

/* Footer
   ========================================================================== */
.p-footer__logo {
  text-align: center;
  margin-bottom: 0;
}

.p-footer__logo-image {
  height: 47px;
  width: auto;
  margin: 0 auto;
}

.p-footer__nav {
  margin-bottom: 0;
}

.l-footer__inner>.p-footer__nav:last-of-type {
  margin-bottom: 0;
}

.p-footer__nav-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}

.p-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.p-footer__nav-item {
  text-align: center;
}

.p-footer__nav-link,
.glink {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-footer__nav-link:hover,
.glink:hover {
  opacity: 0.7;
}

.p-footer__social {
  border: 1px solid #4f4f4f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 16px 4px;
  margin: 0 auto;
  width: fit-content;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-footer__social:hover {
  opacity: 0.7;
}

.p-footer__social-text {
  font-family: 'Italianno', serif;
  font-size: 32px;
  color: #333;
  line-height: 1;
  margin: 0;
}

.p-footer__social-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 4px;
}

.p-footer__bottom {
  background-color: #333;
  padding: 16px;
}

.p-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.p-footer__bottom-link {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  position: relative;
  padding: 0 8px;
  transition: opacity 0.3s;
}

.p-footer__bottom-link:hover {
  opacity: 0.7;
}

.p-footer__bottom-link:first-of-type::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background-color: #fff;
}

.p-footer__bottom-link::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background-color: #fff;
}

.p-footer__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

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

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

.u-mb-0 {
  margin-bottom: 0;
}

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

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

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

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

@media (min-width: 768px) {
  .l-container {
    max-width: 1200px;
    padding: 0 32px;
  }

  .l-section {
    padding: 60px 0;
  }

  .l-header__inner {
    height: 72px;
  }

  .l-header__logo {
    height: 30px;
  }

  .l-header__phone {
    font-size: 16px;
    display: block;
    flex: 0;
  }

  /* PC Navigation */
  .l-header__nav {
    display: block;
  }

  .l-header__menu-toggle {
    display: none;
  }

  .l-header__mobile-menu {
    display: none;
  }

  .c-section-title__en {
    font-size: 48px;
  }

  .c-section-title__ja {
    font-size: 32px;
  }

  .p-hero {
    height: 720px;
  }

  .p-brand-concept__boxes {
    flex-direction: row;
    gap: 24px;
  }

  .p-hero__title {
    font-size: 56px;
  }

  .p-hero__subtitle {
    font-size: 32px;
  }

  .p-hero__image {
    width: 720px;
  }

  .p-brand-concept__conclusion {
    height: 300px;
  }

  .p-product-lineup__list {
    flex-direction: row;
    gap: 24px;
    margin-bottom: 32px;
  }

  .p-product-lineup__list .c-product-card {
    flex: 1;
  }

  .p-travel-set {
    max-width: 600px;
    margin: 0 auto;
  }

  .p-first-time__features {
    width: auto;
    max-width: 400px;
  }

  .p-first-time .p-travel-set {
    max-width: 500px;
  }

  .p-commitment__intro {
    font-size: 19px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-reviews__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .p-why-jewel__points {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .p-why-jewel__points .c-point-card {
    flex: 1;
  }

  .p-travel-set__title {
    font-size: 24px;
  }

  .p-travel-set__name {
    font-size: 20px;
  }

  .p-travel-set__price {
    font-size: 20px;
  }

  .p-travel-set__contents {
    font-size: 18px;
  }

  .p-travel-set__badge {
    font-size: 14px;
    width: 72px;
    height: 70px;
  }

  .p-travel-set__badge:after {
    border-left: 36px solid #d7217f;
    border-right: 36px solid #d7217f;
  }

  .c-product-card__title {
    font-size: 22px;
  }

  .c-product-card__name {
    font-size: 20px;
  }

  .c-product-card__price {
    font-size: 20px;
  }

  .c-product-card__price span,
  .p-travel-set__price span {
    font-size: 14px;
  }

  .c-product-card__tag {
    font-size: 14px;
  }

  .p-faq .c-section-title__ja {
    width: auto;
    max-width: 600px;
  }

  .p-faq__list {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .p-faq__contact-phone {
    font-size: 24px;
  }

  .p-faq__contact-time {
    font-size: 16px;
  }

  .p-faq__contact-note {
    font-size: 12px;
  }

  .p-final-cta {
    padding: 80px 32px;
  }

  .p-final-cta__text {
    width: auto;
    max-width: 600px;
    font-size: 28px;
  }

  .l-footer__inner {
    padding: 48px 32px;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }

  .p-footer__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-shrink: 0;
    order: 1;
  }

  .p-footer__logo {
    text-align: left;
    order: 1;
  }

  .p-footer__logo-image {
    margin: 0;
  }

  .p-footer__social {
    order: 2;
  }

  .p-footer__nav-wrapper {
    flex-direction: row;
    flex: 1;
    justify-content: flex-end;
    order: 2;
  }

  .p-footer__nav {
    margin-bottom: 0;
  }

  .p-footer__nav-title {
    text-align: left;
  }

  .p-footer__nav-list {
    align-items: flex-start;
  }

  .p-footer__nav-item {
    text-align: left;
  }

  .p-footer__bottom {
    padding: 24px 32px;
  }

  .p-footer__bottom-inner {
    gap: 9px 8px;
  }
}

@media (min-width: 1024px) {
  .l-container {
    max-width: 1200px;
    padding: 0 48px;
  }

  .l-section {
    padding: 80px 0;
  }

  .p-brand-concept__boxes {
    gap: 32px;
  }

  .p-product-lineup__list {
    gap: 32px;
  }

  .p-travel-set {
    max-width: 700px;
  }

  .p-commitment__intro {
    font-size: 21px;
    max-width: 900px;
  }

  .p-why-jewel__points {
    gap: 32px;
  }

  .p-reviews__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .p-travel-set__title {
    font-size: 28px;
  }

  .p-travel-set__name {
    font-size: 22px;
  }

  .p-travel-set__price {
    font-size: 22px;
  }

  .p-travel-set__contents {
    font-size: 20px;
  }

  .p-travel-set__badge {
    font-size: 16px;
    width: 80px;
    height: 78px;
  }

  .p-travel-set__badge:after {
    border-left: 40px solid #d7217f;
    border-right: 40px solid #d7217f;
  }

  .c-product-card__title {
    font-size: 24px;
  }

  .c-product-card__name {
    font-size: 22px;
  }

  .c-product-card__price {
    font-size: 22px;
  }

  .c-product-card__price span,
  .p-travel-set__price span {
    font-size: 16px;
  }

  .c-product-card__tag {
    font-size: 15px;
  }

  .p-faq .c-section-title__ja {
    width: auto;
    max-width: 600px;
  }

  .p-faq__list {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-final-cta {
    padding: 80px 48px;
  }

  .p-final-cta__text {
    font-size: 32px;
    max-width: 700px;
  }

  /* PC Hover Animations */
  @media (hover: hover) {
    .c-feature-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .c-feature-box:hover .c-feature-box__bg-image {
      transform: scale(1.1);
    }

    .c-product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(215, 33, 127, 0.2);
    }

    .c-product-card:hover .c-product-card__image {
      transform: scale(1.05);
    }

    .c-point-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 16px rgba(183, 138, 48, 0.2);
    }

    .c-review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 16px rgba(79, 79, 79, 0.15);
    }

    .p-travel-set:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(215, 33, 127, 0.2);
    }

    .c-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .c-btn--primary:hover {
      box-shadow: 0 4px 16px rgba(202, 162, 79, 0.4);
    }

    .c-btn--secondary:hover {
      box-shadow: 0 4px 16px rgba(79, 79, 79, 0.2);
    }
  }

  .l-footer__inner {
    padding: 80px 32px;
  }

  .p-footer__left {
    gap: 32px;
  }

  .p-footer__nav-wrapper {
    gap: 48px;
  }

  .p-footer__bottom {
    padding: 32px 48px;
  }

  .p-footer__bottom-inner {
    gap: 9px 8px;
  }
}

/* Breadcrumb
   ========================================================================== */
.p-breadcrumb {
  margin-top: 60px;
  height: 40px;
  background-color: #F9F9F9;
  display: flex;
  align-items: center;
}

.p-breadcrumb .l-container {
  margin: 0;
  padding: 0 20px;
}

.p-breadcrumb__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #333;
  line-height: 1.334;
  margin: 0;
}

.p-breadcrumb__link {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-breadcrumb__link:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .p-breadcrumb {
    margin-top: 80px;
  }
}
