* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
p {
  padding: 0.5em 0 0.5em;
}
h2 {
  background: #fff8cc;
  color: #351e25 !important;
  text-align: center;
  font-size: 1.2em;
  margin-top: 1em;
  padding: 10px 0;
}
html,
body {
  height: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  overflow: hidden;
  background: #fff9fb;
  background-image: url(/img/bg.jpg);
  background-size: cover;
  font-size: 14px;
}
img {
  display: block;
}
.topaz-header{
  background:#ffffff;
  border-bottom:2px solid #ff3b8d;
  padding:2px 5px 0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.brand-tit {
    padding-right: 30px;
}

.brand{
  display:flex;
  align-items:center;
  gap:15px;
}

.brand-tit p{
padding: 0;
}


/* Layout */
.layout {
  display: grid;
  grid-template-columns: 300px 400px 300px;
  height: 100vh;
  max-width: 1500px;
  margin: 0 auto;
  justify-content: center;
}

/* Sidebars */
.side {
  padding: 24px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.logo {
  width: 150px;
}
.menu {
  list-style: none;
}
.menu li + li {
  margin-top: 12px;
}
.menu a {
  color: #2a7fbf;
  font-weight: bold;
  text-decoration: underline;
}
aside.side.left{
display: flex;
    flex-direction: column;
    justify-content: center;
}
aside.side.right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Contact box */
.contact-box {
  margin-top: 30px;
}

.btn {
  display: block;
  padding: 12px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  margin-bottom: 10px;
}
.btn-a {
  background: #4c9a57;
}
.btn-b {
  background: #7d53c0;
}

/* Center Scroll */
.center {
  overflow-y: auto;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 70px 0 rgb(255 238 242);
}

/* HERO */
.catchcopy {
  writing-mode: vertical-rl;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.hero-images .img-main {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
}
.sub-images {
  display: flex;
  gap: 20px;
}
.sub-images img {
  width: 50%;
  border-radius: 5px;
}
.badge {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #444;
}

/* Sections */
.section {
  margin-top: 60px;
}
.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.img-box img {
  width: 100%;
  border-radius: 5px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 0px 0;
  color: #333;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 980px) {
  html,
  body {
    overflow: auto;

  }
  .layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .center {
    overflow: visible;
    height: auto;
  }
}

@media (max-width: 980px) {
  .side {
    display: none!important;
  }
  .layout {
    grid-template-columns: 1fr;
  }
}

.center {
  scrollbar-width: none;
}

.center::-webkit-scrollbar {
  display: none;
}

.head-img {
  position: relative;
}

/* ボタンを絶対配置。overflow:hidden が超重要 */
.btn-wrap {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 100%;
  overflow: hidden;
}

/* 光を流すターゲットの基準にする */
.btn-wrap a {
  position: relative;
  display: block;
}

/* --- 基本非表示（PC） --- */
.follow-btn-area {
  display: none;
}

/* --- スマホだけ最下部に追従 --- */
@media (max-width: 768px) {
  .follow-btn-area {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    overflow: hidden;
  }

  .follow-btn {
    position: relative;
    display: block;
  }

  .follow-btn img {
    width: 100%;
    display: block;
  }


}


.bg {
  background-image: url(./img/bg.jpg);
  background-size: cover;
}

.box {
  padding: 15px;
  margin: 10px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgb(168 217 230);
  border-radius: 5px;
}
.box2 {
  padding: 10px;
  background: #f5ebff;
}
.bg-vertical {
  width: 100%;
  background-image: url('./img/4-1.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center top;
  padding: 0px 10%;
}
.voice-section {
  padding: 20px 20px 20px;

  color: #333;
}

/* タイトル */
.voice-title {
  text-align: center;
  margin-bottom: 50px;
}

.voice-title h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
}

.voice-sub {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 6px;
  color: #6b7a99;
}

/* 吹き出しリスト */
.voices {
  max-width: 800px;
  margin: 0 auto 20px;
}

/* 吹き出し全体 */
.voice-box {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

/* 左右配置 */
.voice-box.left {
  justify-content: flex-start;
}
.voice-box.right {
  justify-content: flex-end;
}

/* 吹き出し本体 */
.voice-balloon {
  max-width: 95%;
  background: #fff;
  padding: 20px 25px;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
  z-index: 3;
  width: 98%;
}

/* 吹き出し三角形（左） */
.voice-box.left .voice-balloon::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 20px;
  border-width: 8px 12px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  z-index: 1;
}

/* 吹き出し三角形（右） */
.voice-box.right .voice-balloon::before {
  content: '';
  position: absolute;
  right: -12px;
  top: 20px;
  border-width: 8px 0 8px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  z-index: 1;
}

/* ユーザー名 */
.voice-user {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

/* Q&A */
.qa {
  max-width: 800px;
  margin: 0 auto 8em;
  padding: 20px 20px;
  background: #fff;
  border-radius: 5px;

  box-shadow: 0 0 10px 0 rgb(168 217 230);
}

.qa h3 {
  text-align: center;
  font-size: 1.2em;
  color: #fff;
  background: #377cb3;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  padding: 10px 0;
}

.qa-item {
  margin-bottom: 1em;
}

.q {
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 5px;
  border-bottom: dotted 1px rgb(210, 227, 252);
  color: #377cb3;
}

.a {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}
/* ▼影：左側 */
.voice-box.left .voice-balloon::after {
  content: '';
  position: absolute;
  left: -17px; /* 影なので少し外側に */
  top: 22px;
  border-width: 8px 14px 8px 0;
  border-style: solid;
  border-color: transparent rgba(0, 0, 0, 0.066) transparent transparent;
  filter: blur(2px); /* ぼかして影に */
  z-index: 0;
}

/* ▼影：右側 */
.voice-box.right .voice-balloon::after {
  content: '';
  position: absolute;
  right: -17px;
  top: 22px;
  border-width: 8px 0 8px 14px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.068);
  filter: blur(2px);
  z-index: 0;
}
.stone-table {
  width: 100%;
  background: #fff; /* 背景白（見えない） */
}
.stone-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff; /* 背景白（不可視） */
}

.stone-table td {
  border: 1px solid #fff; /* 罫線も白で見えない */
  padding: 0px 0px;
  vertical-align: top;
}

/* 左画像列 */
.stone-table .image {
  width: 25%;
  max-width: 240px;
}

.stone-table .image img {
  width: 100%;
  display: block;
}

.stone-table .text p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.8em;
  padding: 0 0 0;
}
.yt-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 の比率 */
  height: 0;
}

