/* =======================================================================
   REM CONVERSION CHEATSHEET (1rem = 16px)
   - 基本式: rem = px / 16
   - ユーティリティ命名例（あなたの方式）:
       0.25rem -> 025 / 1rem -> 100 / 1.25rem -> 125 / 1.5rem -> 150 …等
   -----------------------------------------------------------------------
   |  px  |   rem   | code |  px  |   rem   | code |  px  |   rem   | code |
   |------|---------|------|------|---------|------|------|---------|------|
   |   4  | 0.25rem | 025  |  36  | 2.25rem | 225  |  80  | 5.00rem | 500  |
   |   8  | 0.50rem | 050  |  40  | 2.50rem | 250  |  96  | 6.00rem | 600  |
   |  12  | 0.75rem | 075  |  48  | 3.00rem | 300  | 112  | 7.00rem | 700  |
   |  16  | 1.00rem | 100  |  56  | 3.50rem | 350  | 128  | 8.00rem | 800  |
   |  20  | 1.25rem | 125  |  64  | 4.00rem | 400  |      |         |      |
   |  24  | 1.50rem | 150  |  72  | 4.50rem | 450  |      |         |      |
   |  28  | 1.75rem | 175  |      |         |      |      |         |      |
   |  32  | 2.00rem | 200  |      |         |      |      |         |      |
   -----------------------------------------------------------------------
   よく使う値:
     20px=1.25rem(125), 28px=1.75rem(175), 36px=2.25rem(225), 40px=2.5rem(250),
     48px=3rem(300), 64px=4rem(400)
   補足:
     ・ユーティリティ例: .u-mb-125 { margin-bottom: 1.25rem !important; }
     ・細かい値が必要なときは 062=0.625rem(10px) などを個別に追加
   ======================================================================= */

