@charset "UTF-8";

/* --- Variables --- */
:root {
  --bg-color: #111111;
  --text-color: #ffffff;
  --accent-gold: #d4af37; /* 唐揚げの金色イメージ */
  --accent-red: #e60012;
  --font-base: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  --font-mincho: "dnp-shuei-nshogomincho-std", "游明朝体", "Yu Mincho", serif;
  --font-impact: Impact, sans-serif;
  --section-spacing: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-base);
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

p{
  text-wrap: pretty;
}

/* --- Font Utility Classes --- */
.font-mincho-strong {
  font-family: "dnp-shuei-nshogomincho-std", sans-serif; /* Typekit fallback handled by script */
  font-weight: 700;
}
.font-gothic {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
.font-mincho {
  font-family: "游明朝体", "Yu Mincho", serif;
}
.font-impact {
  font-family: Impact, sans-serif;
}

.font-yellow{
  color: #F8D73D;
}

.font-red{
  color: #A70005;
}

.font-red-light{
  color: #EA0A11;
}

/* --- Loading Overlay --- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__content {
  text-align: center;
  position: relative;
}
.loader__image {
  width: 200px;
  height: 200px;
  margin: -24px auto 60px;
  position: relative;
  opacity: 0;               /* 最初は透明 */
  animation: logoFadeIn 0.2s ease-out forwards;
  animation-delay: 0.4s;    /* ← ぐるぐる文字より少し遅れて出てくる */
}
.loader__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-gold); /* 画像がない時のダミー */
}
.loader__text {
  font-size: 1.5rem;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
}
.loader__logo {
  margin-top: 10px;
  font-size: 2rem;
  width: 80%;
  opacity: 0;               /* 最初は透明 */
  animation: logoFadeIn 0.8s ease-out forwards;
  animation-delay: 0.4s;    /* ← ぐるぐる文字より少し遅れて出てくる */
}

@keyframes logoFadeIn {
  0%   { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0);  }
}

.loader__arc-text {
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.loader__arc-text {
  position: absolute;
  top: 0px;
  left: 50%;
  width: 170px;
  height: 170px;
  transform: translateX(-50%);
  animation: rotateCircle 10s linear infinite;
}

.loader__arc-text span {
  position: absolute;
  font-size: 1.0rem;
  color: var(--accent-gold);
  font-weight: bold;
  transform-origin: bottom center; 
  margin: 0 4px; /* ← この値を増やすと字間が広がる */
}

/* 文字の角度（いい感じの弧） */
.loader__arc-text span:nth-child(1) { transform: rotate(-20deg) translateY(-60px) translateX(-32px); }
.loader__arc-text span:nth-child(2) { transform: rotate(-14deg) translateY(-60px) translateX(-24px); }
.loader__arc-text span:nth-child(3) { transform: rotate(-8deg)  translateY(-60px) translateX(-16px); }
.loader__arc-text span:nth-child(4) { transform: rotate(-2deg)  translateY(-60px) translateX(-8px); }
.loader__arc-text span:nth-child(5) { transform: rotate(2deg)   translateY(-60px) translateX(0px); }
.loader__arc-text span:nth-child(6) { transform: rotate(8deg)   translateY(-60px) translateX(8px); }
.loader__arc-text span:nth-child(7) { transform: rotate(14deg)  translateY(-60px) translateX(16px); }
.loader__arc-text span:nth-child(8) { transform: rotate(20deg)  translateY(-60px) translateX(24px); }



/* animation */

/* 文字を段階的にフェードさせる（中間スピード） */
.loader__arc-text span {
  animation: arcFade 2.4s ease-in-out infinite;
}

/* 遅延（中間レベル：0.15秒刻み） */
.loader__arc-text span:nth-child(1) { animation-delay: 0s;    }
.loader__arc-text span:nth-child(2) { animation-delay: 0.15s; }
.loader__arc-text span:nth-child(3) { animation-delay: 0.30s; }
.loader__arc-text span:nth-child(4) { animation-delay: 0.45s; }
.loader__arc-text span:nth-child(5) { animation-delay: 0.60s; }
.loader__arc-text span:nth-child(6) { animation-delay: 0.75s; }
.loader__arc-text span:nth-child(7) { animation-delay: 0.90s; }
.loader__arc-text span:nth-child(8) { animation-delay: 1.05s; }

@keyframes arcFade {
  0%   { opacity: 0; }
  25%  { opacity: 0; }
  38%  { opacity: 1; }  /* ← 見え始め */
  62%  { opacity: 1; }  /* ← 見えてる時間を中間レベルに */
  100% { opacity: 0; }
}


@keyframes rotateCircle {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}


/* フェードアニメ */

/* left */
.fade-in-left {
  opacity: 0;
  transform: translateX(-80px); /* ← 左から */
  transition: opacity 1.8s ease-out, transform 1.0s ease-out;
}

.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0) rotate(252deg); /* ← 最終的にここに固定 */
}

