@charset "utf-8";
/* =======================================

page.css - 個別ページ用

========================================== */

    /* =============================================================================
  ベース
  ========================================================================== */
 :root {
   --c-text: #111827;
   --c-main: #0080C7;
   --c-green: #48A88C;
   --c-purple: #8376B0;
   --c-white: #FFF;
 }

 .c-main {
   color: var(--c-main);
 }

 body {
   font-family: "M PLUS Rounded 1c", "M PLUS 1c", sans-serif;
   font-size: 16px;
   color: var(--c-text);
 }

 a {
   text-decoration: none;
 }

 section {
   padding: 70px 0;
 }

 h2 {
   font-size: 2rem;
   line-height: 3rem;
   border-bottom: 2px dashed var(--c-main);
   display: inline-block;
   text-align: center;
   margin-bottom: 3rem;
 }

 p.caption {
   font-size: 14px;
   margin: 0;
   margin-bottom: 1rem;
 }

 /* ボタン共通 */
 .btn-main {
   background: var(--c-main);
   color: var(--c-white);
   padding: 15px 30px;
   border-radius: 8px;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   transition: background 0.3s;
 }

 .btn-main:hover {
   background: #33A6E0;
   color: var(--c-white);
 }

 /* ヘッダー */
 header {
   position: fixed;
   top: -80px;
   left: 0;
   width: 100%;
   background: rgba(255, 255, 255, 0.95);
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   transition: top 0.4s;
   z-index: 1000;
 }

 header.active {
   top: 0;
 }

 header .navbar-brand {
   font-weight: bold;
   font-size: 24px;
   color: var(--c-main);
 }

 header .nav-link {
   color: var(--c-text);
   margin: 0 0.5rem;
 }

 header .nav-link.btn-main {
   color: var(--c-white) !important;
 }

 /* トグラーボタン（SP） */
 .navbar-toggler {
   background-color: var(--c-main);
   border: none;
   padding: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
 }

.navbar-toggler-icon {
  background-image: none;
  width: 28px;
  height: 2px;
  background-color: var(--c-white);
  border-radius: 2px;
  position: relative;
  transition: 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--c-white);
  border-radius: 2px;
  transition: 0.3s;
}

.navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 上に戻るボタン */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--c-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: var(--c-main);
  font-family: "M PLUS 1c", sans-serif;
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top .arrow {
  font-size: 14px;
  line-height: 1;
}
.back-to-top .label {
  font-size: 10px;
  line-height: 1;
  margin-top: 2px;
}
.back-to-top:hover {
  background-color: var(--c-main);
  color: #fff;
}

 /* フッター */
 #footer {
   background: var(--c-main);
   color: var(--c-white);
   padding: 3rem 2rem;
 }

 #footer .footer-row {
   /* display: flex;
   justify-content: center;
   gap: 40px;
   margin-bottom: 70px; */
 }

 #footer a.privacy {
   float: right;
   color: var(--c-white);
 }

 @media (max-width: 767px) {
  li.nav-item {
      margin: 0.5rem 0;
    }
  li.nav-item:last-child {
    margin: 1rem 0;
  }
   #footer a.privacy {
     float: none;
   }
 }

/* =============================================================================
TOP
========================================================================== */

 /* ファーストビュー */
 .hero {
   position: relative;
   min-height: 100vh;
   background: url("../../assets/images/top/img_top-bg.jpg") no-repeat center/cover;
   display: flex;
   flex-direction: column;
   justify-content: center;
 }

 .hero .top-banner {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   background: var(--c-main);
   color: var(--c-white);
   padding: 1rem 1.5rem;
   border-radius: 0 0 100% 25%;
 }

 .hero .top-banner span {
   font-size: 26px;
 }

 .hero .content {
   position: relative;
   max-width: 1140px;
   margin: 0 auto;
   padding: 2rem 1rem;
 }

 .hero .speech {
   position: relative;
   display: inline-block;
   background: var(--c-main);
   color: var(--c-white);
   padding: 0.75rem 1rem;
   border-radius: 8px;
   margin: 2rem 0 1rem;
   text-align: left;
 }

 .hero .speech::after {
   content: "";
   position: absolute;
   bottom: -10px;
   left: 20px;
   border-width: 10px 10px 0;
   border-style: solid;
   border-color: var(--c-main) transparent transparent transparent;
 }

 .hero .subcatch {
   font-family: "M PLUS Rounded 1c", sans-serif;
   font-size: 32px;
   color: var(--c-text);
   text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
   margin-bottom: 1rem;
   text-align: left;
 }

 .hero h1 {
   font-family: "M PLUS Rounded 1c", sans-serif;
   font-size: 3.5rem;
   color: var(--c-main);
   text-shadow: 0 2px 6px rgba(255, 255, 255, 0.9);
   text-align: left;
   line-height: 1.4;
   margin-bottom: 4rem;
 }

 .hero .btn-main {
   margin-top: 1.5rem;
 }

 .navbar-toggler{
    background-color: var(--c-main);
  }

