:root {
  --color-primary: #e50038;
  --color-primary-light: #ffe4ec;
  --color-bg: #f7f7f7;
  --color-gray: #f6f6f6;
  --color-text: #333333;
  --max-width: 1120px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: 15px;
}

img {
  /* max-width: 100%; */
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 16px;
  
}

/* ========== HEADER ========== */
.site-header {
  margin-top: 0 !important;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #f0f0f0;
  
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 11px;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-top-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.eyebrow {
  font-family: 'Josefin Sans', system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-size: 11px;
}

.top-link {
  font-size: 11px;
  padding-bottom: 2px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

/* 3カラム横並び固定配置 */
.header-main {
  flex-wrap: nowrap; /* flexの折返しを防ぐ（念のため） */
  display: flex;
  justify-content: space-around; 
  align-items: center;     /* 垂直方向中央 */
  font-weight: 600;
  background-color: #f7f7f7;
}
/* 右端に表示 */
.header-cta-double.inline-style {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap; /* 折り返し禁止 */
  justify-content: flex-end; /* ← 右寄せ */
  background-color: #f7f7f7;
}
/* ヘッダー内用に小さめサイズ */
.header-cta-double .cta-box.small {
  padding: 10px 14px;
  border: 1px solid #e50038;
  border-radius: 12px;
  text-align: center;
  max-width: 260px;
  position: relative;
  background-color: #fff;
}

.header-cta-double .cta-box.small .cta-label-black {
  font-size: 10px;
  padding: 2px 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  background: #111;
  color: #fff;
  font-family: josefin Sans;
  height: 20px;
  position: absolute;
  top:-10px;
  left: 50%;                 /* 親の幅のちょうど真ん中に基点を持ってくる */
  transform: translateX(-50%); /* 自分自身の幅の半分だけ左に戻す → 中央揃え */}

.cta-label-black::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 57%;
  border-style: solid;
  border-width: 10px 5px 0 0;
  border-color: #000000 transparent transparent;
  translate: -50% 100%;
  transform: skew(-24deg);
  transform-origin: top;
}


.header-cta-double .cta-box.small .cta-text {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;

}

.header-cta-double .cta-box.small .cta-btn {
  font-size: 12px;
  padding: 6px 12px;
  min-width: 180px;
}

/* スマホでは非表示なども可能（任意） */
@media (max-width: 768px) {
  .header-cta-double.inline-style {
    display: none;
  }
}

.header-nav {
  width: 30%;
  display: flex;
  justify-content: 
  space-around;
  padding-left: 100px;
  font-weight: 600;
}

.header-nav a {
  position: relative;
  padding-bottom: 3px;
  font-size: 16px;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width .2s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 8px;
}
.logo-img {
  height: 65px;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 17px;
  color: #111;
  white-space: nowrap;
  font-family: 'Josefin Sans', system-ui, sans-serif;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background-color: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary-light);
}

/* ========== HERO ========== */
.hero {
  border-bottom: 4px solid var(--color-primary);
  padding: 30px 0 30px;
}
.hero-text {
  width: 482px;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.0fr) minmax(0, 1.0fr);
  /* gap: 20px; */
  align-items: center;
  width: 1024px;
  margin: 0 auto;
}
.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 180%;
  width: 100%;
  height: auto;
  display: flex;
}

