@charset "UTF-8";
/* ===============================
  Base
=============================== */

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.72;
  color: #000000;
  background: url(../images/body-bg.jpg);
  background-attachment: fixed;
  background-repeat: repeat-y;
  background-size: cover;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}
.sp-only {
  display: none;
  @media only screen and (max-width: 499px) {
    display: block;
  }
}
.pc-only {
  display: block;
  @media only screen and (max-width: 499px) {
    display: none;
  }
}
.wrapper {
  background: #fff;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
/* ===============================
  common
=============================== */
.common__cta {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.common__rays {
  position: absolute;
  top: -40px;
  left: 55px;
  width: 68px;
}

.common__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(240px, 80%);
  height: 54px;
  background: #ff8d8d;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
  color: #fff;
  border-radius: 12px;
  transition: all ease 0.3s;
}
.common__btn:hover {
  background: #ffff;
  color: #ff8d8d;
  border: 1px solid #ff8d8d;
}
@media only screen and (max-width: 499px) {
  .common__cta {
    margin-top: 50px;
  }
  .common__rays {
    top: -35px;
    left: 25px;
    width: 64px;
  }
}
@media only screen and (max-width: 399px) {
  .common__rays {
    top: -35px;
    left: 5px;
    width: 58px;
  }
  .common__btn {
    width: min(240px, 74%);
    height: 48px;
    font-size: 20px;
  }
}

/* ============================
   共通ボタン（パターン2)
============================ */
.common-button {
  position: relative;
  text-align: center;
  margin: 24px 0;
}

/* 上の光（装飾） */
.common-button__shine {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.common-button__shine img {
  display: block;
  width: 60px;
  height: auto;
}

/* ボタン本体 */
.common-button__link {
  background-color: #20a9ce;
  display: inline-block;
  min-width: 230px;
  font-size: 19px;
  text-align: center;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

/* hover */
.common-button__link:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

/* active（クリック時） */
.common-button__link:active {
  transform: translateY(-6px);
}

@media (max-width: 640px) {
  .common-button {
    margin: 16px 0;
  }

  .common-button__link {
    min-width: 220px;
  }
}
@media only screen and (max-width: 399px) {
  .common-button__link {
    font-size: 16px;
    padding: 8px 24px;
  }
}

/* =========================
  Hamburger Menu
========================= */
.menu {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 9999;
}

/* button */
.menu__btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.menu__btn:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.45);
}

.menu__btn-lines {
  width: 22px;
  height: 16px;
  display: grid;
  align-content: space-between;
}
.menu__btn-lines span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.menu__btn-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* overlay */
.menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

/* panel */
.menu__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transform: translateX(110%);
  transition: 0.35s ease;
  pointer-events: none;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* header */
.menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.menu__close {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.menu__close::before,
.menu__close::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background: #333;
}
.menu__close::before {
  transform: rotate(45deg);
}
.menu__close::after {
  transform: rotate(-45deg);
}

/* list */
.menu__list {
  display: grid;
  gap: 8px;
}

.menu__link {
  background: #fff;
  display: block;
  font-size: 14px;
  color: #000;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 6px 16px;
  transition: 0.2s;
}
.menu__link:hover {
  background: #f0f6fb;
  transform: translateX(-2px);
}

.menu__item--cta {
  margin-top: 8px;
}

/* CTAリンク */
.menu__link--cta {
  background: linear-gradient(135deg, #23a939, #2fc84a);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease;
}

/* hover */
.menu__link--cta:hover {
  background: linear-gradient(135deg, #1f9833, #28b842);
  transform: translateX(2px);
}

/* open state */
.menu.is-open .menu__overlay {
  opacity: 1;
  pointer-events: auto;
}
.menu.is-open .menu__panel {
  transform: translateX(0);
  pointer-events: auto;
}
.menu.is-open .menu__btn-lines span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu.is-open .menu__btn-lines span:nth-child(2) {
  opacity: 0;
}
.menu.is-open .menu__btn-lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.is-menu-locked {
  overflow: hidden;
}

/* ===============================
  fv 
=============================== */
.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;
}

.fv {
  width: 100%;
  overflow: hidden;
}

.fv__image {
  width: 100%;
  height: auto;
  display: block;
}
/* ===============================
  camera worries
=============================== */
.camera-worries {
  width: 100%;
  margin-top: -1px;
}

.camera-worries__body {
  background: #efefef;
  padding: 30px 40px 0;
}

.camera-worries__list {
  display: grid;
  gap: 20px;
}

.camera-worries__item {
  display: grid;
  grid-template-columns: 25px 1fr;
  column-gap: 12px;
  align-items: flex-start;
}

.camera-worries__icon {
  width: 25px;
  height: 25px;
  margin-top: 2px;
}

.camera-worries__text {
  font-size: 16px;
}

.camera-worries__note {
  font-size: 14px;
  margin-top: 18px;
}

.camera-worries__cta {
  background: #efefef;
  margin-top: -5rem;
}

.camera-worries__cta-img {
  width: 100%;
}

@media only screen and (max-width: 499px) {
  .camera-worries__body {
    padding: 25px 20px 0;
  }
  .camera-worries__list {
    gap: 18px;
  }
  .camera-worries__note {
    font-size: 13px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 399px) {
  .camera-worries__text {
    font-size: 14px;
  }
  .camera-worries__note {
    font-size: 11px;
    margin-top: 13px;
  }
}
@media only screen and (max-width: 359px) {
  .camera-worries__body {
    padding: 25px 12px 0;
  }
  .camera-worries__text {
    font-size: 12px;
  }
  .camera-worries__icon {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }
  .camera-worries__item {
    grid-template-columns: 20px 1fr;
    column-gap: 8px;
  }
  .camera-worries__note {
    font-size: 10px;
  }
}
/* ===============================
  skillup section
=============================== */

.skillup {
  padding: 30px 12px;
}

.skillup__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.skillup__heading-icon {
  width: 50px;
  margin-top: 8px;
}

.skillup__title {
  font-size: 22px;
  line-height: 1.75;
  letter-spacing: 0;
}

.skillup__title-mark {
  display: inline-block;
  font-size: 22px;
  background: linear-gradient(transparent 10%, #fff9a9 55%);
}

.skillup__sub {
  text-align: center;
  margin-top: 1rem;
}

.skillup__sub-text {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  border-bottom: 2px solid #e80f0f;
}

.skillup__text {
  font-size: 18px;
  line-height: 1.77;
  letter-spacing: 0.025em;
  text-align: center;
  margin-top: 32px;
}

.skillup__gallery {
  margin-top: 28px;
}

.skillup__grid {
  display: grid;
  gap: 4px;
}

.skillup__grid--top {
  grid-template-columns: 32% 1fr;
  margin-bottom: 5px;
}

.skillup__grid--bottom {
  grid-template-columns: 48% 1fr;
}

@media only screen and (max-width: 499px) {
  .skillup__title-mark {
    font-size: 20px;
  }
  .skillup__text {
    font-size: 17px;
    margin-top: 20px;
  }
  .skillup__cta {
    margin-top: 50px;
  }
  .skillup__rays {
    top: -35px;
    left: 25px;
    width: 64px;
  }
}
@media only screen and (max-width: 399px) {
  .skillup__heading {
    gap: 8px;
  }
  .skillup__title-mark {
    font-size: 19px;
  }
  .skillup__text {
    font-size: 14px;
  }
  .skillup__rays {
    top: -35px;
    left: 5px;
    width: 58px;
  }
}
@media only screen and (max-width: 359px) {
  .skillup__title-mark {
    font-size: 16px;
  }
  .skillup__sub-text {
    font-size: 14px;
  }
  .skillup__text {
    font-size: 12px;
  }
  .skillup__btn {
    width: min(240px, 65%);
    height: 45px;
    font-size: 16px;
  }
}
/* ===============================
  reasons
=============================== */

.reasons {
  background: #f1f1f1;
}

.reasons__heading-img {
  width: 100%;
}

.reasons__inner {
  padding: 60px 20px 0;
  margin: 0 auto;
}

.reasonCard {
  position: relative;
  background: #fff;
  border-radius: 39px;
  padding: 30px 20px;
  margin-bottom: 60px;
  overflow: visible;
}
.reasonCard:last-of-type {
  margin-bottom: 35px;
}

.reasonCard__point {
  position: absolute;
  top: -15px;
  background: #3790b7;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.77;
  color: #fff;
  letter-spacing: 0;
  padding: 0 8px;
}
.reasonCard__point span {
  font-size: 25px;
  line-height: 1.2;
}
.reasonCard__point--left {
  left: 18px;
}
.reasonCard__point--right {
  right: 18px;
}

.reasonCard__icon {
  position: absolute;
  top: -35px;
  width: 64px;
}

.reasonCard__icon--right {
  right: 14px;
}
.reasonCard__icon--left {
  left: 14px;
}

.reasonCard__icon img {
  width: 100%;
  height: auto;
}

.reasonCard__title {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.8;
  padding-bottom: 3px;
}

.reasonCard__rule {
  height: 2px;
  background: #f93e3e;
  margin-bottom: 16px;
}

.reasonCard__text {
  font-size: 17.5px;
  line-height: 1.71;
  letter-spacing: 0.042em;
}

.reasonCard__note {
  font-size: 15.5px;
  line-height: 1.75;
  color: #f93e3e;
  margin-top: 16px;
}

.reasons__info {
  background-color: rgba(250, 255, 46, 0.8);
  padding: 20px;
  margin-bottom: 40px;
}

.reasons__info-text {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 499px) {
  .reasons__inner {
    padding: 50px 18px 0;
  }
}
@media only screen and (max-width: 399px) {
  .reasonCard__title {
    font-size: 18px;
    line-height: 1.5;
  }
  .reasonCard__text {
    font-size: 15px;
  }
  .reasonCard__rule {
    margin-bottom: 12px;
  }
  .reasonCard__note {
    font-size: 14px;
    margin-top: 10px;
  }
  .reasonCard__point {
    font-size: 16px;
  }
  .reasonCard__point span {
    font-size: 23px;
  }
  .reasonCard__icon {
    width: 60px;
  }
  .reasons__info-text {
    font-size: 14px;
  }
  .reasons__info {
    padding: 16px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 359px) {
  .reasons__inner {
    padding: 40px 12px 0;
  }
  .reasonCard__title {
    font-size: 16px;
  }
  .reasonCard__text {
    font-size: 13px;
  }
  .reasonCard {
    padding: 25px 16px;
    margin-bottom: 45px;
  }
  .reasons__info-text {
    font-size: 13px;
  }
  .reasons__info {
    padding: 14px;
    margin-bottom: 25px;
  }
}

/* ===============================
  before after
=============================== */

.beforeAfter__inner {
  padding: 25px 14px 0;
}

/* 上段 */
.beforeAfter__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.beforeAfter__introText {
  font-size: 17px;
  line-height: 1.54;
  letter-spacing: 0;
}

/* ラベル */
.beforeAfter__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 28px;
}

.beforeAfter__label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.73;
}
.beforeAfter__label img {
  max-width: 36px;
}
/* 黄色説明 */
.beforeAfter__note {
  background-color: rgba(250, 255, 46, 0.8);
  font-size: 18px;
  line-height: 1.77;
  margin: 18px 0 40px;
  padding: 16px;
}

/* CTA */
.beforeAfter__cta {
  text-align: center;
}

.beforeAfter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(230px, 80%);
  height: 50px;
  background: #ff8d8d;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.76;
  border-radius: 12px;
  transition: all ease 0.3s;
}
.beforeAfter__btn:hover {
  background: #fff;
  color: #ff8d8d;
  border: 1px solid #ff8d8d;
}

.beforeAfter__ctaNote {
  font-size: 18px;
  margin-top: 45px;
  padding: 0 20px;
}
.beforeAfter__ctaNote .is-red {
  color: #f40c0c;
  font-weight: normal;
}

/* 下ビジュアル */
.beforeAfter__bottom {
  margin-top: 24px;
}

.beforeAfter__bottom img {
  width: 100%;
}
.beforeAfter__bttom-note {
  font-size: 18px;
  line-height: 1.77;
  margin-block: 33px;
  text-align: center;
}
.beforeAfter__bttom-note span {
  background: linear-gradient(transparent 85%, #ff6 60%);
}
@media only screen and (max-width: 414px) {
  .beforeAfter__inner {
    padding: 24px 12px 0;
  }
  .beforeAfter__introText {
    font-size: 15px;
  }
  .beforeAfter__label {
    gap: 10px;
    font-size: 18px;
  }
  .beforeAfter__labels {
    margin: 16px 0 24px;
  }
  .beforeAfter__note {
    font-size: 16px;
    margin: 18px 0 30px;
    padding: 14px;
  }
  .beforeAfter__ctaNote {
    font-size: 16px;
    margin-top: 30px;
    padding: 0 12px;
  }
  .beforeAfter__bttom-note {
    font-size: 16px;
    margin-block: 30px;
  }
}
@media only screen and (max-width: 399px) {
  .beforeAfter__introText {
    font-size: 14px;
  }
  .beforeAfter__note {
    font-size: 14px;
    padding: 12px;
  }
  .beforeAfter__ctaNote {
    font-size: 15px;
  }
  .beforeAfter__bttom-note {
    font-size: 15px;
  }
  .beforeAfter__btn {
    height: 48px;
    font-size: 18px;
  }
}
/* ===============================
  pricing
=============================== */

.pricing__inner {
  padding: 36px 20px;
}

.plan {
  position: relative;
}

/* 見出し行 */
.plan__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #4c4c4c;
  padding: 0 2px;
  margin-bottom: 1rem;
}

.plan__title {
  font-size: 20px;
  line-height: 1.75;
  color: #2459d1;
}

.plan__title--accent {
  color: #ea3232;
}

.plan__catch {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.75;
  white-space: nowrap;
}

.plan__text {
  font-size: 17px;
  font-weight: normal;
  line-height: 1.75;
}

/* 価格 */
.plan__prices {
  margin-top: 36px;
}

.priceRow {
  display: grid;
  grid-template-columns: 175px 1fr;
  align-items: center;
  gap: 12px;
}

/* 左：グレーのラベル */
.priceRow__label {
  background: #757474;
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
  text-align: center;
}

/* 右：金額 */
.priceRow__value {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.priceRow__yen {
  font-size: 23px;
  font-weight: 600;
}

.priceRow__num {
  font-size: 23px;
  font-weight: 600;
}

.priceRow__tax {
  font-size: 15px;
  font-weight: normal;
}

/* 1時間の注釈 */
.plan__note {
  font-size: 15px;
  font-weight: normal;
  text-align: right;
  margin-top: 1rem;
}

/* 破線 */
.pricing__divider {
  margin: 55px 0 25px;
  border-top: 2px dashed #cc2121;
}

/* おすすめバッジ */
.plan__badge {
  display: inline-block;
  background: #ff8d8d;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  border-radius: 2px;
  padding: 4px 16px;
  margin-bottom: 12px;
}

/* 下部注釈 */
.pricing__foot {
  margin-top: 28px;
}

.pricing__foot-text {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.75;
}
@media only screen and (max-width: 499px) {
  .plan__text {
    font-size: 16px;
  }
  .pricing__inner {
    padding: 36px 12px;
  }
  .plan__prices {
    margin-top: 30px;
  }
  .priceRow__label {
    font-size: 17px;
  }
  .priceRow {
    grid-template-columns: 165px 1fr;
    gap: 10px;
  }
  .priceRow__yen {
    font-size: 22px;
  }
  .priceRow__num {
    font-size: 22px;
  }
  .priceRow__tax {
    font-size: 14px;
  }
  .plan__note {
    font-size: 14px;
    margin-top: 0.5rem;
  }
  .pricing__foot-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 399px) {
  .plan__prices {
    margin-top: 25px;
  }
  .priceRow__label {
    font-size: 16px;
  }
  .priceRow {
    grid-template-columns: 145px 1fr;
    gap: 8px;
  }
  .priceRow__yen {
    font-size: 21px;
  }
  .priceRow__num {
    font-size: 21px;
  }
  .priceRow__tax {
    font-size: 13px;
  }
  .pricing__divider {
    margin: 45px 0 24px;
    border-top: 2px dashed #cc2121;
  }
  .plan__title {
    font-size: 18px;
  }
  .plan__catch {
    font-size: 14px;
  }
}
@media only screen and (max-width: 359px) {
  .plan__text {
    font-size: 15px;
  }
  .priceRow {
    grid-template-columns: 133px 1fr;
  }
  .priceRow__label {
    font-size: 14px;
  }
  .priceRow__yen {
    font-size: 18px;
  }
  .priceRow__num {
    font-size: 18px;
  }
  .priceRow__tax {
    font-size: 10px;
  }
  .plan__note {
    font-size: 13px;
    margin-top: 0.5rem;
  }
}
/* ===============================
  smartphoneLesson
=============================== */
.smartphoneLesson {
  background: #fff;
}

.smartphoneLesson__inner {
  padding: 0 20px;
}

.smartphoneLesson__lead {
  position: relative;
  padding-top: 18px;
}

.smartphoneLesson__topLine {
  height: 1px;
  background: #127ddd;
  margin-bottom: 45px;
}

.smartphoneLesson__title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.smartphoneLesson__titleMark {
  background: linear-gradient(transparent 10%, #fff9a9 55%);
}

.smartphoneLesson__icon {
  position: absolute;
  right: 0;
  top: 45px;
  width: 48px;
}

.smartphoneLesson__text {
  font-size: 17.5px;
  text-align: center;
  margin-bottom: 50px;
}

@media only screen and (max-width: 499px) {
  .smartphoneLesson__inner {
    padding: 0 16px;
  }
  .smartphoneLesson__icon {
    right: -5px;
    top: 45px;
    width: 45px;
  }
  .smartphoneLesson__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 399px) {
  .smartphoneLesson__title {
    margin-bottom: 25px;
  }
  .smartphoneLesson__icon {
    right: -10px;
    top: 50px;
    width: 33px;
  }
}
@media only screen and (max-width: 359px) {
  .smartphoneLesson__topLine {
    margin-bottom: 30px;
  }
  .smartphoneLesson__title {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .smartphoneLesson__icon {
    right: -10px;
    top: 35px;
    width: 30px;
  }
  .smartphoneLesson__text {
    font-size: 15px;
  }
}
/* =========================
   lesson
========================= */
.lesson__hero {
  position: relative;
}

.lesson__hero-title {
  position: absolute;
  right: 18px;
  bottom: 14px;
  font-size: 23px;
  color: #fff;
}

/* body area */
.lesson__body {
  background: #efefef;
  padding: 20px 0 55px;
}

.lesson__inner {
  padding: 0 14px;
}

/* lead */
.lesson__lead {
  font-size: 19px;
  margin: 6px 0 30px;
  text-align: center;
}

.lesson__lead-mark {
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  z-index: 0;
}

.lesson__lead-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f8eb34;
  opacity: 0.5;
  transform: rotate(-2deg);
  border-radius: 6px;
  z-index: -1;
}

.lesson__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 8px;
}

/* =========================
   lessonCard
========================= */
.lessonCard {
  background: #ffff;
}

.lessonCard__head {
  max-width: 90%;
  margin: -10px auto 0;
  font-size: 17px;
  color: #fff;
  text-align: center;
}

/* color variations */
.lessonCard__head--orange {
  background: #eda514;
}
.lessonCard__head--blue {
  background: #15628c;
}
.lessonCard__head--pink {
  background: #ff7d99;
}
.lessonCard__head--red {
  background: #ff5555;
}
.lessonCard__head--brown {
  background: #664819;
}
.lessonCard__head--green {
  background: #278921;
}

.lessonCard__media {
  background: #fff;
  padding: 8px 4px 0;
}

.lessonCard__text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.07em;
  padding: 16px 6px;
}
.lesson__rays {
  max-width: 33px;
  top: -35px;
  left: 340px;
  width: 100%;
}
@media only screen and (max-width: 399px) {
  .lesson__inner {
    padding: 0 10px;
  }
  .lesson__lead {
    font-size: 17px;
  }
  .lessonCard__head {
    font-size: 15px;
  }
  .lessonCard__text {
    font-size: 14px;
  }
  .lesson__rays {
    left: 300px;
  }
}
@media only screen and (max-width: 359px) {
  .lesson__rays {
    left: 280px;
  }
}
/* =========================
   instructor
========================= */

.instructor__inner {
  padding: 40px 20px;
}
.instructor__name {
  display: inline-block;
  margin-bottom: 15px;
}
.instructor__name-img {
  max-width: 180px;
  width: 100%;
}

.instructor__profile-grid {
  display: block;
}

.instructor__profile-grid::after {
  content: "";
  display: block;
  clear: both;
}

.instructor__photo {
  float: right;
}

.instructor__photo-img {
  width: 180px;
  height: 180px;
}
.instructor__content p {
  font-size: 17px;
}
/* ===== 実績/受賞 共通 ===== */
.instructor__block {
  position: relative;
  padding: 50px 0 18px;
}

.instructor__pill {
  max-width: 230px;
  background: #15628c;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
  margin: 0 auto 24px;
  text-align: center;
  padding: 4px 12px;
}

.instructor__list {
  font-size: 16.5px;
}

.instructor__list li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 4px;
}

.instructor__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* ===== 装飾（右側） ===== */
.instructor__deco {
  position: absolute;
  right: 4px;
  bottom: 8px;
  width: 92px;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.instructor__deco--camera {
  width: 120px;
  bottom: -30px;
}

.instructor__deco--cat {
  width: 76px;
  bottom: 8px;
}
@media only screen and (max-width: 640px) {
  .instructor__inner {
    padding: 40px 16px;
  }
  .instructor__deco--cat {
    width: 60px;
    bottom: -8px;
    right: 0px;
  }
  .instructor__list {
    font-size: 15.5px;
  }
  .instructor__deco--camera {
    width: 110px;
    bottom: -30px;
  }
  .instructor__block {
    padding: 45px 0 18px;
  }
}
@media only screen and (max-width: 399px) {
  .instructor__photo-img {
    width: 160px;
    height: 160px;
  }
  .instructor__name-img {
    max-width: 160px;
  }
  .instructor__content p {
    font-size: 15px;
  }
  .instructor__pill {
    max-width: 180px;
    font-size: 16px;
    margin: 0 auto 16px;
    padding: 0 8px;
    text-align: center;
  }
  .instructor__list {
    font-size: 15px;
  }
  .instructor__deco--camera {
    width: 100px;
    right: -12px;
    bottom: -40px;
  }
  .instructor__deco--cat {
    width: 55px;
    bottom: -30px;
  }
}
@media only screen and (max-width: 359px) {
  .instructor__inner {
    padding: 40px 10px;
  }
  .instructor__deco--cat {
    width: 45px;
    bottom: -40px;
  }
}
/* =========================
   お客様の声
========================= */
.customerVoice {
  background: url("../images/voice-bg.png") center/cover no-repeat;
  padding: 36px 36px;
  position: relative;
  overflow: hidden;
}

.customerVoice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.18) 40%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

/* 見出し */
.customerVoice__heading {
  text-align: center;
  color: #fff;
}

.customerVoice__title {
  position: relative;
  display: inline-block;
  font-size: 28px;
  padding: 0 56px;
}

.customerVoice__title::before,
.customerVoice__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%);
}

