@charset 'utf-8';

/* =========================================
   リセット & グローバル
========================================= */
* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
  background-color: #fff;
}

/* =========================================
   ユーティリティ & 基本設定
========================================= */
.wrapper {
  margin: 0 auto;
  padding: 0;
}

.wrapper a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, outline 0.3s ease;
}

.wrapper a:hover {
  opacity: 0.7;
}
.wrapper a:focus-visible {
  outline: 2px solid #ccc;
  outline-offset: 2px;
  opacity: 1;
}


.disnon-sp { display: block; }
.disnon-pc { display: none; }
.br-pc { display: inline; }
.br-sp { display: none; }

@media screen and (max-width: 768px) {
  .disnon-sp { display: none; } 
  .disnon-pc { display: block; }
  .br-pc { display: none; }
  .br-sp { display: inline; }
}


/* =========================================
   セクション共通
========================================= */
.section-title {
  margin: 96px 0 40px;
  text-align: center;
}

.section-title span.en {
  display: block;
  margin-bottom: 10px;
  color: #7a6f5a;
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
}

.section-title h2 {
  margin: 0; 
  color: #333;
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -0.05em;
}


/* =========================================
   導入文
========================================= */
.intro-section {
  text-align: center;
  margin: 80px auto 60px;
  padding: 0 20px;
}
.intro-section p {
  font-size: 21px;
  color: #444;
  line-height: 2.0;
  letter-spacing: 0.1em;
  margin: 0;
}

/* =========================================
    見出し
========================================= */
.lead {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px; 
  padding: 0 20px;
}
.lead h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 54px;
  font-weight: 400;
  color: #333;
  margin: 0 0 15px 0; 
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.lead p {
  font-size: 18px;
  color: #444;
  line-height: 2.0;
  letter-spacing: normal;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .intro-section { margin: 50px auto 40px; }
  .intro-section p { font-size: 14px; text-align: left; }
  
  .lead { margin-bottom: 30px; }
  .lead h2 { font-size: 36px; margin-bottom: 10px; }
  .lead p { font-size: 18px; }
}



/* =========================================
   HERO
========================================= */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.hero-slider {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide 18s infinite;
}

.hero-slide {
  position: relative;
  flex: 0 0 100vw;
  height: 100%;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65); 
}

@keyframes slide {
  0%, 28% { transform: translateX(0); }
  33%, 61% { transform: translateX(-100vw); }
  66%, 95% { transform: translateX(-200vw); }
  100% { transform: translateX(0); }
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
  text-align: center;
}

.hero-sub {
  margin-bottom: 20px;
  font-size: 0.875rem;
  letter-spacing: 0.35em;
}
.hero .hero-content h2.hero-title {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif !important;
  font-size: 3rem; 
  font-style: italic ;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 300;
  color: #fff!important;
  text-align: center;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); 
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 40px;
  font-size: 3rem; 
}

.hero-btn {
  padding: 14px 42px;
  color: #fff;
  border: 1px solid #fff;
  transition: 0.4s;
}

.hero-btn:hover {
  color: #222;
  background: #fff;
}

@media screen and (max-width: 980px) {
  .hero {
   height: 600px; 
   min-height: 500px;
  }
  .hero-slide img {
    object-fit: cover;
    /* 例: 人物が下の方にいる場合は 'center bottom'、中央なら 'center center' */
    object-position: center center; 
  }
  .hero .hero-content h2.hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
    .hero-copy {
    font-size: 39px;
    padding: 0 15px; 
  }
}


/* =========================================
   カードグリッド
========================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 10px;
}

@media screen and (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}

/* カードコンポーネント */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card:focus-within {
  outline: 2px solid #eee;
  outline-offset: 2px;
}

