@charset "UTF-8";

/* ##############################################################################

    KEYFRAMES

############################################################################## */
@keyframes rotate {
  0% {
    rotate: 0;
  }

  100% {
    rotate: 360deg;
  }
}

@keyframes rotate_reverse {
  0% {
    rotate: 0;
  }

  100% {
    rotate: -360deg;
  }
}

/* アニメーション用キーフレーム */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }

  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes characterEntrance {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotate(-360deg) scale(0) translateY(100px);
  }

  40% {
    opacity: 1;
    transform: translateX(-50%) rotate(-180deg) scale(1.3) translateY(-20px);
  }

  60% {
    transform: translateX(-50%) rotate(0deg) scale(0.9) translateY(10px);
  }

  80% {
    transform: translateX(-50%) rotate(10deg) scale(1.05) translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) rotate(0deg) scale(1) translateY(0);
  }
}

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

/* ##############################################################################

    COMMON

############################################################################## */
* {
  letter-spacing: .1em;
  letter-spacing: var(--ltr-space-default);
}

html {
  font-size: max(13.3333333333px, min(0.8333333333vw, 1rem));
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

@media screen and (min-width: 48em) and (max-width: 67.5em) {
  html {
    overflow-y: auto;
    overflow-x: auto;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: min(3.3816425121vw, 0.875rem);
  }
}

.hero-page {
  font-family: "Hiragino UD Sans W5 JIS2004", "こぶりなゴシック W6 JIS2004", "Koburina Gothic W6 JIS2004";
  font-family: var(--font-primary);
  line-height: 1.8;
  line-height: var(--line-height-default);
  font-weight: 500;
  font-feature-settings: "palt";
  font-size: 1rem;
  *font-size: small;
  *font: x-small;
  color: #333;
  color: var(--clr-body);
  -webkit-font-smoothing: antialiased;
  height: 100%;
  word-break: break-word;
  margin: 0;
  padding-top: 1vh;
  background: #f2f7fa;
  position: relative;
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
  height: 50px;
  width: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .hero-logo {
    top: 10px;
    left: 10px;
    height: 20px;
  }
}


@media screen and (min-width: 48em) and (max-width: 67.5em) {
  .hero-page:not(.mce-content-body) {
    min-width: 1080px;
  }
}

@media screen and (max-width: 768px) {
  .hero-page {
    padding-top: 3vh;
    -webkit-text-size-adjust: none;
  }
}

/* ##############################################################################
    RESET & BASE (クラスベース)
############################################################################## */
.hero-page *,
.hero-page *:after,
.hero-page *::before {
  box-sizing: border-box;
}

.hero-page * {
  letter-spacing: .1em;
  color: #ff2722;
}

.hero-img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ##############################################################################
    UTILITY CLASSES
############################################################################## */
.txt-ctr {
  text-align: center;
}

.pos_rel {
  position: relative;
}

.pos_ab {
  position: absolute;
}

.inner {
  width: 90%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .inner {
    width: 80%;
  }
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-a-ctr {
  align-items: center;
}

.flex-j-ctr {
  justify-content: center;
}

.pc-none {
  display: none;
}

@media screen and (min-width: 48em) {
  .pc-none {
    display: inline;
  }
}

/* ##############################################################################
    HERO SECTION
############################################################################## */
.hero {
  position: relative;
  overflow: hidden;
}


.hero .deco-img {
  top: 10vh;
  width: 25vw;
  opacity: 0;
}

.hero .deco-img.deco-img01.loaded {
  animation: fadeInLeft 1s ease-out 0.2s forwards;
}

.hero .deco-img.deco-img02.loaded {
  animation: fadeInRight 1s ease-out 0.2s forwards;
}

@media screen and (max-width: 768px) {
  .hero .deco-img {
    display: none;
  }
}

.hero .deco-img.deco-img01 {
  left: 0;
}

.hero .deco-img.deco-img02 {
  right: 0;
}

.hero--content {
  position: relative;
  max-width: 67.5rem;
  aspect-ratio: 1/1;
  margin-top: -15rem;
  opacity: 0;
}

.hero--content.loaded {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@media screen and (max-width: 768px) {
  .hero--content {
    width: 28rem;
    max-width: inherit;
    margin-top: -2rem;
    margin-bottom: 2rem;
  }
}

.hero--ttl {
  position: relative;
  opacity: 0;
}

.hero--ttl.loaded {
  animation: fadeInDown 0.8s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .hero--ttl {
    width: 99%;
    margin: 0 auto;
  }
}

.hero--ttl .hero-img {
  width: 60.75rem;
}

@media screen and (max-width: 768px) {
  .hero--ttl .hero-img {
    width: 100%;
  }
}

.hero--list {
  z-index: 1;
  position: absolute;
  top: 10%;
  left: 10%;
  transform-origin: center;
  width: 80%;
  height: 80%;
  border: 5rem solid #6be4ff40;
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

@media screen and (max-width: 768px) {
  .hero--list {
    border: 1rem solid #6be4ff40;
  }
}

.hero--item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11rem;
  aspect-ratio: 1 / 1;
  --angle: calc((360deg / 9 * var(--index)) - 90deg);
  --width: calc((62 / 2 * 1rem) - (12.375 / 2 * 1rem));
  --x: calc(cos(var(--angle)) * var(--width));
  --y: calc(sin(var(--angle)) * var(--width));
  translate: calc(var(--x) - 50%) calc(var(--y) - 50%);
  background: linear-gradient(180deg, #ffb4b2 0%, #f58280 50%, #ff2722 50%, #fe2722 100%);
  border-radius: 50%;
  animation: rotate_reverse 30s linear infinite;
  opacity: 0;
}

/* 各アイテムに異なるアニメーションを適用 */
.hero--item01.loaded {
  animation: rotate_reverse 30s linear infinite, zoomIn 0.6s ease-out 0.5s forwards;
}

.hero--item02.loaded {
  animation: rotate_reverse 30s linear infinite, bounceIn 0.8s ease-out 0.6s forwards;
}

.hero--item03.loaded {
  animation: rotate_reverse 30s linear infinite, fadeInLeft 0.7s ease-out 0.7s forwards;
}

.hero--item04.loaded {
  animation: rotate_reverse 30s linear infinite, fadeInRight 0.7s ease-out 0.8s forwards;
}

.hero--item05.loaded {
  animation: rotate_reverse 30s linear infinite, rotateIn 0.8s ease-out 0.9s forwards;
}

.hero--item06.loaded {
  animation: rotate_reverse 30s linear infinite, slideInScale 0.7s ease-out 1s forwards;
}

.hero--item07.loaded {
  animation: rotate_reverse 30s linear infinite, fadeInUp 0.7s ease-out 1.1s forwards;
}

.hero--item08.loaded {
  animation: rotate_reverse 30s linear infinite, fadeInDown 0.7s ease-out 1.2s forwards;
}

.hero--item09.loaded {
  animation: rotate_reverse 30s linear infinite, zoomIn 0.6s ease-out 1.3s forwards;
}

@media screen and (max-width: 768px) {
  .hero--item {
    width: 6.5rem;
    --width: calc((30 / 2 * 1rem) - (5.143 / 2 * 1rem));
  }
}

.hero--item01 {
  --index: 0;
}

.hero--item02 {
  --index: 1;
}

.hero--item03 {
  --index: 2;
}

.hero--item04 {
  --index: 3;
}

.hero--item05 {
  --index: 4;
}

.hero--item06 {
  --index: 5;
}

.hero--item07 {
  --index: 6;
}

.hero--item08 {
  --index: 7;
}

.hero--item09 {
  --index: 8;
}

.hero--item .hero-img {
  width: auto;
  height: 6.5rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .hero--item .hero-img {
    height: 2.2857142857rem;
    margin-bottom: 0.4285714286rem;
  }
}

.hero--item .ttl {
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: white;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hero--item .ttl {
    font-size: 0.7142857143rem;
    text-align: center;
  }
}

.hero--txtarea {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 55px;
  opacity: 0;
}

.hero--txtarea.loaded {
  animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

@media screen and (max-width: 768px) {
  .hero--txtarea {
    row-gap: 1rem;
    padding-bottom: 2.8571428571rem;
  }
}

.hero--pc-container {
  position: relative;
  display: inline-block;
}

.hero--txtarea .hero-img {
  width: 40rem;
  margin-left: 75px;
}

.hero--pc-img {
  display: block;
}

.hero--character {
  position: absolute;
  top: 4vh;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100px;
  opacity: 0;
  z-index: 10;
}

.hero--character.loaded {
  animation: characterEntrance 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s forwards;
}

@media screen and (max-width: 768px) {
  .hero--txtarea .hero-img {
    width: 15rem;
    margin-left: 15px;
  }

  .hero--character {
    max-width: 35px;
    top: 2vh;
  }
}

.hero--txtarea .ttl .ttl-sm {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1em;
  font-size: 1.125rem;
  line-height: 1;
  border: 2px solid #ff2722;
}

@media screen and (max-width: 768px) {
  .hero--txtarea .ttl .ttl-sm {
    padding: 0.2857142857rem 0.4285714286rem;
    margin-bottom: 0.5714285714rem;
    font-size: 0.9285714286rem;
  }
}

.hero--txtarea .ttl .ttl-lg {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ff2722;
}

@media screen and (max-width: 768px) {
  .hero--txtarea .ttl .ttl-lg {
    font-size: 1.2857142857rem;
  }
}

@media screen and (max-width: 768px) {
  .hero--txtarea .btn {
    display: none;
  }
}


/* home_first
********************************************** */
.home_first {
  padding: 0;
  background: aliceblue;
}

.home_first--ttlarea {
  height: 10vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-scroll-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.logo-scroll-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: fit-content;
  gap: 3rem;
  padding: 0 2rem;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

.logo-scroll-item {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-scroll-item img {
  height: 60%;
  width: auto;
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}

.logo-scroll-item--text {
  white-space: nowrap;
}

.logo-scroll-text {
  font-size: 2rem;
  font-weight: bold;
  color: #3d414d;
  display: flex;
  align-items: center;
  height: 60%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .logo-scroll-text {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .logo-scroll-item img {
    height: 50%;
    max-width: 80px;
    max-height: 40px;
  }

  .logo-scroll-track {
    gap: 1rem;
    padding: 0 1rem;
  }
}

.home_first--list {
  padding-bottom: 3vh;
  gap: 1rem;
  margin-top: -1vh;
  width: 90%;
  max-width: 1320px;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

/* PC: 6つ1行（画像200px×6 + 余白） */
@media screen and (min-width: 48em) {
  .home_first--list {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
  }

  .home_first--item {
    width: calc((100% - 1.5rem * 5) / 6);
    flex: 0 0 calc((100% - 1.5rem * 5) / 6);
  }

  .home_first--break {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .home_first--list {
    width: 95%;
    min-width: auto;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 0;
  }
}

.home_first--item {
  position: relative;
  width: 30%;
  flex-shrink: 0;
}

.home_first--item {
  transform: translateY(1.25rem);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.home_first--item.active,
.home_first--item.loaded {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .home_first--list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .home_first--item {
    row-gap: 0.8571428571rem;
    aspect-ratio: 1/1;
    margin-bottom: 1rem;
  }

  /* SP: 上段 1-3番目を3つ並べる */
  .home_first--item:nth-of-type(1),
  .home_first--item:nth-of-type(2),
  .home_first--item:nth-of-type(3) {
    width: 30%;
    margin: 0;
    flex: 0 0 30%;
  }

  /* 改行用の要素（SPのみ表示） */
  .home_first--break {
    flex-basis: 100%;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
  }

  /* SP: 下段 5-7番目を3つ並べる */
  .home_first--break~.home_first--item {
    width: 30%;
    margin-left: 0;
    margin-right: 0;
    flex: 0 0 30%;
  }
}

.home_first--item:nth-of-type(1) {
  z-index: 5;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(1) {
    transition-delay: 0.2s;
  }
}

.home_first--item:nth-of-type(2) {
  z-index: 4;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(2) {
    transition-delay: 0.4s;
  }
}

.home_first--item:nth-of-type(3) {
  z-index: 3;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(3) {
    transition-delay: 0.6s;
  }
}

.home_first--item:nth-of-type(4) {
  z-index: 2;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(4) {
    transition-delay: 0.8s;
  }
}

.home_first--item:nth-of-type(5) {
  z-index: 1;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(5) {
    transition-delay: 1s;
  }
}

.home_first--item:nth-of-type(6) {
  z-index: 1;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(6) {
    transition-delay: 1.2s;
  }
}

.home_first--item:nth-of-type(7) {
  z-index: 1;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(7) {
    transition-delay: 1.4s;
  }
}

.home_first--item .num {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1;
}

.home_first--item .img {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home_first--item .img img {
  width: 100%;
  height: auto;
  max-width: 200px;
  object-fit: contain;
}

.home_first--item .award-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  z-index: 1;
}

.home_first--item .award-label {
  font-size: 1.3rem;
  line-height: 1.4;
  color: #333;
  margin: 0 0 0.5rem 0;
  font-weight: bold;
}

.home_first--item .award-number {
  font-size: 2rem;
  line-height: 1.2;
  color: #ff2722;
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.home_first--item .award-num {
  font-size: 1.5em;
  display: inline-block;
}

.home_first--item .award-unit {
  font-size: 1.3rem;
  line-height: 1.4;
  color: #333;
  font-weight: bold;
  display: block;
  margin-top: 0.3rem;
}

.home_first--item .award-date {
  line-height: 1.3;
  color: #333333;
  margin: 0.4rem 0 0 0;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .home_first--item .img img {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
  }

  .home_first--item .award-label {
    font-size: 0.7142857143rem;
    margin-bottom: 0.2857142857rem;
  }

  .home_first--item .award-number {
    font-size: 1.4285714286rem;
  }

  .home_first--item .award-num {
    font-size: 1.5em;
  }

  .home_first--item .award-unit {
    font-size: 0.7142857143rem;
    line-height: 1.4;
    margin-top: 0.2rem;
  }

  .home_first--item .award-date {
    font-size: 0.7142857143rem;
  }
}

.home_first--item .ttl {
  min-height: 3.25rem;
  line-height: 1.625;
}
/* ===== PCで画面が低い環境（ノートPC）: FVを圧縮し、キャンペーン帯（オレンジ）が初見で見えるようにする（2026-09-07） ===== */
@media screen and (min-width: 769px) and (max-height: 1100px) {
  main .hero-page { padding-top: 0; }
  .hero { zoom: 0.7; }
  .home_first--ttlarea { height: 40px; }
  .logo-scroll-item img { height: 26px; max-height: 26px; max-width: 80px; }
  .logo-scroll-text { font-size: 1.25rem; }
  .logo-scroll-track { gap: 2rem; }
  .home_first--list { margin-top: 0; padding-bottom: 8px; gap: 1rem; }
  .home_first--item { zoom: 0.55; }
  .promotion__kv { padding: 8px 0; }
  .promotion__ttl { font-size: 24px; line-height: 1.4; }
}
@media screen and (min-width: 769px) and (max-height: 900px) {
  .hero { zoom: 0.5; }
}
@media screen and (min-width: 769px) and (max-height: 720px) {
  .hero { zoom: 0.45; }
}
/* 円形アイコン下の文字: Mac の游ゴシックは bold が細く出るので Hiragino W8 相当を優先（2026-09-07） */
.hero--item .ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-weight: 900;
}

/* ===== PC: #scroll_feature 以降を引きの縮尺にして1画面の情報量を増やす（2026-09-07） ===== */
@media screen and (min-width: 769px) {
  #scroll_feature, #scroll_free, #scroll_voice, [data-sec="promotion_feature"], [data-sec="promotion_2"], #scroll_plan, [data-sec="step"], [data-sec="promotion_3"], #scroll_manga, #scroll_faq, #scroll_company, .ftr { zoom: 0.8; }
  :is(#scroll_feature, #scroll_free, #scroll_voice, [data-sec="promotion_feature"], [data-sec="promotion_2"], #scroll_plan, [data-sec="step"], [data-sec="promotion_3"], #scroll_faq, #scroll_company) .cont__inner { max-width: 1250px; }
  .ftr__inner { max-width: 1500px; }
}

/* ===== SOLUTION: 画像＋文章のかたまりを中央寄せにして、左右交互でも中心を揃える（2026-09-07） ===== */
@media screen and (min-width: 769px) {
  .solution__item { justify-content: center; }
  .solution__txtarea { flex: 0 1 auto; }
}

/* ===== FREE: インストールするだけで使える無料機能（2026-09-07） ===== */
#scroll_free { padding: 100px 0 60px; background: #fff; }
.free__lead { text-align: center; font-size: 16px; line-height: 1.9; margin: 0 0 26px; color: #333; }
.free__grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 920px; margin: 0 auto; padding: 0; }
.free__card { display: flex; gap: 12px; align-items: flex-start; background: #f2f7fa; border-radius: 8px; padding: 16px 18px; }
.free__card .free__check { width: 23px; height: auto; flex: none; margin-top: 3px; }
.free__card--wide { grid-column: 1 / -1; }
.free__body { position: relative; flex: 1; min-width: 0; }
.free__name { font-weight: bold; font-size: 17px; line-height: 1.4; margin: 0 0 4px; color: #0b233b; }
.free__tag { display: inline-block; font-size: 12px; font-weight: bold; color: #ff2722; border: 1px solid #ff2722; border-radius: 3px; padding: 0 6px; margin-left: 8px; vertical-align: middle; line-height: 1.6; }
.free__desc { font-size: 14px; line-height: 1.7; margin: 0; color: #333; }
.free__note { text-align: center; font-size: 13px; color: #73859f; margin: 18px 0 0; }
.free__btnarea { text-align: center; margin: 28px 0 0; }
.free__btn { display: inline-block; background: #f9b233; color: #fff; font-weight: bold; font-size: 18px; padding: 14px 40px; border-radius: 40px; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,.15); }
.free__btn:hover { opacity: .9; }
@media screen and (max-width: 768px) {
  #scroll_free { padding: 40px 0; }
  .free__lead { font-size: 14px; text-align: left; padding: 0 4px; }
  .free__grid { grid-template-columns: 1fr; gap: 10px; }
  .free__name { font-size: 16px; }
  .free__desc { font-size: 13px; }
  .free__btn { font-size: 16px; padding: 12px 30px; }
}

/* ===== FEATURE: 無料/有料の2枚タイルと有料版サブ見出し（2026-09-07） ===== */
.feature__tiers { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 860px; margin: 30px auto 50px; padding: 0; }
.feature__tier { background: #fff; border-radius: 10px; padding: 22px 24px 20px; box-shadow: 0 5px 15px rgba(0,0,0,.08); border-top: 6px solid #4fb6d9; text-align: center; }
.feature__tier--paid { border-top-color: #f9b233; }
.feature__tier-label { display: inline-block; font-size: 13px; font-weight: bold; color: #fff; background: #4fb6d9; border-radius: 20px; padding: 2px 14px; margin: 0 0 10px; }
.feature__tier--paid .feature__tier-label { background: #f9b233; }
.feature__tier-name { font-size: 20px; font-weight: bold; color: #0b233b; margin: 0 0 8px; line-height: 1.4; }
.feature__tier-desc { font-size: 14px; line-height: 1.7; color: #333; margin: 0; }
.feature__tier-link { display: inline-block; font-size: 14px; font-weight: bold; color: #0b233b; text-decoration: underline; }
.feature__sub { text-align: center; font-size: 28px; font-weight: bold; color: #0b233b; margin: 0 0 20px; line-height: 1.4; }
.feature__ttl--top { margin-top: 44px; }
@media screen and (max-width: 768px) {
  .feature__tiers { grid-template-columns: 1fr; gap: 12px; margin: 20px 0 30px; }
  .feature__tier { padding: 18px 16px 16px; }
  .feature__tier-name { font-size: 17px; }
  .feature__tier-desc { font-size: 13px; }
  .feature__sub { font-size: 20px; }
  .feature__ttl--top { margin-top: 30px; }
}

/* FREE: ?アイコンとスクショのポップアップ */
.free__help { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; margin-left: 8px; border-radius: 50%; border: 1.5px solid #4fb6d9; background: #fff; color: #4fb6d9; font-size: 13px; font-weight: bold; line-height: 1; cursor: pointer; vertical-align: middle; padding: 0; }
.free__help:hover { background: #4fb6d9; color: #fff; }
.free__pop { display: none; position: absolute; left: 0; top: 100%; z-index: 30; width: max-content; max-width: min(560px, 88vw); margin-top: 8px; background: #fff; border-radius: 8px; box-shadow: 0 8px 28px rgba(0,0,0,.25); padding: 8px; }
.free__pop img { display: block; width: auto; max-width: 100%; max-height: 60vh; height: auto; border-radius: 4px; }
.free__pop-cap { font-size: 12px; color: #73859f; margin: 6px 2px 0; }
@media screen and (min-width: 769px) { .free__body:has(.free__help:hover) .free__pop, .free__body:has(.free__help:focus-visible) .free__pop { display: block; } }
.free__item:has(.free__help:hover) { z-index: 31; position: relative; }
/* FEATURE: 図と箱の間・箱の中の余白 */
.feature__block { margin-top: 60px; padding-top: 50px; }
.feature__block .cont__txt--center { line-height: 2; }
.feature__ttl--top { margin-top: 56px; }
@media screen and (max-width: 768px) {
  .feature__block { margin-top: 36px; padding-top: 36px; }
  .feature__ttl--top { margin-top: 36px; }
  .free__pop { left: -44px; }
}

/* FREE: 3ページ構成 */
.free__sub { text-align: center; font-size: 26px; font-weight: bold; color: #0b233b; margin: 0 0 22px; line-height: 1.4; }
.free__page { display: flex; gap: 28px; align-items: flex-start; background: #f2f7fa; border-radius: 12px; padding: 24px; margin: 0 auto 18px; max-width: 1100px; }
.free__page-img { flex: 0 0 44%; }
.free__page-img img { display: block; width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 14px rgba(0,0,0,.12); background: #fff; }
.free__page-body { flex: 1; min-width: 0; }
.free__page-num { font-size: 12px; font-weight: bold; color: #4fb6d9; letter-spacing: .12em; margin: 0; }
.free__page-name { font-size: 22px; font-weight: bold; color: #0b233b; margin: 2px 0 8px; line-height: 1.3; }
.free__page-desc { font-size: 14px; line-height: 1.75; color: #333; margin: 0 0 14px; }
.free__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.free__item { display: flex; gap: 10px; align-items: flex-start; background: #fff; border-radius: 8px; padding: 12px 14px; }
.free__item .free__check { width: 20px; height: auto; flex: none; margin-top: 3px; }
.free__item .free__name { font-size: 16px; }
.free__item .free__desc { font-size: 13px; line-height: 1.65; }
/* FEATURE: 図と箱を1画面に収める */
.feature-services-img { max-width: 540px; }
.feature__block { margin-top: 36px; padding: 34px 50px 26px; }
.feature__block .feature__ttl { margin-bottom: 10px; }
.feature__block .cont__txt--center { line-height: 1.8; }
.feature__ttl--top { margin-top: 26px; }
.feature__block .feature__center { margin: 16px 0; }
@media screen and (max-width: 768px) {
  .free__sub { font-size: 20px; }
  .free__page { flex-direction: column; gap: 14px; padding: 14px; }
  .free__page-img { flex: none; width: 100%; }
  .free__page-name { font-size: 19px; }
  .feature__block { margin-top: 24px; padding: 26px 16px 20px; }
  .feature__ttl--top { margin-top: 22px; }
}
@media screen and (min-width: 769px) {
  .feature-services-img { max-width: 500px; }
  .feature__block { margin-top: 30px; padding: 30px 50px 22px; }
  .feature__block .feature__slist { width: 100%; max-width: 920px; justify-content: center; gap: 0 36px; }
  .feature__block .feature__sitem { width: auto; }
  .feature__block .feature__sitem:not(:last-of-type) { margin-bottom: 8px; }
}
.free__lead-strong { display: inline-block; margin-top: 8px; font-size: 1.15em; color: #0b233b; }

/* ===== PLAN パッケージ表: 下段（ラクマ／ヤフフリ）が枠外にはみ出す・料金の例を1行に（2026-09-07） ===== */
@media screen and (min-width: 769px) {
  .plan-package-top .plan-group, .plan-package-bottom .plan-group { min-width: 0; }
  .plan-package-top-left, .plan-package-top-right, .plan-package-bottom-left, .plan-package-bottom-right { min-width: 0; }
  .plan .package .pricecard { min-width: 0; flex: 1 1 0; }
  .plan-package-examples__case { flex-wrap: nowrap; white-space: nowrap; gap: 12px; }
  .plan-package-examples__case-text { font-size: 14px; }
  .plan-package-examples__formula-text { min-width: 0; font-size: 12px; text-align: left; overflow: hidden; text-overflow: ellipsis; }
  .plan-package-examples__formula-result { flex: 0 0 auto; }
}

/* FREE: スマホ用の全画面モーダル（?をタップ） */
.free-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 16px; }
.free-modal[hidden] { display: none; }
.free-modal__bg { position: absolute; inset: 0; background: rgba(0,0,0,.78); }
.free-modal__box { position: relative; background: #fff; border-radius: 12px; padding: 12px 12px 10px; max-width: 94vw; max-height: 88vh; display: flex; flex-direction: column; box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.free-modal__body { overflow: auto; -webkit-overflow-scrolling: touch; }
.free-modal__body img { display: block; width: auto; max-width: 100%; max-height: 72vh; height: auto; margin: 0 auto; border-radius: 6px; }
.free-modal__cap { font-size: 12px; color: #73859f; margin: 8px 2px 0; text-align: center; }
.free-modal__close { position: absolute; top: -14px; right: -10px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: #0b233b; color: #fff; font-size: 26px; line-height: 40px; padding: 0; box-shadow: 0 2px 8px rgba(0,0,0,.35); cursor: pointer; }
body.free-modal-open { overflow: hidden; }

/* PREMIUM の王冠（SVG） */
.plan-service__number--crown { display: inline-block; line-height: 0; filter: drop-shadow(0 4px 6px rgba(120,80,0,.28)); }
/* SOLUTION（スマホ）: 見出しと1つ目の余白を詰める */
@media screen and (max-width: 768px) {
  .solution__list { margin-top: 16px; }
  .solution__item:nth-of-type(1) { margin-top: 32px; }
}
/* 漫画（PC）: 読み順の番号と案内 */
.manga_inner.manga_strip { counter-reset: mangaPage; }
.manga_page { position: relative; counter-increment: mangaPage; }
.manga_page::before { content: counter(mangaPage); position: absolute; top: 8px; right: 8px; z-index: 2; width: 30px; height: 30px; border-radius: 50%; background: #ff2722; color: #fff; font-weight: bold; font-size: 15px; line-height: 30px; text-align: center; box-shadow: 0 2px 6px rgba(0,0,0,.3); direction: ltr; }
.manga_hint-sp { display: none; }
@media screen and (min-width: 769px) {
  .manga_hint { display: block; font-size: 14px; color: #0b233b; }
  .manga_hint b { display: inline-block; width: 22px; height: 22px; line-height: 22px; border-radius: 50%; background: #ff2722; color: #fff; text-align: center; font-size: 13px; }
}
@media screen and (max-width: 768px) {
  .manga_hint-pc { display: none; }
  .manga_hint-sp { display: inline; }
}

/* 漫画: 見出しのデザインとPCホバー拡大 */
.manga { background: #fff; background-image: radial-gradient(#e3e8ee 1px, transparent 1px); background-size: 14px 14px; padding: 48px 0 40px; }
.manga_head { max-width: 1080px; margin: 0 auto 18px; padding: 0 12px; display: block; text-align: center; }
.manga_head .cont__en { margin-bottom: 4px; }
.manga_ttl.cont__ttl { margin: 0; font-size: 6vw; }
@media screen and (min-width: 641px) { .manga_ttl.cont__ttl { font-size: 2.42857rem; } }
.manga_hint { margin: 10px 0 0; font-size: 14px; color: #0b233b; }
.manga_page { cursor: zoom-in; transition: transform .15s ease, box-shadow .15s ease; }
.manga_page img { box-shadow: 0 2px 8px rgba(0,0,0,.08); }
@media screen and (min-width: 769px) {
  .manga_page:hover { transform: translateY(-3px); }
  .manga_page:hover img { box-shadow: 0 8px 20px rgba(0,0,0,.18); }
}
.manga_zoom { display: none; position: fixed; inset: 0; z-index: 9990; background: rgba(0,0,0,.72); pointer-events: none; align-items: center; justify-content: center; padding: 20px; }
.manga_zoom.is-on { display: flex; }
.manga_zoom img { display: block; width: auto; height: auto; max-height: 94vh; max-width: min(92vw, 720px); background: #fff; border-radius: 4px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.manga_zoom-num { position: absolute; right: 24px; bottom: 18px; color: #fff; font-weight: bold; font-size: 16px; letter-spacing: .08em; }

.free__page-catch { font-size: 19px; font-weight: bold; color: #e8590c; line-height: 1.45; margin: 2px 0 8px; }
@media screen and (max-width: 768px) { .free__page-catch { font-size: 17px; } }

/* ショップ調査の詳しい説明（ポップアップ／モーダル共通） */
.free__pop--wide { max-width: min(680px, 88vw); }
.free__pop-txt .free__pop-cap { text-align: left; color: #333; font-size: 13px; margin: 8px 2px 4px; }
.free__pop-list { list-style: none; padding: 0; margin: 0 2px; font-size: 12px; line-height: 1.6; color: #333; }
.free__pop-list li { padding: 6px 8px; margin-top: 4px; background: #f2f7fa; border-radius: 6px; }
.free__pop-list b { color: #0b233b; }
.free-modal__cap { font-size: 12px; color: #73859f; margin: 8px 2px 0; text-align: center; max-height: 30vh; overflow: auto; }
.free-modal__cap .free__pop-cap { text-align: left; color: #333; }

.free__lead-em { display: inline-block; font-size: 1.35em; color: #e8590c; line-height: 1.5; margin: 4px 0 6px; }
.free__line-note { text-align: center; font-size: 13px; margin: 12px 0 0; }
.free__line-note a { color: #06c755; font-weight: bold; text-decoration: none; border-bottom: 1px solid #06c755; padding-bottom: 1px; }
.free__line-note i { font-size: 16px; vertical-align: -1px; }
@media screen and (max-width: 768px) { .free__lead-em { font-size: 1.2em; } }
.feature__tier-em { display: block; font-size: 1.5em; color: #e8590c; line-height: 1.2; margin-top: 2px; }
/* 悩みセクション下端の三角矢印: 次の区画（zoom付き）に塗り潰されて先端が消えるので、悩み側を前面に */
#scroll_problem { z-index: 2; }
#scroll_problem .cont__arrow { filter: drop-shadow(0 3px 4px rgba(0,0,0,.25)); }

/* キャンペーン帯: 何が無料かを明示するサブ文 */
.promotion__sub { color: #fff; text-align: center; font-size: 14px; line-height: 1.7; margin: 8px auto 0; max-width: 820px; opacity: .95; }
.promotion__sub b { color: #ffe27a; }
@media screen and (max-width: 768px) { .promotion__sub { font-size: 12px; padding: 0 12px; } }

/* FEATURE を導入（無料/有料タイル）と有料3サービスに分割し、間に FREE を挟む */

/* PROBLEM の締め: FurimAutoにお任せください！＋無料/有料タイル */
.problem__answer { margin-top: 48px; text-align: center; position: relative; z-index: 1; }
.problem__answer-ttl { color: #fff; font-size: 34px; font-weight: bold; line-height: 1.3; margin: 0; }
.problem__answer-txt { color: #fff; font-size: 17px; line-height: 1.9; margin: 12px 0 0; }
.problem__answer .feature__tiers { margin: 26px auto 10px; }
@media screen and (max-width: 768px) {
  .problem__answer { margin-top: 30px; }
  .problem__answer-ttl { font-size: 24px; }
  .problem__answer-txt { font-size: 14px; }
  .problem__answer .feature__tiers { margin: 18px 0 0; }
}

/* 有料サービス: 特徴（3サービス）と料金表をひと続きに */
#scroll_feature { padding-bottom: 40px; }
#scroll_plan { padding-top: 10px; }
/* 有料サービス: 特徴（SERVICE）の背景を料金表と同じ灰色にしてひと続きに */
#scroll_feature { background: #f7f7f7; }

/* ===== PREMIUM PLAN v3: a-design の FV 背景（淡いグレー＋ブランドカラーの曲線）で明るく上質に ===== */
.plan-service--premium { background: #f1f4f8 url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20375%20803%22%3E%3Cpath%20fill%3D%22%23e6ebf1%22%20d%3D%22M16.376%20759.542Q8.109%20758.834%200%20757.916V62.407a701.423%20701.423%200%200%201%20121.143-44.743A690.1%20690.1%200%200%201%20209.827%200H375v701.369a845.145%20845.145%200%200%201-97.094%2032.353A823.946%20823.946%200%200%201%20120.7%20760.2c-26.925%207.371-32.769%2021.883-27.472%2042.8-28.108-4.4-59.443-16.214-76.852-43.458Z%22%2F%3E%3Cpath%20fill%3D%22%23bfe6f9%22%20d%3D%22M.001%20526.534V403.076c43.979%2063.162%20113.372%20112.673%20213.88%20137.825a357.154%20357.154%200%200%201-87%2011.042A330.462%20330.462%200%200%201%20.001%20526.534Z%22%2F%3E%3Cpath%20fill%3D%22%238fd3f5%22%20d%3D%22M.002%20526.704v-67.716c50.994%2048.654%20110.773%2082.124%20171.447%2090.161a222.616%20222.616%200%200%201-52.007%206.088c-39.91.01-80.172-10.274-119.44-28.533Z%22%2F%3E%3Cpath%20fill%3D%22%2366c4f1%22%20d%3D%22M.005%20405.694v-13.693h.284a461.837%20461.837%200%200%200%2025.293%2044.146A364.889%20364.889%200%200%201%20.005%20405.694Z%22%2F%3E%3Cpath%20fill%3D%22%23ff8d8a%22%20d%3D%22M178.487%20562.069c62.959-14.473%20130.276-14.464%20196.512-2.357v141.752q-4.919%201.982-9.891%203.911c-45.482-52.784-106.462-101.404-186.621-143.306Z%22%2F%3E%3Cpath%20fill%3D%22%23fe5b57%22%20d%3D%22M281.071%20623.16A802.075%20802.075%200%200%201%20375%20676.694v24.77a819.207%20819.207%200%200%201-8.763%203.473%20686.272%20686.272%200%200%200-85.166-81.777Z%22%2F%3E%3Cpath%20fill%3D%22%23fe2823%22%20d%3D%22M239.792%20597.986c45.618%203.137%2092.495%2022.142%20135.207%2047.937v48.266c-33.16-29.177-76.923-62.272-135.207-96.203Z%22%2F%3E%3C%2Fsvg%3E") no-repeat center top / cover; padding: 48px 0 56px; position: relative; }
@media screen and (min-width: 769px) { .plan-service--premium { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201875.78%20954.003%22%3E%3Cpath%20fill%3D%22%23e6ebf1%22%20d%3D%22M529.37%20954.003c-34.951-5.618-74.651-22.75-86.312-66.737-225.157-42.21-389.844-150.717-432.457-309.752C-37.138%20399.352%2079.526%20176.541%20296.64.001h1535.141a340.476%20340.476%200%200%201%2033.394%2080.582c77.19%20288.072-275.4%20632.844-787.524%20770.066-165.01%2044.215-326.459%2061.488-472.08%2054.953.209.059.415.12.618.179-68.194%201.363-83.714%2018.166-76.15%2048.222Z%22%2F%3E%3Cpath%20fill%3D%22%23ff8d8a%22%20d%3D%22M1433.329%20406.177c-187.079%20119.631-255.521%20269.593-262.653%20416.724q-45.528%2015-93.024%2027.746a1679.785%201679.785%200%200%201-231.759%2045.148c-25.28-288.135%20309.553-528.41%20587.436-489.618Z%22%2F%3E%3Cpath%20fill%3D%22%23ff4541%22%20d%3D%22M1244.63%20584.148c-44.455%2067.032-59.679%20150.6-47.882%20229.93q-24.867%208.643-50.376%2016.628c8.058-95.504%2039.938-177.842%2098.258-246.558Z%22%2F%3E%3Cpath%20fill%3D%22%23fe5b57%22%20d%3D%22M1336.46%20475.973c-113.911%20110.4-169.168%20231.581-174.423%20349.749q-41.381%2013.386-84.387%2024.928-20.489%205.49-40.936%2010.437c22.017-133.352%20125.04-280.616%20299.746-385.114Z%22%2F%3E%3Cpath%20fill%3D%22%23fe2823%22%20d%3D%22M1375.388%20447.302c-138.382%2021.753-275.502%20192.854-279.093%20239.955%208.2%2012.527%2040.917-9.186%2060.136-20.823%2018.86-7.481%2056.02-104.163%20218.957-219.132Z%22%2F%3E%3Cpath%20fill%3D%22%23fe2823%22%20d%3D%22M1048.876%20791.771c7.821-6.267%2021.93%2026.069%2021.015%2031.559-1.26%207.679-1.555%2017.905-1.042%2029.653q-27.032%207.091-53.93%2013.229c7.242-28.81%2019.974-51.576%2033.957-74.441Z%22%2F%3E%3Cpath%20fill%3D%22%23a6dcf7%22%20d%3D%22M1607.23.003h135.608c-24.37%20135.074-84.453%20254.935-212.785%20304.662%2074.626-75.316%2097.796-196.724%2077.177-304.662Z%22%2F%3E%3Cpath%20fill%3D%22%23bfe6f9%22%20d%3D%22M1466.171%20447.772c-75.092-.012-148.9-23.021-216.311-77.739%20273.662%2052.944%20417.8-149.086%20444.533-370.029h137.391a340.6%20340.6%200%200%201%2033.391%2080.579c16.735%2062.453%2013.27%20127.563-7.64%20192.654-115.016%2099.115-255.347%20174.535-391.315%20174.535Z%22%2F%3E%3Cpath%20fill%3D%22%238fd3f5%22%20d%3D%22M1450.101%20447.546c-62.372%200-119.706-15.882-165.268-52.111%20194.429%2061.132%20499.192-137.573%20489.364-376.007%208.98-4.771%2020.376-11.48%2033.233-19.431h24.352a340.535%20340.535%200%200%201%2033.4%2080.581c16.4%2061.223%2013.39%20125.024-6.432%20188.832-114.6%20103.6-273.472%20178.136-408.62%20178.136Z%22%2F%3E%3Cpath%20fill%3D%22%2366c4f1%22%20d%3D%22M1464.794%20354.67c138.652-87.521%20113.01-153.946%20136.457-206.531%2013.52-20.98%2056.184-39.592%2064.47-32.875%2020.523%2028.388-46.772%20177.592-200.927%20239.405Z%22%2F%3E%3Cpath%20fill%3D%22%2366c4f1%22%20d%3D%22M1724.186%2077.438c-1.922-1.327%2012.94-31.007%2021.74-77.435h54.75c-12.352%2025.053-27.866%2046.193-45.933%2061.2-4.012%205.458-20.492%2016.976-27.98%2016.979a4.039%204.039%200%200%201-2.577-.744Z%22%2F%3E%3C%2Fsvg%3E"); background-size: cover; background-position: center top; } }
.plan-service--premium .plan-service__header { margin-top: 0; padding-top: 0; }
.plan-service--premium .plan-service__title { color: #0b233b; letter-spacing: .14em; font-weight: 900; }
.plan-service--premium .premium { max-width: 1000px; margin: 14px auto 0; border-radius: 18px; border: 1px solid rgba(207,233,247,.9); background: rgba(255,255,255,.72); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: inset 0 0 0 5px rgba(255,255,255,.6), inset 0 0 0 6px rgba(227,241,249,.9), 0 2px 6px rgba(0,0,0,.04), 0 24px 56px -24px rgba(11,35,59,.25); }
.premium__inner { padding: 46px 48px 40px; text-align: center; color: #22262e; position: relative; }
.premium__inner::before { content: none; }
.premium__eyebrow { display: inline-block; font-size: 12px; letter-spacing: .16em; color: #0b233b; font-weight: 700; margin: 0 0 12px; background: #fff; border: 1px solid #cfe9f7; border-radius: 999px; padding: 3px 14px; }
.premium__ttl { font-size: 24px; font-weight: 700; color: #0b233b; margin: 0; letter-spacing: .04em; line-height: 1.45; }
.premium__ttl span { display: block; font-size: 34px; font-weight: 900; background: linear-gradient(125deg, #2f9fd8 0%, #2f9fd8 30%, #fe2823 70%, #fe2823 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.premium__price { margin: 18px 0 6px; line-height: 1; }
.premium__price-num { font-size: 64px; font-weight: 900; letter-spacing: .01em; color: #0b233b; background: none; -webkit-background-clip: initial; background-clip: initial; }
.premium__price-unit { font-size: 16px; color: #4d525c; margin-left: 10px; font-weight: 700; letter-spacing: .06em; }
.premium__lead { font-size: 14px; line-height: 1.9; color: #4d525c; margin: 14px auto 28px; max-width: 760px; }
.premium__lead b { color: #0b233b; font-weight: 700; }
.premium__perks { list-style: none; padding: 0; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 860px; text-align: left; }
.premium__perk { position: relative; background: rgba(255,255,255,.8); border: 1px solid #cfe9f7; border-radius: 12px; padding: 18px 18px 16px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,.03), 0 14px 34px -18px rgba(0,0,0,.12); }
.premium__perk::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #2f9fd8, #fe2823); }
.premium__perk-k { display: inline-block; font-size: 12px; letter-spacing: .12em; color: #2f9fd8; font-weight: 700; margin-bottom: 6px; }
.premium__perk-t { margin: 0; font-size: 14px; line-height: 1.7; color: #22262e; }
.premium__perk-t b { color: #d91a15; font-size: 15px; font-weight: 700; }
.plan-service--premium .plan-table-sp { margin-top: 20px; }
@media screen and (max-width: 768px) {
  .plan-service--premium { padding: 32px 0 32px; }
  .premium__inner { padding: 28px 18px 24px; }
  .premium__ttl { font-size: 19px; }
  .premium__ttl span { font-size: 26px; }
  .premium__price-num { font-size: 44px; }
  .premium__perks { grid-template-columns: 1fr; }
}
.plan-service--premium .plan__inner { background: transparent; border: 0; box-shadow: none; padding-left: 0; padding-right: 0; }
.plan .premium__perks { display: grid; margin-top: 0; }
@media screen and (max-width: 768px) { .plan .premium__perks { grid-template-columns: 1fr; } }

/* 01〜03 の右下に税抜き注記 */
.plan-service__tax { position: absolute; right: calc(5% + 18px); bottom: 48px; margin: 0; font-size: 12px; color: #73859f; }
@media screen and (max-width: 768px) {
  .plan-service__tax { right: calc(5% + 10px); bottom: 44px; font-size: 11px; }
}
/* スマホ: 料金シミュレーションを詰めて1画面の情報量を増やす／漫画の番号バッジを消す */
@media screen and (max-width: 768px) {
  .plan-service--simulator { padding: 16px 0 8px; }
  .plan-service--simulator .plan-service__number { font-size: 2.2rem; }
  .plan-service--simulator .plan-service__title { font-size: 18px; padding: 4px 0 8px; }
  .plan-service--simulator .plan-service__content { padding-bottom: 6px; }
  .plan-simulator-video { margin-bottom: 10px !important; }
  .plan-simulator-video p { font-size: 12px !important; margin-bottom: 6px !important; }
  .plan-simulator-video p:last-child { font-size: 11px !important; margin-top: 6px !important; }
  .manga_page::before { display: none; }
}
@media screen and (max-width: 768px) {
  .plan-simulator { margin-top: 12px; padding: 8px 6px; }
}

/* 15大特典: キャッチ（吹き出し）と期限 */
.offer__catch { position: relative; max-width: 680px; margin: 0 auto 30px; background: #fff; border-radius: 14px; padding: 16px 24px 18px; text-align: center; box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.offer__catch::after { content: ""; position: absolute; left: 50%; bottom: -14px; width: 28px; height: 28px; margin-left: -14px; background: #fff; transform: rotate(45deg); border-radius: 4px; box-shadow: 6px 6px 12px rgba(0,0,0,.06); }
.offer__catch-1 { margin: 0; font-size: 16px; font-weight: bold; color: #0b233b; line-height: 1.6; }
.offer__catch-1 b { color: #ff2722; }
.offer__catch-2 { margin: 6px 0 0; font-size: 22px; font-weight: 900; color: #0b233b; line-height: 1.5; letter-spacing: .02em; }
.offer__hl { color: #e8590c; font-size: 1.25em; }
.offer__hl--red { color: #ff2722; }
.offer__deadline { max-width: 560px; margin: 18px auto 16px; background: #fff; border-radius: 12px; padding: 14px 16px; text-align: center; box-shadow: 0 6px 16px rgba(0,0,0,.12); }
.offer__deadline-ttl { margin: 0; font-size: 15px; font-weight: bold; color: #0b233b; }
.offer__deadline-date { margin: 4px 0 0; font-size: 20px; font-weight: bold; color: #e8590c; }
.offer__deadline-date b { font-size: 1.3em; }
.offer__deadline-count { margin: 4px 0 0; font-size: 14px; color: #333; font-weight: bold; font-variant-numeric: tabular-nums; }
.offer__deadline-count span { color: #e8590c; font-size: 1.2em; }
@media screen and (max-width: 768px) {
  .offer__catch { padding: 12px 14px 14px; margin-bottom: 26px; }
  .offer__catch-1 { font-size: 13px; }
  .offer__catch-2 { font-size: 17px; }
  .offer__deadline { padding: 12px 12px; }
  .offer__deadline-date { font-size: 17px; }
}
.offer__deadline { position: relative; padding-top: 22px; }
.offer__deadline-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); margin: 0; background: #ff2722; color: #fff; font-size: 13px; font-weight: bold; padding: 4px 16px; border-radius: 999px; white-space: nowrap; box-shadow: 0 3px 8px rgba(0,0,0,.2); }
.offer__deadline-ttl b { color: #ff2722; }
@media screen and (max-width: 768px) {
  .promotion__btn--green { font-size: 16px; padding-left: 12px; padding-right: 28px; white-space: nowrap; letter-spacing: 0; }
}
/* キャンペーン: 白カードなしのLINEボタンのみ */
.promotion__btnarea--bare { max-width: 560px; margin: 0 auto; }
.promotion__btnarea--bare .promotion__btn--green { box-shadow: 0 8px 20px rgba(0,0,0,.18); }
@media screen and (max-width: 768px) { .promotion__btnarea--bare { padding: 0 8px; } }
@media screen and (max-width: 768px) {
  #scroll_feature { padding-bottom: 28px; }
  .plan-service--simulator { padding-top: 26px; }
  .plan-service--simulator .plan-service__header { margin-top: -6px; }
}

/* 有料サービス直下のCTA */
.feature__cta { max-width: 760px; margin: 34px auto 0; text-align: center; }
.feature__cta-lead { font-size: 16px; line-height: 1.8; color: #333; margin: 0 0 14px; }
.feature__cta-lead b { color: #0b233b; font-size: 1.1em; }
@media screen and (max-width: 768px) { .feature__cta { margin-top: 22px; } .feature__cta-lead { font-size: 14px; } }
/* 無料サービス: スマホは機能一覧をアコーディオン */
.free__acc-btn { display: none; }
@media screen and (max-width: 768px) {
  .free__acc-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 11px 12px; border: 1px solid #4fb6d9; border-radius: 8px; background: #fff; color: #0b233b; font-weight: bold; font-size: 14px; cursor: pointer; }
  .free__acc-btn::after { content: "▼"; font-size: 10px; color: #4fb6d9; }
  .free__acc.is-open .free__acc-btn::after { content: "▲"; }
  .free__acc-n { display: inline-block; min-width: 20px; height: 20px; line-height: 20px; border-radius: 10px; background: #4fb6d9; color: #fff; font-size: 12px; text-align: center; padding: 0 6px; }
  .free__acc .free__list { display: none; margin-top: 10px; }
  .free__acc.is-open .free__list { display: grid; }
}
.problem__answer-logo { display: inline-block; vertical-align: middle; margin-right: 10px; line-height: 0; }
.problem__answer-logo img { height: 40px; width: auto; display: block; }
@media screen and (max-width: 768px) { .problem__answer-logo { margin-right: 6px; } .problem__answer-logo img { height: 28px; } }