.customerVoice__title::before {
  left: 0;
}

.customerVoice__title::after {
  right: 0;
}

.customerVoice__note {
  font-size: 15px;
  letter-spacing: 0;
  margin-top: 1rem;
}

/* カード */
.customerVoice__list {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.customerVoice__card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  padding: 16px 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}

.customerVoice__name {
  display: inline-block;
  font-size: 17.5px;
  line-height: 1.3;
  border-bottom: 2px solid #15841d;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

.customerVoice__text {
  font-size: 17.5px;
  line-height: 1.4;
}
@media only screen and (max-width: 499px) {
  .customerVoice {
    padding: 36px 24px;
  }
  .customerVoice__note {
    font-size: 14px;
  }
  .customerVoice__list {
    gap: 25px;
    margin-top: 25px;
  }
  .customerVoice__name {
    font-size: 16px;
  }
  .customerVoice__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 399px) {
  .customerVoice {
    padding: 30px 20px;
  }
  .customerVoice__list {
    gap: 20px;
    margin-top: 20px;
  }
  .customerVoice__card {
    padding: 12px 18px;
  }
  .customerVoice__name {
    font-size: 15px;
  }
  .customerVoice__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 359px) {
  .customerVoice__title {
    font-size: 26px;
  }
  .customerVoice {
    padding: 30px 12px;
  }
}
/* =========================================
   受講の流れ
========================================= */

.flowLesson {
  background-color: #f7f7f7;
}

.flowLesson__inner {
  padding: 45px 12px;
}

.flowLesson__timeline {
  position: relative;
  padding-left: 50px;
  margin-bottom: 100px;
}

.flowLesson__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/flow-line.png") left top / 31px auto no-repeat;
}

