/* =============================================
   Base Reset
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #111;
  background-color: #DCEDFC;
  -webkit-text-size-adjust: 100%;
}

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

ul, ol {
  list-style: none;
}

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

/* =============================================
   Variables
   ============================================= */
:root {
  --color-primary: #b5015c;
  --color-brown: #75432d;
  --color-green: #4bb960;
  --color-green2: #75b320;
  --color-navy: #0b3d5f;
  --color-cream: #fffdec;
  --color-cream-light: #f9f7e8;
  --color-red: #ff5858;
  --color-ink: #2b2b2b;
  --shadow-card: 0 0 10px rgba(103, 92, 75, 0.25);
  --radius-card: 16px;
  --radius-btn: 90px;
}

/* =============================================
   Layout
   ============================================= */
#lp-sp {
  width: 100%;
  overflow: hidden;
}

.container {
  padding: 0 20px;
}

/* =============================================
   共通見出し
   ============================================= */
.heading-en {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.72px;
  color: var(--color-primary);
  text-align: center;
}

.heading-ja {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--color-brown);
  text-align: center;
}

/* =============================================
   共通ボタン
   ============================================= */
.button-main,
.button-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: var(--radius-btn);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  position: relative;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.button-main {
  background: var(--color-primary);
  color: #fff;
}

.button-sub {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.button-main::after,
.button-sub::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
}

.button-main::after {
  color: #fff;
}

.button-sub::after {
  color: var(--color-primary);
}

/* =============================================
   メインビジュアル
   ============================================= */
.mainvisual {
  width: 100%;
}

.mv-visual {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   CTA（上・下共通）
   ============================================= */
.cta-top {
  background-image: url('https://image.campaigns.jp/raisins2026/bg_cta.jpg');
  background-size: cover;
  background-position: center;
  padding: 20px;
}

.cta-top .container,
.cta-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
}

.cta-bottom {
  padding: 10px 20px 20px;
}

/* =============================================
   景品セクション
   ============================================= */
.prize {
  background-color: var(--color-cream);
}

.prize .container {
  padding-top: 50px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.prize-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.prize-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  align-items: center;
}

.prize-item {
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* 賞ラベル */
.prize-label {
  position: absolute;
  top: -20px;
  left: 7.5px;
  width: 60px;
  height: 58px;
  z-index: 2;
}

.prize-label img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* A賞・B賞画像 */
.prize-img-wrap--ab {
  position: relative;
  width: 310px;
}

.prize-img-wrap--ab .prize-img {
  width: 100%;
  display: block;
}

/* 景品テキスト */
.prize-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
  text-align: center;
  line-height: 1.4;
}

.prize-s .prize-name {
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prize-winners {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-green);
  text-align: center;
}

.prize-detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  background: var(--color-navy);
  border-radius: 60px;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

/* 景品注釈 */
.prize-note {
  font-size: 12px;
  line-height: 1.8;
  color: #111;
  width: 350px;
}

.prize-note a {
  color: var(--color-navy);
  text-decoration: underline;
}

/* =============================================
   対象商品セクション
   ============================================= */
.products {
  position: relative;
  background-image: url('https://image.campaigns.jp/raisins2026/bg_sec02.jpg');
  background-size: cover;
  background-position: center;
  min-height: 267px;
}

.products .container {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 41px;
}

.products-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.products-heading .heading-en {
  text-align: left;
}

.products-heading .heading-ja {
  text-align: left;
}

.products-box {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 26px 16px;
}

.products-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  color: #111;
  text-align: center;
}

/* =============================================
   カリフォルニア・レーズンの特徴セクション
   ============================================= */
.original {
  position: relative;
  background-image: url('https://image.campaigns.jp/raisins2026/bg_sec03_1.jpg');
  background-size: cover;
  background-position: center top;
  background-color: #fff;
}

.original .container {
  position: relative;
  padding-top: 160px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ヒーロー画像 */
.original-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 261px;
  object-fit: cover;
  object-position: bottom;
  z-index: 0;
}

/* 見出し */
.original-heading {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(43, 23, 23, 0.3);
  white-space: nowrap;
}

/* 特徴カード共通 */
.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 0 10px rgba(103, 92, 75, 0.25);
  position: relative;
  z-index: 1;
}

.feature-card-01 {
  padding: 31px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.feature-catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  color: var(--color-primary);
}

.feature-catch--green {
  color: var(--color-green2);
  min-width: 100%;
  white-space: nowrap;
}