@media (max-width: 768px) {
.hero .top-banner {
    padding: 1.2rem 0.5rem;
    border-radius: 0 0 50% 20%;
  }
.hero .top-banner span {
  font-size: 18px;
}

 .hero .speech {
   font-size: 0.8rem;
 }

.hero .subcatch {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

 /* お悩み */
 .trouble {
   position: relative;
   background: #F4F9FF;
   text-align: center;
   padding: 4rem 1rem;
 }

 .trouble::before {
   content: "";
   position: absolute;
   bottom: -80px;
   left: 0;
   width: 100%;
   height: 80px;
   background: #F4F9FF;
   clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
 }

 .trouble .lead {
   margin-bottom: 2rem;
   font-size: 1rem;
 }

 .trouble .box {
   background: var(--c-white);
   border: 1px solid #D5EBFD;
   border-radius: 0.5rem;
   padding: 1.2rem;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   margin-bottom: 1rem;
   text-align: left;
 }

 .trouble .box i {
   color: var(--c-main);
   margin-right: 0.5rem;
   font-size: 1.5rem;
   vertical-align: middle;
 }

 .trouble img {
   max-width: 280px;
 }

 .trouble .highlight-box {
   background: #E2F1FF;
   border: 1px solid #D5EBFD;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   border-radius: 0.5rem;
   padding: 2rem;
   margin-top: 2rem;
   text-align: center;
   font-weight: bold;
   color: var(--c-main);
 }

 .trouble .highlight-box i {
   font-size: 1.5rem;
   margin-right: 0.5rem;
   vertical-align: middle;
 }

 /* スマホ時の順序変更 */
 @media (max-width: 767px) {
   .trouble .row>div:nth-child(1) {
     order: 1;
   }

   .trouble .row>div:nth-child(2) {
     order: 2;
   }
 }

 /* 解決 */
 #solution {
   padding: 70px 0;
 }

 @media (min-width: 992px) {
   #solution {
     padding-top: 150px;
   }
 }

 #solution .circle-box {
   width: 250px;
   height: 250px;
   border-radius: 50%;
   background: var(--c-main);
   color: var(--c-white);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   padding: 1rem;
 }

 #solution .circle-box img {
   max-width: 70px;
   margin-bottom: 1rem;
 }

 .speech {
   background: var(--c-main);
   color: var(--c-white);
   padding: 0.5rem 3rem;
   border-radius: 8px;
   display: inline-block;
   position: relative;
   margin-bottom: 1rem;
 }

 .speech::after {
   content: "";
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   border-width: 10px 10px 0;
   border-style: solid;
   border-color: var(--c-main) transparent transparent transparent;
 }

 /* ご相談イメージの流れ */
 #solution .sol-flow {
   display: grid;
   grid-template-columns: 1fr auto 1fr auto 1fr;
   align-items: center;
   gap: 1rem;
   max-width: 1140px;
   margin: 0 auto;
 }

 #solution .sol-img {
   width: 100%;
   max-width: 350px;
   height: auto;
   justify-self: center;
 }

 #solution .arrow:after {
    content: "▶︎";
   font-size: 2rem;
   color: #CCE7FF;
   text-align: center;
 }

 /* スマホ時は縦並びに変更 */
 @media (max-width: 767px) {
   #solution .sol-flow {
     grid-template-columns: 1fr;
     gap: 0.5rem;
   }

   #solution .arrow::after {
     content: "▼";
     font-size: 1.5rem;
   }
 }

 /* CTA */
 #cta {
   background: url("../../assets/images/top/img_cta-bg.jpg") no-repeat center/cover;
   color: var(--c-text);
   padding: 100px 20px;
 }
 #cta h2 {
   border-bottom: none;
 }
 #cta p{
   font-size: 1.3rem;
 }

 /* コース内容 */
 #course {
   background: #F2F2F2;
   padding: 70px 0;
 }

 #course .chat-box {
   background: var(--c-main);
   border-radius: 20px;
   padding: 0.5rem;
   max-width: 400px;
 }

 .course-box {
   background: var(--c-white);
   border: 2px solid;
   border-radius: 10px;
   overflow: hidden;
 }

 .course-box .course-header {
   font-weight: bold;
   text-align: center;
   padding: 0.75rem;
 }

 .border-main {
   border-color: var(--c-main);
 }

 .border-green {
   border-color: var(--c-green);
 }

 .border-purple {
   border-color: var(--c-purple);
 }

 .bg-main {
   background: #CDE7FE;
 }

 .bg-green {
   background: var(--c-green);
 }

 .bg-purple {
   background: var(--c-purple);
 }

 .text-main {
   color: var(--c-main);
 }

 .text-green {
   color: var(--c-green);
 }

 .text-purple {
   color: var(--c-purple);
 }

 .price {
   font-size: 1.2rem;
   font-weight: bold;
 }

 .price .big {
   font-size: 32px;
   font-weight: bold;
 }

 .list-check {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-bottom: 0;
 }

 .list-check li {
   margin-bottom: 1rem;
   position: relative;
   padding-left: 1.5em;
 }

 .list-check li::before {
   content: "✔";
   position: absolute;
   left: 0;
   top: 0;
   color: var(--c-main);
 }

 .list-check.green li::before {
   color: var(--c-green);
 }

 .list-check.purple li::before {
   color: var(--c-purple);
 }

 /* 注記 */
 .note {
   font-size: 14px;
   color: var(--c-text);
 }

 /* 3つの安心 */
 #reason .reason-label {
   font-family: 'Dancing Script', cursive;
   font-size: 2rem;
   transform: rotate(-5deg);
   display: inline-block;
 }