.hero-copy-small {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.hero-title {
  font-size: 48px;
  line-height: 1.4;
  margin: 4px 0 10px;
}

.highlight {
  background: linear-gradient(transparent 60%, #ffe4ec 60%);
  font-weight: 700;
}

.hero-lead {
  font-size: 16px;
  color: #000;
  margin: 8px 0 8px;
  font-weight: 500;
}

.hero-sub {
  font-size: 13px;
  margin-top: 12px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hero-cta-note {
  font-size: 11px;
  color: #777;
}

.hero-side {
  padding: 10px;
}

.hero-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  font-size: 13px;
}

.hero-side-heading {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.hero-side-text {
  margin: 0;
  font-size: 13px;
}
.nayami {
  max-width: var(--max-width) ;
  margin: 50px auto 50px auto;
}
.nayami-sub {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.hero-sub {
  width: 580px;
  background-color: #666666;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  border-radius: 9999px;
  position: relative;
  line-height: 2.75;
  height: 55px;
  text-align: center;
}
.hero-sub::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #666666 transparent transparent;
  translate: -50% 100%;
}

.animaru {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  gap: 50px;
}

.animaru-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 190px;
}

.animaru-img img{
  width: auto;
  object-fit: contain;
}
/*上の段*/
.animaru.upper-row {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto 20px;
}
/*下の段*/
.animaru.lower-row {
  display: flex;
  justify-content: center;
  gap: 60px; /* ワニとヘビの間隔調整 */
}

/*動物の上の吹き出し */
.animaru-black {
  width: 190px;
  display: inline-block;
  background-color: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  /* padding: 5px 5px; */
  margin-bottom: 20px;
  position: relative;
  line-height: 3.0;
  height: 50px;
  text-align: center;
}
/*吹き出しの三角 */
.animaru-black::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 57%;
  border-style: solid;
  border-width: 15px 8px 0 0;
  border-color: #000000 transparent transparent;
  translate: -50% 100%;
  transform: skew(-24deg);
  transform-origin: top;
}

/* 画面いっぱいの赤帯メッセージ */
.auto-banner {
  width: 100%;
  height: 90px;
  background-color: var(--color-primary);
  color: #fff;
  padding: 14px 0;
  font-size: 28px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jidouka {
  font-size: 30px;
  font-weight: 500;
}


/* ========== SECTIONS 共通 ========== */
/* section {
  /* padding: 56px 0; */


.section-tag {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Josefin Sans', system-ui, sans-serif;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin: 50px;
}

/* ========== FEATURES ========== */
.features {
  background-color: var(--color-gray);
}
.mark {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff; 
  text-align: center;
  line-height: 38px;  
  margin-right: 10px;
}

.point {
  position: relative;
}

.point2 {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: auto;
}
.feature-grid img {
  width: 80%;
  margin: 50px auto 10px auto;
}

.feature-card1 {
  font-size: 13px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  background-color: rgba(246, 246, 246, 0.7);
  width: 1000px;
  text-align: center;
  /* background-color: #fff; */
}

.feature-card2 {
  font-size: 13px;
}

.feature-card h4 {
  margin: 0 0 4px;
  font-size: 13px;
  color: #999;
}
/*ポイント題名*/
.feature-heading {
  margin: 0 0 8px;
  font-size: 24px;
  color: #000000;
  font-weight: 800;
  text-align: center; 
  /* text-shadow: 3px 3px 20px #fff,
  -3px 3px 20px #fff ,
  3px -3px 20px #fff ,
  -3px -3px 20px #fff ; */


}
/*説明文字*/
.feature-heading1 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 10px 0 10px 0;
  text-align: center;
  /* text-shadow: 3px 3px 20px #fff,
  -3px 3px 20px #fff ,
  3px -3px 20px #fff ,
  -3px -3px 20px #fff ; */
}
.feature-heading2 {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 10px 0;
  text-align: center;
  width: 600px;
} 

/* ========== CAMPAIGN ========== */
.campaign {
  background-color: #e5003800;
  color: #000000;
  text-align: center;
  padding: 30px;
}
.campaign-wrapper {
  background: var(--color-primary);
  height: 120px;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 50px;
  overflow: visible; /* ← はみ出しを許可 */
}

/* キャンペーン帯の下向き三角 */
.campaign-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;              /* 三角の高さ分だけ下に出す */
  transform: translateX(-50%);
  border-width: 20px 18px 0 18px;  /* 高さ・幅はお好みで調整 */
  border-style: solid;
  border-color: var(--color-primary) transparent transparent transparent;
}

/* 三角とその下のテキストがかぶらないように少し余白を足す */
.campaign-wrapper {
  margin-bottom: 30px;  /* 既存ルールにこの1行を追加でもOK */
}



.campaign-box {
  width: 423px;
  background: #fff;
  padding: 15px 10px 0 10px;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  z-index: 2;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
  height: 55px;
  vertical-align: bottom;
}

/* PC画像をボックスの外に配置し「浮かせる」 */
.campaign-pc-wrap {
  position: relative;
  z-index: 1;
}

