@charset "utf-8";

/* Hero Sectionのスタイルはhero.cssで管理 */


  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    /* height: 300px; */
  }
}
 @media (width <= 768px) {
  .hero {
    margin-inline: auto;
    padding: 3rem 0;
  }
  .hero-text p {
    text-align: center;
  }
 }

    /* About Section */


.about {
  background-image: linear-gradient(223deg, #29303a, #091628);
  position: relative;
  /* margin-top: 100vh; */
  z-index: 10;
  border-radius: var(--radius-1) 0;
  padding: 10rem 2rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.about-content {
  /* max-width: 1000px; */
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

.about h2 {
  font-family: var(--ab-kirigirisu);
  font-size: clamp(1.5rem, 1.091rem + 2.05vw, 2.625rem);
  /* font-weight: 900; */
  margin-bottom: 3rem;
  line-height: 1.6;
  color: #fff;
}

.h2-about {
  font-family: var(--ab-countryroad);
  font-weight: 400;
  font-style: normal;  -webkit-font-smoothing: antialiased;
  color: var(--color-white);
  text-indent: .2em;
  margin-top: 1em;
  /* min 28 max54 320-1200*/
  font-size: clamp(1.75rem, 1.159rem + 2.95vw, 3.375rem);
  position: relative;
  display: inline-block;
  transform: scale(0.85);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

/* 下線（伸びるアニメ用） */
.h2-about::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--color-yellow);
  transition: width 0.4s ease-out 0.1s; /* 0.1秒遅れてスッと伸びる */
}

/* 表示時のアニメーション */
.zoomIn {
  opacity: 1;
  transform: scale(1);
}

/* 下線をスッと伸ばす */
.zoomIn::after {
  width: 100%;
}

/* ズバッと登場アニメーション */
@keyframes zoomIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  /* 70% {
    transform: scale(1.15);
    opacity: 1;
  } */
  100% {
    transform: scale(1);
  }
}


/* テキストツールの背景アニメーション */
.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li img{
    position: absolute;
    display: block;
    list-style: none;
    animation: about 25s linear infinite;
}

.circles li:nth-child(1) img{
    left: 8%;
    top: 15%;
    animation-delay: 0s;
}

.circles li:nth-child(2) img{
    left: 12%;
    top: 36%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) img{
    left: 15%;
    bottom: 20%;
    animation-delay: 3s;
}

.circles li:nth-child(4) img{
    left: 7%;
    bottom: 36%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) img{
    right: 17%;
    top: 20%;
    animation-delay: 2s;
}

.circles li:nth-child(6) img{
    right: 9%;
    top: 36%;
    animation-delay: 3s;
}

.circles li:nth-child(7) img{
    right: 12%;
    bottom: 46%;
    animation-delay: 2s;
}

.circles li:nth-child(8) img{
    right: 18%;
    bottom: 18%;
    animation-delay: 3s;
    animation-duration: 45s;
}

@keyframes about {

    0%{
        transform: translateY(0) rotate(0deg);
    }
    50%{
        transform: translateY(-100px) rotate(360deg);
    }

    100%{
        transform: translateY(0) rotate(0deg);
    }

}

/* 黄色いドット用 */
.circles .dot {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  opacity: 0.8;
  animation: floatDot 20s ease-in-out infinite;
}

/* ドットの個別位置とタイミングを設定 */
.circles .dot:nth-child(9) {
  left: 10%;
  top: 25%;
  animation-delay: 0s;
}

.circles .dot:nth-child(10) {
  left: 20%;
  top: 60%;
  animation-delay: 3s;
}

.circles .dot:nth-child(11) {
  right: 15%;
  top: 40%;
  animation-delay: 5s;
}

.circles .dot:nth-child(12) {
  right: 25%;
  bottom: 20%;
  animation-delay: 7s;
}

.circles .dot:nth-child(13) {
  left: 50%;
  top: 10%;
  animation-delay: 2s;
}

.circles .dot:nth-child(14) {
  left: 30%;
  top: 20%;
  animation-delay: 2s;
}

.circles .dot:nth-child(15) {
  left: 80%;
  top: 70%;
  animation-delay: 2s;
}

/* ドットのふわふわアニメーション */
@keyframes floatDot {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  25% {
    transform: translateY(-30px) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  75% {
    transform: translateY(20px) scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
}

/* 右から左に流れる文字 */

.marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 6rem;
}

/* リスト全体 */
.marquee-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 80px;
  white-space: nowrap;
/*  animation: scrollText 10s linear infinite; /* ← 速度は調整可 */
}

/* １セット目の末尾車両の次に２セット目の先頭車両を連結した動き */
.marquee-track {
  display: flex;
  gap: 80px;              /* li 同士の隙間と合わせる */
  width: max-content;     /* 中身の幅ぶんだけ広がる */
  animation: scrollText 20s linear infinite; /* 速度はお好みで */
}

/* 各項目 */
.marquee-list li {
  color: var(--color-white);
  font-size: 3rem;
  flex-shrink: 0;
}

.marquee ul li:nth-child(1){
  font-family: var(--ab-junglecock-01);
}
.marquee ul li:nth-child(2){
  font-family: var(--taw-kadomaru-tsurara);
}
.marquee ul li:nth-child(3){
  font-family: var(--ab-marusan);
}
.marquee ul li:nth-child(4){
  font-family: var(--ab-shoutenkaku);
}
.marquee ul li:nth-child(5){
  font-family: var(--ab-kikori);
}
.marquee ul li:nth-child(6){
  font-family: var(--ab-24h);
}
.marquee ul li:nth-child(7){
  font-family: var(--ab-doramin);
}
.marquee ul li:nth-child(8){
  font-family: var(--ab-countryroad);
}
.marquee ul li:nth-child(9){
  font-family: var(--ab-kirigirisu);
}
.marquee ul li:nth-child(10){
  font-family: var(--ab-appare);
}
.marquee ul li:nth-child(11){
  font-family: var(--ab-hanamaki);
}
.marquee ul li:nth-child(12){
  font-family: var(--ab-lineboard-bold);
}
.marquee ul li:nth-child(13){
  font-family: var(--ab-quadra);
}
.marquee ul li:nth-child(14){
  font-family: var(--ab-tombo-bold);
}
/*
.marquee ul li:nth-child(15){
  font-family: var(--ab-tsubaki);
}
*/
.marquee ul li:nth-child(15){
  font-family: var(--ab-yurumin);
}
.marquee ul li:nth-child(16){
  font-family: var(--ta-engeifude);
}
.marquee ul li:nth-child(17){
  font-family: var(--ta-marugo-gf-01);
}
.marquee ul li:nth-child(18){
  font-family: var(--ta-kasanemarugo);
}
.marquee ul li:nth-child(19){
  font-family: var(--ta-oonishi);
}
/*
.marquee ul li:nth-child(14){
  font-family: var(--ab-24h);
}
.marquee ul li:nth-child(15){
  font-family: var(--ab-don);
}
.marquee ul li:nth-child(16){
  font-family: var(--ab-doramin);
}
.marquee ul li:nth-child(17){
  font-family: var(--ikkyu);
}
.marquee ul li:nth-child(18){
  font-family: var(--ab-j-choki);
}
.marquee ul li:nth-child(19){
  font-family: var(--ab-karuta-bold);
}
.marquee ul li:nth-child(20){
  font-family: var(--ta-rb);
}
.marquee ul li:nth-child(21){
  font-family: var(--roman);
}
.marquee ul li:nth-child(22){
  font-family: var(--ab-shonen-oto);
}
.marquee ul li:nth-child(23){
  font-family: var(--ab-tyuusyobokunenn);
}
*/


@keyframes scrollText {
  /* １セット目の末尾車両の次に２セット目の先頭車両を連結した動き */
  0% {
    transform: translateX(0);
  }
  100% {
    /* 2セット並んでいるので“半分”ぶんだけ左へ */
    transform: translateX(-50%);
  }
}


.about p {
  font-size: var(--fontsize);
  font-family: "ab-24h", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2.2;
  color: var(--color-whitegray);
  text-align: center;
  white-space: normal; /* .aboutのwhite-space: nowrapを上書き */
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}


/* 方眼パターン以下 */
.hogan {
  background-image: url(../images/hogan.png);
  width: 100%;
}

/* お困り事ありませんか */
.problem {
  padding: 8rem 0 0;
  width: min(90%, 1200px);
  margin-inline: auto;
}

.problem h2 {
  /* 32-60 320-1200 */
  font-size: clamp(2rem, 1.364rem + 3.18vw, 3.75rem);
  /* font-family: var(--ab-ishi-chan); */
  font-family: var(--ab-tyuusyobokunenn);
  color: var(--color-yellow);
  -webkit-text-stroke: 0.5px var(--color-brown);
  text-stroke: 0.5px var(--color-black);
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2em;
  box-sizing: border-box;
  margin-top: 2rem;
}

.problem-card {
  padding: 2rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-yellow);
  border-radius: var(--radius-1);
  color: var(--color-black);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  gap: 0;
}

