
/* =============================================
   安城ドラム塾LP 追加CSS
   ============================================= */

/* -----------------------------------------------
   FV特徴バッジ
   ----------------------------------------------- */


   
.fv-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px auto 50px;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .fv-badges {
    gap: 8px;
    margin: 6% auto 5%;
    padding: 0 4%;
  }
}

.fv-badge {
  background: rgba(255, 255, 255, 0.92);
  border: 2.5px solid #00c0df;
  border-radius: 16px;
  padding: 22px 20px 18px;
  text-align: center;
  flex: 1;
  max-width: 260px;
  box-shadow: 0 4px 16px rgba(0, 192, 223, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fv-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 192, 223, 0.25);
}
@media screen and (max-width: 768px) {
  .fv-badge {
    padding: 12px 6px 10px;
    border-radius: 10px;
    border-width: 1.5px;
  }
}

.fv-badge-icon {
  display: block;
  font-size: 32px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .fv-badge-icon {
    font-size: 22px;
    margin-bottom: 4px;
  }
}

.fv-badge-text {
  display: block;
  font-size: 17px;
  font-weight: bold;
  color: #231815;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .fv-badge-text {
    font-size: 11px;
    font-size: 2.93333vw;
    line-height: 1.4;
  }
}


/* -----------------------------------------------
   選ばれる理由セクション（新規）
   ----------------------------------------------- */
.l-reason {
  overflow: hidden;
}

.l-reason-inner {
  max-width: 1555px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .l-reason-inner {
    padding-bottom: 10%;
  }
}

.md-reason-ttl {
  letter-spacing: 0.14em;
}

.md-reason-lead {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .md-reason-lead {
    margin-bottom: 6%;
  }
}

.md-reason-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .md-reason-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 6%;
  }
}

.md-reason-card {
  background: #fff;
  border-radius: 20px;
  padding: 45px 30px 35px;
  flex: 1;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease;
}
.md-reason-card:hover {
  transform: translateY(-4px);
}
@media screen and (max-width: 768px) {
  .md-reason-card {
    max-width: 100%;
    padding: 30px 20px 24px;
    border-radius: 14px;
  }
}

.md-reason-card-number {
  font-size: 56px;
  font-weight: bold;
  color: #00c0df;
  line-height: 1;
  margin-bottom: 15px;
  opacity: 0.25;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .md-reason-card-number {
    font-size: 36px;
    margin-bottom: 10px;
  }
}

.md-reason-card-ttl {
  font-size: 24px;
  font-weight: bold;
  color: #231815;
  line-height: 1.5;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .md-reason-card-ttl {
    font-size: 16px;
    font-size: 4.26667vw;
    margin-bottom: 12px;
  }
}

.md-reason-card-txt {
  font-size: 17px;
  color: #555;
  line-height: 1.76;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .md-reason-card-txt {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.65;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}


/* -----------------------------------------------
   生徒さんの声セクション
   ----------------------------------------------- */
.l-voice {
  overflow: hidden;
}

.l-voice-inner {
  max-width: 1555px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .l-voice-inner {
    padding-bottom: 10%;
  }
}

.md-voice-ttl {
  letter-spacing: 0.2em;
}

.md-voice-lead {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .md-voice-lead {
    margin-bottom: 6%;
  }
}

.md-voice-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .md-voice-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 6%;
  }
}

.md-voice-item {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px 35px;
  flex: 1;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.md-voice-item:hover {
  transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
  .md-voice-item {
    max-width: 100%;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
  }
}

.md-voice-photo {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .md-voice-photo {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

.md-voice-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e8f9fc;
  border: 3px solid #00c0df;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .md-voice-photo-placeholder {
    width: 64px;
    height: 64px;
    border-width: 2px;
  }
}
.md-voice-photo-placeholder span {
  font-size: 13px;
  color: #00c0df;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .md-voice-photo-placeholder span {
    font-size: 10px;
  }
}

.md-voice-body {
  flex: 1;
}

/* 生徒写真（実写画像版） */
.md-voice-photo-img {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50%;
  border: 3px solid #00c0df;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .md-voice-photo-img {
    width: 64px !important;
    height: 64px !important;
    border-width: 2px;
  }
}

.md-voice-meta {
  font-size: 18px;
  font-weight: bold;
  color: #00c0df;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .md-voice-meta {
    font-size: 13px;
    font-size: 3.46667vw;
    margin-bottom: 6px;
  }
}

.md-voice-comment {
  font-size: 18px;
  color: #231815;
  line-height: 1.72;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .md-voice-comment {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.6;
  }
}


/* -----------------------------------------------
   料金の1回あたり表記
   ----------------------------------------------- */
.md-schedule-per-lesson {
  text-align: center;
  font-size: 22px;
  color: #666;
  margin-top: -40px;
  margin-bottom: 80px;
  letter-spacing: 0.06em;
}
.md-schedule-per-lesson strong {
  font-size: 30px;
  color: #00c0df;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .md-schedule-per-lesson {
    font-size: 12px;
    font-size: 3.2vw;
    margin-top: -2%;
    margin-bottom: 8%;
  }
  .md-schedule-per-lesson strong {
    font-size: 18px;
    font-size: 4.8vw;
  }
}


/* -----------------------------------------------
   CTA（LINE メインボタン化）
   ----------------------------------------------- */
.cta-main-line {
  margin: 30px auto 25px;
  text-align: center;
  max-width: 580px;
  padding: 0 20px;
}
.cta-main-line--bottom {
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .cta-main-line {
    margin: 5% auto 4%;
    max-width: 88%;
    padding: 0;
  }
}

