/* 全体のスタイル */
body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  padding: 0;
}
/* コンテンツ幅 */
.content {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1160px;
}

:root {
  --primary-color: #AF1F08;
  --secondary-color: #AF1F08;
  --shadow-color: #721c0f;
  --background-color: #f3f4f6;
  --text-color: #333;
}

/* ヘッダー */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--s-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 100%;
}
.fixed-header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

@media (max-width: 768px) {
  .sp-headermenu_flex {
    display: flex;
    gap: 1em;
  }
}

h1.logo-img {
  margin: auto;
}
h1.logo-img img {
  width: 70px;
}
.contact-info {
  display: none;
}
.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
}
.contact-info span {
  font-size: 16px;
}
.contact-info a.tel {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 25px;
}
.contact-info i {
  padding-right: 10px;
}

.contact-02 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

a.tel-sp i {
  background-color: var(--primary-color);
  color: var(--s-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* CTA */
.h-cta .shiny_btn01 {
  width: 130px;
  font-size: 12px;
  padding: 10px;
}
/* SNS アイコン */
.social-icons {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}
.social-icons i {
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 20px;
  color: var(--secondary-color);
}
/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  right: 0;
  width: 600px;
  background-color: var(--s-white);
  box-shadow: -2px 5px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.mobile-menu a {
  color: var(--primary-color);
  text-decoration: none;
  padding: 10px 0;
}

/* ハンバーガーアイコンのスタイル */
.menu-icon {
  width: 30px;
  height: 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.menu-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.menu-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-icon.open span:nth-child(2) {
  opacity: 0;
}
.menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
nav.mobile-menu {
  display: none;
}
nav.mobile-menu.open {
  display: block;
}
nav#mobileMenu ul {
  list-style: none;
  text-align: center;
  padding: 20px;
}
nav#mobileMenu ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  h1.logo-img img {
    width: 50px;
  }
  .mobile-menu {
    width: 100%;
  }
}

/* ヒーローセクション */
.skew-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  background-color: var(--primary-color);
  transform: skewx(32deg);
  opacity: 50%;
}
.hero {
  background-image: url(../img/mv-pc.webp);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 750px;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-content {
  position: relative;
  z-index: 10;
  color: var(--s-white);
  padding: 2rem;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 13vh auto 0;
}
.hero-content h2 {
  font-size: 4.5em;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}
.hero-content h2 span {
  background-color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  color: var(--s-white);
  font-size: .75em;
  display: block;
  margin-bottom: .5em;
}

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down {
  position: absolute;
  bottom: 1%;
  right: 50%;
  animation: arrowmove 1.5s ease-in-out infinite;
}
.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: 17px;
  color: var(--s-white);
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -6px;
  width: 2px;
  height: 20px;
  background: var(--s-white);
  transform: skewX(-31deg);
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  height: 85px;
  background: var(--s-white);
}

@keyframes arrowmove {
  0% {bottom: 1%;}
  50% {bottom: 5%;}
  00% {bottom: 1%;}
}

.sp_mv_br {
  display: none;
}

@media (max-width: 991px) {
  .sp_mv_br {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 50vh;
  }
  .hero-content {
    margin-top: 0;
    padding: 10px;
  }
  .hero-content h2 {
    font-size: 2em;
    line-height: 1.3;
  }
  .skew-overlay {
    transform: skewx(20deg);
  }
  .scroll_down {
    display: none;
  }
}

/* セクション共通 */
section {
  padding: 60px 0;
}
section p {
  font-size: 17px;
}
.content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: bold;
  padding-bottom: 0.2em;
  position: relative;
}
.content h2::after {
  content: '';
  background-color: var(--s-black);
  width: 2em;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

section#service .content h2 br {
  display: none;
}

@media (max-width: 991px) {
  section#service .content h2 br {
    display: block;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
  section p {
    font-size: 15px;
  }
  .content h2 {
    font-size: 1.4em;
    margin-bottom: 20px !important;
  }
}

/* 見出しデザイン2 */
h2.design02 {
  position: relative;
  padding-bottom: 50px;
  font-size: 26px;
  text-align: center;
}
h2.design02::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 1px;
  height: 20px;
  background-color: var(--primary-color);
  bottom: 30px;
  opacity: 30%;
}
h2.design02::before {
  content: attr(data-en);
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--primary-color);
  opacity: 30%;
}