.feature-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #363636;
}

/* feature-card-02 */
.feature-card-02 {
  position: relative;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  overflow: visible;
  min-height: 364px;
}

.feature-card-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 180px;
  position: relative;
  z-index: 1;
}

.feature-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: #363636;
}

.feature-grape {
  position: absolute;
  left: 172px;
  top: 81px;
  width: 205px;
  height: 273px;
  object-fit: contain;
  z-index: 0;
}

/* =============================================
   栄養素セクション
   ============================================= */
.nutrition {
  position: relative;
  background-image: url('https://image.campaigns.jp/raisins2026/bg_sec03_2.jpg');
  background-size: cover;
  background-position: center;
  margin-left: -20px;
  margin-right: -20px;
  padding: 23px 13px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nutrition-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.nutrition-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 350px;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.nutrition-item {
  background: #fff;
  border-radius: var(--radius-card);
  width: 170px;
  padding: 20px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}

.nutrition-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nutrition-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.nutrition-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #231815;
  text-align: center;
  line-height: 1.5;
  width: 100%;
}

.nutrition-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #757575;
  text-align: center;
  line-height: 1.5;
  width: 100%;
}

.nutrition-note {
  background: rgba(255, 255, 255, 0.8);
  width: calc(100% + 26px);
  margin-left: -13px;
  margin-right: -13px;
  padding: 17px 28px;
}

.nutrition-note p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #2b2b2b;
  text-align: center;
}

/* =============================================
   応募方法セクション
   ============================================= */
.how-to-apply {
  position: relative;
  background-image: url('https://image.campaigns.jp/raisins2026/bg_sec04.jpg');
  background-size: cover;
  background-position: center;
  background-color: #fff;
}

.how-to-apply > .container {
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

/* STEPリスト */
.steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

.step {
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 20px;
  background-image: url('https://image.campaigns.jp/raisins2026/arrow-next.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.step-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.step-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-green);
  letter-spacing: 0.04em;
}

.step-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-green);
  text-align: center;
}

.step-img {
  max-width: 200px;
  height: auto;
  display: block;
}

.step-img--form {
  max-width: 110px;
}

.step-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  width: 100%;
  letter-spacing: 0.02em;
}


/* =============================================
   レシート撮影時のご注意セクション
   ============================================= */
.receipt-notes {
  background-color: var(--color-cream-light);
}

.receipt-notes .container {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.receipt-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.receipt-heading .heading-ja {
  font-size: 28px;
}

.receipt-content {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.receipt-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-ink);
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* レシート画像 */
.receipt-img {
  width: 100%;
  border-radius: 4px;
  background-color: rgba(0, 182, 205, 0.2);
  display: block;
}

/* 注意チェックリスト */
.receipt-checklist {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
}

.receipt-check-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.receipt-check-item::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url('https://image.campaigns.jp/raisins2026/icon_check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.receipt-check-item p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-ink);
  letter-spacing: 0.02em;
}

.red {
  color: var(--color-red);
}

/* NG例リスト */
.receipt-ng-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
  width: 300px;
}

.receipt-ng-item {
  width: 142px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.receipt-ng-item img {
  width: 142px;
  height: 142px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.receipt-ng-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.8;
  color: var(--color-ink);
  text-align: center;
}

/* =============================================
   応募要項セクション
   ============================================= */
.requirements {
  position: relative;
  background-image: url('https://image.campaigns.jp/raisins2026/bg_sec06.jpg');
  background-size: cover;
  background-position: center;
  min-height: 647px;
}

.requirements .container {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 43px;
}

.requirements-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

/* スクロールボックス (div/scrollbarはCSSで実装) */
.requirements-box-wrapper {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 0 10px rgba(103, 92, 75, 0.25);
  overflow: hidden;
}

.requirements-box {
  box-sizing: border-box;
  width: 100%;
  height: 470px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #c0c0c0 #f1f1f1;
}

.requirements-content {
  padding-right: 20px;
}

.requirements-box::-webkit-scrollbar {
  width: 7px;
}

.requirements-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 100px;
}

.requirements-box::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 100px;
}

.req-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.req-block:last-child {
  margin-bottom: 0;
}

.req-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.02em;
  padding-bottom: 8px;
  border-bottom: 1px solid #c5c2bb;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.req-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.req-body p,
.req-body li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #111;
  letter-spacing: 0.02em;
}

.req-body ul {
  list-style: disc;
  padding-left: 21px;
}