@charset "UTF-8";
:root {
  --color-white: #fff;
  --color-black: #252525;
  --color-light-green: #f8fdea;
  --color-dark-green: #132620;
  --color-orange: #ff7e31;
}
/*------------------------------------------------------------------------------
共通設定
------------------------------------------------------------------------------*/
html,
body {
  font-family: -apple-system, BlinkMacSystemFont, system-ui, /* iOS/macOS UI */ "Hiragino Sans", "Hiragino Kaku Gothic ProN", /* mac系 */ "Yu Gothic UI", "Yu Gothic", "Meiryo", /* Windows */ Arial,
    sans-serif;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: -0.08em;
  background-color: var(--color-white);
  /* scroll-behavior: smooth; */
  color: var(--color-black);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
@media screen and (max-width: 768px) {
  html,
  body {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    font-size: 52%;
  }
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    height: 100%;
  }
}
body .sp-item {
  display: none !important;
}
@media screen and (max-width: 768px) {
  body .sp-item {
    display: block !important;
  }
}
body .pc-item {
  display: block !important;
}
@media screen and (max-width: 768px) {
  body .pc-item {
    display: none !important;
  }
}
a {
  text-decoration: underline;
}
.btn:hover {
  opacity: 0.7;
}
.btn-poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}
.btn-shine::after {
  animation: 2s 0s shine-btn linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
}
@keyframes shine-btn {
  0% {
    left: -100%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  background-color: var(--color-white);
  /* 左右のシャドウを保持 */
  box-shadow: 8px 0 16px rgba(0, 0, 0, 0.1), -8px 0 16px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .container {
    box-shadow: none;
  }
}
img {
  width: 100%;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/* Negative margin */
.lu-mt--001 {
  margin-top: -0.06rem !important;
}
.lu-mt--1200 {
  margin-top: -12rem !important;
}
/*------------------------------------------------------------------------------
ファーストビューエリア
------------------------------------------------------------------------------*/
.fv-news {
  position: relative;
}
.fv-news-bnr {
  position: absolute;
  top: 76%;
  left: 15%;
  width: 70%;
}
.fv-news-bnr__trigger {
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  cursor: pointer;
}
.fv-news-bnr__trigger picture,
.fv-news-bnr__trigger img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fv-news-bnr {
    top: 66%;
    left: 5%;
    width: 90%;
  }
}
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.news-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.news-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.news-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 90vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.news-modal__dialog img {
  width: 100%;
  height: auto;
  display: block;
}
.news-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
}
body.news-modal-open {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news-modal__dialog {
    width: 94vw;
  }
  .news-modal__close {
    top: -2rem;
    font-size: 1.75rem;
  }
}
/*------------------------------------------------------------------------------
CTAエリア
------------------------------------------------------------------------------*/
.cta-area {
  position: relative;
}
.cta-btn {
  position: absolute;
  filter: drop-shadow(0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.15));
}
.cta-btn-01 {
  top: 51%;
  left: 54.5%;
  width: 38%;
}
.cta-btn-02 {
  top: 44%;
  left: 54.5%;
  width: 38%;
}
.cta-btn-03 {
  top: 38%;
  left: 7.5%;
  width: 38%;
}
.cta-btn-04 {
  top: 47%;
  left: 7.5%;
  width: 38%;
}
.cta-btn-05 {
  top: 65%;
  left: 8%;
  width: 38%;
}
.cta-btn-06 {
  top: 65%;
  left: 54%;
  width: 38%;
}
.cta-btn-07 {
  top: 42%;
  left: 8%;
  width: 38%;
}
.cta-btn-08 {
  display: block;
  width: 38%;
  margin: 2rem auto 0;
}
@media screen and (max-width: 768px) {
  .cta-btn-01 {
    top: 63%;
    left: 5%;
    width: 90%;
  }
  .cta-btn-02 {
    top: 52%;
    left: 5%;
    width: 90%;
  }
  .cta-btn-03 {
    top: 31%;
    left: 5%;
    width: 90%;
  }
  .cta-btn-04 {
    top: 38%;
    left: 5%;
    width: 90%;
  }
  .cta-btn-05 {
    top: 35%;
    left: 5%;
    width: 90%;
  }
  .cta-btn-06 {
    top: 71%;
    left: 5%;
    width: 90%;
  }
  .cta-btn-07 {
    top: 27%;
    left: 5%;
    width: 90%;
  }
  .cta-btn-08 {
    width: 90%;
  }
}
/*------------------------------------------------------------------------------
セミナーエリア
------------------------------------------------------------------------------*/
.seminar-area {
  padding: 6rem 0;
  background-image: repeating-linear-gradient(
      to right,
      rgb(from var(--color-black) r g b / 0.06) 0,
      rgb(from var(--color-black) r g b / 0.06) 1px /* 線の太さ */,
      transparent 1px,
      transparent 2.5rem /* マス目 */
    ),
    repeating-linear-gradient(to bottom, rgb(from var(--color-black) r g b / 0.06) 0, rgb(from var(--color-black) r g b / 0.06) 1px /* 線の太さ */, transparent 1px, transparent 2.5rem /* マス目 */);
}
/*------------------------------------------------------------------------------
武器エリア
------------------------------------------------------------------------------*/
.comparison-scroll {
  position: relative;
  overflow: visible;
}
.comparison-scroll-table {
  position: absolute !important;
  top: 22%;
  left: 7%;
  width: 86%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .comparison-scroll-table {
    top: 20%;
    left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100vw;
    z-index: 1;
    padding: 0 2rem;
  }
}
.comparison-scroll-table img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .comparison-scroll-table img {
    width: auto;
    min-width: 180%;
    height: auto;
    display: block;
  }
}
/*------------------------------------------------------------------------------
コラボエリア
------------------------------------------------------------------------------*/
.collaboration-area {
  position: relative;
  margin-bottom: 6rem;
}
.collaboration-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: -12rem auto 6rem;
}
/*------------------------------------------------------------------------------
利用者の声エリア
------------------------------------------------------------------------------*/
.voice-items {
  background-color: var(--color-light-green);
  border-radius: 2rem;
  box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.1);
  margin: -3rem 2rem 6rem 2rem;
  padding: 6rem 2rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .voice-items {
    margin: -3rem 0 6rem 0;
    padding: 6rem 1rem 4rem 1rem;
  }
}
/*------------------------------------------------------------------------------
選ばれる理由エリア
------------------------------------------------------------------------------*/
.reason-area {
  margin-bottom: 4rem;
}
/*------------------------------------------------------------------------------
よくある質問エリア
------------------------------------------------------------------------------*/
.faq-area {
  margin: 0 auto 4rem;
  padding-top: 4rem;
  background-image: repeating-linear-gradient(
      to right,
      rgb(from var(--color-black) r g b / 0.06) 0,
      rgb(from var(--color-black) r g b / 0.06) 1px /* 線の太さ */,
      transparent 1px,
      transparent 2.5rem /* マス目 */
    ),
    repeating-linear-gradient(to bottom, rgb(from var(--color-black) r g b / 0.06) 0, rgb(from var(--color-black) r g b / 0.06) 1px /* 線の太さ */, transparent 1px, transparent 2.5rem /* マス目 */);
}
.ttl-faq-area {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
.faq-items {
  padding: 1.25rem 4rem 0;
  overflow-anchor: none;
}
@media screen and (max-width: 768px) {
  .faq-items {
    padding: 1.25rem 1rem 0;
  }
}
.qa-box {
  border-top: 1px solid rgba(from var(--color-black) r g b / 0.3);
  padding: 1rem 0;
}
.qa-box:first-child {
  margin-top: 0;
}
.qa-box:last-child {
  border-bottom: 1px solid rgba(from var(--color-black) r g b / 0.3);
}
.acd-check {
  display: none;
}
.acd-label {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: flex-start;
  padding: 0.5em 2em 0.5em 1em;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  text-align: justify;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .acd-label {
    font-size: 2rem;
  }
}
.acd-label:before {
  content: "Q";
  color: var(--color-dark-green);
  font-weight: 600;
  display: inline-block;
  width: 2em;
  flex-shrink: 0;
}
.acd-label:after {
  content: "＋";
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  display: block;
  box-sizing: border-box;
}
.acd-content {
  display: grid;
  /* ← 横並び：1列目=「A」用 2列目=本文 */
  grid-template-columns: 2em 1fr;
  /* ← 閉じてる間は中身の行を0frで潰す（高さ可変でもアニメ可） */
  grid-template-rows: 0fr;
  align-items: start;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.28s ease, padding-block 0.28s ease, opacity 0.18s ease;
  font-size: 0;
  line-height: 0;
  font-weight: 600;
  /* 閉じている間は縦パディング0で“上ずれ感”を抑える */
  padding: 0 4em 0 1em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .acd-content {
    padding: 0 2em 0 1em;
  }
}
/* デフォルト（閉じているとき）は table を非表示にしてしまう */
.acd-content table {
  display: none;
  width: 100%;
  border-collapse: collapse; /* 線をキレイに */
  font-size: 1.25rem;
  margin: 2rem auto;
}
@media screen and (max-width: 768px) {
  .acd-content table {
    font-size: 2rem;
  }
}
.acd-content table th,
.acd-content table td {
  border: 1px solid var(--color-black);
  padding: 1rem 1.5rem;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
}
.acd-content table th {
  background-color: var(--color-light-green);
}
/* 開いたときだけ table を表示する */
.acd-check:checked ~ .acd-content table {
  display: table;
}
/* gridの0frを機能させるため、中身はoverflow:hiddenに */
.acd-content > * {
  grid-column: 2;
  min-height: 0; /* 0fr時のつぶれ対策 */
  overflow: hidden;
}
/* 開いた状態 */
.acd-check:checked ~ .acd-content {
  grid-template-rows: 1fr; /* 実高までなめらかに展開 */
  opacity: 1;
  visibility: visible;
  padding-top: 1em;
  margin-bottom: 1em;
  font-size: 1.25rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .acd-check:checked ~ .acd-content {
    font-size: 2rem;
  }
}
.acd-content:before {
  content: "A";
  grid-column: 1;
  color: var(--color-orange);
  font-weight: 600;
  display: none;
}
/* 開いたときだけ A を表示する */
.acd-check:checked ~ .acd-content::before {
  display: block;
}
.acd-check:checked + .acd-label:after {
  content: "ー";
}
.acd-content p {
  margin-bottom: 0.75em;
}
.acd-content ul {
  list-style: disc;
  padding-left: 2em;
  margin-bottom: 0.75em;
}
/*------------------------------------------------------------------------------
得ることができることエリア
------------------------------------------------------------------------------*/
.get-items {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .get-items {
    margin-top: 4rem;
  }
}
/*------------------------------------------------------------------------------
おすすめエリア
------------------------------------------------------------------------------*/
.recommend-area {
  margin: 4rem auto;
}
/*--------------------------------------------------------
フッターエリア
--------------------------------------------------------*/
.footer-area {
  text-align: center;
  background: var(--color-dark-green);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .footer-area {
    font-size: 1.75rem;
  }
}
.footer-area a {
  text-decoration: none;
  color: var(--color-white);
}
.footer-area a:hover {
  text-decoration: underline;
}
.footer-area .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.footer-area .menu li {
  position: relative;
  line-height: 1.8;
  display: flex;
  align-items: center;
}
.footer-area .menu li + li::before {
  content: "|";
  margin-right: 0.75rem;
  color: rgba(from var(--color-white) r g b / 0.7);
}
@media screen and (max-width: 768px) {
  .footer-area .menu {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footer-area .menu li {
    width: 100%;
    display: block;
    text-align: center;
    justify-content: center;
  }
  .footer-area .menu li + li::before {
    content: none;
    margin: 0;
  }
}
.footer-area .copyright {
  margin: 0;
  padding: 1em 0 0 0;
}
/* ================================
   1カラムレイアウト（シャドウ付き）
   ================================ */
.layout-frame {
  background-color: var(--color-white);
  display: block;
  height: auto;
  padding: 0;
}
/* 中央コンテンツをスクロール */
.main-scroll {
  height: auto;
  overflow: visible;
}