/* rigth */
.fade-in-right {
  opacity: 0;
  transform: translateX(40px); /* → 右から入ってくる */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* fade-in-up  */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px); /* ← 下から */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* poyoyon */

.poyoyon-in {
  opacity: 0;
  transform: scale(0.8); /* 小さくスタート */
  transition: opacity 0.6s ease-out;
}

.poyoyon-in.is-visible {
  opacity: 1;
  animation: poyoyon 0.8s ease-out forwards;
}

@keyframes poyoyon {
  0% {
    transform: scale(0.8);
  }
  60% {
    transform: scale(1.05); /* 少し大きく膨らむ */
  }
  80% {
    transform: scale(0.97); /* ちょい戻る */
  }
  100% {
    transform: scale(1); /* 最終サイズ */
  }
}

/* katakata */

/* ベース */
.katakata {
  display: inline-block;
  animation: katakata-idle 1.4s ease-in-out infinite;
  transform-origin: center center;
}

/* ときどき揺れる（ランダムっぽい動き） */
@keyframes katakata-idle {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(2deg); }
  20% { transform: rotate(-1.5deg); }
  30% { transform: rotate(1deg); }
  40% { transform: rotate(0deg); }

  /* ここからしばらく動かない時間 */
  100% { transform: rotate(0deg); }
}


/* --- Layout Wrapper (PC Grid) --- */
.layout-wrapper {
  display: block; /* SP Default */
}

/* --- Header / Menu (SP) --- */
.sp-header {
  position: fixed;
  top: -40px;      /* これで半分だけ見えるように外へ出す */
  right: -20px;
  width: 100px;    /* 円の直径 */
  height: 100px;
  background: #A70005;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 300;
}
.menu-toggle {
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin: 34px 8px 0px 0px;
}
.menu-toggle__line {
  width: 34px;
  height: 2px;
  background: #F8D73D;
  transition: 0.3s;
}
.menu-toggle__text {
  font-size: 10px;
  color: #F8D73D;
  margin-top: 2px;
}

/* SP Menu Overlay */
.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.sp-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.menu-close {
  position: fixed;
  top: -40px;      /* これで半分だけ見えるように外へ出す */
  right: -20px;
  width: 100px;    /* 円の直径 */
  height: 100px;
  background: #A70005;
  border-radius: 50%;
  border: none;

}

.close-icon__area{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 300;
  color: #F8D73D;
  line-height: 0.7;
  margin: 26px 6px 0 0;
  font-size: 0.6rem;
}
.close-icon{
  font-size: 46px;
  font-weight: 400;
}
.sp-menu__list {
  list-style: none;
  text-align: center;
  margin-bottom: 30px;
}
.sp-menu__list li {
  margin: 20px 0;
  font-size: 1.2rem;
  border-bottom: 1px dashed #F8D73D;
  padding: 0 10px 5px;
}