/* お悩みセクション */
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.concern-item {
  background-color: var(--background-color);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
}
.concern-number {
  background-color: var(--primary-color);
  color: var(--s-white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
/* 選ばれる理由セクション */
.reasons {
  background-color: var(--background-color);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.reason-item {
  background-color: var(--s-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.reason-number {
  background-color: var(--primary-color);
  color: var(--s-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reasons-t {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
/* 契約までのフローセクション */
.flow-steps {
  max-width: 800px;
  margin: 0 auto;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 36px;
  top: 70px;
  bottom: -30px;
  width: 2px;
  background-color: #e5e7eb;
}
.flow-icon {
  background-color: var(--background-color);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 30px;
  color: var(--primary-color);
}
.flow-content {
  flex-grow: 1;
}
.step-number {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--s-white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
}

@media(max-width: 768px) {
  .concerns-grid {
    gap: 8px;
    margin-top: 1em;
    grid: unset;
  }
}

/* 契約までのフローセクション STEP付き */
.flow_design09 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
}
.flow09 {
  padding-left: 0;
  border-bottom: solid 1px #E1E8ED;
  width: 100%;
  max-width: 800px;
}
.flow09>li {
  list-style-type: none;
  display: flex;
  padding: 20px 0;
  border-top: solid 1px #E1E8ED;
}
.flow09>li dl dt {
  font-size: 1.2em;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
}
.flow09>li .icon09 {
  line-height: 1;
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
}
.flow09>li .icon09::before {
  content: 'STEP';
  font-size: 0.3em;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
}
.flow09>li .icon09::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #858585;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
}
.flow09>li dl dd {
  margin: 0;
}
.flow09>li dl {
  width: calc(100% - 70px);
  margin-top: 0.8em;
}

/* 会社情報セクション */
.company {
  background-color: #f7f5f0;
}
.company-info {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--s-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.info-row {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
}
.info-label {
  width: 30%;
  padding: 15px;
  font-weight: bold;
  border-right: 1px solid #e5e7eb;
  align-content: center;
  text-align: center;
}
.info-value {
  width: 70%;
  padding: 15px;
}
.info-value a {
  color: var(--primary-color);
  text-decoration: none;
}
.info-value a:hover {
  text-decoration: underline;
}
/* CTAセクション */
.cta {
  background-color: var(--primary-color);
  color: var(--s-white);
  text-align: center;
}
.cta h2,
.cta h3 {
  color: var(--s-white);
}
/* CTA2セクション */
.cta-2 {
  color: var(--s-white);
  text-align: center;
  background-image: url(../img/cta.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 40%;
  position: relative;
}
.cta-2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--text-color);
  mix-blend-mode: saturation;
}
.cta-2 h2,
.cta-2 h3 {
  color: var(--s-white);
  position: relative;
  z-index: 2;
  font-size: 32px;
  margin: 0;
}
.cta-2 p {
  position: relative;
  z-index: 2;
}
.cta-2 .shiny_btn {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.shiny_btn {
  max-width: 350px;
  height: 4em;
  background-color: var(--s-white);
  position: relative;
  overflow: hidden;
  margin: 0 auto 0;
  width: 100%;
}
.shiny_btn a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5em 0;
  background-color: var(--secondary-color);
  text-decoration: none;
}
.shiny_btn a span {
  font-weight: 500;
  line-height: 26px;
  color: var(--s-white);
  position: relative;
  z-index: 1;
  font-size: 20px;
}
.shiny_btn a:before,
.shiny_btn a:after {
  content: "";
  width: 100%;
  display: block;
  height: 4em;
  position: absolute;
  top: 0;
  z-index: 0;
  background-color: #ff7e6a;
}
.shiny_btn a:before {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  left: 0;
}
.shiny_btn a:after {
  transform: skewX(-16deg);
  left: -102%;
  -webkit-animation: shiny_btn 4s infinite cubic-bezier(0.5, 1, 0.89, 1);
  animation: shiny_btn 4s infinite cubic-bezier(0.5, 1, 0.89, 1);
}
.shiny_btn a:hover:before {
  opacity: 1;
}

@-webkit-keyframes shiny_btn {
  0% {left: -102%;}
  2% {left: -95%;}
  25% {left: 87%;}
  98% {left: 87%;}
  to {left: 102%;}
}

@media (max-width: 768px) {
  .shiny_btn {
    max-width: 340px;
  }
  .shiny_btn a span {
    font-size: 16px;
  }
  .company-info {
    font-size: 15px;
  }
  .cta-2 h2,
  .cta-2 h3 {
    font-size: 22px;
  }
  .cta p, .cta-2 p {
    text-align: left;
    font-size: 15px;
  }
  .info-label,.info-value {
    margin: 0;
  }
}

/* フッター */
footer {
  background-color: #1f2937;
  color: var(--s-white);
  text-align: center;
  padding: 20px 0;
}
footer .content p {
  font-size: 14px;
  margin: 0;
}
/* レスポンシブデザイン */
@media (min-width: 768px) {
  .contact-info {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

.contact-info .icon {
  margin-right: 5px;
  color: var(--primary-color);
}

.menu-button {
  display: none;
}

.balloon-005 {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 300px;
  margin-bottom: 15px;
  padding: .8em 1.2em;
  border: 3px solid var(--primary-color);
  border-radius: 5px;
  font-weight: bold;
}
.balloon-005::before,
.balloon-005::after {
  position: absolute;
  bottom: -15px;
  width: 30px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
}
.balloon-005::before {
  background-color: var(--primary-color);
}
.balloon-005::after {
  bottom: -11px;
  background-color: var(--s-white);
}
.balloon-005 p {
  margin: 8px 0;
}
.img img {
  width: 30%;
}
.img {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.intro_after_txt {
  margin-top: 1em;
  text-align: center;
}
.intro_after_txt.first {
  font-weight: bold;
  font-size: 1.4em;
}

@media (max-width: 768px) {
  .img img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .intro_after_txt.first {
    font-size: 1em;
  }
}

/* プラン01 */
.plan_contents {
  display: flex;
  gap: 1em;
  margin-bottom: 2em;
}
.price-card {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: var(--s-white);
  background: #141414;
}
.price-card-content {
  display: flex;
  padding: 20px;
  gap: 20px;
  color: #fff;
}
.price-card-text {
  flex: 1;
}
.course_plan {
  margin: 0 0 .5em;
  font-size: 24px;
}
p.plan_txt {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .plan_contents {
    margin-top: 1em;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .price-card-content {
    flex-direction: column;
  }
  .course_plan {
    font-size: 19px;
  }
}

a {
  color: var(--secondary-color);
  text-decoration: auto;
}

a:hover {
  font-weight: bold;
}
/* 悩みセクション 3 */
.pr3-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.pr3-img {
  aspect-ratio: 1 / 1;
  width: 200px;
}
.pr3-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pr3-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 70px;
  margin-bottom: 60px;
}
/* 四角にする */
.pr3-img.square img {
  border-radius: 20px;
}

@media (max-width: 768px) {
  .pr3-box {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .pr3-img {
    width: 150px;
  }
}

/* 悩み 02*/
.problem {
  position: relative;
}
.problem::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 45px 60px 0 60px;
  border-color: var(--s-white) transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(70%);
}
.problem-box h3 {
  text-align: center;
  margin-bottom: 64px;
  margin-top: 48px;
  font-size: 1.8em;
}
.problem-list li {
  list-style: none;
  z-index: 10;
  width: 70%;
  padding-bottom: 16px;
}
.problem-list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
}

section.problem-box {
  background: var(--background-color);
}
.problem-card {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.problem-card-content {
  display: flex;
  padding: 30px;
  gap: 20px;
  background-color: var(--s-white);
}
.problem-card-image {
  flex: 0 0 33%;
  margin-right: 20px;
}
.problem-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
.problem-card-text {
  flex: 1;
}

@media (max-width: 768px) {
  .problem-card-content {
    flex-direction: column;
    gap: 0px;
  }
  .problem-card-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .problem-list {
    grid-template-columns: repeat(1, 1fr);
    padding-left: initial;
  }
  .problem-box {
    padding: 4px;
  }
  .problem-box h3 {
    font-size: 1.5em;
    margin-top: 64px;
  }
  .problem-list li {
    width: 90%;
  }
}

/* サービス紹介 */
.service-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 60px;
  align-items: center;
}
.service-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 16px;
}
.service-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .service-box {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.5rem;
    margin: auto;
    justify-items: center;
    max-width: 500px;
    padding-bottom: 20px;
  }
  .service-box:nth-child(odd) {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .service-item h3 {
    font-size: 1.2em;
  }
}

.hero-content span.hero-s1 {
  background: var(--primary-color);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.7em;
}

@media (max-width: 768px) {
  .hero-content span.hero-s1 {
    font-size: 0.5em;
  }
}

/* Q&Aセクション（追加） */
.faq {
  background-color: var(--s-white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background-color: var(--s-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.faq-question {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: var(--background-color);
  font-weight: bold;
  color: var(--primary-color);
}
.faq-question::before {
  content: 'Q.';
  color: var(--secondary-color);
  font-size: 1.4em;
  font-weight: bold;
  margin-right: 12px;
  line-height: 1;
}
.faq-answer {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  color: var(--text-color);
}
.faq-answer::before {
  content: 'A.';
  color: var(--primary-color);
  font-size: 1.4em;
  font-weight: bold;
  margin-right: 12px;
  line-height: 1;
}

/* MV内サブキャッチ */
.hero-sub {
  font-size: 1.1em;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 24px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero {
    background-image: url(../img/mv-sp.webp);
    padding-top: 90px;
    padding-bottom: 32px;
  }
  .hero-sub {
    font-size: 0.95em;
    margin-top: 16px;
    text-align: left;
  }
}

/* CTA共通の補足文言 */
.cta p,
.cta-2 p {
  margin-bottom: 8px;
  margin-top: 8px;
}
/* セクション内リード文 */
.lead-text {
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.8;
}
/* 料金参考表記 */
.price-ref {
  font-size: 0.9em;
  color: var(--s-gray80);
  margin-top: 24px;
  text-align: center;
}

@media (max-width: 768px)  {
  .lead-text,.price-ref,.lead-text,.intro_after_txt {
    text-align: left;
    margin-bottom: 0;
  }
}


/* 以下修正版css */
/* hero タグライン下小文字 */
.hero-tagline-sub {
  font-size: 2em;
  letter-spacing: 0.1em;
  margin: 0.5rem 0;
  text-align: center;
}
.hero-note {
  margin-top: 1.5rem;
  line-height: 1.8;
  text-align: center;
  font-size: 1.1em;
}
/* h2タイトルのletter-spacing */
.htitle_ls {
  letter-spacing: -10px;
}

@media (max-width: 768px) {
  .hero-tagline-sub {
    font-size: 1.2em;
  }
  .htitle_ls {
    letter-spacing: -5px;
  }
  .hero-note {
    text-align: left;
    font-size: 0.95em;
  }
}

/* philosophy セクション */
.philosophy {
  padding: 80px 0;
  background: #f7f5f0;
}
.philosophy h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.philosophy-text {
  text-align: center;
}
.philosophy-text p {
  margin: 0 0 1rem;
}
.philosophy-text p:last-of-type {
  margin-bottom: 0;
}

@media(max-width: 768px) {
  .philosophy{
    padding: 40px 0;
  }
  .philosophy-text p {
    text-align: left;
  }
}

/* service-list */
.service-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.service-list li {
  position: relative;
  padding-left: 1.2em;
  margin: 0.4em 0;
  line-height: 1.7;
  font-weight: bold;
}
.service-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #c8102e;
  font-size: 0.7em;
  top: 0.4em;
}

/* 料金表 */
.lane-price,
.option-block {
  margin: 0 auto 3rem;
  padding: 2rem;
  background: #f7f5f0;
  border-radius: 16px;
}
.lane-price h4,
.option-block h4 {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 1rem;
  border-left: 4px solid #c8102e;
  padding: .4em 0 .4em .6em;
  background: #fff;
}
.lane-price-lead,
.option-lead {
  margin: 0;
}
.price-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1em 0;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 0.7em 0.8em;
  text-align: center;
}
.price-table thead th {
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
}
.price-table tbody th {
  background: #f4f4f4;
  font-weight: 600;
}
.price-table td {
  background: #fff;
}
.price-table td span {
  font-size: 0.95em;
  margin-left: 2px;
}
.option-table th {
  text-align: left;
  width: 60%;
}
.option-table th small {
  display: inline-block;
  margin-left: 0.4em;
  font-size: 0.75em;
  color: #888;
  font-weight: normal;
}
.price-note {
  font-size: 0.9rem;
  margin: 0;
}

table.price-table.option-table {
  width: 100%;
  max-width: 550px;
}
table.price-table.option-table th {
  width: 50%;
}

@media (max-width: 768px) {
  .price-table {
    min-width: 600px;
  }
  table.price-table.option-table {
    min-width: 290px;
  }
  /* スクロールバーを見やすく */
  .price-table-wrap::-webkit-scrollbar {
    height: 6px;
  }
  .price-table-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  .price-table-wrap::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
  }
  .option-table th small {
    margin-left: 0;
  }
}

/* sub-block (体験教室、保護者の方へ) */
.sub-block {
  margin: 0 auto 3em;
  padding: 1.8rem 2rem;
  background: #f7f5f0;
  border-radius: 16px;
}
.sub-block h4 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 0.5rem;
  border-left: 4px solid #c8102e;
  padding: 0.4em 0 0.4em 0.6em;
  background: #fff;
}
.sub-note {
  font-size: 0.9em;
  color: var(--primary-color);
  margin-top: 0.8rem !important;
  margin-bottom: 0;
}
.trial-cta {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  margin-bottom: 3em;
  border-top: 1px dashed #ccc;
  text-align: center;
}
.trial-cta .trial-lead {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0em;
  margin-bottom: 0.6rem;
  color: var(--primary-color);
}
.trial-cta .shiny_btn {
  margin-top: 1.2rem;
}

/* 助成事業 */
.subsidy-block {
  margin: 2.5rem auto 0;
  padding: 1.6rem;
  background: #f9efee;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
}
.subsidy-block h4 {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 0.3em;
  color: var(--primary-color);
}
.subsidy-block p {
  line-height: 1.9;
  margin-bottom: 0;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: #f7f5f0;
}
.faq h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1.4rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}
.faq-q,
.faq-a {
  display: flex;
  gap: 0.6em;
  line-height: 1.8;
  margin: 0.3em 0;
}
.faq-q {
  font-weight: 600;
}
.faq-mark {
  flex-shrink: 0;
  font-weight: 700;
  color: #c8102e;
}
.faq-a .faq-mark {
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
}

/* ご利用ガイド */
.guide {
  padding: 80px 0 0;
}
.guide h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.guide-block {
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.guide-block h3 {
  font-size: 1.4em;
  margin-bottom: 0.8rem;
  padding-left: 0.6em;
  border-left: 4px solid #c8102e;
}
.flow-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.2rem 0;
}
.flow-list li {
  flex: 1;
  min-width: 220px;
  padding: 1.2rem 1rem;
  background: #f7f5f0;
  border-radius: 6px;
  text-align: center;
}
.flow-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #c8102e;
  margin-bottom: 0.3em;
}
.flow-txt {
  display: block;
  font-weight: 600;
}

/* アクセス */
.access-info {
  max-width: 800px;
  margin: 0 auto;
  background: #f7f5f0;
  padding: 2rem;
  border-radius: 8px;
}
.access-row {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 3px dotted #fff;
}
.access-row:last-child {
  border-bottom: none;
}
.access-label {
  flex-shrink: 0;
  width: 140px;
  font-weight: 600;
  color: #c8102e;
}
.access-value {
  flex: 1;
  line-height: 1.7;
}

/* Instagram */
.instagram {
  padding: 0 0 80px;
  text-align: center;
}
.instagram h2 {
  margin-bottom: 1rem;
}
.insta-link {
  margin-top: 1.5rem;
}
.insta-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.8em 1.6em;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.insta-link a:hover {
  transform: translateY(-2px);
}
.insta-link i {
  font-size: 1.3em;
}

/* mv cta */
.hero-content .shiny_btn {
  max-width: 440px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .lane-price,
  .option-block,
  .sub-block,
  .subsidy-block {
    padding: 1.4rem 1.2rem;
    border-radius: 8px;
  }
  .access-row {
    flex-direction: column;
    gap: 0.4rem;
  }
  .access-row:first-child {
    padding-top: 0;
  }
  .access-row:last-child {
    padding-bottom: 0;
  }
  .access-row:last-child .access-value {
    margin-bottom: 0;
  }
  .access-value {
    margin-top: 0;
  }
  .access-label {
    width: 100%;
    margin: 0;
    font-size: 17px;
  }
  .price-table th,
  .price-table td {
    padding: 0.5em 0.4em;
  }
  .flow-list {
    flex-direction: column;
  }
  .lane-price h4, .option-block h4,.sub-block h4 {
    font-size: 1.1em;
  }
  .guide {
    padding: 40px 0 0;
  }
  .guide-block h3 {
    font-size: 1.2em;
  }
  .access-info {
    padding: 1em;
  }
  .trial-cta .trial-lead {
    font-size: 1.3em;
  }
}

/* mv br */
.mv_dotted_ls {
  letter-spacing: -25px;
  background: unset !important;
  display: unset !important;
  font-size: unset !important;
  padding: unset !important;
  margin: unset !important;
}
@media (max-width: 768px) {
  .mv_dotted_ls {
    letter-spacing: -5px;
  }
}