@charset "UTF-8";
/* -----------------------------
   Reset & Base
----------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  background-image: url("../images/bg__whole.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

html {
  line-height: 1.5;
  font-size: 0.6944444444vw;
  scroll-padding-top: 70px; /* 固定ヘッダの高さ分 */
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

html {
  font-family: "Noto Sans JP", sans-serif;
}

.text__white {
  color: white;
}

.text__small {
  font-size: 12px;
}

.text__big {
  font-size: 22px;
}

.color__white {
  color: #fff;
}

.color__black {
  color: #1a1a1a;
}

.text__strong {
  font-weight: bold;
}

.underline__yellow {
  border-bottom: solid 4px #FFCB00;
}

.under__line {
  border-bottom: 1px solid black;
}

.under__line__white {
  border-bottom: 1px solid #fff;
}

.margin__30 {
  margin-top: 30px;
}

/* =========================
   CTA Button
   ========================= */
.cta-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ 中央寄せ */
  justify-content: center;
  text-align: center; /* ✅ テキスト中央寄せ */
  width: 95%;
  margin: 0 auto;
  margin-top: 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  padding: 15px 55px 15px 24px; /* 右側に余白（アイコン分） */
  background: #00AA00;
  box-shadow: 0 4px 0 #000, 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  /* 白丸アイコン */
}
.cta-btn .cta-btn__text-sub {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}
.cta-btn .cta-btn__text-main {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  margin-top: 4px;
}
.cta-btn .cta-btn__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: clamp(22px, 7vw, 25px);
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}
.cta-btn .cta-btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #35b24a;
}
.cta-btn .icon__orange::after {
  border-left: 10px solid #FF7B00;
}

.schoolcta__outer {
  background: #fff;
  border: solid 6px #00AA00;
  border-radius: 20px;
  width: 95%;
  margin: 0 auto;
  position: relative;
  margin-top: 50px;
  text-align: center;
  padding-bottom: 20px;
}
.schoolcta__outer > p {
  font-size: 12px;
  text-align: left;
  padding: 10px 20px;
}
.schoolcta__title {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
}
.schoolcta__free {
  width: 93%;
  margin-top: 50px;
}

.btn-orange {
  background: #FF7B00;
}

/* ホバー・フォーカス時に押し込む */
.cta-btn:hover,
.cta-btn:focus {
  transform: translateY(3px); /* ↓3px押し込む */
  box-shadow: 0 3px 0 #000; /* 影を短くして“沈む” */
}

/* 440px以下でのみ適用 */
@media (max-width: 440px) {
  .fixed-nav {
    display: block;
  }
}
@media (min-width: 441px) {
  .fixed-nav {
    display: none;
  }
}
.fixed-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  transition: opacity 0.3s ease;
  display: flex;
}

.fixed-cta {
  display: flex; /* ← 横並びにして中央揃え */
  align-items: center; /* ← 縦方向の中央揃え */
  justify-content: center; /* ← 横方向も中央 */
  gap: 8px; /* ← テキストとアイコンの間に余白 */
  font-size: 14px;
  font-weight: bold;
  background-color: #00AA00;
  padding: 8px 14px;
  border-radius: 9999px;
  margin: 8px auto;
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 0 #000, 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fixed-cta__orange {
  background-color: #FF7B00;
}

.fixed-cta img {
  width: 20px; /* ← アイコンサイズ調整 */
  height: auto;
}

.fixed-cta:hover,
.fixed-cta:focus {
  transform: translateY(3px); /* ↓3px押し込む */
  box-shadow: 0 3px 0 #000;
}

/* 最初は非アクティブ（フェード用） */
.fixed-nav {
  opacity: 0;
  pointer-events: none;
}