.sp-menu__list li:last-child{
  border-bottom: none;
}
.sp-menu__list a.gold-text {
  color: var(--accent-gold);
}
.cta-button {
  background: var(--accent-red);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.5rem;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(230, 0, 18, 0.4);
}
.sp-menu__sns img {
  width: 40px;
  margin-top: 32px;
}

/* --- Sidebar (PC) - Hidden on SP --- */
.sidebar {
  display: none;
}
.visual-sidebar {
  display: none;
}

/* --- Main Content Sections --- */
.main-content {
  width: 100%;
  overflow-x: hidden;
}

.main-content.loading-lock{
  overflow: hidden;
  height: 100vh;
  position: fixed;     /* スクロール完全STOPさせる */
  width: 100%;
}


/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 0;
  z-index: -1;
}
.hero__logo-img {
  margin: 20px auto;
}

.hero__text {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translate(-50%, 10px);
  width: 90vw
}

/* Info */
.section-info {
  background: #F8F8F8;
  color: #333;
  margin: -100px 20px 0;
  text-align: center;
  border-top: 12px solid #A70005; 
  padding-top: 20px;
  padding-bottom: 60px;
  width: auto;
}
.section-title {
  font-size: 2.5rem;
  color: #E3BD0D;
  margin-bottom: 30px;
}

/* --- INFO 見出し（お知らせ＋INFORMATION） --- */
.section-info__header {
  display: flex;
  align-items: center;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
  line-height: 1;
}

/* 左の縦書き「お知らせ」 */
.section-info__label {
  border: 1px solid #a70005;
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a70005;
}

.section-info__label span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size:12px;
  letter-spacing: 0.15em;
  line-height: 2;
}

/* 右の INFORMATION */
.section-info__title {
  font-size: 32px;
  color: #e3bd0d;
  margin: 0;
  letter-spacing: 0.12em;
}