.card dl {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

.card dt {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card dt img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover dt img {
    transform: scale(1.05);
  }
}

.card .planArea {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 5px 15px;
  color: #333;
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.content-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 20px 15px;
}

.card .planTitle {
  height: 2.875rem;
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

.card .planPrice {
  margin: 10px 0;
  color: #b35656;
  font-family: 'Noto Serif JP', serif !important;
  font-size: 2.25rem;
  font-weight: 600;
  text-align: left;
}

.card .planPrice span {
  margin-right: 5px;
  font-size: 0.875rem;
}

.card .planInc {
  height: 100px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: normal;
  text-align: left;
}

.card .planTerms {
  display: flex;
  gap: 4px;
  align-items: stretch;
  margin-top: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: normal;
  text-align: left;
}

.card .planTerms .limited,
.card .planTerms .discount {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  font-weight: bold;
  line-height: 1;
  border-radius: 4px;
}

.card .planTerms .limited { background-color: #7ccbac; }
.card .planTerms .discount { background-color: #ce8aaf; }

.card .planTerms .discount.super {
  background: linear-gradient(135deg, #e53935 0%, #ff5252 100%);
  box-shadow: 0 3px 8px rgba(229, 57, 53, 0.4);
  letter-spacing: 0.05em;
}

.card .planTerms .big-num {
  display: inline-block;
  margin: 0 2px;
  font-family: 'Noto Serif JP', serif!important;
  font-size: 1.15em;
  font-weight: 600;
  transform: translateY(0.5px);
}

.card .planTerms .discount .big-num {
  font-size: 1.2em;
}

.card .planID {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: right;
  border-top: 1px solid #eee;
}

.cover-link {
  color: inherit;
  text-decoration: none;
}

.cover-link::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  content: '';
}

@media screen and (max-width: 768px) {
  .card dt { height: 250px; }
  .card .planTerms { margin-top: 0; margin-bottom: 12px; }
  .card .planPrice { margin-bottom: 0; }
  .card .planInc { margin-bottom: 14px; }
}


/* =========================================
   汎用コンポーネント
========================================= */
.c-consult-box {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  
  background-color: #f9f8f4 !important; 
  padding: 60px 20px !important;
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.c-consult-box__inner {
  max-width: 820px !important;
  margin: 0 auto !important;
}
.c-consult-box h2.c-consult-box__title {
  font-size: 28px !important;
  color: #333 !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  text-align: center !important;
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  background: none !important; 
  border: none !important;
  width: auto !important;
}

.c-consult-box p.c-consult-box__text {
  font-size: 16px !important;
  color: #444 !important;
  line-height: 1.8 !important;
  letter-spacing: 0.05em !important;
  margin: 0 0 35px 0 !important;
  padding: 0 !important;
}

.c-consult-box__btn {
  margin-top: 10px !important;
}
@media screen and (max-width: 768px) {
  .c-consult-box {
    padding: 50px 20px !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  
  .c-consult-box h2.c-consult-box__title {
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }
  
  .c-consult-box p.c-consult-box__text {
    font-size: 14px !important;
    text-align: center !important;
  }
}


/* =========================================
   ボタン
========================================= */
.btn-wrapper {
  margin: 5.375rem 0;
  text-align: center;
}
.btn-elegant {
  display: inline-block;
  padding: 18px 40px;
  color: #fff !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: normal;
  text-decoration: none;
  background-color: #d22d26;
  border: 1px solid #d22d26;
  border-radius: 4px;
  transition: all 0.4s ease;
}
.btn-elegant:hover {
  background-color: #4a6b22; 
  border-color: #4a6b22;
  box-shadow: 0 6px 15px rgba(74, 107, 34, 0.3);
  text-decoration: underline; 
  transform: translateY(-2px);
}


/* =========================================
  無限ループ（スマホ挙動・完全修正版）
========================================= */
.marquee-container {
  display: flex;
  align-items: center;
  width: 100vw;
  margin-top: 5.375rem;
  margin-left: calc(50% - 50vw);
  padding: 15px 0;
  overflow: hidden;
  background-color: #fff;
  box-sizing: border-box;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  transform: translateZ(0);
  
  animation: marquee-scroll 40s linear infinite;
}

.marquee-img {
  width: auto !important;
  height: 40px;
  margin-right: 120px;
  display: block;
  

  flex-shrink: 0 !important; 

  max-width: none !important; 
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media screen and (max-width: 768px) {
  .marquee-container {

    width: 100%; 
    margin-left: 0;
  }

  .marquee-img {
    height: 30px;
    margin-right: 40px;
  }
  
  .marquee-track {
animation-duration: 12s;
  }
}





/* =========================================
   情報
========================================= */
.data-box {
  max-width: 700px;
  margin: 0 auto 60px;
}
.data-list {
  margin: 0 20px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #eaeaea;
}
.data-item {
  display: flex;
  gap: 30px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid #eaeaea;
}
.data-label {
  flex: 0 0 200px;
}
.data-label .en {
  display: block;
  color: #a39b8b;
  font-size: 0.75rem;
  font-style: italic;
}
.data-label .ja {
  color: #333;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
}
.data-value {
  flex: 1;
  margin: 0;
  color: #555;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .data-item {
    flex-direction: column;
    gap: 10px;
  }
  .data-label {
    flex: auto;
  }
}

/* =========================================
   アクセシビリティ対応（モーション軽減）
========================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-slider,
  .marquee-track {
    animation: none !important;
  }
  .card,
  .card dt img,
  .btn-elegant {
    transition: none !important;
    transform: none !important;
  }
}