.yt-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.stone h3 {
  margin: 1em 0 5px;
  font-size: 1em;
  color: rgb(69 82 107);
  background: rgb(241 244 255);
  text-align: center;
  padding: 5px 0;
}
.stone h4 {
  margin: 5px 0 5px;
  font-size: 0.8em;
  color: #8d62ac;
  border-bottom: dotted 1px #ebdaf7;
}

.flow-compact {
  margin: 0 auto 1em;
  padding: 20px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgb(168 217 230);
}

.flow-title {
  text-align: center;
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.flow-item {
  border: 1px solid #ddd;
  padding: 18px 16px;
  border-radius: 5px;
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  flex-direction: column;
}

.flow-num {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #377cb3;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow-text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.flow-connector {
  width: 2px;
  height: 20px;
  background: #ccc;
  margin: 10px auto;
  border-radius: 5px;
}
.tab {
  background: #8d62ac;
  color: #fff;
  padding: 2px 5px;
  border-radius: 5px;
  margin: 2px;
}
.maker {
  background-color: #fbffeb;
  font-weight: bold;
}
.voice-image {
  float: right;
  width: 120px;
  margin: 0px;
}
.voice-image2 {
  float: left;
  width: 120px;
  margin: 0px;
}

.btn-img {
  animation: shake 2s infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(1deg); }
}

.what-wrap{
    margin: 0 20px;
border-left: 3px solid #f3808d;
    border-right: 3px solid #f3808d;
border-bottom: 3px solid #f3808d;
}
.what{
background: #ffffff;
    padding: 0px;


}

.what-tit{
background: #fffad1;
    display: flex;
    justify-content: space-evenly;
    padding: 8px;
    color: #f37c8d;
    font-weight: bold;
    font-size: 1.2em;
}

.what p{
background: #ffffff;
    padding: 10px;
}