.campaign-pc {
  width: 380px;
  height: auto;
  object-fit: contain;
  margin-left: 50px; /* 左方向にはみ出す */
  position: absolute;
  height: auto;
  transform: translate(50%, -50%);
  z-index: 1;
  top: 50%;
}


.text-normal {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  height: 87%;
}

.text-big {
  font-size: 38px;
  font-weight: 700;
  color: #111;
}

.text30 {
  position:absolute;
  left:20%;                   /* 先着 と 社 の間に来る位置。お好みで調整 */
  top:47%;                      /* 真ん中基準にして… */
  transform:translateY(-60%);   /* 少し上に飛び出させる */
  font-size:70px;
  z-index:2; 
  width: 100px;                   /* 白帯より上 */
}

.campaign-title {
  font-size: 36px;
  margin: 0 0 8px;
  font-weight:bolder;
}

.campaign-lead {
  font-size: 28px;
  margin: 0 0 20px;
  font-weight: 800;
}

.campaign-text {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 700;
  font-family: Josefin Sans;
  letter-spacing: -1px;
}

.campaign-text2 {
  font-size: 28px;
  font-weight: bolder;
  letter-spacing: -3px;
}
.num1 {
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
}
.num2 {
  font-size: 54px;
  font-weight: 700;
  font-family: Josefin Sans;
}

.text3 {
  font-size: 36px;
  font-family: HGTE角ゴシック;
  font-weight: bold;
}
.chance {
  font-size: 47px;
  font-weight: bolder;
  font-family: HGTE角ゴシックU;
}

.campaign-note {
  font-size: 12px;
  margin: 0 0 18px;
}

.campaign-ctas {
  justify-content: center;
}

/* キャンペーンの黒吹き出し */
.label-bubble {
  font-size: 24px;
  font-family: josefin Sans;
  margin-bottom: 4px;
  align-items: baseline;
  background: #111;
  color: #fff;
  position: absolute;
  top: -67%;
  left: 75%;
  transform: translateX(-50%);
  height: 40px;
  width: 220px;
  text-align: center;
}
/* 黒吹き出しの三角部分*/
.label-bubble::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 15px 15px 0 0;
  border-style: solid;
  border-color: #000 transparent transparent transparent;  
} 


/* ================= 残りあと◯社 バッジ ================= */
.remain-badge {
  width: 140px;
  height: 110px;
  border: 2px solid var(--color-primary);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto ;
  background: #fff;
  position: relative;
}

/* 上の赤い pill  */
.remain-label {
  background: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  position: absolute;
  top: -10px;
}

/* 大きい数字 */
.remain-number {
  font-size: 80px;
  font-weight: 600;
  color: #000;
  margin-top: 30px;
  line-height: 1;
  font-family: Josefin Sans;
}

/* "社" の部分 */
.remain-unit {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  margin-left: 4px;
}



/* ================= PRICE COMPARISON ================= */
.price-compare {
  padding: 10px 0;
  background: #ffffff;
}

.price-compare-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 10px 0;
  font-family: Josefin Sans;
}

.price-box {
  padding: 0 10px;
  width: 500px;
}

.price-title {
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: Josefin Sans;
  text-align: center;

}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
  font-size: 16px;
  padding: 30px 0 30px 0;
}

/* 「初期」の行の上に空間 */
.price-table tr:first-child th,
.price-table tr:first-child td {
  padding-top: 20px;
}

/* 「合計」の行の下に空間 */
.price-table tr:last-child th,
.price-table tr:last-child td {
  padding-bottom: 20px;
}


/*初期から合計*/
.price-label-discount {
  font-size: 26px;
  text-align: left;
  font-weight: 900;
  font-family: HGTE角ゴシック;
  padding: 5px 0 5px 60px;
}

/*値段左*/
.price-value-discount {
  font-size: 22px;
  padding: 5px 60px 5px 0;
  font-weight: 900;
  text-align: right;
  width: 70%;
}

/*スターターからプロフェッショナル*/
.price-label-regular {
  font-size: 25px;
  text-align: left;
  font-weight: 900;
  font-family: HGTE角ゴシックU;
  padding: 5px 0 5px 40px;
}
/*値段右*/
.price-value-regular{
  font-size: 22px;
  padding: 5px 45px 5px 0;
  font-weight: 800;
  text-align: right;
  width: 35%;
}