.problem-icon {
  font-size: 80px;
  /* margin-bottom: 30px; */
}

.problem-title h3 {
  font-size: 1.2rem;
  /* font-weight: 900; */
  line-height: 1.4;
  font-family: var(--ab-megadot9);
  letter-spacing: 0.2em;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: left;
}
.problem-title p {
  margin-top: 1rem;
  text-align: left;
}
.problem-lead {
  margin-top: 3rem;
  /* 28-48 320-1200 */
  font-size: clamp(1.75rem, 1.295rem + 2.27vw, 3rem);
  color: var(--color-black);
  text-align: center;
  font-family: var(--ab-junglecock-01);
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-lead::before, .problem-lead::after {
  content: "";
  width: 3px;
  height: 40px;
  background-color: var(--color-black);
  display: block;
}
.problem-lead::before {
    margin-right: 20px;
    transform: rotate(30deg);
}
.problem-lead::after {
    margin-left: 20px;
    transform: rotate(-30deg);
}
.problem-lead p {
  line-height: 1em;
}

@media (width <= 768px) {
.problem-grid {
  grid-template-columns: 1fr;
  /* width: 90%; */
  column-gap: 0;
  row-gap: 2rem;
}
.problem-card {
  padding: 1.5rem 1.25rem;
}
.problem-lead::before, .problem-lead::after {
  content: "";
  width: 2px;
  height: 72px;
  background-color: var(--color-black);
  display: block;
  margin-top: -2em;
  }
.problem-lead::before {
      margin-right: 24px;
  }
.problem-lead::after {
      margin-left: 8px;
  }
}

/* サービスの特徴 */
.service {
  padding: 8em 0;
  width: min(90%, 1200px);
  margin-inline: auto;

}

.service h2 img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}