.dif{
background: linear-gradient(to right, #f2888c, #f56390);
padding: 15px;
}

.dif-tit {
color: #fff;
text-align: center;
font-weight: bold;
font-size: 1.2em;
display: block;
padding-bottom: 1em;
}

.self{
background: #fff;
padding:10px 10px 10px;
}

.self2{
background: #fff;
padding:0 0px 10px;
}

.self-tit{
text-align: center;
font-weight: bold;
font-size: 1.2em;
display: block;
padding-bottom: 5px;
}

.mindset-cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.mindset-cards__item{
background: #fbffeb;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-weight: bold;
text-align: center;
    flex-direction: column;
}


.support-section {
    margin: 10px auto;
    padding: 0px;
    background: var(--bg-main);
    border: 4px solid var(--border-main);
    border-radius: 5px;
    background: #fff;
box-shadow: 0 0 8px #f3808d;
margin: 20px;
}


.bg-p{
background: #fff4f4;
padding-bottom: 1em;
}

.title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin: 0px;
  color: var(--text-main);
color: #fff;
    border-radius: 5px 5px 0px 0px;
padding: 20px;
}

.support-grid {
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    text-align: center;
    justify-items: center;
}

.item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
  color: var(--text-main);
flex-direction: column;
}

.item span{
color: #592204;
}

.item svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.3;
  color: #f46b8f;
}

.item.full {
  grid-column: span 2;
  justify-content: center;
border-top: 1px solid #f3a6bc;
}
.support-grid {
  display: flex;
  flex-wrap: wrap;
}

/* 基本2カラム */
.item {
  width: 50%;
  box-sizing: border-box;
  padding: 24px 10px;
  text-align: center;
  font-weight: bold;
}

/* 3行目だけ1列 */
.item.full {
  width: 100%;
}

/* ===== 線 ===== */

/* 縦線（左側だけ） */
.item:nth-child(odd):not(.full) {
  border-right: 1px solid #f3a6bc;
}

/* 横線（2段目の上） */
.item:nth-child(3),
.item:nth-child(4) {
  border-top: 1px solid #f3a6bc;
}

.item {
  width: 49%;
}


/* 全体 */
.selection-check-section {
  padding: 20px 20px 0;
  background: #fff;
}

.selection-check-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* 各アイテム */
.selection-check-item {
    position: relative;
    flex: 1 1 30%;
    min-width: 280px;
    background: #fff5f8;
    padding: 20px;
margin-bottom: 2em;
border: 2px solid #facfdb;
}

/* 番号バッジ */
.selection-check-number {
font-weight: 600;
    position: absolute;
    top: -15px;
    text-align: center;
    color: rgb(255 255 255);
    background-image: url(./img/step_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 60px;
    z-index: 10;
    font-size: 23px !important;
    padding: 7px 9px 30px;
    display: flex;
    justify-content: center;
}


/* カード */
.selection-check-card {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* タイトル */
.selection-check-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    padding-left: 60px;
}

/* コンテンツ */
.selection-check-content {
display: flex;
    align-items: center;
    flex-direction: column;}

/* 画像 */
.selection-check-image img {
  width: 80px;
  height: auto;
  border-radius: 5px;
}

/* テキスト */
.selection-check-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
    width: 100%;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .selection-check-inner {
    flex-direction: column;
    gap: 20px;
  }

  .selection-check-image img {
    width: 100px;
  }

  .selection-check-number {
    left: 10px;
    top: -10px;
  }
}

.small {
    font-size: 0.8em;
    color: #fff;
    text-align: center;
    display: block;
    margin-bottom: 5px;
}

.big{
font-size: 1.2em;
display: contents;
}

.hosoku{
    border: 1px solid #f3a6bc;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-end;
    font-size: 0.8em;
}

.tume{
font-feature-settings: "palt";
}

.p-box{
border: 10px solid #f3808d;
    background: #fff;
    padding: 10px;
    margin: 0 auto 10px;
    max-width: 90%;
}

hr {
    border: dotted 1px #f3808d;
    margin: 10px 0;
}

.mo-box {
    display: flex;
    flex-direction: row;
align-items: center;
    justify-content: space-between;
}

.mo-left {
margin: 0 15px;
    border-right: 1px dotted #f3808d;
    padding-right: 15px;
    text-align: center;
}

.mo-right {
    font-size: 1.8em;
    color: #f3808d;
    font-weight: bold;
    font-family: system-ui;
    text-align: right;
}