.cta-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #06C755;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
  padding: 22px 36px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cta-line-btn:hover {
  background: #05b34c;
  box-shadow: 0 8px 28px rgba(6, 199, 85, 0.45);
  transform: translateY(-2px);
}
.cta-line-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}
@media screen and (max-width: 768px) {
  .cta-line-btn {
    font-size: 15px;
    font-size: 4vw;
    padding: 16px 20px;
    gap: 6px;
    border-radius: 50px;
  }
}

.cta-line-btn svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cta-line-btn svg {
    width: 22px;
    height: 22px;
  }
}

.cta-line-btn-text {
  display: inline;
}

.cta-line-btn-sub {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: normal;
  opacity: 0.9;
  margin-top: -2px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .cta-line-btn-sub {
    font-size: 11px;
    font-size: 2.93333vw;
  }
}

/* パルスアニメーション */
.cta-line-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.5);
  animation: cta-pulse 2.5s infinite;
}
@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(6, 199, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); }
}

/* サブCTAリンク */
.cta-sub-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .cta-sub-links {
    gap: 20px;
    margin-bottom: 6%;
    padding: 0;
  }
}

.cta-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  padding: 8px 0;
}
.cta-sub-link:hover {
  color: #00c0df;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .cta-sub-link {
    font-size: 12px;
    font-size: 3.2vw;
    gap: 4px;
  }
}

.cta-sub-icon {
  width: 32px !important;
  height: auto;
}
@media screen and (max-width: 768px) {
  .cta-sub-icon {
    width: 24px !important;
  }
}

.cta-main-line--bottom + .cta-sub-links {
  margin-bottom: 0;
}


/* -----------------------------------------------
   Googleマップ埋め込み
   ----------------------------------------------- */
.md-access-map-embed {
  margin: 30px auto 80px;
  max-width: 1288px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.md-access-map-embed iframe {
  display: block;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .md-access-map-embed {
    width: 86%;
    margin: 5% auto 8%;
    border-radius: 8px;
  }
  .md-access-map-embed iframe {
    height: 250px;
  }
}


/* -----------------------------------------------
   他教室リンク
   ----------------------------------------------- */
.l-other-school {
  background: #e8f9fc;
  text-align: center;
  padding: 50px 20px;
}
@media screen and (max-width: 768px) {
  .l-other-school {
    padding: 6% 5%;
  }
}

.md-other-school-txt {
  font-size: 20px;
  color: #666;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .md-other-school-txt {
    font-size: 13px;
    font-size: 3.46667vw;
    margin-bottom: 8px;
  }
}

.md-other-school-link {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  color: #00c0df;
  text-decoration: none;
  border-bottom: 2px solid #00c0df;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}
.md-other-school-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .md-other-school-link {
    font-size: 15px;
    font-size: 4vw;
  }
}


/* -----------------------------------------------
   スマホ追従CTA（フローティング）
   ----------------------------------------------- */
.floating-cta {
  display: none;
}

@media screen and (max-width: 768px) {
  .floating-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 8px 12px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  }

  .floating-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #06C755;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.04em;
    padding: 13px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(6, 199, 85, 0.3);
    transition: background 0.2s ease;
  }
  .floating-cta-btn:active {
    background: #05a844;
  }

  .floating-cta-btn svg {
    flex-shrink: 0;
  }

  /* フローティングCTAの分だけフッター下にスペース確保 */
  .l-footer-inner {
    padding-bottom: 70px;
  }
}


/* -----------------------------------------------
   体験申込みフォーム
   ----------------------------------------------- */
.contact-form-wrap {
  max-width: 580px;
  margin: 40px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .contact-form-wrap {
    max-width: 100%;
    margin: 6% auto 0;
    padding: 0;
  }
}

.contact-form-or {
  text-align: center;
  font-size: 15px;
  color: #999;
  margin-bottom: 24px;
  position: relative;
  letter-spacing: 0.04em;
}
.contact-form-or::before,
.contact-form-or::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #ccc;
  vertical-align: middle;
  margin: 0 16px;
}
@media screen and (max-width: 768px) {
  .contact-form-or {
    font-size: 12px;
    font-size: 3.2vw;
    margin-bottom: 16px;
  }
  .contact-form-or::before,
  .contact-form-or::after {
    width: 30px;
    margin: 0 8px;
  }
}

.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 32px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 24px 20px 20px;
    border-radius: 12px;
  }
}

.form-group {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .form-group {
    margin-bottom: 16px;
  }
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #231815;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .form-label {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}

.form-required {
  display: inline-block;
  font-size: 11px;
  color: #fff;
  background: #e74c3c;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: normal;
  vertical-align: middle;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease;
  background: #fafafa;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus {
  border-color: #00c0df;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .form-input,
  .form-select {
    padding: 10px 12px;
    font-size: 16px; /* prevent iOS zoom */
    border-radius: 6px;
  }
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #00c0df;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 192, 223, 0.3);
  margin-top: 8px;
}
.form-submit-btn:hover {
  background: #00a8c4;
  box-shadow: 0 6px 20px rgba(0, 192, 223, 0.4);
  transform: translateY(-2px);
}
.form-submit-btn:active {
  transform: translateY(0);
}
.form-submit-btn:disabled {
  background: #aaa;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
@media screen and (max-width: 768px) {
  .form-submit-btn {
    font-size: 15px;
    font-size: 4vw;
    padding: 14px;
  }
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 12px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .form-note {
    font-size: 11px;
    font-size: 2.93333vw;
  }
}

/* 送信完了 */
.contact-form-done {
  background: #fff;
  border-radius: 16px;
  padding: 50px 32px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-form-done {
    padding: 30px 20px;
    border-radius: 12px;
  }
}

.form-done-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-done-title {
  font-size: 22px;
  font-weight: bold;
  color: #00c0df;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .form-done-title {
    font-size: 18px;
    font-size: 4.8vw;
  }
}

.form-done-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .form-done-text {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