.req-body a {
  text-decoration: underline;
  color: var(--color-navy);
}

/* =============================================
   よくある質問セクション
   ============================================= */
.faq {
  background-color: var(--color-cream-light);
}

.faq .container {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.faq-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-item {
  border-radius: var(--radius-card);
  box-shadow: 0 5px 7.5px rgba(0, 0, 0, 0.09);
  overflow: hidden;
}

.faq-question {
  background: #fff;
  border-bottom: 1px solid #e9e8e5;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-q-label {
  font-family: 'Aoboshi One', sans-serif;
  font-size: 32px;
  color: var(--color-green2);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  line-height: 1;
}

.faq-q-text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-green2);
  letter-spacing: 0.02em;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--color-green2);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
  transition: color 0.2s;
}

.faq-question.active::after {
  content: '−';
}

.faq-answer {
  background: #fff;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-question.active + .faq-answer {
  padding: 20px;
}

.faq-a-label {
  font-family: 'Aoboshi One', sans-serif;
  font-size: 32px;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  line-height: 1;
}

.faq-a-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-a-text p,
.faq-a-text li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #111;
  letter-spacing: 0.02em;
}

.faq-a-text ul {
  list-style: disc;
  padding-left: 21px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-a-text a {
  color: var(--color-navy);
  text-decoration: underline;
  word-break: break-all;
}

/* =============================================
   お問い合わせセクション
   ============================================= */
.contact {
  background-color: #fbfbfb;
}

.contact .container {
  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 12.5px;
  padding-right: 12.5px;
  display: flex;
  flex-direction: column;
  gap: 37px;
  align-items: center;
}

.contact-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.contact-content {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 20px;
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-campaign-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #444;
  text-align: center;
  letter-spacing: -0.05em;
}

.mail-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-green2);
  border-radius: 10px;
  padding: 21px 50px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  cursor: pointer;
}

.contact-mail,
.contact-period {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  color: #444;
  word-break: break-all;
}

.contact-mail a {
  text-decoration: underline;
  font-weight: 700;
}

.contact-hours {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-ink);
  letter-spacing: 0.03em;
}

/* =============================================
   フッター
   ============================================= */
.footer {
  background-color: var(--color-brown);
  padding: 19px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  text-align: center;
  line-height: 15px;
}

/* =============================================
   PC Nav & CTA (hidden on SP)
   ============================================= */
.pc-nav,
.pc-cta { display: none; }

/* =============================================
   Responsive (PC: min-width 768px)
   ============================================= */
@media (min-width: 768px) {
  a:hover {
    opacity: .6;
  }

  body {
    background-image: url('https://image.campaigns.jp/raisins2026/bg_pc.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  #lp-sp {
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================
   PC Nav & CTA (min-width 1000px / min-height 500px)
   ============================================= */
@media (min-width: 1000px) and (min-height: 500px) {
  /* --- PC Left Nav --- */
  .pc-nav {
    display: block;
    position: fixed;
    left: calc(50% - 195px - 211px - 60px);
    top: 50%;
    transform: translateY(-50%);
    width: 211px;
    z-index: 100;
  }

  .pc-nav ul {
    display: flex;
    flex-direction: column;
    gap: 37px;
  }

  .pc-nav a {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #B5015C;
    text-decoration: none;
    letter-spacing: 0.07em;
    text-shadow: 0 0 8px rgba(255, 255, 255, 1);
    line-height: 1.5;
    transition: opacity 0.2s;
  }

  .pc-nav a:hover {
    opacity: 0.8;
  }

  /* --- PC Right Fixed CTA --- */
  .pc-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    right: calc(50% - 195px - 100px - 28px);
    bottom: 5%;
    width: 100px;
    z-index: 100;
  }

  .pc-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 5px rgba(103, 92, 75, 0.25);
  }

  .pc-cta-btn--main {
    background-color: var(--color-primary);
  }

  .pc-cta-btn--sub {
    background-color: #fff;
    border: 3px solid var(--color-primary);
  }

  .pc-cta-main-text {
    display: block;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.07em;
    color: #fff;
    text-align: center;
  }

  .pc-cta-sub-text {
    display: block;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.08em;
    color: var(--color-primary);
    text-align: center;
  }

  .pc-cta-btn::after {
    content: '→';
    font-size: 14px;
    line-height: 1;
    margin-top: 4px;
  }

  .pc-cta-btn--main::after {
    color: #fff;
  }

  .pc-cta-btn--sub::after {
    color: var(--color-primary);
  }
}