.price-bold {
  font-weight: 900;
  font-size: 28px;
  width: 30%;
}
/* ================= CTA BAND (ダブルボタン帯) ================= */
/* 赤帯（高さ固定） */
.cta-band {
  background-color: var(--color-primary);
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center; /* ここで上下中央に揃える */
}

.cta-band-inner {
  max-width: 45%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.cta-card {
  background-color: #fff;
  border-radius: 9px;
  padding: 1px 1px 1px;
  text-align: center;
  border: 2px solid #f7f7f7;
  width: 300px;
  height: 90px;
}
.cta-area {
  padding: 10px 14px;
  border: 1px solid #e50038;
  border-radius: 12px;
  position: relative;
  height: 85px;
  text-align: center;
}
.cta-label {
  font-size: 10px;
  font-family: Josefin Sans;
  font-weight: 600;
  padding: 2px 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  background: #111;
  color: #fff;
  height: 20px;
  position: absolute;
  top:-10px;
  left: 50%;                 /* 親の幅のちょうど真ん中に基点を持ってくる */
  transform: translateX(-50%); /* 自分自身の幅の半分だけ左に戻す → 中央揃え */
  letter-spacing: -0.5px;
}
.cta-label::after {
    content: "";
  position: absolute;
  bottom: 0;
  left: 57%;
  border-style: solid;
  border-width: 6px 5px 0 0;
  border-color: #000000 transparent transparent;
  translate: -50% 100%;
  transform: skew(-24deg);
  transform-origin: top;
}

.cta-box {
  border: 1px solid #e50038;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  max-width: 320px;
  flex: 1;
  min-width: 280px;
}

.cta-text {
  font-size: 13px;
  font-weight: 900;
  font-family: HGTE角ゴシック;
  margin: 6px 0 5px;
}

.cta-btn {
  min-width: 200px;
  font-size: 16px;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 999px;
}
.migi {
  font-size: 12px;
  font-weight: 100;
}

/* LINEボタンは赤背景に白文字で強調 */
.line-style {
  background-color: #e50038;
  color: #fff;
}
.header-logo-group {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 260px;
  margin-left: 30px;
}


/* スマホ時は縦並び */
@media (max-width: 768px) {
  .cta-band-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ================ PRICING ================ */

.plan-comparison {
  background: url("img/back.png");
  background-repeat: no-repeat; /* 画像を繰り返さない */
  background-size: 65%;
  background-position: 86% 45%;
  background-color: #f7f7f7; 
  height: 1300px;
  width: 1200px;
  margin: auto;
}

.comparison-grid {
  width: 1096spx;
  height: 1300px;
  display: flex;
  position: relative;
  left: 65px;
  gap: 10px;
}

.plan-box {
  display: flex;
  width: 300px;
  gap: 20px;
}
/*左側1*/
.box1 {
  width: 100px;
}

.function p {
  font-size: 17px;
  font-family: Josefin Sans;
  font-weight: 600;
  color: #4d4d4d;
  background-color: #fff;
  width: 120px;
  height: 40px;
  border-radius: 20px;
  margin: 15px auto;
  text-align: center;
  padding-top: 7px;
  position: relative;
  left:-30px;
  top:512px;
}


/*左側2*/
.box2 {
  width: 180px;
  text-align: center;
  position: relative;
  left: -60px;
  top: 325px;
}

.box-item1 {
  list-style-type: none;
  font-size: 16px;
  font-family: Noto Sans JP;
  font-weight: 800;
  color: #4d4d4d;
  margin: 0;
}


.box-item2 {
  list-style-type: none;
  font-size: 16px;
  font-family: Noto Sans JP;
  font-weight: 800;
  color: #4d4d4d;
  margin-top: 50px;
  position: relative;
  top: 31px;

}

.box-item1 li {
  border-bottom: 2px solid #b3b3b3;
  width: 170px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
}

.box-item2 li {
  border-bottom: 2px solid #b3b3b3;
  width: 170px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;

}


/*赤枠上*/
.ulli1 {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/*赤枠下*/
.ulli2 {
  list-style-type: none;
  padding: 80px 0 20px 0;
  margin: 0;
}

/*赤枠内リスト上*/
.ulli1 li {
  border-top: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  width: 220px;
  height: 75px;
  background-color: #fff;
  margin: auto;  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: Arial;
  font-weight: 700;
  color: #4d4d4d;
}

/*赤枠内リスト下*/
.ulli2 li {
  border-top: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  width: 220px;
  height: 75px;
  background-color: #fff;
  margin: auto;  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: Arial;
  font-weight: 700;
  color: #4d4d4d;

}

.user {
  font-size: 12px;
  font-weight: 600;
  color: #4d4d4d;
  margin: auto;
  padding: 5px 0;
  text-align: center;
}

.amount {
  font-size: 27px;
  font-family: josefin Sans;
  font-weight: 700;
  padding: 0;
  margin: auto;
  text-align: center;
}

.plan-box.recommended {
  width: 786px;
  display: flex;
  gap: 12px;
  position: relative;
  top: 50px;
  left: -11px;
  text-align: center;
}

.starter {
  width: 250px;
  position: relative;
  left: 0px;
}

.standard {
  width: 250px;
  position: relative;
  left: 2px;
}

.standard h1 {
  color: #b7451f;
}

.plan-sub {
  position: relative;
  top: -10px;
}

.professional {
  width: 250px;
  position: relative;
  left: 1px;
}
.plan-title {
  font-size: 16px;
  font-family: Josefin Sans;
  background-color: #fff;
  width: 160px;
  height: 20px;
  border-radius: 999px;
  text-align: center;
  margin: auto;
  vertical-align: middle;
  padding-top: 4px;
  font-style: italic;
}

.Target {
  font-size: 14px;
  font-family: Noto Sans JP;
  font-weight: 600;
  margin: 5px 0 30px 0;
  text-align: center;
}

.Registration {
  font-size: 15px;
  font-family: Josefin Sans;
  color: #fff;
  background-color:  var(--color-primary);
  width: 210px;
  height: 40px;
  border-radius: 20px;
  text-align: center;
  margin: 15px auto;
  vertical-align: middle;
  padding-top: 9px;
  padding-left: 30px;
}
.plan-price {
  font-size: 20px;
}

.en {
  font-size: 16px;
}


/* ========== BENEFITS ========== */
.benefits {
  background-color: var(--color-gray);
}

.benefit-target {
  text-align: center;
  font-size: 13px;
  margin-top: 0;
  margin-bottom: 10px;
}

.benefit-quote {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 12px;
}

.benefit-text {
  font-size: 13px;
  max-width: 840px;
  margin: 0 auto 12px;
  text-align: left;
}

/* ========== FAQ ========== */
.faq {
  background-color: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

details {
  border-radius: var(--radius-md);
  border: 1px solid #eee;
  background-color: #fff;
  padding: 10px 14px;
}

summary {
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] {
  border-color: var(--color-primary-light);
  background-color: #fff9fb;
}

.faq-answer {
  font-size: 13px;
  margin-top: 6px;
}

.benefit-cards {
  max-width: 100%;
  margin:  auto; 
  display: flex;
  justify-content: center;
  gap: 24px;   /* カード間の余白 */  
}

.benefit-card {
  border: 1px solid #a94442;
  padding: 20px 18px 0 18px;
  background-color: #fff;
  position: relative;
  margin-top: 70px;
  margin-bottom: 80px;
  width: 580px;
  height: 200px;
}

.benefit-label img{
  padding: 4px 14px;
  border-radius: 999px;
  position: absolute;
  top: -1px;
  left: 16%;
  transform: translateY(-50%);
}
.benefit-text {
  font-size: 15px;
  font-family: Noto Sans JP;
  font-weight: 600;
  line-height: 1.8;
  margin: 24px 8px 8px 15px;
  color: #333;
  letter-spacing: -1px;
}

.benefit-caption {
  margin: auto;
  text-align: center;
  position: relative;
  top: 25px;
  left: -1%;
}


.benefit-caption2 {
  padding: 22px 0 0 10px ;
  margin: auto;
  text-align: center;
  position: relative;
  top: 3px;
  left: -1%;

}

.QA {
  max-width: var(--max-width);
  height: 500px;
}
.faq-vertical-container {
  width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
  background: #fff;
}

.faq-vertical-item {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.faq-vertical-item img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

.faq-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 100%;
  box-sizing: border-box;
  font-size: 16px;
}

.faq-q-box {
  width: 55%;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.faq-a-box {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/* Qの文字 */
.faq-q {
  font-size: 23px;
  font-family: Noto Sans JP;
  font-weight: 600;
  width: 400px;
  margin: 0;
  position: absolute;
  top: 20px;
  left: 86px;
  letter-spacing: -1.5px;
}
/* Aの文字一番上 */
.faq-a1 {
  font-size: 20px;
  font-family:  Noto Sans JP;
  font-weight: 600;
  width: 560px;
  margin: 0;
  position: absolute;
  top: 53px;
  left: 590px;
  letter-spacing: -2px;
}
/* Aの文字２．３番目 */
.faq-a2 {
  font-size: 19px;
  font-family:  Noto Sans JP;
  font-weight: 600;
  width: 560px;
  margin: 0;
  position: absolute;
  top: 40px;
  left: 590px;
  letter-spacing: -1px;
}
/* スマホ対応 */
@media (max-width: 640px) {
  .faq-question,
  .faq-answer {
    font-size: 14px;
  }
}
.header-cta-double {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 20px 16px;
  background-color: #fafafa;
  flex-wrap: wrap;
}

/* ========== BOTTOM CTA ========== */
.bottom-main {
  width: 1200px;
  height: 777px;
  margin: auto;
}

.gradient-underline {
  font-size: 45px;
  position: relative;
  font-family: Arial;
  font-weight: 900;
  text-align: center;
  width: 1000px;
  margin-top: 80px;
  margin-bottom: 150px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    #e91e63 0%,
    #d40037 30%,
    #a0002a 60%,
    transparent 100%
  );
}

.bottom-sub {
  text-align: center;
  font-size: 38px;
  font-family: Arial;
  font-weight: 900;
  margin: 0 0 14px;
}

.bottom-version {
  font-family: Arial;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
}

.bottom-explanation {
  font-size: 20px;
  font-family: Arial;
  font-weight: 500;
  text-align: center;
}
.bottom-cta p {
  justify-content: center;
  font-size: 20px;
  font-family: Arial;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}


/*AI自動化の枠関連配置など*/
.auto-box-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
  width: 800px;
}
/*グレーの枠の中*/
.auto-box {
  position: relative;
  width: 700px;
  height: 263px;
  max-width: 980px;
  background: #ffffff;
  border: 2px solid #b3b3b3;
  border-radius: 28px;
  padding: 28px 80px 15px;
}

/* 上部のグレー帯タイトル */
.auto-box-title {
  width: 380px;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #b3b3b3;
  color: #ffffff;
  font-size: 23px;
  font-weight: 500;
  padding: 8px 40px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-align: center;
}

/* リスト */
.auto-box-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

/*リスト文字*/
.auto-box-list li {
  position: relative;
  font-size: 22px;
  font-family: ArialS;
  font-weight: 500;
  line-height: 1.8;
  padding-left: 28px;
}

/* 赤丸 */
.auto-box-list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
}

.bottom-note {
  text-align: center;
  color: #ffe4ec;
}

/* ========== FOOTER ========== */
.site-footer {
  background-color: #e50038;
  padding: 15px 0;
  font-size: 12px;
  height: 140px;
}

.footer-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  color: #ffffff;
  width: 900px;
  margin: auto;
}

.footer-left {
  height: 60px;
  margin: auto;
}

.footer-logo p {
  font-size: 24px;
  margin: auto;
  width: 680px;
}
/* ===============================
   FOOTER ロゴ配置
================================ */

.footer-logo-img {
  height: 90spx;     /* ロゴの見た目サイズ */
  width: auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }


  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .hero-side {
    padding-top: 0;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  section {
    padding: 42px 0;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .header-main {
    flex-wrap: wrap;
  }

  .header-cta {
    margin-left: auto;
  }

  .bottom-list {
    font-size: 12px;
  }
}