.moku-box{
padding:0 20px 20px;
}

.moku-p{
text-align: center;
font-size: 1.8em;
}

.results-box{
background: #f3808d;
    margin: 0 auto 10px;
    padding: 10px;
    margin: 10px;
}

.results-item{
background: #fff;
padding: 10px;
text-align: center;
}


.qa-box {
margin: 0 20px 20px;
border: 2px solid #f2868c;
}

/* 質問 */
.qa-question {
background-color: #fff8f8;
    display: flex;
    padding: 10px;
    align-items: flex-start;
    font-size: 1em;
    font-weight: bold;
    color: #f46c8f;
}

.qa-question .label {
  font-weight: bold;
  margin-right: 15px;
  font-size: 20px;
}

.qa-question p {
  margin: 0;
  line-height: 1.6;
}

/* 回答 */
.qa-answer {
  background-color: #fff;
  display: flex;
  padding: 10px;
  align-items: flex-start;
  border-top: 2px dotted #ff3b6a;
}

.qa-answer .label {
  font-weight: bold;
  margin-right: 15px;
  font-size: 20px;
}

.qa-answer p {
  margin: 0;
  line-height: 1.8;
  padding: 0;
}


/* 全体 */
.flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* カード */
.card {
width: 100%;
    max-width: 720px;
    background: #fff;
    border: 2px solid #dcdcdc;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

/* 上部 */
.card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 5px;
}

/* STEP */
.step-block span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #f3808d;
}

.step-block strong {
  font-size: 42px;
  font-weight: 700;
  color: #f3808d;
}

/* 縦線 */
.divider {
  width: 1px;
  height: 70px;
  background: #ccc;
}

/* アイコン */
.icon {
  font-size: 40px;
  opacity: 0.8;
}

/* タイトル */
.card h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #351e25;
    background: #fff8cc;
}

/* テキスト */
.card p {
  line-height: 1.8;
  color: #666;
}

/* 青（STEP4） */
.blue {
  color: #2f5cff;
}

/* 下矢印 */
.arrow {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 22px solid #f3a6bc;
}

.steps {
    padding: 20px;
background: #f8eef1;
}

.underline {
  background:url(./img/wave-silver.png) bottom repeat-x;
background-size: 17px;
    padding-bottom: 5px;
}
.underline2 {
  background:url(./img/wave-pink.png) bottom repeat-x;
background-size: 17px;
    padding-bottom: 5px;
}
.results-sub-tit{
    font-size: 0.8em;
    color: #f3a6bc;
    font-weight: bold;
    text-align: center;
}

.bold{
font-weight: bold;
}

.proof-section {
  max-width: 600px;
  padding: 0 20px 20px;
}

.dot-bg{
background:
    url("./img/bg-c.png") center / cover no-repeat,
    #fffded;
}
.proof-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #333;
}

/* リスト */
.proof-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 各ブロック */
.proof-item {
    position: relative;
    background: #fff;
    border-radius: 9px;
    padding: 25px 20px 20px;
    margin: 0 5px 0 0;
    border: 3px solid #f3d7df;
}

/* アイコン */
.proof-icon {
    position: absolute;
    top: 7px;
    right: 5px;
    background: #f3808d;
    border-radius: 50%;
    padding: 6px 8px;
    font-size: 43px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* タイトル */
.proof-heading {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #e66a8d;
    border-bottom: 2px dotted;
}

/* ラベル */
.proof-label {
  font-size: 11px;
  color: #caa3ad;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* 本文 */
.proof-text {
  font-size: 14px;
  margin-top: 3px;
  color: #333;
}

.text-b{
font-weight: bold;
font-size: 1.2em;
}

.pink{
color: #f46b8f;
font-weight: bold;
}

      .footer-section {
background-color: #212528;
    padding: 20px 20px 122px;
    text-align: center;
    font-family: sans-serif;
    color: #ffffff;
    font-size: 12px;
      }
      .footer-links {
        margin-bottom: 12px;
      }
      .footer-links a {
        color: #e8e8e8;
        text-decoration: none;
        margin: 0;
        font-weight: bold;
      }
      .footer-divider {
        color: #e8e8e8;
        margin: 0 4px;
      }
      .footer-copy {
        color: #666666;
        font-size: 10px;
      }