@media (max-width: 968px) {
  /* About sectionのスマホ対応 */
  .about-content {
    padding: 0 0.5rem;
    max-width: 100%;
  }

  .about {
    padding: 10rem 1rem 0;
  }
}
/* Point Sections */

.point-section {
  /* width: 90%;  */
  /* max-width: 1200px; */
  margin: 0 auto;
  background: var(--color-black);
  box-sizing: border-box;
  overflow: hidden;
  /* margin-top: 4em; */
  border-radius: var(--radius-1);
  /* padding: 1rem 0; */
}

  /* Responsive */
@media (max-width: 968px){
  /* 全てのPointセクションをFlexに変更して順序制御 */
  #point01 .point-container,
  #point02 .point-container,
  #point03 .point-container,
  #point04 .point-container {
    display: flex;
    flex-direction: column;
  }

  /* 全てのビジュアル要素を上に */
  #point01 .text-display,
  #point02 .grid-container,
  #point03 .icon-overflow-display,
  #point04 .trademark-visual {
    order: 1;
  }

  /* 全てのテキスト要素を下に */
  #point01 .point-text,
  #point02 .point-text,
  #point03 .point-text,
  #point04 .point-text {
    order: 2;
  }
  .point-container {
  grid-template-columns: 1fr;
  gap: 3rem;
}
}

h2 + .point-section {
  margin-top: 0;
}

.point-section:not(:first-of-type) {
  margin-top: 4em;
}

/* .point-section:first-of-type {
  padding-top: 0.5rem;
} */

.point-section:last-of-type {
  padding-bottom: 4rem;
}

.point-section:nth-child(even) {
  background: var(--color-black);
}

.point-container {
  /* position: relative; */
  /* left: 50%; ビューポートの中央に */
  /* transform: translateX(-50%); */
  /* max-width: 1200px; */
  /* width: 90%; */
  padding: 2rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5rem;
  align-items: center;
  overflow: hidden; /* はみ出しを防ぐ */
}
 @media (width <= 768px) {
    .point-container {      /* width: 90%; */
      column-gap: 0;
      row-gap: 2rem;
    }
 }
.point-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  /* font-weight: 900; */
  margin-bottom: 2rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-yellow);
}

.point-text h3 span {
  font-size: 0.8em;
  position: relative;
  display: inline-block;
}
.point-text h3 span::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 10%;
  transform: translate(-50%) rotate(30deg);
  width: 1px;
  height: 16px;background-color: var(--color-yellow);
}

.point-text h3
/*OMFの特徴 の３Blockの文字をレスポンシブで小さく */
@media (width <= 365px) {
  .point-text h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
  }
}