#reason .reason-label span{
  font-size: 3rem;
}

#reason h3{
  margin-left: 3rem;
  margin-top: -10px;
  margin-bottom: 2rem;
}

 #reason .reason-main {
   color: var(--c-main);
   opacity: .4;
 }
 #reason .reason-green {
   color: var(--c-green);
   opacity: .5;
 }
 #reason .reason-purple {
   color: var(--c-purple);
   opacity: .5;
 }

 #reason .list-dot {
   list-style: none;
   padding: 0;
 }
 #reason .list-dot li {
   margin-bottom: .5rem;
   position: relative;
   padding-left: 1.2em;
 }
 #reason .list-dot.main li::before {
   content: "●";
   color: var(--c-main);
   position: absolute;
   left: 0;
 }
 #reason .list-dot.green li::before {
   content: "●";
   color: var(--c-green);
   position: absolute;
   left: 0;
 }
 #reason .list-dot.purple li::before {
   content: "●";
   color: var(--c-purple);
   position: absolute;
   left: 0;
 }

 .reason-img {
   max-width: 350px;
   width: 100%;
   height: auto;
 }

 /* 流れ */
 #flow {
   background: #E3FAFF;
   padding: 70px 0;
 }

 #flow .flow-box {
  position: relative;
  width: 100%;
   background: #fff;
   padding: 2rem 1.5rem;
   margin-bottom: 2rem;
   border-radius: 12px;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
 }

 #flow .flow-box .step {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-main);
  border-bottom: none;
 }

 #flow .flow-img {
   width: 200px;
   max-width: 100%;
   padding-top: 1rem;
   margin-bottom: 1rem;
 }

 #flow .flow-list {
   list-style: none;
   text-align: left;
   padding-left: 0;
 }

 #flow .flow-list li {
   margin-bottom: .5rem;
 }

#flow .flow-list li::before {
   content: "●";
   color: #7DD2F1;
   margin-right: .5em;
 }

/* =============================================================================
プライバシーポリシー
========================================================================== */
 #privacy .container {
   max-width: 760px;
 }

/* =============================================================================
お問い合わせフォーム　（未使用）
========================================================================== */
  #contact {
    background: #fff;
    padding: 140px 0 100px 0;
  }

  #contact .contact-container {
    width: 1140px;
    max-width: 100%;
    margin: 0 auto;
    background: #F3F9FF;
    padding: 50px;
    border-radius: 12px;
  }

  #contact h3 {
    text-align: left;
    font-size: 20px;
    color: var(--c-main);
    margin-bottom: 2rem;
  }

  #contact .contact-form {
    max-width: 640px;
    margin: 0 auto;
  }

  #contact .form-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  #contact .form-label {
    font-weight: 500;
    display: block;
  }

  #contact .required {
    background: var(--c-main);
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 8px;
    margin-left: 8px;
  }

  #contact .form-control,
  #contact .form-select,
  #contact textarea {
    border: 1px solid var(--c-main);
    border-radius: 6px;
    padding: 10px;
  }

  #contact .caption {
    font-size: 14px;
    margin-bottom: 1rem;
  }

  #contact .btn-main {
    background: var(--c-main);
    color: #fff;
    padding: 12px 80px;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
  }

  #contact .btn-main:hover {
    opacity: 0.8;
  }