/* 表示時 */
.fixed-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 440px) {
  .site-footer {
    padding-bottom: 88px;
  } /* ← 固定ボタンの高さ＋余白に合わせて調整 */
}
/* ===== 上に戻るボタン ===== */
.to-top {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background-color: #333;
  color: #fff;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.to-top:hover {
  background-color: #555;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* -----------------------------
   中央コンテンツ
----------------------------- */
.shell {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: min(100%, 440px);
}

/* PCでは中央固定＋ヘッダー分の余白を確保 */
@media (min-width: 440px) {
  .shell {
    width: 440px;
    height: calc(100dvh - 70px); /* ヘッダー分を引く */
    margin-top: 70px; /* 下にずらす */
    overflow-y: auto;
  }
}
/* スマホ（440px以下）は余白なし */
@media (max-width: 440px) {
  .shell {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding-inline: 1rem;
  }
}
.hero__img {
  width: 100%;
}

.start__text {
  display: block;
  margin: 0 auto;
  width: 95%;
}

.bg__blue {
  background-color: #2776C8;
  padding-bottom: 20px;
  padding-top: 5px;
}
.bg__blue > p {
  margin: 0 auto;
  width: 86%;
  font-size: 12px;
  color: #fff;
  text-align: center;
}

.nyukai-tokuten {
  width: 95%;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  margin-right: 13px;
}

.tokuten {
  width: 88%;
  padding-left: 25px;
  margin-top: 10px;
}

.towel {
  width: 95%;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}

.bg__green {
  background-color: #00AA00;
  padding-bottom: 30px;
}

.detail__outer > p {
  margin: 0 auto;
  width: 86%;
  font-size: 12px;
  color: #fff;
  text-align: center;
}

.detail__caution {
  border: 1px solid #fff;
  width: 90%;
  margin: 0 auto;
  margin-top: 10px;
}
.detail__caution > ul {
  margin: 0 auto;
  width: 86%;
  font-size: 12px;
  color: #fff;
  padding: 10px 0;
}

.kaikou {
  display: block;
  margin: 0 auto;
  width: 66%;
  padding-top: 10px;
}

.dontmissit {
  margin-top: 10px;
}

.schooldetail {
  width: 93%;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.cta__outer > p {
  margin: 0 auto;
  width: 86%;
  font-size: 12px;
  color: #fff;
  margin-top: 10px;
}

.section__welcome {
  width: 100%;
  background-image: url("../images/bg__weccome.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.section__welcome > span {
  display: block;
  color: #fff;
  font-size: 12px;
  width: 86%;
  margin: 0 auto;
  padding-top: 10px;
}

.welcome__inner {
  margin-left: 20px;
  padding-top: 60px;
  line-height: 33px;
  letter-spacing: 3px;
}
.welcome__text {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}
.welcome__illust {
  width: 100%;
  margin-bottom: 30px;
}

.freetrial__outer {
  background-color: #2776C8;
  padding-top: 30px;
  padding-bottom: 100px;
}
.freetrial__outer > h3 {
  font-size: 16px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.freetrial__outer > p {
  font-size: 12px;
  color: #fff;
  width: 86%;
  margin: 0 auto;
}
.freetrial__thinking {
  width: 52%;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}
.freetrial__title {
  width: 85%;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}
.freetrial__hougan {
  background-image: url("../images/bg__hougan.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
  padding: 10px 20px;
  margin-bottom: 10px;
}
.freetrial__hougan > p {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.freetrial__hougan > span {
  font-size: 12px;
}

.meetashizaru {
  width: 88%;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}

.text__bigger {
  font-size: 30px;
}

.cta--btn__trial {
  margin-top: 10px;
}

.anyone {
  z-index: 10;
  margin-top: -90px;
}
.anyone__outer {
  background-color: #FFCB00;
}
.anyone__img {
  width: 100%;
  z-index: 10;
}
.anyone__memo {
  font-size: 12px;
  width: 87%;
  margin: 0 auto;
  margin-top: 10px;
  padding-bottom: 20px;
}
.anyone > p {
  font-size: 12px;
  width: 87%;
  margin: 0 auto;
  margin-top: 10px;
}

.margin__zero {
  margin-top: -5px;
  margin-bottom: 0;
}

.caution__outer {
  background-color: #FFCB00;
  padding-bottom: 30px;
}
.caution__outer > p {
  font-size: 12px;
  width: 87%;
  margin: 0 auto;
  margin-top: 10px;
}
.caution__inner {
  background-image: url("../images/bg__dot.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 88%;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
}
.caution__inner > p {
  font-size: 16px;
  font-weight: bold;
}
.caution__title {
  width: 180px;
  margin-bottom: 5px;
}
.caution__text2 {
  margin-top: 20px;
}

.text__red {
  color: #C11D30;
}

.section__seccta {
  background-color: #2776C8;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cta__outer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta__logo {
  width: 26%;
  padding-bottom: 10px;
}
.cta__copy {
  width: 80%;
}
.cta__seccopy {
  margin-top: -10px;
}

.trialcta__outer {
  background: #fff;
  border: solid 6px #00AA00;
  border-radius: 20px;
  width: 95%;
  margin: 0 auto;
  position: relative;
  margin-top: 10px;
  text-align: center;
  padding: 20px 0;
}
.trialcta__outer > p {
  font-size: 12px;
  text-align: left;
  padding: 10px 20px;
}
.trialcta__title {
  width: 90%;
}

.section__vision {
  background-color: #C4EA1E;
  padding-top: 30px;
  position: relative;
  padding-bottom: 30px;
}
.section__vision > p {
  font-size: 16px;
  padding-left: 20px;
  padding-top: 15px;
}

.vision__copy {
  width: 78%;
  margin-left: 20px;
}
.vision__img {
  width: 100%;
  margin-top: -20px;
}
.vision__kickoff {
  position: absolute;
  top: 20px;
  right: 0;
  width: 9%;
  z-index: 10;
  opacity: 0.8;
}

.section__message {
  background-color: #ECEFF2;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.message__title {
  width: 95%;
  display: block;
  text-align: left;
  margin-left: 0;
}
.message__content {
  padding-top: 10px;
  width: 90%;
  align-items: center;
}

.section__youtube {
  background-image: url("../images/bg__youtube.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 50px;
}

.youtube__title {
  padding-top: 20px;
  padding-bottom: 15px;
}

.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9の比率（高さ ÷ 幅 = 9/16） */
  height: 0;
  overflow: hidden;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.wave__top {
  width: 100%;
  margin-top: -50px;
}

.section__ctathird {
  background-color: #FFCB00;
  margin-top: -5px;
  padding-bottom: 10px;
}

.ctathird__title {
  width: 75%;
  display: block;
  margin: 0 auto;
  padding-top: 20px;
}
.ctathird__img {
  width: 90%;
  display: block;
  margin: 0 auto;
}

.wave__bottom {
  width: 100%;
  margin-top: -5px;
}

.section__course {
  background-color: #ECEFF2;
  padding-top: 50px;
  margin-top: -80px;
}
.section__course > p {
  font-size: 14px;
  width: 86%;
  margin: 0 auto;
  padding-bottom: 30px;
  margin-top: -20px;
}

.course__title {
  text-align: left;
}
.course__inner {
  margin-top: -20px;
}
.course__detail {
  background-color: #fff;
  border-radius: 10px;
  margin: 30px 10px;
  padding: 10px;
  position: relative;
}
.course__img {
  width: 45%;
  position: absolute;
  top: -20px;
  left: 10px;
}
.course__text {
  font-size: 14px;
  padding-top: 40px;
  padding-left: 10px;
  padding-bottom: 10px;
}

.section__clinic {
  padding-top: 10px;
  padding-bottom: 30px;
}

.clinic__img {
  width: 95%;
  display: block;
  margin: 0 auto;
  margin-top: -15px;
}
.clinic__attention {
  width: 86%;
  margin: 0 auto;
  margin-top: 10px;
}
.clinic__attention > p {
  font-size: 14px;
}

.section__uniform {
  background-color: #2776C8;
  padding-top: 20px;
  padding-bottom: 100px;
}
.section__uniform > p {
  font-size: 12px;
  color: #fff;
  padding-right: 20px;
  text-align: right;
}

.uniform__title {
  width: 95%;
  display: block;
  margin: 0 auto;
}
.uniform__img {
  width: 93%;
  display: block;
  margin: 0 auto;
}

.section__points {
  background-color: #E7F8FF;
  margin-top: -70px;
  padding-bottom: 100px;
}

.points__outer {
  background-color: #fff;
  border: solid 4px #2776C8;
  border-radius: 10px;
  width: 95%;
  margin: 0 auto;
  margin-top: 20px;
}
.points__outer > p {
  font-size: 14px;
  padding: 20px 20px;
}
.points__inner {
  background-color: #2776C8;
  display: flex;
  padding: 5px 10px;
  align-items: center;
  justify-content: center;
}
.points__inner > h2 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding-left: 20px;
}
.points__icon {
  width: 70px;
}
.points__img {
  padding: 15px;
  padding-top: 0;
}
.points__recommend {
  width: 86%;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}

.section__lastcta {
  background-color: #FFCB00;
  padding-bottom: 30px;
}

.lastcta__text {
  margin-top: -80px;
}

.section__schooldetails {
  background-color: #2776C8;
  padding-top: 30px;
  padding-bottom: 30px;
}
.section__schooldetails > p {
  font-size: 12px;
  color: #fff;
  width: 87%;
  margin: 0 auto;
  margin-top: 20px;
}

.schooldetail__title {
  width: 48%;
  display: block;
  margin: 0 auto;
}
.schooldetail__detail {
  width: 93%;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}
.schooldetail__info {
  display: flex;
  align-items: flex-start;
  width: 93%;
  margin: 0 auto;
}
.schooldetail__info > img {
  width: 60px;
  margin-top: 3px;
}
.schooldetail__info > p {
  font-size: 14px;
  color: #fff;
  margin-left: 10px;
}

.margin__top {
  margin-top: 10px;
}

.price {
  background-image: url("../images/bg__dot.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  width: 93%;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}
.price__pricetitle {
  width: 250px;
}
.price__table {
  width: 88%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.price__others {
  text-align: left;
  margin: 0 auto;
  padding-left: 10px;
}
.price__others > h2 {
  font-size: 14px;
  font-weight: bold;
}
.price__others > p {
  font-size: 14px;
  padding-left: 10px;
}
.price__inner {
  display: flex;
  align-items: center;
}
.price__inner > p {
  font-size: 14px;
}
.price__bluecircle {
  width: 8px;
  margin-right: 3px;
}

.section__question {
  background-color: #ECEFF2;
  padding-bottom: 10px;
}

.faq__title {
  width: 60%;
  display: block;
  margin: 0 auto;
  padding: 30px 0;
}

.faq-box {
  background: #fff;
  border-radius: 5px;
  padding: 15px 20px;
  width: 95%;
  margin: 0 auto;
  margin-bottom: 10px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.faq-question,
.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.faq-divider {
  height: 2px;
  background: #b5de4d; /* 線の色（黄緑） */
  width: 100%;
  margin: 6px 0;
}

.note-box {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px auto;
  width: 95%;
}

.note-title {
  background: #C11D30; /* 赤 */
  color: #fff;
  font-weight: bold;
  padding: 10px 16px;
  font-size: 18px;
  text-align: center;
}

.note-list {
  list-style: disc;
  padding: 20px 30px;
  margin: 0;
  color: #333;
}

.note-list li {
  margin-bottom: 8px;
  font-size: 14px;
}

.site-footer {
  background-color: #2776C8;
  padding-top: 30px;
}

.footer-inner {
  margin: 0 auto;
  text-align: center;
}

/* ===== Logo ===== */
.footer-logo img {
  width: 54%;
  height: auto;
  display: inline-block;
  margin-bottom: 20px;
}

/* ===== 特商法に基づく表記（幅375px基準） ===== */
.legal-section {
  width: 100%;
  max-width: 375px; /* 基準幅 */
  margin: 24px auto;
  padding: 0 16px; /* 画面端の貼り付き防止 */
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
}

.legal-title {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
  text-align: left;
  border-bottom: 2px solid #fff;
}

.legal-box {
  max-height: 200px; /* 縦だけスクロール */
  overflow: auto;
  -webkit-overflow-scrolling: touch; /* iOSの慣性スクロール */
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* アクセシビリティ：キーボードフォーカス可視化 */
.legal-box:focus {
  outline: 2px solid #2f6fff;
  outline-offset: 2px;
}

.legal-dl {
  margin: 0;
}

.legal-dl .row {
  display: grid;
  grid-template-columns: 30% 1fr; /* dt:dd の比率（スマホ用） */
  padding: 5px 0;
  gap: 3px;
  border-bottom: 1px dashed #eee;
}

.legal-dl .row:last-child {
  border-bottom: none;
}

.legal-dl dt {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
}

.legal-dl dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  word-break: break-word;
  text-align: left;
}

.legal-dl a {
  color: #1560ff;
  text-decoration: underline;
}

.note {
  color: #777;
  font-size: 12px;
}

/* ===== スクール規約 ===== */
/* ===== 利用規約（スクール規約）幅375px基準 ===== */
.terms-section {
  width: 100%;
  max-width: 375px;
  margin: 24px auto;
  padding: 0 16px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
}

.terms-title {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
  text-align: left;
  border-bottom: 2px solid #fff;
}

.terms-box {
  max-height: 200px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.terms-box:focus {
  outline: 2px solid #2f6fff;
  outline-offset: 2px;
}

.terms-dl {
  margin: 0;
}

.terms-dl .row {
  display: grid;
  grid-template-columns: 32% 1fr;
  padding: 5px 0;
  gap: 4px;
  border-bottom: 1px dashed #eee;
}

.terms-dl .row:last-child {
  border-bottom: none;
}

.terms-dl dt {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
}

.terms-dl dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  word-break: break-word;
  text-align: left;
}

/* ===== プライバシーポリシー（幅375px基準） ===== */
.privacy-section {
  width: 100%;
  max-width: 375px;
  margin: 24px auto;
  padding: 0 16px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
}

.privacy-title {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
  text-align: left;
  border-bottom: 2px solid #fff;
}

.privacy-box {
  max-height: 200px; /* 縦スクロール枠 */
  overflow: auto;
  -webkit-overflow-scrolling: touch; /* iOS慣性 */
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.privacy-box:focus {
  outline: 2px solid #2f6fff;
  outline-offset: 2px;
}

.privacy-content {
  padding: 0 12px;
  font-size: 12px;
  line-height: 1.8;
  text-align: left;
}

.privacy-content h3 {
  font-size: 12px;
  font-weight: 700;
  margin: 10px 0 4px;
}

.privacy-content p {
  margin: 0 0 8px;
}

.privacy-content ul {
  margin: 0 0 10px 1.2em;
  padding: 0;
}

.privacy-content a {
  color: #1560ff;
  text-decoration: underline;
}

/* スクロールバーの見た目（任意） */
.privacy-box::-webkit-scrollbar {
  width: 6px;
}

.privacy-box::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

/* ===== Company info (2カラム) ===== */
.footer-info {
  display: inline-block;
  margin: 0 auto 28px;
  padding: 0 8px;
  text-align: left;
  font-size: 16px;
  color: #fff;
}

.footer-info .info-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  margin-bottom: 10px;
}

/* ===== SNS ===== */
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0 0 50px;
}

.footer-sns img {
  height: 30px;
  display: block;
  transform: translateY(0); /* ← 初期値を指定 */
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-sns a:hover img {
  transform: translateY(-2px);
  opacity: 1;
}

/* ===== Copy ===== */
.footer-copy {
  font-size: 12px;
  color: #fff;
  padding-bottom: 30px;
}

/* -----------------------------
   左右固定背景（PCのみ）
----------------------------- */
.bg-whole,
.bg-left,
.bg-right {
  display: none;
}

.left__img,
.right__img {
  display: none;
}

@media (min-width: 440px) {
  .bg-whole {
    display: block;
  }
}
@media (min-width: 1024px) {
  .bg-whole {
    display: block;
  }
  .bg-left {
    display: block;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .bg-right {
    display: block;
    right: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .left__img,
  .right__img {
    display: block;
    position: absolute;
    width: 23%;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
  }
  .left__img {
    top: 45%;
    left: 72%;
    max-width: 350px;
  }
  .right__img {
    top: 40%;
    left: 3%;
    max-width: 400px;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(calc(-10% - 10px)); /* 少し上に動く */
  }
}
/* -----------------------------
   PC用ヘッダー（全幅固定）
----------------------------- */
.site-header {
  display: none;
}

@media (min-width: 440px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* ✅ 全幅 */
    height: 70px;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .site-logo {
    height: 60px;
    width: auto;
  }
  .header_btn {
    width: 400px;
  }
}/*# sourceMappingURL=style.css.map */