/*
#point01 .point-text h3 {
  font-family: var(--ab-don);
}
#point02 .point-text h3 {
  font-family: var(--ab-marusan);
}
#point03 .point-text h3 {
  font-family: var(--ab-kirigirisu);
  letter-spacing: -0.2rem;
}
*/
.point-label {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  background: var(--color-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.point-text p {
  font-size: var(--fontsize);
  line-height: 2;
  color: #e0e0e0;
  font-weight: 500;
}
/* pointセクションの番号テキストを大きく
.point-text span {
  font-size: 0.7em;
}
.point-text span a{
  color: var(--color-blue);
}
.point-text span a:hover{
  text-decoration: underline;
}
*/

/* Point 01 - Toggle Animation */
.text-display {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 3rem 2rem; */
  position: relative;
  overflow: hidden; /* はみ出しを防ぐ */
}

.text-center {
  text-align: center;
  /* position: relative; */
  /* padding-top: 7rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.toggle-container {
  /* position: absolute; */
  /* top: 2rem; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
  margin-bottom: 2rem;
}
 @media (width <= 768px) {
  .text-center {
    padding-top: 1rem;
  }
  .text-display  {
    width: 100%;
  }
  .toggle-container {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
 }

.toggle-switch {
  width: 80px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  flex-shrink: 0;
}
/* @media (width <= 768px) {
  .toggle-switch {
    width: 50%;
    height: 50%;
  }
} */

.toggle-switch.active {
  background: var(--color-yellow);
}

.toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-knob {
  left: 44px;
}

.toggle-label {
  font-size: 1rem;
  color: #e0e0e0;
  white-space: nowrap;
  font-weight: 600;
  width: 230px;
  display: inline-block;
  flex-shrink: 0;
}

.toggle-label.brand-visible {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: var(--color-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 218, 21, 0.5);
}

.toggle-label img {
  height: 1.2rem;
  vertical-align: middle;
  filter: drop-shadow(0 0 30px rgba(255, 218, 21, 0.5));
}

@media (max-width: 968px) {
  .toggle-label img {
    height: 1rem;
  }
}

.main-text {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  margin-top: 0;
  line-height: 1.2;
  font-family: var(--ab-junglecock-01)
}

.main-text:first-of-type {
  margin-top: 0rem;
}

.main-text:last-of-type {
  margin-bottom: 0;
}

.main-text span {
  display: inline-block;
  transition: all 0.5s ease;
}

.main-text span.emphasized {
  background: var(--color-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-text span.hiragana {
  font-size: 0.7em;
  vertical-align: baseline;
}

.subtitle {
  font-size: 1.5rem;
  background: var(--color-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.subtitle.visible {
  opacity: 1;
}

/* Point 02 - Grid Animation */
.grid-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 2rem 0; */
}

/* .grid-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
} */

.char-grid {
  display: grid;
  grid-template-columns: repeat(19, 1fr);
  width: 100%;
  height: 100%;
  transition: transform 2s ease-out, opacity 0.3s ease-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
}

.char-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.5rem, 2vw, 1.5rem);
  color: #fff;
  line-height: 0.9;
  opacity: 0;
  transition: opacity 0.8s ease-out;
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'MS Mincho', serif;
}

/* Point 03 - Icon Overflow */
/* .icon-overflow-display {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: visible;
} */

.icon-wrapper {
  position: relative;
  width: clamp(120px, 15vw, 200px);
  height: clamp(120px, 15vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 22%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22%;
}

.app-icon.clicked {
  transform: scale(0.95);
  box-shadow: 0 10px 30px rgba(255, 218, 21, 0.3);
}

.app-icon.released {
  transform: scale(1);
  box-shadow: 0 20px 60px rgba(255, 218, 21, 0.4);
}

.overflow-char {
  position: absolute;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* Point 04 - Placeholder */
.trademark-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  min-height: 400px;
  background: rgba(255, 218, 21, 0.05);
  border-radius: 24px;
  border: 2px solid rgba(255, 218, 21, 0.2);
}

.trademark-placeholder {
  text-align: center;
  color: #e0e0e0;
}

.trademark-placeholder h4 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--color-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Point CTA Section */
.point-cta-section {
  margin-top: 6rem;
  text-align: center;
}

.point-cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.btn-large {
  padding: 1.5rem 4rem;
  font-size: 1.3rem;
  font-weight: 700;
}

@media (max-width: 968px) {
  /* .point-cta-section {
    padding: 4rem 2rem;
  } */

  .btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
  }
}


/* Features Section */
.features {
  padding: 8rem 0;
  background: var(--color-paleblack);
  position: relative;
  z-index: 10;

}
.features-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  width: min(90%, 1200px);
}

.features h2.section-title {
  text-align: center;
  /* 32-54 320-1200 */
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.375rem);
  margin-bottom: 6rem;
  /* color: var(--color-white); */
  /* font-family: var(--ab-Tyuusyobokunenn); */
  font-family: var(--ab-ishi-chan);
  color: var(--color-white);
  text-stroke: 0.5px var(--color-black);
  -webkit-text-stroke: 0.5px var(--color-black);
  letter-spacing: 0.2em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
}
/* Responsive */
 @media (width <= 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 2rem;
}
 }
.feature-card {
  background: rgba(15, 30, 51, 0.3);
  border-radius: var(--radius-1);
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
/* .feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 218, 21, 0.4);
  box-shadow: 0 20px 40px rgba(255, 218, 21, 0.2);
} */

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  /* font-weight: 900; */
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--ab-kokoro-no3);
}

.feature-card p {
  color: #e0e0e0;
  line-height: 1.8;
}

