@charset "UTF-8";

.ov {
  transition: opacity 0.3s;
}
.ov:hover {
  opacity: 0.7;
}

em, i {
  font-style: normal;
}

/* =====================
   KV サブタイトル
===================== */
main section.kv .inner .kv_en {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

/* =====================
   共通: セクション内部ラッパー
===================== */
.sec_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* =====================
   共通: セクション見出し
===================== */
.sec_ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sec_ttl {
    margin-bottom: 35px;
  }
}
.sec_ttl .en {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c_blue);
  letter-spacing: 0.25em;
  margin-bottom: 10px;
}
.sec_ttl h2 {
  display: inline;
  font-size: 32px;
  font-weight: 700;
  color: var(--c_blue);
  line-height: 1.4;
  background: linear-gradient(0deg, var(--c_yellow2) 35%, transparent 35%);
}
@media screen and (max-width: 767px) {
  .sec_ttl h2 {
    font-size: 24px;
  }
}

/* =====================
   セクション: イントロ
===================== */
section.fee_intro {
  padding: 70px 5%;
  background: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.fee_intro {
    padding: 50px 5%;
  }
}
section.fee_intro .lead_txt {
  font-size: 17px;
  line-height: 2;
  color: var(--c_dark);
  max-width: 800px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  section.fee_intro .lead_txt {
    font-size: 15px;
    text-align: left;
  }
}
section.fee_intro .intro_note {
  display: inline-block;
  border: 2px solid var(--c_blue);
  border-radius: 4px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  color: var(--c_blue);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  section.fee_intro .intro_note {
    padding: 16px 20px;
    font-size: 15px;
  }
}

/* =====================
   セクション: 指導の特長
===================== */
section.fee_feature {
  padding: 80px 5%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  section.fee_feature {
    padding: 50px 5%;
  }
}
.feature_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .feature_list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .feature_list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.feature_item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c_gray);
  overflow: hidden;
  border-radius: 12px;
}
.feature_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c_sky);
}
.feature_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.feature_item:hover .feature_img img {
  transform: scale(1.04);
}
.feature_body {
  padding: 22px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.feature_body .feature_num {
  font-size: 11px;
  font-weight: 700;
  color: var(--c_blue);
  letter-spacing: 0.1em;
}
.feature_body .feature_num span {
  font-size: 20px;
}
.feature_body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c_blue);
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c_yellow2);
}
@media screen and (max-width: 1023px) {
  .feature_body h3 {
    font-size: 17px;
  }
}
.feature_body p:last-child {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
}

/* =====================
   セクション: 安心ポイント 3つ
===================== */
section.fee_points {
  padding: 70px 5%;
  background: var(--c_sky);
}
@media screen and (max-width: 767px) {
  section.fee_points {
    padding: 50px 5%;
  }
}
.point_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .point_list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.point_item {
  background: #fff;
  border-top: 5px solid var(--c_blue);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.point_item .point_num {
  font-size: 11px;
  font-weight: 700;
  color: var(--c_blue);
  letter-spacing: 0.1em;
}
.point_item .point_num span {
  font-size: 26px;
  display: block;
  line-height: 1;
  margin-top: 2px;
}
.point_item h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--c_blue);
  line-height: 1.5;
  border-bottom: 1px solid var(--c_gray);
  padding-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .point_item h3 {
    font-size: 17px;
  }
}
.point_item p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