.flowLesson__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.75;
  color: #235870;
}
.flowLesson__text {
  font-size: 17.5px;
  line-height: 1.77;
  text-indent: -1em;
  padding-left: 1em;
  margin-block: 6px;
}
.flowLesson__text--red {
  color: #fc0606;
}
.flowLesson__em {
  color: #fc0606;
}

.flowLesson__cta-note {
  font-size: 17px;
  text-align: center;
  margin-top: 28px;
}
.flowLesson__rays {
  max-width: 33px;
  top: -30px;
  left: 350px;
  width: 100%;
}
.flowLesson__cta-camera {
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 84px;
  height: auto;
}
.flowLesson__item04 .flowLesson__text,
.flowLesson__item05 .flowLesson__text {
  text-indent: 0;
}
.flowLesson__item03 {
  margin-top: 15px;
}
.flowLesson__item04 {
  margin-top: 18px;
}
.flowLesson__item05 {
  margin-top: 9px;
}
@media only screen and (max-width: 499px) {
  .flowLesson__timeline::before {
    background: url(../images/flow-line.png) left top / 27px auto no-repeat;
  }
  .flowLesson__inner {
    padding: 45px 8px;
  }
  .flowLesson__timeline {
    padding-left: 45px;
    margin-bottom: 75px;
  }
  .flowLesson__title {
    font-size: 18px;
  }
  .flowLesson__text {
    font-size: 15px;
    margin-block: 5px;
  }
  .flowLesson__item03 {
    margin-top: 11px;
  }
  .flowLesson__cta-note {
    font-size: 16px;
    margin-top: 25px;
  }
  .flowLesson__cta-camera {
    width: 75px;
  }
  .flowLesson__rays {
    left: 330px;
  }
}
@media only screen and (max-width: 414px) {
  .flowLesson__text {
    text-indent: -0.5em;
    padding-left: 0.5em;
  }
  .flowLesson__timeline {
    padding-left: 35px;
  }
}
@media only screen and (max-width: 399px) {
  .flowLesson__inner {
    padding: 45px 4px;
  }
  .flowLesson__timeline::before {
    background: url(../images/flow-line.png) left top / 25px auto no-repeat;
  }
  .flowLesson__title {
    font-size: 16px;
  }
  .flowLesson__text {
    font-size: 14px;
    margin-block: 4px;
  }
  .flowLesson__text {
    text-indent: -0.3em;
    padding-left: 0.3em;
  }
  .flowLesson__item02 {
    margin-top: 8px;
  }
  .flowLesson__item03 {
    margin-top: 14px;
  }
  .flowLesson__rays {
    left: 300px;
  }
  .flowLesson__cta-camera {
    width: 65px;
  }
  .flowLesson__cta-note {
    font-size: 14px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 359px) {
  .flowLesson__inner {
    padding: 30px 4px;
  }
  .flowLesson__timeline {
    padding-left: 30px;
  }
  .flowLesson__title {
    font-size: 13px;
  }
  .flowLesson__text {
    font-size: 10px;
    margin-block: 5px;
    text-indent: -0.1em;
    padding-left: 0.1em;
  }
  .flowLesson__rays {
    left: 270px;
  }
  .flowLesson__cta-note {
    font-size: 12px;
  }
  .flowLesson__timeline::before {
    background: url(../images/flow-line.png) left top / 20px auto no-repeat;
  }
  .flowLesson__cta-camera {
    width: 55px;
  }
}

/* ==========================
   FAQ
========================== */

.faq {
  background: #f7f7f7;
  padding-bottom: 60px;
}

.faq__inner {
  margin-top: 60px;
  padding: 0 36px;
}

.faq__item {
  margin-bottom: 50px;
}

/* ---------- Q ---------- */

.faq__q {
  position: relative;
  margin-left: 20px;
  margin-bottom: 30px;
}

.faq__q-icon {
  position: absolute;
  top: 10%;
  left: -25px;
  transform: translateY(-50%);
  width: 45px;
}

.faq__q-icon img {
  width: 100%;
  display: block;
}

.faq__q-text {
  background: #fff;
  font-size: 17px;
  line-height: 1.5;
  border-radius: 16px;
  padding: 12px 20px 12px 30px;
}

/* ---------- A ---------- */

.faq__a {
  position: relative;
  margin-left: 20px;
}

.faq__a-icon {
  position: absolute;
  top: -20px;
  left: -25px;
}

.faq__a-icon img {
  width: 60px;
  height: 60px;
}
.faq__a-text {
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 16px;
  padding: 12px 20px 12px 45px;
}

.faq-button {
  margin-top: 60px;
}
@media only screen and (max-width: 499px) {
  .faq {
    padding-bottom: 50px;
  }
  .faq__inner {
    margin-top: 50px;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 399px) {
  .faq__inner {
    padding: 0 20px;
  }
  .faq__q-text {
    font-size: 16px;
  }
  .faq__a-text {
    font-size: 14px;
    padding: 12px 20px 12px 40px;
  }
}
@media only screen and (max-width: 359px) {
  .faq__inner {
    padding: 0 16px;
  }
}
/* ===============================
   ご予約 / お問い合わせ
================================ */

.contact__head {
  background: #23a939;
  padding: 25px 20px 20px;
  text-align: center;
}

.contact__title {
  font-size: 30px;
  letter-spacing: 0;
  color: #fff;
}

.contact__bg {
  position: relative;
  padding: 40px;
  background: url("../images/contact-bg.jpg") center / cover no-repeat;
}

.contact__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 240, 160, 0.45);
}