/* Pricing Section */
.pricing {
  padding: 8rem 0;
  background: var(--color-black);
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}
.pricing .section-title {
  text-align: center;
  /* 32-54 320-1200 */
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.375rem);
  font-family: var(--ab-kikori);
  margin-bottom: 2rem;
  color: #fff;
}

.pricing-container {
  margin: 0 auto;
  width: min(90%, 1200px);
}

.pricing-subtitle {
  text-align: center;
  font-size: var(--fontsize);
  color: #b0b0b0;
  margin-bottom: 5rem;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background: rgba(15, 30, 51, 0.3);
  /* border-radius: 24px; */
  padding: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  position: relative;
  border-radius: var(--radius-1);
}
 @media (width <= 425px) {
  .pricing-card {
/*    padding: 1.5rem 1rem;	レスポンシブでも20％OFFバッチ(campaign-badge)を表示し続ける様にしたので、「年間プラン」が隠れない様に 上paddingは維持する */
    padding: 3rem 1rem;
  }
 }
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 218, 21, 0.4);
  /* box-shadow: 0 20px 40px rgba(255, 218, 21, 0.2); */
}

.pricing-card.featured {
  border-color: rgba(255, 218, 21, 0.5);
  /* box-shadow: 0 10px 40px rgba(255, 218, 21, 0.3); */
  background: linear-gradient(135deg, rgba(255, 218, 21, 0.1) 0%, rgba(255, 218, 21, 0.05) 100%);
}

.pricing-card.featured:hover {
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-yellow);
  color: #0a1628;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.campaign-badge {
  position: absolute;
  top: -15px;
  right: -10px;
  background: linear-gradient(135deg, #ff0844 0%, #ff6b6b 100%);
  color: #fff;
  padding: 0.8rem 1.2rem 0.3rem 1.2rem;	/* 0.6rem 1.2rem; 「ベータ版割引」「20％OFF」個別設定の為*/
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  transform: rotate(8deg);
  /* box-shadow: 0 4px 15px rgba(255, 8, 68, 0.5); */
  animation: pulse 2s ease-in-out infinite;
}

 /* 「ベータ版割引」「20％OFF」個別設定の為 */
 .campaign-badge span {
   display: block;
   text-align: justify;		/* 文字を均等割り付け */
   text-align-last: justify;	/* 文字を均等割り付け */
 }
 /* 「ベータ版割引」 */
 .campaign-badge .line1 {
   font-size: 0.7rem;
   margin-top: -0.4rem;
 }
 /* 「20％OFF」 */
 .campaign-badge .line2 {
   font-size: 1.3rem;
   margin-top: -0.5rem;
 }

 @media (width <= 768px) {
  .campaign-badge {
    right: 10px;
  }
}
 @media (width < 500px) {
   .campaign-badge {
     /* レスポンシブでも20％OFFバッチ(campaign-badge)を表示し続ける
        が、bodyからはみ出さない様にright調整 ＋ 「年間プラン」が隠れない様に 若干上にズラす
     display: none;	*/
     top: -25px;
     right: 0px;
   }
 }

@keyframes pulse {
  0%, 100% {
    transform: rotate(8deg) scale(1);
  }
  50% {
    transform: rotate(8deg) scale(1.05);
  }
}

.plan-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.plan-header p {
  font-size: 0.8rem;
  text-align: center;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}


