@charset "UTF-8";
/* ================== リンクボタン ================== */
.cta-wrapper {
  text-align: center;
}

/* 上の案内 */
.top-text {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}

/* 下向き矢印 */
.down-arrows span {
  display: inline-block;
  margin: 0 6px;
  font-size: 30px;
  color: #e60012;
  animation: arrow-down 1.2s infinite;
}

.down-arrows span:nth-child(2) {
  animation-delay: 0s;
}

.down-arrows span:nth-child(3) {
  animation-delay: 0s;
}

@keyframes arrow-down {
  0% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
}
/* ボタンエリア */
.button-area {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

/* LINEボタン */
.line-button {
  background: #06c755;
  color: #fff;
  padding: 16px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 0 #049c40;
}

/* 右側案内 */
.right-guide {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}

/* 左向き矢印（動く） */
.left-arrow {
  display: inline-block;
  margin-right: 6px;
  color: #e60012;
  animation: arrow-left 1s infinite;
}

@keyframes arrow-left {
  0% {
    transform: translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-8px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.3;
  }
}
/* ================== 基本 ================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  background: #fffdf8;
}

#wrap {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  box-shadow: -8px 0 16px rgba(0, 0, 0, 0.04), 8px 0 16px rgba(0, 0, 0, 0.04);
}
#wrap::before, #wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.06);
}
#wrap::before {
  left: 0;
}
#wrap::after {
  right: 0;
}

.num {
  font-family: "Inter", sans-serif;
  font-feature-settings: "tnum";
}

img {
  width: 100%;
}

p {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.title {
  position: relative;
  padding-left: 28px;
  margin-bottom: 32px;
  font-size: 30px;
  font-weight: 700;
  color: #e2a12b;
  line-height: 1.5;
}
.title::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 22px;
  height: 22px;
  background-image: url("../images/midashi-icon01.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.box01 {
  padding: 70px 40px 0px;
}
.box01 img {
  margin-bottom: 40px;
}

.insta-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

/* ================== メインビジュアル ================== */
@media screen and (min-width: 1280px) {
  .kv {
    position: relative;
  }
  .kv-catch {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .kv-logo img {
    width: 50%;
    margin-bottom: 30px;
  }
  .kv-lead, .kv-desc {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  .kv-lead {
    font-size: 10px;
    margin-bottom: 80px;
  }
  .kv-desc {
    font-size: 18px;
    line-height: 1.8;
  }
  .kv-bg {
    width: 100%;
    height: auto;
    display: block;
  }
  .kv-text {
    position: absolute;
    top: 6%;
    left: 6%;
    right: 6%;
    z-index: 1;
  }
  /* ================== どんなところ？ ================== */
  .about img {
    margin-bottom: 0px !important;
  }
  .about-list {
    list-style: none;
  }
  .about-item {
    display: flex;
    align-items: flex-start;
  }
  .about-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
  }
  .about-icon {
    width: 32px;
    height: auto;
    margin-bottom: 4px;
  }
  .fukei {
    margin-bottom: 100px;
  }
  /* ================== 無料説明会 ================== */
  .info {
    background: #fff8e8;
  }
  .info-inner {
    max-width: 750px;
    margin: 0 auto;
  }
  .info-text {
    margin-bottom: 15px;
  }
  .info-band {
    background: #06c755;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 12px;
    margin: 30px 0 20px;
    font-size: 18px;
  }
  .info-contact p {
    margin-bottom: 10px;
  }
  .info-btn-wrap {
    text-align: center;
    padding-bottom: 100px;
  }
  .info-btn-wrap a:hover {
    opacity: 0.6;
    transition: 0.1;
  }
  .info-btn-wrap .instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    border-radius: 80px;
    border: 2px solid #06c755;
    text-decoration: none;
    font-weight: bold;
    background: #fff;
    font-size: 25px;
    font-weight: bold;
    background: #fff;
  }
  .info-btn-wrap .insta-icon {
    font-size: 20px;
  }
  /* ================== 受講生の声 ================== */
  .voice-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #e2a12b;
    margin-bottom: 40px;
    position: relative;
  }
  .voice-title::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    background-image: url("../images/midashi-icon02.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .voice-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
  }
  .voice-item:not(:last-child) {
    border-bottom: 1px solid rgba(226, 161, 43, 0.4);
  }
  .voice-content {
    flex: 1;
  }
  .voice-text {
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .voice-meta {
    font-size: 13px;
    color: #777;
  }
  .voice-image {
    width: 150px;
    flex-shrink: 0;
  }
  .voice-image img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
    display: block;
  }
  /* ================== 卒業生のサロン ================== */
  .salon {
    margin-bottom: 10px;
    border: 2px solid #fdf2d0;
    border-radius: 16px;
  }
  .salon-name {
    background-color: #fdf2d0;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 15px 15px 0 0;
  }
  .salon-link {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 30px;
  }
  .salon-url {
    color: blue;
    text-decoration: underline;
    word-break: break-all;
  }
  .salon-url:hover {
    opacity: 0.5;
    transition: 0.3s;
  }
  /* ================== 受講コース ================== */
  .course {
    border: 2px solid #fdf2d0;
    border-radius: 16px;
    overflow: hidden;
  }
  .course-header {
    background-color: #fdf2d0;
    padding: 15px 30px;
    font-weight: bold;
  }
  .course-body {
    padding: 20px 30px;
  }
  .course-row {
    display: flex;
    margin-bottom: 15px;
  }
  .course-label {
    min-width: 5.5em;
    font-weight: bold;
  }
  /* ================== 受講コース ================== */
  .flow .apply-period {
    background-color: #e2a12b;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    border-radius: 16px;
    margin-bottom: 20px;
  }
  .flow-step {
    background-color: #fdf2d0;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #fdf2d0;
    z-index: 1;
  }
  .flow .step-num {
    background-color: #fff;
    color: #e2a12b;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
  }
  .flow .step-text {
    font-weight: bold;
  }
  /* ================== FAQ ================== */
  .faq-item {
    border-bottom: 1px solid #e0e0e0;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 30px 15px 0;
    text-align: left;
    cursor: pointer;
    position: relative;
    line-height: 1.6;
    font-size: 16px;
  }
  .faq-question::after {
    content: "＋";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  .faq-item.active .faq-question::after {
    content: "－";
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .faq-answer p {
    padding: 0 0 15px;
    font-size: 16px;
  }
  /* ================== CTA ================== */
  .benefit-card {
    border: 2px solid #f0c36d;
    border-radius: 20px;
    padding: 25px 20px;
    background-color: white;
  }
  .benefit-card img {
    margin-bottom: 0px !important;
  }
  .benefit-card .check-text {
    margin: 40px 0 0px;
    text-align: center;
  }
  .benefit-card .check-text li {
    font-size: 28px;
    margin-bottom: 15px;
    color: #e2a12b;
    font-weight: bold;
  }
  .benefit-f {
    padding: 0 20px;
  }
  .benefit {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0 70px;
  }
  .benefit-text {
    flex: 1;
  }
  .benefit-name {
    margin-bottom: 10px !important;
  }
  .benefit-image {
    width: 200px;
  }
  .benefit-image img {
    width: 100%;
    border-radius: 10px;
  }
  /* ================== ゴールドキラキラボタン ================== */
  .benefit-btn-wrap {
    text-align: center;
    margin-top: 50px;
  }
  .benefit-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7d77a 0%, #e5b84a 75%, #f7d77a 100%);
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
  .benefit-btn:hover {
    opacity: 0.8;
  }
  /* キラキラ */
  .benefit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shine 5s infinite;
  }
  @keyframes shine {
    0% {
      left: -120%;
    }
    60% {
      left: 120%;
    }
    100% {
      left: 120%;
    }
  }
  .note {
    font-size: 12px;
    margin-top: 10px;
    color: #666;
  }
  /* ================== スクールの場所 ================== */
  .access-block {
    margin-bottom: 70px;
  }
  .access-block h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
  }
  .access-block .address {
    margin-bottom: 15px;
  }
  .access-block img {
    width: 25px;
    height: auto;
    margin-right: 6px;
    margin-bottom: 0px !important;
  }
  /* ================== フッター ================== */
  .footer {
    background: #fff;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    text-align: center;
  }
  .footer-title {
    font-weight: bold;
    margin-bottom: 10px;
  }
  .footer-info {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .footer .copyright {
    font-size: 12px;
    color: #777;
  }
}
/* ================== タブレット ================== */
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .kv {
    position: relative;
  }
  .kv-catch {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .kv-logo img {
    width: 50%;
    margin-bottom: 30px;
  }
  .kv-lead, .kv-desc {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  .kv-lead {
    font-size: 10px;
    margin-bottom: 80px;
  }
  .kv-desc {
    font-size: 18px;
    line-height: 1.8;
  }
  .kv-bg {
    width: 100%;
    height: auto;
    display: block;
  }
  .kv-text {
    position: absolute;
    top: 6%;
    left: 6%;
    right: 6%;
    z-index: 1;
  }
  /* ================== どんなところ？ ================== */
  .about img {
    margin-bottom: 0px !important;
  }
  .about-list {
    list-style: none;
  }
  .about-item {
    display: flex;
    align-items: flex-start;
  }
  .about-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
  }
  .about-icon {
    width: 32px;
    height: auto;
    margin-bottom: 4px;
  }
  .fukei {
    margin-bottom: 100px;
  }
  /* ================== 無料説明会 ================== */
  .info {
    background: #fff8e8;
  }
  .info-inner {
    max-width: 750px;
    margin: 0 auto;
  }
  .info-text {
    margin-bottom: 15px;
  }
  .info-band {
    background: #06c755;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 12px;
    margin: 30px 0 20px;
    font-size: 18px;
  }
  .info-contact p {
    margin-bottom: 10px;
  }
  .info-btn-wrap {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 100px;
  }
  .info-btn-wrap a:hover {
    opacity: 0.6;
    transition: 0.1;
  }
  .info-btn-wrap .instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border-radius: 80px;
    border: 2px solid #06c755;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    background: #fff;
  }
  .info-btn-wrap .insta-icon {
    font-size: 20px;
  }
  /* ================== 受講生の声 ================== */
  .voice-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #e2a12b;
    margin-bottom: 40px;
    position: relative;
  }
  .voice-title::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    background-image: url("../images/midashi-icon02.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .voice-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
  }
  .voice-item:not(:last-child) {
    border-bottom: 1px solid rgba(226, 161, 43, 0.4);
  }
  .voice-content {
    flex: 1;
  }
  .voice-text {
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .voice-meta {
    font-size: 13px;
    color: #777;
  }
  .voice-image {
    width: 150px;
    flex-shrink: 0;
  }
  .voice-image img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
    display: block;
  }
  /* ================== 卒業生のサロン ================== */
  .salon {
    margin-bottom: 10px;
    border: 2px solid #fdf2d0;
    border-radius: 16px;
  }
  .salon-name {
    background-color: #fdf2d0;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 15px 15px 0 0;
  }
  .salon-link {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 30px;
  }
  .salon-url {
    color: blue;
    text-decoration: underline;
    word-break: break-all;
  }
  .salon-url:hover {
    opacity: 0.5;
    transition: 0.3s;
  }
  /* ================== 受講コース ================== */
  .course {
    border: 2px solid #fdf2d0;
    border-radius: 16px;
    overflow: hidden;
  }
  .course-header {
    background-color: #fdf2d0;
    padding: 15px 30px;
    font-weight: bold;
  }
  .course-body {
    padding: 20px 30px;
  }
  .course-row {
    display: flex;
    margin-bottom: 15px;
  }
  .course-label {
    min-width: 5.5em;
    font-weight: bold;
  }
  /* ================== 受講コース ================== */
  .flow .apply-period {
    background-color: #e2a12b;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    border-radius: 16px;
    margin-bottom: 20px;
  }
  .flow-step {
    background-color: #fdf2d0;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #fdf2d0;
    z-index: 1;
  }
  .flow .step-num {
    background-color: #fff;
    color: #e2a12b;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
  }
  .flow .step-text {
    font-weight: bold;
  }
  /* ================== FAQ ================== */
  .faq-item {
    border-bottom: 1px solid #e0e0e0;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 30px 15px 0;
    text-align: left;
    cursor: pointer;
    position: relative;
    line-height: 1.6;
    font-size: 16px;
  }
  .faq-question::after {
    content: "＋";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  .faq-item.active .faq-question::after {
    content: "－";
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .faq-answer p {
    padding: 0 0 15px;
    font-size: 16px;
  }
  /* ================== CTA ================== */
  .benefit-card {
    border: 2px solid #f0c36d;
    border-radius: 20px;
    padding: 25px 20px;
    background-color: white;
  }
  .benefit-card img {
    margin-bottom: 0px !important;
  }
  .benefit-card .check-text {
    margin: 40px 0 0px;
    text-align: center;
  }
  .benefit-card .check-text li {
    font-size: 28px;
    margin-bottom: 15px;
    color: #e2a12b;
    font-weight: bold;
  }
  .benefit-f {
    padding: 0 25px;
  }
  .benefit {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0 25px;
  }
  .benefit-text {
    flex: 1;
  }
  .benefit-name {
    margin-bottom: 10px !important;
  }
  .benefit-image {
    width: 200px;
  }
  .benefit-image img {
    width: 100%;
    border-radius: 10px;
  }
  /* ================== ゴールドキラキラボタン ================== */
  .benefit-btn-wrap {
    text-align: center;
    margin-top: 50px;
  }
  .benefit-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7d77a 0%, #e5b84a 75%, #f7d77a 100%);
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
  .benefit-btn:hover {
    opacity: 0.8;
  }
  /* キラキラ */
  .benefit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shine 5s infinite;
  }
  @keyframes shine {
    0% {
      left: -120%;
    }
    60% {
      left: 120%;
    }
    100% {
      left: 120%;
    }
  }
  .note {
    font-size: 12px;
    margin-top: 10px;
    color: #666;
  }
  /* ================== スクールの場所 ================== */
  .access-block {
    margin-bottom: 70px;
  }
  .access-block h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
  }
  .access-block .address {
    margin-bottom: 15px;
  }
  .access-block img {
    width: 25px;
    height: auto;
    margin-right: 6px;
    margin-bottom: 0px !important;
  }
  /* ================== フッター ================== */
  .footer {
    background: #fff;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    text-align: center;
  }
  .footer-title {
    font-weight: bold;
    margin-bottom: 10px;
  }
  .footer-info {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .footer .copyright {
    font-size: 12px;
    color: #777;
  }
}
/* ================== スマホ ================== */
@media (max-width: 767px) {
  #wrap {
    max-width: 100%;
    margin: 0 auto;
  }
  p {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .title {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #e2a12b;
    line-height: 1.5;
  }
  .title::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url("../images/midashi-icon01.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .box01 {
    padding: 60px 20px 0px;
  }
  .box01 img {
    margin-bottom: 20px;
  }
  .insta-icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
  }
  /* ================== メインビジュアル ================== */
  .kv {
    position: relative;
  }
  .kv-catch {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .kv-logo img {
    width: 55%;
    margin-bottom: 16px;
  }
  .kv-lead, .kv-desc {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  .kv-lead {
    font-size: 9px;
    margin-bottom: 30px;
  }
  .kv-desc {
    font-size: 12px;
    line-height: 1.8;
  }
  .kv-bg {
    width: 100%;
    height: auto;
    display: block;
  }
  .kv-text {
    position: absolute;
    top: 6%;
    left: 6%;
    right: 6%;
    z-index: 1;
  }
  /* ================== どんなところ？ ================== */
  .about img {
    margin-bottom: 0px !important;
  }
  .about-list {
    list-style: none;
  }
  .about-item {
    display: flex;
    align-items: flex-start;
  }
  .about-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 42px;
  }
  .about-icon {
    width: 26px;
    height: auto;
    margin-bottom: 4px;
  }
  /* ================== 無料説明会 ================== */
  .info {
    background: #fff8e8;
  }
  .info-inner {
    margin: 0 auto;
  }
  .info-text {
    margin-bottom: 15px;
  }
  .info-band {
    background: #06c755;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 12px;
    margin: 30px 0 20px;
    font-size: 18px;
  }
  .info-contact p {
    margin-bottom: 10px;
  }
  .info-btn-wrap {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 50px;
  }
  .info-btn-wrap a:hover {
    opacity: 0.6;
    transition: 0.1;
  }
  .info-btn-wrap .instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 30px;
    border: 2px solid #06c755;
    text-decoration: none;
    font-weight: bold;
    background: #fff;
  }
  .info-btn-wrap .insta-icon {
    font-size: 18px;
  }
  /* ================== 受講生の声 ================== */
  .voice-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #e2a12b;
    position: relative;
    margin-bottom: 10px;
  }
  .voice-title::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    background-image: url("../images/midashi-icon02.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .voice-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 20px 0;
  }
  .voice-item:not(:last-child) {
    border-bottom: 1px solid rgba(226, 161, 43, 0.4);
  }
  .voice-content {
    flex: 1;
  }
  .voice-text {
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .voice-meta {
    font-size: 11px;
    color: #777;
  }
  .voice-image {
    width: 120px;
    flex-shrink: 0;
  }
  .voice-image img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
    display: block;
  }
  /* ================== 卒業生のサロン ================== */
  .salon {
    margin-bottom: 10px;
    border: 2px solid #fdf2d0;
    border-radius: 16px;
    font-size: 13px;
  }
  .salon-name {
    background-color: #fdf2d0;
    padding: 15px;
    font-weight: bold;
    border-radius: 15px 15px 0 0;
  }
  .salon-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
  }
  .salon-url {
    color: blue;
    text-decoration: underline;
    word-break: break-all;
  }
  .salon-url:hover {
    opacity: 0.5;
    transition: 0.3s;
  }
  /* ================== 受講コース ================== */
  .course {
    border: 2px solid #fdf2d0;
    border-radius: 16px;
    overflow: hidden;
    font-size: 13px;
  }
  .course-header {
    background-color: #fdf2d0;
    padding: 15px;
    font-weight: bold;
  }
  .course-body {
    padding: 10px 15px;
  }
  .course-row {
    display: flex;
    margin-bottom: 15px;
  }
  .course-label {
    min-width: 5.5em;
    font-weight: bold;
  }
  /* ================== 受講コース ================== */
  .flow .apply-period {
    background-color: #e2a12b;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 13px;
  }
  .flow-step {
    background-color: #fdf2d0;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 13px;
  }
  .flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #fdf2d0;
    z-index: 1;
  }
  .flow .step-num {
    background-color: #fff;
    color: #e2a12b;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
  }
  .flow .step-text {
    font-weight: bold;
  }
  /* ================== FAQ ================== */
  .faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0px 30px 10px 0;
    text-align: left;
    cursor: pointer;
    position: relative;
    line-height: 1.6;
    font-size: 13px;
  }
  .faq-question::after {
    content: "＋";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  .faq-item.active .faq-question::after {
    content: "－";
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .faq-answer p {
    padding: 0 0 15px;
    font-size: 13px;
  }
  /* ================== CTA ================== */
  .benefit-card {
    border: 1px solid #f0c36d;
    border-radius: 20px;
    padding: 10px 5px;
    background-color: white;
  }
  .benefit-card img {
    margin-bottom: 0px !important;
  }
  .benefit-card .check-text {
    margin: 20px 0;
    text-align: center;
  }
  .benefit-card .check-text li {
    font-size: 15px;
    margin-bottom: 5px;
    color: #e2a12b;
    font-weight: bold;
  }
  .benefit-f {
    padding: 0 20px;
  }
  .benefit {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0 25px;
  }
  .benefit-text {
    flex: 1;
  }
  .benefit-text p {
    font-size: 12px;
  }
  .benefit-name {
    margin-bottom: 10px !important;
  }
  .benefit-image {
    width: 90px;
  }
  .benefit-image img {
    width: 100%;
    border-radius: 10px;
  }
  /* ================== ゴールドキラキラボタン ================== */
  .benefit-btn-wrap {
    text-align: center;
    margin-top: 30px;
  }
  .benefit-btn {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding: 15px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7d77a 0%, #e5b84a 75%, #f7d77a 100%);
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
  .benefit-btn:hover {
    opacity: 0.8;
  }
  /* キラキラ */
  .benefit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shine 5s infinite;
  }
  @keyframes shine {
    0% {
      left: -120%;
    }
    60% {
      left: 120%;
    }
    100% {
      left: 120%;
    }
  }
  .note {
    font-size: 11px;
    margin-top: 10px;
    color: #666;
  }
  /* ================== スクールの場所 ================== */
  .access-block {
    margin-bottom: 70px;
  }
  .access-block h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
  }
  .access-block .address {
    margin-bottom: 15px;
  }
  .access-block img {
    width: 25px;
    height: auto;
    margin-right: 6px;
    margin-bottom: 0px !important;
  }
  /* ================== フッター ================== */
  .footer {
    background: #fff;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    text-align: center;
  }
  .footer-title {
    font-weight: bold;
    margin-bottom: 10px;
  }
  .footer-info {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .footer .copyright {
    font-size: 12px;
    color: #777;
  }
}/*# sourceMappingURL=style.css.map */