.contact__inner {
  position: relative;
}

.contact__card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 16px 15px 50px;
}

.contact__lead {
  font-size: 17.5px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.contact__marker {
  background: linear-gradient(transparent 85%, #ffe97d 65%);
}

.contact__buttons {
  display: grid;
  gap: 48px;
}

/* 予約フォーム */
.contact__btn {
  min-width: 240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  letter-spacing: 0;
  border-radius: 13px;
  padding: 12px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.contact__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.contact__btn--reserve {
  background: #216caa;
  color: #fff;
}
.contact__btn-lineIcon img {
  max-width: 50px;
}
.contact__btn--line {
  max-width: 250px;
  margin: 0 auto;
  background: #06c755;
  color: #fff;
  display: flex;
  gap: 8px;
}

.contact__btn-text {
  font-size: 23px;
}

.contact__footer {
  background: #f7f7f7;
  padding: 30px 16px;
  text-align: center;
}

.contact__logo img {
  max-width: 165px;
}

.contact__address {
  font-size: 18px;
  font-style: normal;
  line-height: 1.66;
  margin-top: 30px;
}

.contact__sns {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.contact__sns img {
  width: 40px;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.contact__sns a:hover img {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.1);
}

.contact__sns a:active img {
  transform: translateY(0) scale(1);
}
@media only screen and (max-width: 399px) {
  .contact__title {
    font-size: 25px;
  }
  .contact__head {
    padding: 16px;
  }
  .contact__bg {
    padding: 30px;
  }
  .contact__lead {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .contact__btn {
    min-width: 220px;
    font-size: 20px;
    padding: 8px 12px;
  }
  .contact__buttons {
    gap: 30px;
  }
  .contact__btn-lineIcon img {
    max-width: 33px;
  }
  .contact__logo img {
    max-width: 155px;
  }
  .contact__address {
    font-size: 16px;
    margin-top: 20px;
  }
  .contact__sns {
    margin-top: 20px;
  }
}
/* =========================================
   AQUA VISION
========================================= */
.aquaVision {
  background: #f7f7f7;
}

.aquaVision__inner {
  padding: 40px 20px 32px;
}

.aquaVision__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.2;
  color: #000000;
}

.aquaVision__kicker-line {
  flex: 1;
  height: 1px;
  background: #000000;
  opacity: 0.85;
}

.aquaVision__kicker-text {
  white-space: nowrap;
}

.aquaVision__logo {
  display: flex;
  justify-content: center;
  margin-block: 24px;
}

.aquaVision__logo-img {
  max-width: 170px;
}

.aquaVision__text {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
}

.aquaVision__linkWrap {
  margin-top: 3px;
}

.aquaVision__link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 16px;
  letter-spacing: 0;
  color: #f93e3e;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.aquaVision__link:hover {
  transform: translateX(2px);
  opacity: 0.85;
}

.aquaVision__linkIcon {
  font-size: 16px;
  line-height: 1;
}
@media only screen and (max-width: 399px) {
  .aquaVision__logo {
    margin-block: 18px;
  }
  .aquaVision__logo-img {
    max-width: 150px;
  }
  .aquaVision__inner {
    padding: 20px 16px 25px;
  }
  .aquaVision__kicker {
    gap: 6px;
    font-size: 15px;
  }
  .aquaVision__text {
    font-size: 14px;
  }
}