.price-note {
  font-size: 1.1rem;
  color: #ff0844;
  margin-top: 1rem;
  font-weight: 700;
  background: rgba(255, 8, 68, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  animation: fadeIn 1s ease-in-out infinite alternate;
  text-align: center;
}
  .price-note span{
  text-decoration: line-through;
  font-size: 1.2em;
  padding: 0 0.6em;
  }

@keyframes fadeIn {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

.price-amount {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--color-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tax {
  font-size: 0.7em;
  color: var(--color-whitegray);
}

.price-period {
  font-size: 1.2rem;
  color: var(--color-whitegray);
  font-weight: 600;
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.plan-features li {
  padding: 0.9rem 0;
  font-size: 1.05rem;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
}

.plan-features li:last-child {
  border-bottom: none;
}

/*
.plan-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.plan-btn::after {
	animation: 2s 0s shine linear infinite;
	background: linear-gradient(to right, rgba(255,255,255,0) 25%, rgba(255,255,255,.8) 50%, rgba(255, 255, 255, 0) 75%);
	content: '';
	height: 100%;
	left: -100%;
	position: absolute;
	top: 0;
	transform: skewX(-15deg);
	width: 100%;
}

.plan-btn::before {
  font-family: "Material Symbols Outlined";
  content: "\e941";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2em;
}

 }
*/
/* .plan-btn {
  min-width: 350px !important;
  text-align: center;
  display: block !important;
} */

/* plicingセクションのCTAボタンのサイズをレスポンシブ調整 */
/* @media (width <= 768px) {
  .plan-btn {
    min-width: 200px !important;
    font-size: 0.85rem !important;
  }
} */
/* @media (width <= 425px) {
  .plan-btn {
    min-width: 200px !important;
    font-size: 0.8rem !important;
  }
} */



.pricing-note {
  margin-top: 3rem;
}

.pricing-note p {
  color: #888;
  font-size: 0.95rem;
  margin: 0.5rem 0;
  font-weight: 500;
  text-align: center;
}

/* New Fonts Section */
.new-fonts {
  padding: 5rem 0 3rem;
  background: var(--color-yellow);
  position: relative;
  overflow: hidden;
}

.new-fonts .new-fonts-title {
  font-family: var(--ab-j-choki);
  color: var(--color-black);
  /* 34-64 320-1200 */
  font-size: clamp(2.125rem, 1.443rem + 3.41vw, 4rem);
  /* font-weight: 900; */
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #fff;
}

.new-fonts .new-fonts-title span {
  font-family: var(--ab-doramin);
  color: var(--color-white);
  -webkit-text-stroke: 0.5px var(--color-black);
  text-stroke: 0.5px var(--color-black);
}

.new-fonts-container {
  width: min(90%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 968px) {
  .new-fonts-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 640px) {
  .new-fonts-container {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }
}

.highlight-text {
  /* background: var(--color-yellow); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
  display: inline-block;
}

.new-fonts-description {
  font-size: var(--fontsize);
  line-height: 2;
  color: var(--color-black);
  margin-bottom: 3rem;
  font-weight: 500;
}

 /* Responsive */
@media (max-width: 968px) {
  .font-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

@media (max-width: 640px) {
  .font-preview-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  }
  .font-preview-item:nth-child(5),
  .font-preview-item:nth-child(6) {
    display: none;
  }
}

  .font-preview-item:nth-child(5),
  .font-preview-item:nth-child(6) {
    display: none;
  }

  .coming-soon-badge {
    position: static;
    margin-top: 2rem;
    justify-content: center;
  }
}

.new-fonts-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.coming-soon-badge {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ab-24h);
  font-size: 3em;
}

/* Responsive - スマホ対応 */
@media (max-width: 640px) {
  .new-fonts-visual {
    min-height: 250px;
    padding: 1rem;
    overflow: hidden;
  }

  .coming-soon-badge {
    width: 300px;
    height: 300px;
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .new-fonts-visual {
    min-height: 200px;
    padding: 0.5rem;
  }

  .coming-soon-badge {
    width: 220px;
    height: 220px;
    font-size: 1.6em;
  }
}

/* 🔸 ギザギザ円専用の背景レイヤー */
.circle-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 305.41 306.59'%3E%3Cpolygon fill='%23323233' points='305.41 153.29 286.66 172.75 299.36 196.6 275.95 210.1 281.49 236.55 255.24 242.98 253.18 269.92 226.19 268.74 216.6 294 191.07 285.16 174.61 306.59 152.7 290.76 130.8 306.59 114.34 285.16 88.81 294 79.22 268.74 52.23 269.92 50.17 242.98 23.92 236.55 29.46 210.1 6.05 196.6 18.75 172.75 0 153.29 18.75 133.84 6.05 109.98 29.46 96.49 23.92 70.04 50.17 63.61 52.23 36.66 79.22 37.85 88.81 12.59 114.34 21.43 130.8 0 152.7 15.83 174.61 0 191.07 21.43 216.6 12.59 226.19 37.85 253.18 36.67 255.24 63.61 281.49 70.04 275.95 96.49 299.36 109.98 286.66 133.84 305.41 153.29'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: spin 10s linear infinite;
  z-index: 0;
}


/* テキスト中央配置 */
.coming-soon-badge p {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.1;
}

/* 回転アニメーション定義 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circle-bg {
  animation: spin 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

/* NEW FONTの部分 */
.new-fonts ul {
  z-index: 1;
}

/* 晴 */
.new-fonts ul li:nth-child(1) {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 70px;
  height: auto;
  transform: rotate(20deg);
}
/* 舜 */
.new-fonts ul li:nth-child(2) {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 80px;
  height: auto;
}
/* 光 */
.new-fonts ul li:nth-child(3) {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 70px;
  height: auto;
  transform: rotate(-20deg);
}
/* 爽 */
.new-fonts ul li:nth-child(4) {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 80px;
  height: auto;
}

/* Responsive - スマホ対応（画像サイズ調整） */
@media (max-width: 640px) {
  .new-fonts ul li:nth-child(1),
  .new-fonts ul li:nth-child(3) {
    width: 50px;
  }
  .new-fonts ul li:nth-child(2),
  .new-fonts ul li:nth-child(4) {
    width: 55px;
  }
}

@media (max-width: 480px) {
  .new-fonts ul li:nth-child(1),
  .new-fonts ul li:nth-child(3) {
    width: 45px;
  }
  .new-fonts ul li:nth-child(2),
  .new-fonts ul li:nth-child(4) {
    width: 50px;
  }
}

    /* @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    } */

/* Designers Section */
.designers {
  background: var(--color-black);
  padding: 8rem 0 5rem;
  /* width: min(90%, 1200px); */
  margin-inline: auto;
  width: 100%;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.designers .section-title {
  font-family: var(--ab-j-gu);
  text-align: center;
    /* 34-64 320-1200 */
  font-size: clamp(2.125rem, 1.443rem + 3.41vw, 4rem);
  /* font-weight: 900; */
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #fff;
  margin-bottom: 6rem;
  color: #fff;
}
.designers-container {
  margin: 0 auto;
}
.designer-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  box-sizing: border-box;
  width: min(90%, 1200px);
  margin-inline: auto;
  /* align-items: flex-start; */
}
.designer-card {
  display: grid;
  /* width: 100%; */
  /* align-items: center; */
  justify-content: center;
  padding: 0;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .designer-wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
}
    /* .designer-card:last-child {
      margin-bottom: 0;
    } */

.designer-content {
  width: 100%;
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: flex-start; */
  /* gap: 1.5rem; */
  padding: 1rem;
  /* border-radius: var(--radius-1); */
  background: rgba(15, 30, 51, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

/* .designer-content:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 218, 21, 0.4);
  box-shadow: 0 20px 40px rgba(255, 218, 21, 0.2);
} */

/* .card-number {
  font-size: clamp(0.875rem, 0.761rem + 0.48vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
} */

.designer-main {
  /* display: flex; */
  /* align-items: center; */
  gap: 2rem;
  width: 100%;
}

/* Responsive */
@media (max-width: 968px) {
  .designer-main {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .designer-info {
    text-align: center;
  }

  .designer-profile {
    text-align: center;
  }

  .designer-content {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .designer-main {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .designer-info {
    text-align: center;
  }

  .designer-profile {
    text-align: center;
  }

  .designer-works {
    justify-content: center;
  }

  .designer-content {
    align-items: center;
  }
}


.designer-font {
  flex-shrink: 0;
  border-radius: var(--radius-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  overflow: hidden;
}

.designer-font img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.designer-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  text-align: left;
  margin-top: 1rem;

}
 @media (width <= 425px) {
  .designer-info {
    flex-direction: column;
  }
 }

.designer-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.designer-info > div {
  flex: 1;
}


.designer-name {
  /* 18-24 320-1200 */
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

/* デザイナー名のフォント指定 */

/* .designer-card:nth-child(1) .designer-name {
  font-family: var(--houdate_K);
}

.designer-card:nth-child(2) .designer-name {
  font-family: var(--ab-don);
}

.designer-card:nth-child(3) .designer-name {
  font-family: var(--shonen_otoKna);
} */


.designer-name-en {
  /* 10-12 320-1200 */
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  color: rgba(255, 255, 255, 0.7);
  /* font-weight: 600; */
  /* margin-bottom: 1.5rem; */
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.designer-profile {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #e0e0e0;
  line-height: 2;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* .designer-works {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
} */

ul.work-tag {
  display: flex;
  flex-wrap: wrap;
  /* background: rgba(255, 255, 255, 0.1); */
  color: #ffffff;
  /* padding: 0.2rem 0.8rem; */
  /* border-radius: 50px; */
  /* 10-12 320-1200 */
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  /* border: 2px solid rgba(255, 255, 255, 0.2); */
  /* font-weight: 700; */
  transition: all 0.3s;
}
ul.work-tag li {
  margin-right: 1em;
}
.work-tag:nth-child(4) {
  font-family: var(--Countryroad);
}
.work-tag:hover {
  background: rgba(255, 218, 21, 0.2);
  border-color: rgba(255, 218, 21, 0.5);
  transform: translateY(-2px);
}

/* 50名以上のデザイナー */
.more-designer {
  width: 100%;
  text-align: center;
  margin-top: 4rem;
}
.more-designer h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  margin-top: 4rem;
}
.more-designer p {
  color: var(--color-whitegray);
  font-size: var(--fontsize);
  line-height: 2;
  text-align: center;
}
.more-designer p span{
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  background: #ffda15;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:
  text; margin-bottom: 1rem;
  display: block;
}

    /* Testimonials Section */
.testimonials {
  padding: 10rem 0;
  background: var(--color-black);
  width: min(90%, 1200px);
  margin-inline: auto;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Responsive */
@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: rgba(15, 30, 51, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 218, 21, 0.4);
  box-shadow: 0 20px 40px rgba(255, 218, 21, 0.2);
}

.testimonial-quote {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.author-info p {
  font-size: 0.9rem;
  color: #888;
}

/* Case Studies Section */
.case-studies {
  padding: 10rem 2rem;
  background: #0a1628;
}

.case-studies-container {
  max-width: 1200px;
  margin: 0 auto;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* Responsive */
@media (max-width: 968px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

.case-study-card {
  background: rgba(15, 30, 51, 0.3);
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.case-study-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 218, 21, 0.4);
  box-shadow: 0 20px 40px rgba(255, 218, 21, 0.2);
}

.case-study-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 218, 21, 0.2) 0%, rgba(255, 218, 21, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
}

.case-study-content {
  padding: 2rem;
}

.case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.case-study-content p {
  color: #e0e0e0;
  line-height: 1.8;
}

    /* FAQ Section */
.faq {
  width: 100%;
  padding: 5rem 0;
  background: #0a1628;
  margin-inline: auto;
  display: flex;
  position: relative;
  z-index: 10;
}
.faq .section-title {
  font-family: var(--ta-nasubi);
  text-align: center;
    /* 32-54 320-1200 */
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.375rem);
  margin-bottom: 6rem;
  color: #fff;
}

.faq-container {
  max-width: 900px;
  padding: 1rem;
  margin: 0 auto;
}

.faq-item {
  background: rgba(15, 30, 51, 0.3);
  border-radius: var(--radius-1);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

  /* .faq-item:hover {
    border-color: rgba(255, 218, 21, 0.4);
  } */

  .faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.faq-answer {
  color: #e0e0e0;
  line-height: 1.8;
  /* padding-left: 3rem; */
}
.faq-answer span a {
  color: var(--color-blue);
}
.faq-answer span a:hover {
  text-decoration: underline;
}

 @media (width <= 768px) {
  .faq-question {
    flex-direction: column;
  }
  .faq-answer {
    text-align: left;
  }
  .faq-item {
    padding: 1rem;
  }
 }
  /* CTA Section */
  .cta {
    padding: 8rem 0;
    background: var(--color-yellow);
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 10;
  }
  .cta-container {
    width: min(90%, 1200px);
    margin-inline: auto;
  }

  .cta h2 {
    font-family: var(--ta-rb);
    /* 46-72 320-1200 */
    font-size: clamp(2.875rem, 2.284rem + 2.95vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--color-black);
  }

  .cta p {
    font-size: var(--fontsize);
    margin-bottom: 3rem;
    opacity: 0.95;
    color: var(--color-black);
    text-align: center;
  }
  .cta p span {
    display: block;
  }



/* Responsive */
@media (max-width: 968px) {
.toggle-container {
  position: relative;
  top: 0;
  margin-bottom: 2rem;
}



@media (max-width: 640px) {
  .toggle-container {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
}
}

@media (max-width: 640px) {
  .testimonials-grid,
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}preview-item:nth-child(6) {
    display: none;
  }


@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }
}

/* Infinite Scroll Slider Section */
.infinite-slider-section {
  padding: 4rem 0 8rem;  /* 上を2remに */
  background: #0a1628;
  overflow: hidden;
  position: relative;
}

.infinite-slider-section::before,
.infinite-slider-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}

.infinite-slider-section::before {
  left: 0;
  background: linear-gradient(to right, #0a1628 0%, transparent 100%);
}

.infinite-slider-section::after {
  right: 0;
  background: linear-gradient(to left, #0a1628 0%, transparent 100%);
}

.infinite-slider-container {
  width: 100%;
  overflow: hidden;
}

.infinite-slider-track {
  display: flex;
  gap: 2rem;
  animation: infiniteScroll 40s linear infinite;
  width: fit-content;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.infinite-slide {
  flex-shrink: 0;
  width: 600px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.infinite-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* プレースホルダースタイル */
.slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* レスポンシブ対応 */
@media (max-width: 968px) {
  .infinite-slider-section {
    padding: 2rem 0 5rem;
  }

  .infinite-slider-section::before,
  .infinite-slider-section::after {
    width: 50px;
  }

  .infinite-slider-track {
    gap: 1rem;
    animation: infiniteScroll 30s linear infinite;
  }

  .infinite-slide {
    width: 400px;
    border-radius: 12px;
  }

  .slide-placeholder {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .infinite-slider-section {
    padding: 3rem 0;
  }

  .infinite-slider-section::before,
  .infinite-slider-section::after {
    width: 30px;
  }

  .infinite-slider-track {
    gap: 0.8rem;
    animation: infiniteScroll 25s linear infinite;
  }

  .infinite-slide {
    width: 280px;
    border-radius: 10px;
  }

  .slide-placeholder {
    font-size: 2rem;
  }
}