.info__insta-placeholder {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.btn-insta-gradient {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
}

/* Common Section Styles */
section {
  padding: var(--section-spacing) 20px;
}
.section-title-ja {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}
.section-title-ja .small {
  font-size: 1.4rem;
}
.about__bg-text {
  font-size: 3.6rem;
  color: #222;
  margin-top: -20px;
}

/* About */

.section-about{
  background-image: url(../img/bg_texture.png);
  background-size: cover;
  background-repeat: repeat;
  padding-bottom: 0;

}
.section-about__wrapper{
  position: relative;
  text-align: right;
}

.section-about__wrapper img{
  position: absolute;
  left: -100px;
  top: -40px;
  width: 260px;
  transform: rotate(0deg) translateY(-80px);
}

.section-about h2{
  color: #F8D73D;
  text-align: right;
  font-size: 42px;
  line-height: 1;
}

.about__content p {
  margin-bottom: 1.5em;
  font-size: 0.95rem;
}

.bg_triangle_yellow{
  width: 100%;
  margin-top: -40px;
}

.bg_triangle_yellow.commitment__img_bottom{
  position: absolute;
  width: 140%;
  left: 50%;
  transform: translate(-50%, 0px) rotate(180deg); 
  z-index: -1;
}

/* Commitment */
.section-commitment {
  background-color: #e3bd0e;
  color: #000;
  padding: 0;
  padding-top: 20px;
  margin-top: -20px;
  background-image: url(../img/bg_texture_white.png);
  background-size: cover;
  background-repeat: repeat;
    
}

.commitment__header {
  text-align: center;
  margin-bottom: 40px;
}

.commitment__header h3{
  padding: 0 20px;
}
.commitment__header .num {
  font-size: 3rem;
  background: #fff; /* 赤背景の場合もあり */
  color: var(--accent-red);
  padding: 5px 15px;
  margin-right: 10px;
}

.commitment__list{
  position: relative;
  padding-bottom: 13vh;
}
.commitment__item {
  display: flex;
  gap: 4px;
}

.commitment__icon__wrapper{
  display: flex;
  flex-direction: column;
  margin-left: -20px;
  margin-top: -10px;
}

.commitment__icon {
  width: 51vw;
  flex-shrink: 0;
  margin-top: -10px;
}
.dummy-icon {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  color: var(--accent-red);
}
.commitment__desc h3 {
  font-size: 1.2rem;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.commitment__desc{
  font-size: 15px;
  margin-top: 16px;
  overflow: hidden;
  padding-right: 20px;
}

.commitment__desc p {
  margin-bottom: 1.5em;
  font-size: 0.95rem;
  font-weight: 600;
}

.commitment__desc p span{
  display: block;
  font-size: 1.3rem;
  color: #A70005;
  font-weight: 700;
  margin-top: 10px;
}

.commitment__image {
  position: absolute;
  text-align: left;
  width: 53vh;
  max-width: 400px;
  margin: -6vh auto 20px;
  margin-left: 120px;
}


.img_karajin_stamp{
  width: 60px;
  margin-left: 40px;
  margin-top: 70px;
}
/* Story */
.section-story {
  padding-top: 20px;
}

.section-story__wrapper{
  background: #F8F8F8;
  color: #1C1B1B;
  border-top: 12px solid #E3BD0D;
  padding: 16px;
}
.section-title-eng {
  color: var(--accent-gold);
  font-size: 2rem;
  text-align: center;
}
.section-story__wrapper h3{
  color: #A70005;
  border-bottom: 1px solid #A70005;
  letter-spacing: -0.002em;
}
.section-story__wrapper > img{
  border: 1px solid #EA0A11;
  padding: 8px;
  background-color: #fff;
}

.section-title-ja-sub {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}
.story__block img {
  width: 100%;
  margin-bottom: 20px;
}
.story__text p ,.interview__item p,.voice__item p ,.quiz__intro p,.quiz__info_text p{
  margin-bottom: 1.5em;
  font-size: 0.95rem;
  letter-spacing: -0.003em;
  font-weight: 600;
}
.interview-block {
  margin-top: 60px;
  text-align: center;
}

.interview-block h3{
  color: #E3BD0D;
  margin-bottom: 24px;
  border-bottom: inherit;
}

.interview__item {
  margin-bottom: 60px;
  text-align: left;
}
.interview__speech {
  border: 2px solid var(--accent-red);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
}
.interview__speech::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: var(--accent-red) transparent;
}
.interview__person {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-direction: column;
  font-weight: 600;
  border-bottom: 1px solid #A70005;
  padding-bottom: 10px;
}

.interview__person .name{
  margin-top: -18px;
  margin-bottom: 0em;
}

.interview__person .name span{
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.002em;
  padding-right: 10px;
  font-weight: 400;
}

.interview__person_right{
  align-items: flex-end;
}

/* Voice */

.section-voice{
  padding-top: 0;
  padding-bottom: 20px;
}
.voice__item {
  text-align: center;
  padding-bottom: 40px;
}

.voice__item > .voice__name{
  color: #F8D73D;
  font-size: 12px;
  margin-bottom: 0;
}
.voice__icon img {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.voice__item .voice__text {
  text-align: left;
  padding: 0 8px;
}
.voice__title {
  margin: 10px 0;
  border-bottom: 1px solid #F8D73D;
  padding-bottom: 10px;
  font-size: 18px;
}

/* Quiz */
.section-quiz {
  position: relative;
  background-color: #E3BD0D;
  padding: 16px 20px;
  text-align: center;
  border-top: 10px solid #BC9C05;
  background-image: url(../img/bg_texture_white.png);
  background-size: contain;
  background-repeat: repeat;
}
.quiz__header {
  position: relative;
  margin-bottom: 40px;
}

.quiz__header:first-child{
  width: 90%;
}

.quiz__header .quiz_header__img{
  position: absolute;
  left: 50%;
  top: -80px;
}

p.quiz__highlight{
 font-size: 1.4rem;
 text-wrap: nowrap;
}

.quiz__intro .icon_under{
  width: 20px;
  padding-top: 10px;
}

.quiz__info__wrapper{
  background-color: #F8F8F8;
}
.quiz__info h3{
  background-color: #1C1B1B;
  padding: 4px 0;
  color: #fff;
}

.quiz__info_text{
  padding: 15px 15px 0;
  color: #1C1B1B;
  text-align: left;
}

.quiz__info_img{
  padding: 0 60px 40px;
  margin-bottom: 40px;
}

.quiz__info_img p{
  color: #1C1B1B;
  font-size: 10px;
  font-weight: 400;
  text-wrap: nowrap;
  margin-top: 10px;
}

.section-quiz h3.font-red{
  color: #A70005;
  font-size: 2.6rem;
}

.quiz_start_small{
  display: block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: -10px;
}

.quiz__cta-wrapper{
  margin-top: 80px;
  position: relative;
}

.quiz__cta-wrapper img{
  width: 120px;
  position: absolute;
  left: -30px;
  top: -60px;
}

.quiz__sub {
  color: #fff;
  background: var(--accent-red);
  display: inline-block;
  padding: 5px 20px;
  transform: rotate(-2deg);
}
.quiz__intro {
  color: #000;
  padding: 0px 15px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.quiz__intro p{
  font-weight: 600;
}

.quiz__intro p.note, .note-small{
  color: #5C5757;
  font-size: 10px;
  font-weight: 400;
}

.quiz__intro h3{
  color: #A70005;
  border-top: 1px solid #A70005;
  border-bottom: 1px solid #A70005;
  letter-spacing: -0.002em;
  font-size: 2.2rem;
  padding: 16px 0;
  margin-bottom: 24px;
}


.btn-quiz-red {
  background: var(--accent-red);
  color: #fff;
  padding: 15px;
  border-radius: 50px;
  font-size: 1.4rem;
  margin: 20px 0;
  cursor: default; /* Not a link here */
  box-shadow: 2px 2px 4px #33333369;
  
}

/* Quiz Question Block */
.quiz__question-block {
  position: relative;
  background: #fff;
  color: #000;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 80px;
  box-shadow: 0 5px 5px rgba(0,0,0,0.5);
  border: 2px solid #A70005;
}
.q-num img{
  position: absolute;
  width: 100px;
  left: 0;
  top: 0;
  transform: translate(0px, -36px);
}

.q-text{
  line-height: 1.5;
}
.q-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.option-btn {
  display: flex;
  justify-content: flex-start;
  background: #fff;
  border: 2px solid #333;
  padding: 4px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
  font-weight: bold;
  color: #000;
}

.option-num{
  width: 10%;
  text-align: center;
  color: #000;
}

.option-text{
  width: 90%;
  text-align: center;
  padding-right: 10px;
}

.option-btn:hover {
  background: #f0f0f0;
}
.option-btn.selected {
  background: #F8D73D;
  color: #000;
}

/* Quiz Hint Accordion */
.q-hint {
  margin-top: 20px;
  background: #333;
  border-radius: 5px;
}
.hint-toggle {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.hint-toggle .icon {
  background: #fff;
  color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  margin-right: 10px;
  font-weight: bold;
}
.hint-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 15px;
  color: #ffffff;
  text-align: left;
  font-size: 0.8rem;
  background-color: #fff;
}
.hint-content p {
  font-size: 0.8rem;
}

.hint-content.is-open {
  padding: 15px;
  background-color: #fff;
  color: #1C1B1B;
  border: 2px solid #1C1B1B;
}

.step-title{
  color: #1C1B1B;
  line-height: 1.4;
}

.cta-button-large {
  position: relative;
  display: block;
  background: var(--accent-red);
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.0025em;
  font-weight: 700;
  padding: 16px;
  border-radius: 100px;
  margin: 20px auto;
  max-width: 400px;
  box-shadow: 0 5px 0 #990000;
  transition: transform 0.1s, box-shadow 0.1s;
  border: 2px solid #fff;
}

.cta-button-large:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #990000;
}

.btn-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* --- 3 STEP Section --- */
.section-steps {
  background-color: #F8F8F8; /* 画像の背景色に合わせて調整 */
  padding: 0 0 52px 0; /* 下部は画像の重なりのため調整 */
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -4px;
}

/* 画像類 */
.bg_triangle_white{
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.steps__top-visual img {
  display: block;
  margin: 32px auto 0;
  max-width: 80%;
  z-index: 1;
  position: relative;
}

.steps__title-img img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  padding-bottom: 9px;
}
.steps__top-visual {
  margin-bottom: -20px; /* 画像の余白具合で調整 */
}
.steps__title-img {
  margin-bottom: -30px; /* カードに少し乗せる場合 */
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* 白いカードコンテナ */
.steps__card {
  background: #fff;
  border-radius: 40px;
  width: 90%;
  max-width: 600px; /* SPでの最大幅 */
  margin: 0 auto;
  padding: 20px 20px 72px; /* 下部は唐揚げ画像が乗る分広く */
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 3px rgba(0,0,0,0.1),
              inset 2px 2px 3px rgba(0,0,0,0.1),
              inset -2px -2px 3px rgba(0,0,0,.1)
}

/* カード内テキスト */
.steps__card-header {
  margin-bottom: 40px;
  font-weight: 600;
}
.steps__card-header .sub-title {
  color: var(--accent-red);
  font-size: 1rem;
  margin-bottom: 5px;
}
.steps__card-header .main-title {
  color: #000;
  font-size: 2rem;
  line-height: 1.2;
}

/* 各ステップ */
.step-item {
  margin-bottom: 30px;
}
.step-head {
  color: #990000; /* 濃い赤 */
  font-size: 2.2rem;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.step-desc {
  color: #000;
  font-size: 0.8rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.step-desc .font-red {
  font-weight: bold;
}
.step-screen img {
  width: 100%;
  max-width: 280px; /* スマホ画像の適正サイズ */
}

/* 赤い矢印 */
.step-arrow {
  width: 20px;
  height: 20px;
  margin: 20px auto 10px;
}

/* CTAエリア */
.steps__cta-area {
  margin-top: 50px;
  position: relative;
  display: inline-block;
}

/* 吹き出し */
.cta-bubble {
  position: absolute;
  top: -60px; /* ボタンの上に配置 */
  left: -20px;
  background: #fff;
  border: 2px solid var(--accent-red);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transform: rotate(-10deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}
.cta-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 15px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #fff transparent; /* 枠線を再現するには工夫が必要だが簡易版 */
}
/* 吹き出しの枠線を完全に再現する場合の疑似要素追加 */
.cta-bubble::before {
  content: "";
  position: absolute;
  bottom: -11px;
  right: 13px;
  border-width: 12px 12px 0;
  border-style: solid;
  border-color: var(--accent-red) transparent;
  z-index: -1;
}

.bubble-content {
  color: var(--accent-red);
  font-size: 0.8rem;
  line-height: 1.2;
}
.bubble-content .big {
  font-size: 1.2rem;
  display: block;
}

/* ボタン */
.btn-step-cta {
  background: var(--accent-red);
  color: #fff;
  font-size: 1.6rem;
  padding: 15px 40px; /* 吹き出しと被らないよう幅確保 */
  border-radius: 50px;
  box-shadow: 0 5px 0 #990000;
  display: block;
  position: relative;
  z-index: 4;
  transition: transform 0.1s, box-shadow 0.1s;
  white-space: nowrap;
}
.btn-step-cta:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #990000;
}

/* 下部 唐揚げ大皿 */
.steps__bottom-visual {
  margin: -60px auto 0px; /* 白いカードに重ねる */
  position: relative;
  width: 80%;
  z-index: 10;
  pointer-events: none; /* ボタンクリックを邪魔しないように */
}
.steps__bottom-visual img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* PCレイアウト調整（既存のメディアクエリ内に追加） */
@media (min-width: 1024px) {
  .section-steps {
    overflow: visible;
  }
  .steps__card {
    padding-bottom: 100px;
    overflow: visible;
  }
}


/* Footer */
.footer {
  background: #A70005;
  padding: 40px 20px 16px;
  text-align: left;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #ffffff;
}
.footer-logo {
  font-size: 1.2rem;
  color: #fff;
  margin: 15px 0;
}

.footer-link{
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
}

address{
  font-style: normal;
}


/* --- PC Layout (Desktop) --- */
@media (min-width: 1024px) {
  body {
    overflow-y: hidden; /* メインスクロールを無効化（layout-wrapperで制御する場合） */
    /* あるいは bodyスクロールのままにするなら上記不要 */
    overflow-y: auto; /* 通常スクロール */
  }

  .layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px 1fr; /* 左メニュー、メイン、右画像 */
    min-height: 100vh;
  }

  /* Left Sidebar */
  .sidebar {
    display: block;
    background: #0a0a0a;
    border-right: 1px solid #222;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
    padding: 40px 20px;
  }
  .sidebar__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-top: -40px;
  }
  .logo {
    font-size: 2rem;
    margin: 0 auto 40px;
    text-align: center;
  }
  .sidebar__logo{
    width: 80%;
    max-width: 300px;
    text-align: center;
  }
  .logo__sub {
    font-size: 0.7rem;
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
  }
  .pc-nav ul {
    list-style: none;
  }
  .pc-nav li {
    margin-bottom: 20px;
    border-bottom: 1px dashed #F8D73D;
    width: 220px;
    margin: 0 auto 12px;
  }

  .pc-nav li:last-child{
    border-bottom:none;
  }
  .pc-nav a {
    font-size: 1.4rem;
    font-weight: bold;
    display: block;
    padding: 5px 0;
    position: relative;
    margin: auto;
    text-align: center;
  }
    .pc-nav a:hover {
      color: #F8D73D;
    }
  .pc-nav a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    transition: width 0.3s translateY(6px);
  }
  .pc-nav a:hover::after {
    width: 100%;
    transform: translateY(6px);
    height: 2px;
  }
  .pc-nav .gold-text {
    color: #F8D73D;
  }
  .sidebar .cta-button {
    text-align: center;
    width: 80%;
    max-width: 300px;
    padding: 12px 0;
    font-size: 1.4rem;
    margin: 20px auto 0;
  }

  /* SP Header Hide */
  .sp-header {
    display: none;
  }
  /* Main Content Adjustments */
  .main-content {
    /* 中央カラム */
    background: #111;
    box-shadow: 0 0 10px 1px rgb(255 255 255 / 10%), 0px 0px 10px -1px rgb(255 255 255 / 40%);
    z-index: 100;
    overflow: visible;
  }
  .hero__image img {
    height: 556px;
    width: 100%;
    object-fit: cover;
  }
  .hero__text{
    width: 100%;
    top: 10px;
  }

  .hero__logo-img{
    width: 350px;
  }

  /* Right Visual Sidebar */
  .visual-sidebar {
    display: flex;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    align-items: center;
    pointer-events: none;
  }
  .visual-sidebar__img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    overflow: visible;
    transform: translate(80px, 10px);
  }

  /* loading */
  .loader__logo{
    width: 560px;
  }

  /* section */
  .pc-menu__sns{
    margin: 40px auto 0;
    width: 40px;
  }
  .hero{
    z-index: -1;
  }

  .commitment__icon {
    width: 180px;
    flex-shrink: 0;
  }
  .quiz__cta-wrapper img{
    width: 140px;
    left: -70px;
  }

  .bg_triangle_yellow.commitment__img_bottom{
    max-width: 400px;
  }

  .commitment__item{
    overflow-x: clip;
  }

}

/* 画面幅調整：右カラムを大きく見せたい場合 */
/* コンテンツ幅固定、右画像可変 */
/* @media (min-width: 1400px) {
  .layout-wrapper {
    grid-template-columns: 300px 600px 1fr; 
  }
} */