/* =====================
   セクション: コースと料金
===================== */
section.fee_courses {
  padding: 80px 5%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  section.fee_courses {
    padding: 50px 5%;
  }
}
.course_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.course_item {
  border: 2px solid var(--c_blue);
  overflow: hidden;
}
.course_head {
  background: var(--c_blue);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 15px;
}
.course_head .course_label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.15em;
}
.course_head h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .course_head h3 {
    font-size: 19px;
  }
}
.course_head .course_tag {
  font-size: 11px;
  font-weight: 700;
  background: var(--c_yellow1);
  color: var(--c_blue);
  padding: 4px 12px;
  border-radius: 99px;
}
.course_body {
  padding: 25px 28px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .course_body {
    flex-direction: column;
  }
}
.course_feature {
  flex: 1;
}
.course_feature > p {
  font-size: 15px;
  font-weight: 700;
  color: var(--c_blue);
  margin-bottom: 12px;
}
.course_feature ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.course_feature ul li {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 1.2em;
  position: relative;
  color: #333;
}
.course_feature ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  font-size: 9px;
  color: var(--c_blue);
  top: 0.35em;
}
.course_price_box {
  width: 210px;
  flex-shrink: 0;
  background: var(--c_sky);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .course_price_box {
    width: 100%;
  }
}
.course_price_box .price_label {
  font-size: 11px;
  font-weight: 700;
  color: var(--c_blue);
  letter-spacing: 0.05em;
}
.course_price_box .price_note {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}
.course_price_box .price_btn {
  display: block;
  width: 100%;
  background: var(--c_blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 10px;
  text-align: center;
  transition: opacity 0.3s;
  margin-top: 4px;
}
@media (hover) {
  .course_price_box .price_btn:hover {
    opacity: 0.7;
  }
}

/* =====================
   セクション: 費用の内訳
===================== */
section.fee_table_sec {
  padding: 80px 5%;
  background: var(--c_sky);
}
@media screen and (max-width: 767px) {
  section.fee_table_sec {
    padding: 50px 5%;
  }
}
.fee_table_wrap {
  max-width: 1000px;
  margin: 0 auto 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fee_table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.fee_table th,
.fee_table td {
  padding: 16px 20px;
  border: 1px solid #d0d8e4;
  font-size: 15px;
  line-height: 1.6;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .fee_table th,
  .fee_table td {
    font-size: 13px;
    padding: 12px 14px;
  }
}
.fee_table thead th {
  background: var(--c_blue);
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.fee_table thead th:first-child {
  width: 25%;
}
.fee_table thead th:nth-child(2) {
  width: 28%;
}
.fee_table tbody td:first-child {
  font-weight: 700;
  background: #f0f4ff;
}
.fee_table tbody tr:hover td {
  background: #f8f9ff;
}
.fee_table tbody td:first-child:hover {
  background: #f0f4ff;
}
.price_cell {
  font-size: 20px;
  font-weight: 700;
  color: var(--c_blue);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price_cell {
    font-size: 16px;
  }
}
.price_cell span {
  font-size: 13px;
  font-weight: 400;
}
.free_cell {
  color: #d04040 !important;
}
.free_cell span {
  font-size: 13px;
  font-weight: 400;
}
.inquiry_cell {
  color: var(--c_blue);
  font-size: 16px !important;
  font-weight: 700;
  text-align: center;
}
.fee_note {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* =====================
   セクション: 料金提案の流れ
===================== */
section.fee_flow {
  padding: 80px 5%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  section.fee_flow {
    padding: 50px 5%;
  }
}
.flow_lead {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .flow_lead {
    font-size: 14px;
    margin-bottom: 35px;
    text-align: left;
  }
}
.flow_list {
  display: flex;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .flow_list {
    flex-direction: column;
    gap: 0;
  }
}
.flow_item {
  flex: 1;
  padding: 35px 25px;
  background: var(--c_sky);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.flow_item .step_badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.flow_item .step_badge .step_en {
  font-size: 10px;
  font-weight: 700;
  color: var(--c_blue);
  letter-spacing: 0.1em;
}
.flow_item .step_badge .step_num {
  font-size: 42px;
  font-weight: 700;
  color: var(--c_blue);
  line-height: 1;
}
.flow_item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c_blue);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .flow_item h3 {
    font-size: 15px;
  }
}
.flow_item p {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  text-align: left;
}
.flow_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 8px;
  background: var(--c_sky);
}
@media screen and (max-width: 767px) {
  .flow_arrow {
    justify-content: center;
    padding: 5px 0;
    height: 36px;
  }
}
.flow_arrow::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--c_blue);
  border-right: 3px solid var(--c_blue);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .flow_arrow::after {
    transform: rotate(135deg);
  }
}

/* =====================
   セクション: FAQ
===================== */
section.fee_faq {
  padding: 80px 5%;
  background: var(--c_sky);
}
@media screen and (max-width: 767px) {
  section.fee_faq {
    padding: 50px 5%;
  }
}
.faq_list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq_item {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.faq_q {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.faq_q:hover {
  background: #f8f9ff;
}
.faq_q .faq_label {
  min-width: 36px;
  height: 36px;
  background: var(--c_blue);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.faq_q p {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
}
@media screen and (max-width: 767px) {
  .faq_q p {
    font-size: 14px;
  }
}
.faq_q .faq_toggle {
  font-size: 24px;
  color: var(--c_blue);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s;
  width: 24px;
  text-align: center;
}
.faq_item.open .faq_q .faq_toggle {
  transform: rotate(45deg);
}
.faq_a {
  display: none;
  gap: 15px;
  padding: 20px 22px;
  border-top: 1px solid var(--c_gray);
  background: #f6f8ff;
  align-items: flex-start;
}
.faq_item.open .faq_a {
  display: flex;
}
.faq_a .faq_label {
  min-width: 36px;
  height: 36px;
  background: var(--c_yellow2);
  color: var(--c_blue);
  font-weight: 700;
  font-size: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.faq_a p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}
@media screen and (max-width: 767px) {
  .faq_a p {
    font-size: 13px;
  }
}

/* =====================
   セクション: CTA
===================== */
section.fee_cta {
  padding: 80px 5%;
  background: linear-gradient(26deg, #0b2084 0%, #395bad 100%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.fee_cta {
    padding: 55px 5%;
  }
}
section.fee_cta .cta_lead {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  section.fee_cta .cta_lead {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
section.fee_cta .cta_btn_wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  section.fee_cta .cta_btn_wrap {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
section.fee_cta .cta_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s;
}
@media (hover) {
  section.fee_cta .cta_btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  section.fee_cta .cta_btn {
    width: 100%;
    max-width: 360px;
    min-width: auto;
    font-size: 15px;
    padding: 16px 20px;
  }
}
section.fee_cta .cta_btn.free_btn {
  background: var(--c_yellow1);
  color: var(--c_blue);
  position: relative;
  overflow: hidden;
}
section.fee_cta .cta_btn.free_btn::before {
  position: absolute;
  content: "";
  top: -60px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: rgba(252, 245, 228, 0.71);
  z-index: 2;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
section.fee_cta .cta_btn.request_btn {
  background: #fff;
  color: var(--c_blue);
  border: 2px solid #fff;
}
section.fee_cta .tel_wrap a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.3s;
}
@media (hover) {
  section.fee_cta .tel_wrap a:hover {
    opacity: 0.7;
  }
}
section.fee_cta .tel_wrap .tel_icon {
  width: 42px;
  height: auto;
}
section.fee_cta .tel_wrap .tel_icon img {
  width: 100%;
}
section.fee_cta .tel_wrap .tel_text {
  text-align: left;
}
section.fee_cta .tel_wrap .tel_text p {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
section.fee_cta .tel_wrap .tel_text b {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}
section.fee_cta .tel_wrap .tel_text ul li {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
