body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: #fff;
  }

  img{
      width: 100%;
  }

  .pc-only {
      display: block
    }
    
    .sp-only {
      display: none
    }
    
    @media screen and (max-width:768px) {
      .pc-only {
        display: none
      }
      .sp-only {
          display: block
        }
    }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
        }

        /* ヘッダー */

.header-container {
    display: flex;
    justify-content: space-between;
        align-items: center;
    gap: 5px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 20px);
    padding: 1% 2%;
    background: #fff;
    width: 100%;
}

.nav-menu {
  display: flex;
  gap: clamp(15px, 2vw, 25px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact {
    text-align: right;
    display: flex;
    gap:clamp(13px, 1.1vw, 15px);
}

        .logo-section {
            display: flex;
            align-items: center;
            gap: clamp(8px, 1.5vw, 15px);
        }

        .logo-icon {
            width: clamp(120px, 20vw, 220px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(25px, 4vw, 40px);
            font-weight: bold;
            flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            gap: clamp(2px, 0.3vw, 3px);
        }

        .logo-tag {
            display: flex;
            gap: clamp(2px, 0.3vw, 3px);
            margin-bottom: clamp(2px, 0.5vw, 5px);
        }

        .logo-tag span {
            background: #0066cc;
            color: white;
            padding: clamp(1px, 0.2vw, 2px) clamp(4px, 0.8vw, 8px);
            font-size: clamp(9px, 1.2vw, 11px);
            font-weight: bold;
            border-radius: 3px;
        }

        .logo-subtitle {
            color: #333;
            font-size: clamp(10px, 1.3vw, 12px);
            margin-bottom: clamp(2px, 0.3vw, 3px);
        }

        .logo-title {
            color: #0066cc;
            font-size: clamp(18px, 3.5vw, 32px);
            font-weight: bold;
            letter-spacing: clamp(1px, 0.2vw, 2px);
        }

        .contact-section {
            text-align: right;
            display: flex;
            align-items: center;
            gap: clamp(10px, 2vw, 20px);
        }

.contact-hours {
    color: #333;
    font-size: clamp(9px, 1.5vw, 12px);
    font-family: "arial";
    font-weight: 600;
    text-align: center;
    margin-bottom: 1%;
}

.contact-hours strong{
    font-size: clamp(12px, 1.3vw, 20px);
    font-weight: 600;
}


        a.contact-number {
            color: #0366cb;
            font-size: clamp(20px, 2.4vw, 32px);
            font-weight: bold;
            letter-spacing: clamp(0.3px, 0.1vw, 3px);
    font-family: "arial";
    font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .contact-number {
            color: #0366cb;
            font-size: clamp(20px, 2.4vw, 32px);
            font-weight: bold;
            letter-spacing: clamp(0.3px, 0.1vw, 3px);
    font-family: "arial";
    font-weight: 600;
            gap: 5px;
            display: flex;
            align-items: center;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

.contact-number:hover {
    opacity: 0.8;
    transform: scale(1.0);
}
        .tel-icon {
    width: clamp(20px, 3vw, 33px);
    height: clamp(20px, 3vw, 33px);
        }

        .hamburger-section {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: clamp(5px, 1vw, 10px);
        }

        /* ハンバーガーメニューボタン */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: clamp(6px, 0.6vw, 6px);
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: clamp(28px, 3.5vw, 35px);
            height: clamp(1px, 0.4vw, 4px);
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }


        .nav-menu li a {
            color: #1e3c72;;
            text-decoration: none;
            font-size: clamp(13px, 1.6vw, 16px);
            font-weight: bold;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: block;
        }

        .nav-menu li a:hover {
    opacity: 0.8;
    transform: scale(1.0);
        }

        /* モバイルメニュー */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: clamp(250px, 30vw, 300px);
            height: 100vh;
            background: #fff;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: right 0.3s ease;
            overflow-y: auto;
            padding: clamp(80px, 10vw, 120px) 0 clamp(20px, 3vw, 30px);
            opacity: 0.9;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
        }

        .mobile-menu li {
            border-bottom: 1px solid #0a3d8029;
        }

        .mobile-menu li a {
            display: block;
            color: #0a3d80;
            text-decoration: none;
            padding: clamp(15px, 2.5vw, 20px) clamp(20px, 3vw, 30px);
            font-size: clamp(16px, 2vw, 18px);
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .mobile-menu li a:hover {
            background: rgba(255, 255, 255, 0.1);
            padding-left: clamp(30px, 4vw, 40px);
        }

        /* オーバーレイ */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay.active {
            display: block;
            opacity: 1;
        }

        /* ピンクバー */
        .pink-bar {
            background: linear-gradient(90deg, #ff0066 0%, #ff3399 100%);
            padding: clamp(10px, 1.5vw, 15px) clamp(15px, 2vw, 20px);
            text-align: center;
        }

        .pink-bar-text {
            color: white;
            font-size: clamp(14px, 2vw, 20px);
            font-weight: bold;
            letter-spacing: clamp(0.5px, 0.1vw, 1px);
        }

        /* タブレット対応 */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: clamp(10px, 2vw, 20px);
            }
        }

        /* スマホ・タブレット対応 */
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                position: fixed;
                top: 0;
                z-index: 1001;
            }

            .pink-bar {
                margin-top: clamp(58px, 8vw, 100px);
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

        }

        @media (max-width: 480px) {
            .logo-tag {
                flex-wrap: wrap;
            }

            .contact-section {
                gap: clamp(5px, 1vw, 10px);
            }
        }
/* 会話セクション */
        .conversation-section {
            background: url(../img/conversation-back.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            padding: clamp(30px, 5vw, 60px) clamp(15px, 3vw, 30px) clamp(80px, 10vw, 120px);
            position: relative;
        }

        .conversation-header {
            text-align: center;
            margin-bottom: clamp(30px, 4vw, 40px);
        }

.conversation-title {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: bold;
    color: #333;
    margin-bottom: clamp(10px, 1.5vw, 15px);
    line-height: 1.5;
}

        .conversation-title .highlight {
            color: #0066cc;
            font-size: clamp(30px, 5vw, 50px);
        }

.conversation-subtitle {
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: bold;
    color: #333;
    margin-top: clamp(15px, 2vw, 20px);
}

        .conversation-divider {
            width: clamp(200px, 60%, 400px);
            height: 2px;
            background: #0066cc;
            margin: clamp(15px, 2vw, 20px) auto 0;
            position: relative;
        }

        .conversation-divider::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #0066cc;
        }

        .chat-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .chat-bubble {
            display: flex;
            gap: clamp(10px, 1.5vw, 15px);
            margin-bottom: clamp(15px, 2vw, 20px);
            align-items: flex-start;
        }

        .chat-bubble.reverse {
            flex-direction: row-reverse;
            font-weight: bold;
        }

        .chat-avatar {
            width: clamp(50px, 8vw, 70px);
            height: clamp(50px, 8vw, 70px);
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(30px, 5vw, 45px);
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .chat-avatar.parent {
            background: #ff9933;
        }

        .chat-avatar.teacher {
            background: #66b3ff;
        }

        .chat-message {
            max-width: 75%;
            padding: clamp(12px, 2vw, 16px) clamp(15px, 2.5vw, 20px);
            border-radius: 18px;
            font-size: clamp(11px, 1.8vw, 18px);
            line-height: 1.7;
            position: relative;
        }

        .chat-message.green {
            background: #7ed321;
            color: #333;
            font-weight: bold;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .chat-message.white {
            background: white;
            color: #333;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            font-weight: bold;
        }

        .chat-message .highlight-red {
            color: #ff0033;
            font-weight: bold;
        }

        .section-divider {
            text-align: center;
            margin: clamp(25px, 3vw, 35px) 0;
        }

.section-label {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: clamp(13px, 1.1vw, 15px) clamp(60px, 10vw, 100px);
    border-radius: 25px;
    font-size: clamp(20px, 3vw, 20px);
    font-weight: bold;
    position: relative;
}

        .section-label::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #0066cc;
        }

        .thought-bubble {
    width: clamp(360px, 55vw, 600px);
    margin: clamp(30px, 5vw, 50px) auto 0;
}

        /* 答えセクション */
        .answer-section {
            text-align: center;
            margin-top: clamp(30px, 4vw, 40px);
            position: absolute;
            top: -14%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            z-index: 1;
        }

        .answer-bubble {
            background: #f28130;
            color: white;
            padding: clamp(16px, 1.4vw, 20px) clamp(50px, 8vw, 80px);
            border-radius: 100px;
            font-size: clamp(24px, 3.3vw, 35px);
            font-weight: bold;
            line-height: 1.3;
            position: relative;
            display: inline-block;
            max-width: 90%;
        }

.answer-bubble::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #f28130;
}

        .answer-text-main {
            display: block;
        }

        .answer-text-sub {
            display: block;
            font-size:clamp(22px, 2.8vw, 30px);
        }

/* 原因セクション */
        .cause-section {
            background: #e9f5ff;
            padding: clamp(80px, 10vw, 120px) clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px);
            position: relative;
        }

        .cause-title {
            text-align: center;
            font-size: clamp(20px, 3vw, 40px);
            font-weight: bold;
            color: #333;
            line-height: 1.6;
        }

        .cause-title-large {
            text-align: center;
            font-size: clamp(26px, 2.8vw, 38px);
            font-weight: bold;
            color: #333;
            margin-bottom: clamp(15px, 2vw, 20px);
            line-height: 1.6;
        }

        .cause-title-large .highlight-blue {
            color: #0066cc;
            font-size: clamp(26px, 2.8vw, 38px);
        }

        .cause-box {
            background: white;
            border: 3px solid #ff9933;
            border-radius: 15px;
            padding: clamp(15px, 2.5vw, 25px) clamp(20px, 3vw, 30px);
            margin-bottom: clamp(20px, 3vw, 30px);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cause-box-title {
            display: flex;
            align-items: center;
            gap: clamp(10px, 1.5vw, 15px);
            margin-bottom: clamp(15px, 2vw, 20px);
        }

        .cause-box-title::before {
            content: '?';
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(35px, 5vw, 45px);
            height: clamp(35px, 5vw, 45px);
            background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
            color: white;
            border-radius: 50%;
            font-size: clamp(20px, 3vw, 26px);
            font-weight: bold;
            flex-shrink: 0;
        }

        .cause-box-title span {
            color: #ff9933;
            font-size: clamp(16px, 2.2vw, 18px);
            font-weight: bold;
        }

        .cause-list {
            list-style: none;
            padding: 0;
        }

        .cause-item {
            background: #f8f8f8;
            padding: clamp(12px, 2vw, 16px) clamp(15px, 2.5vw, 20px);
            margin-bottom: clamp(10px, 1.5vw, 12px);
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: clamp(10px, 1.5vw, 12px);
            font-size: clamp(13px, 1.8vw, 15px);
            color: #333;
            font-weight: 500;
        }

        .cause-item::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(25px, 3.5vw, 30px);
            height: clamp(25px, 3.5vw, 30px);
            background: #0099ff;
            color: white;
            border-radius: 50%;
            font-size: clamp(16px, 2.2vw, 18px);
            font-weight: bold;
            flex-shrink: 0;
        }

        /* 共感セクション */
        .empathy-section {
            background: white;
            padding: clamp(25px, 4vw, 40px) clamp(15px, 3vw, 30px);
            text-align: center;
        }

        .empathy-text {
            color: #0099ff;
            font-size: clamp(16px, 2.5vw, 20px);
            font-weight: bold;
            margin-bottom: clamp(20px, 3vw, 30px);
            line-height: 1.8;
        }

        .empathy-illustration {
            display: flex;
            justify-content: center;
            gap: clamp(15px, 3vw, 30px);
            margin-bottom: clamp(30px, 4vw, 40px);
            flex-wrap: wrap;
        }

        .empathy-person {
            text-align: center;
        }

        .empathy-icon {
            width: clamp(70px, 10vw, 100px);
            height: clamp(70px, 10vw, 100px);
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(40px, 6vw, 60px);
            margin: 0 auto clamp(8px, 1vw, 10px);
        }

        .empathy-dots {
            font-size: clamp(20px, 3vw, 30px);
            color: #999;
            margin-top: clamp(5px, 0.8vw, 8px);
        }

        /* ソリューションセクション */
        .solution-section {
            background: url(../img/solution-back.png);
            padding: clamp(40px, 6vw, 60px) clamp(20px, 4vw, 40px);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: top;
        }

        .solution-list {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        .solution-item {
            color: #fff;
            font-size:clamp(24px, 2.8vw, 36px);
            font-weight: bold;
            padding: clamp(18px, 1.8vw, 24px) clamp(15px, 2.5vw, 20px) clamp(10px, 0.8vw, 12px);
            margin-bottom: clamp(15px, 2vw, 20px);
            text-align: center;
            position: relative;
        }

        .solution-item::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00ccff, transparent);
        }

        .solution-cta {
            text-align: center;
            margin-top: clamp(30px, 4vw, 40px);
            position: relative;
            z-index: 1;
        }

.solution-cta-text {
    color: white;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

        /* 詳細問題リストセクション */
        .detail-problems-section {
            background: linear-gradient(180deg, #e8f4fc 0%, #f0f0f0 100%);
            padding: clamp(40px, 6vw, 70px) clamp(15px, 3vw, 30px);
            border-left: clamp(3px, 0.5vw, 5px) solid #00ccff;
            border-right: clamp(3px, 0.5vw, 5px) solid #00ccff;
        }

.detail-problems-header {
    background: white;
    border: 2px solid #ff9933;
    border-radius: 50px;
    padding: clamp(5px, 0.7vw, 11px) clamp(30px, 5vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 35%;
    gap: clamp(9px, 0.7vw, 11px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}


    @media (min-width: 1024px) {
.detail-problems-header {
    top: 47%;
}

        .solution-section {
            background: url(../img/solution-back-pc.png);
            padding: clamp(40px, 6vw, 60px) clamp(20px, 4vw, 40px);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: top;
        }
        }

.detail-problems-icon {
    flex-shrink: 0;
    width: clamp(45px, 7vw, 65px);
}

        .detail-problems-title {
            color: #ff9933;
            font-size: clamp(17px, 3vw, 28px);
            font-weight: bold;
        }

.detail-problems-list-container {
    background: #e6e6e6;
    border-radius: 20px;
    padding: clamp(40px, 5vw, 60px) clamp(15px, 1.3vw, 20px) clamp(20px, 4vw, 40px);
    max-width: 900px;
    margin: clamp(40px, 5vw, 60px) auto 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.detail-problems-list {
  list-style: none;
  padding: 0 clamp(15px, 1.3vw, 20px);
  margin: 0;
  background: #fff;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .detail-problems-list {
    grid-template-columns: 1fr 1fr;
  }

  .detail-problems-list-container {
    background: #e6e6e6;
    border-radius: 20px;
    padding: clamp(40px, 5vw, 60px) clamp(20px, 4vw, 40px) clamp(20px, 4vw, 40px);
    max-width: 900px;
    margin: clamp(40px, 5vw, 60px) auto 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

                .conversation-section {
            background: url(../img/conversation-back-pc.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            padding: clamp(30px, 5vw, 60px) 0 clamp(60px, 10vw, 100px);
            position: relative;
        }
}

.detail-problem-item {
  padding: clamp(15px, 1.3vw, 20px) 0;
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.8vw, 12px);
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 600;
  color: #333;
  border-bottom: 2px dashed #e0e0e0;
  line-height: 1.3;
}

/* ▼ 最後の行の区切り線を消す */
.detail-problem-item:last-child {
  border-bottom: none;
}


        .detail-problem-item:last-child {
            border-bottom: none;
        }

.detail-problem-icon {
    flex-shrink: 0;
    width: clamp(20px, 3vw, 25px);
}

.dots {
    background-image: radial-gradient(circle at center, #f8fd00 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.3em;
    padding-top: .45em;
}
/* 特徴セクション */
        .features-section {
            padding: clamp(40px, 6vw, 60px) clamp(15px, 3vw, 30px);
            position: relative;
            overflow: hidden;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 10px,
                    rgba(255, 255, 255, 0.05) 10px,
                    rgba(255, 255, 255, 0.05) 20px
                );
        }

        .feature-card {
            max-width: 500px;
            margin: 0 auto clamp(15px, 1.3vw, 20px);
            position: relative;
        }

.feature-header {
    padding: clamp(30px, 5vw, 45px) 0 clamp(20px, 3vw, 25px);
    position: relative;
    text-align: center;
}

.feature-number {
    width: clamp(100px, 25%, 130px);
    margin: 0 auto clamp(15px, 1.3vw, 20px);
}

.feature-title {
    color: white;
    font-size: clamp(24px, 3.3vw, 35px);
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    margin-bottom: clamp(15px, 1.3vw, 20px);
}

.feature-subtitle {
    color: #162b88;
    font-size: clamp(20px, 1.4vw, 20px);
    text-align: center;
    font-weight: bold;
    background: #e9f5ff;
    padding: clamp(10px, 0.8vw, 12px);
    border-radius: 10px;
    display: inline-block;
    width: 100%;
}

.feature-image {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
}

.feature-content {
    padding: clamp(25px, 4vw, 35px) clamp(20px, 3vw, 30px);
    background: url(../img/feature-content-back.png);
    background-position:center;
    background-size: cover;
    margin-top: clamp(-15px, -3vw, -40px);
    position: relative;
    z-index: 2;
    border-radius: 15px;
}

        .feature-points {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-point {
            background: linear-gradient(135deg, #e3f2fd 0%, #e8f4fc 100%);
            padding: clamp(16px, 2.8vw, 22px) clamp(18px, 3vw, 24px);
            margin-bottom: clamp(15px, 2.5vw, 18px);
            border-radius: 10px;
            position: relative;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .feature-point:last-child {
            margin-bottom: 0;
        }

        .feature-point-title {
            font-size: clamp(18px, 1.4vw, 20px);
            font-weight: bold;
            color: #1565c0;
            margin-bottom: clamp(6px, 1vw, 8px);
            line-height: 1.5;
        }

        .feature-point-description {
            font-size: clamp(15px, 1.2vw, 16px);
            color: #424242;
            line-height: 1.7;
            font-weight: 500;
        }

        /* PC：左右2カラム化 */
@media screen and (min-width: 769px) {
    .feature-card {
        flex-direction: row;
        align-items: center;
        max-width: 1100px;
        display: flex;
        margin: clamp(24px, 2.8vw, 36px) auto;
        justify-content: center;
        border-radius: 30px;
        padding: clamp(20px, 3vw, 40px);
    }

  .feature-subtitle {
    margin-bottom: clamp(15px, 1.3vw, 20px);
}

  .feature-image {
    overflow: hidden;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border-radius: 10px;
}

  .feature-left {
    text-align: left;
    padding-right: clamp(20px, 3vw, 40px);
    width: 55%;
  }

  .feature-right {
    background: url(../img/feature-content-back.png) center/cover no-repeat;
    border-radius: 10px;
    padding: clamp(20px, 3vw, 30px);
    width: 45%;
  }
}

/* 成績実績セクション */
.results-section {
    background: url(../img/results-back-pc.png);
    background-color: #ffe6ee;
    background-size: contain;
    position: relative;
    background-repeat: no-repeat;
    background-position: top;
    padding-bottom: clamp(80px, 10vw, 120px);
}

.results-header {
    position: relative;
}


.results-title-badge {
    background: white;
    color: #ff9933;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: bold;
    padding: clamp(12px, 2vw, 18px) clamp(40px, 6vw, 60px);
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: absolute;
    text-align: center;
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%);
    top:-1.5%;
    z-index: 1;
}

.results-title-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid white;
}

.results-main-title {
    color: white;
    font-size: clamp(28px, 3.3vw, 44px);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: clamp(20px, 3vw, 30px);
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

        .results-illustration {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: clamp(10px, 2vw, 15px);
            margin-bottom: clamp(-30px, -4vw, -40px);
            position: relative;
            z-index: 2;
        }

        .results-person {
            width: clamp(60px, 10vw, 90px);
            height: clamp(80px, 13vw, 120px);
            background: #f0f0f0;
            border-radius: 10px 10px 0 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(35px, 6vw, 55px);
        }

        .results-confetti {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .confetti-dot {
            position: absolute;
            width: clamp(4px, 0.6vw, 8px);
            height: clamp(4px, 0.6vw, 8px);
            border-radius: 50%;
        }

.results-banner {
    background: url(../img/results-banner.png);
    background-size: contain;
    padding: clamp(10px, 0.8vw, 12px) 0 clamp(20px, 3.5vw, 30px);
    text-align: center;
    position: relative;
    margin: clamp(25px, 4vw, 35px) auto;
    background-position: center;
    background-repeat: no-repeat;
}

        .results-banner-title {
            color: white;
            font-size: clamp(18px, 1.8vw, 24px);
            font-weight: bold;
            margin-bottom: clamp(8px, 1.2vw, 12px);
        }

.results-banner-subtitle {
    color: #f8fd00;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: bold;
}

.results-stats-primary {
    background: linear-gradient(317deg, #cc0000 0%, #ff0000 100%);
    padding: clamp(15px, 1.3vw, 20px);
    text-align: center;
    color: white;
    margin: clamp(20px, 3vw, 30px) 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

        .results-stats-primary-text {
            font-size: clamp(26px, 2.8vw, 38px);
            font-weight: bold;
            line-height: 1.4;
            font-style: italic;
        }

p.results-stats-primary-text {
    font-size: clamp(20px, 2.4vw, 32px);
    font-style: normal;
}

        .results-stats-primary-text .highlight-yellow {
            color: #ffff00;
            font-size: clamp(30px, 5vw, 50px);
            font-style: italic;
        }

        .results-stats-primary-text .highlight-yellow-small {
            color: #ffff00;
            font-size: clamp(26px, 2.8vw, 38px);
            font-style: italic;
        }

.results-stats-list {
    width: 50%;
    margin: 0 auto clamp(50px, 8vw, 80px);
    background: url(../img/results-stats-list-back.png);
    padding: clamp(20px, 4vw, 25px);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

        .results-stat-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(15px, 3vw, 25px);
            padding: clamp(15px, 2.5vw, 20px) 0;
            border-bottom: 2px dashed #e6e6e6;
            font-size: clamp(24px, 2.8vw, 36px);
            font-weight: bold;
            font-style: italic;
        }

        .results-stat-item:last-child {
            border-bottom: none;
        }

.results-stat-number {
    color: #cc0000;
    font-size: clamp(28px, 3.3vw, 44px);
}

        .results-stat-text {
            color: #333;
        }

        .results-stat-count {
            color: #cc0000;
            font-size: clamp(30px, 5vw, 45px);
        }

        /* タブレット対応 */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: clamp(10px, 2vw, 20px);
            }
        }

        /* スマホ・タブレット対応 */
        @media (max-width: 768px) {
            .results-stats-list {
    background: url(../img/results-stats-list-back.png);
    padding: clamp(20px, 4vw, 35px);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin: clamp(20px, 3vw, 40px);
    background-color: #fff;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 90%;
}

.results-section {
    background: url(../img/results-back.png);
    background-color: #ffe6ee;
    background-size: contain;
    position: relative;
    background-repeat: no-repeat;
    background-position: top;
}

    .header-top {
        flex-wrap: nowrap;
        padding: 0 0 0 3%;
    }

    .contact {
    display: block;
}

    .hamburger {
        display: flex;
        background: linear-gradient(90deg, #2157a8 0%, #0a3d80 100%);
        padding: clamp(21px, 1.8vw, 24px) clamp(15px, 1.3vw, 20px);
    }

            .nav-menu {
                display: none;
            }

            .mobile-menu {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .logo-tag {
                flex-wrap: wrap;
            }

            .contact-section {
                flex-direction: column;
                gap: clamp(5px, 1vw, 10px);
            }
        }

/* 合格者の声セクション */
        .testimonials-section {
            background-color: #ffe6ee;
            padding: clamp(20px, 3vw, 40px) clamp(15px, 3vw, 30px);
        }

        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: clamp(20px, 3vw, 30px);
            margin-bottom: clamp(25px, 4vw, 35px);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .testimonial-card:last-child {
            margin-bottom: 0;
        }

        .testimonial-body {
            display: flex;
            gap: clamp(20px, 3.5vw, 30px);
            align-items: flex-start;
        }

        .testimonial-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: clamp(15px, 2.5vw, 20px);
        }

        .testimonial-badge-wrapper {
            display: flex;
            align-items: center;
            gap: clamp(12px, 2vw, 18px);
        }

        .testimonial-badge {
    width: clamp(50px, 8vw, 80px);
}

        .petal-left {
            position: absolute;
            width: clamp(16px, 2.5vw, 22px);
            height: clamp(16px, 2.5vw, 22px);
            background: #ee145a;
            border-radius: 50%;
            top: 50%;
            left: clamp(-7px, -1vw, -9px);
            transform: translateY(-50%);
            box-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
        }

        .petal-right {
            position: absolute;
            width: clamp(16px, 2.5vw, 22px);
            height: clamp(16px, 2.5vw, 22px);
            background: #ee145a;
            border-radius: 50%;
            top: 50%;
            right: clamp(-7px, -1vw, -9px);
            transform: translateY(-50%);
            box-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
        }

        .petal-bottom-right {
            position: absolute;
            width: clamp(16px, 2.5vw, 22px);
            height: clamp(16px, 2.5vw, 22px);
            background: #ee145a;
            border-radius: 50%;
            bottom: clamp(-7px, -1vw, -9px);
            right: clamp(8px, 1.2vw, 12px);
            box-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
        }

        .testimonial-school {
            color: #ee145a;
            font-size: clamp(24px, 4vw, 36px);
            font-weight: bold;
            line-height: 1.3;
            margin-bottom: clamp(5px, 0.8vw, 8px);
        }

        .testimonial-name {
            color: #666;
            font-size: clamp(12px, 1.7vw, 14px);
            font-weight: 500;
        }

        .testimonial-photo {
            width: clamp(140px, 22vw, 220px);
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(12px, 1.8vw, 14px);
            flex-shrink: 0;
        }

        .testimonial-text {
            color: #333;
            font-size: clamp(13px, 1.9vw, 15px);
            line-height: 1.5;
            font-weight: 500;
        }

        @media (max-width: 768px) {
    .testimonial-body {
        flex-direction: column;
        gap: clamp(10px, 0.8vw, 12px);
    }

            .testimonial-badge-wrapper {
                justify-content: space-between;
            }

            .testimonial-photo {
                width: 100%;
                max-width: 220px;
                height: clamp(160px, 28vw, 220px);
                margin: 0 auto;
            }

            .testimonial-card {
    margin: clamp(20px, 6vw, 40px);
}

    .testimonial-badge-wrapper {
        display: block;
        text-align: center;
    }

    .testimonial-left {
    flex: 1;
    display: flex;
    flex-direction: unset;
    gap: clamp(15px, 2.5vw, 20px);
    margin: 0 auto;
    align-items: center;
}

    .testimonial-photo {
        width: 100%;
        max-width: 150px;
        height: auto;
        margin: 0 auto;
    }

    .testimonial-badge {
    width: clamp(50px, 8vw, 80px);
    margin: 0 auto;
}

h3.testimonial-school {
    margin: clamp(10px, 0.8vw, 12px) 0;
}
        }

        /* 5つのポイントセクション */
        .five-points-section {
            background: linear-gradient(180deg, #e8f4fc 0%, #d0e8f7 100%);
            padding: clamp(40px, 6vw, 70px) clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px);
            position: relative;
        }

        .five-points-title {
            text-align: center;
            font-size: clamp(24px, 4vw, 36px);
            font-weight: bold;
            color: #333;
            margin-bottom: clamp(10px, 1.5vw, 15px);
            position: relative;
            padding-bottom: clamp(15px, 2.5vw, 20px);
        }

        .five-points-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(200px, 60%, 400px);
            height: 3px;
            background: #0066cc;
        }

        .five-points-title .highlight-number {
            color: #0066cc;
            font-size: clamp(32px, 5.5vw, 48px);
        }

        .slider-container {
            max-width: 1200px;
            margin: clamp(30px, 5vw, 50px) auto 0;
            position: relative;
            padding: 0 clamp(40px, 6vw, 70px);
        }

        .slider-wrapper {
            overflow: hidden;
            position: relative;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: clamp(15px, 2vw, 25px);
        }

        .point-slide {
            flex: 0 0 calc(100% - 0px);
            min-width: 0;
        }

        @media (min-width: 768px) {
            .point-slide {
                flex: 0 0 calc(50% - 10px);
            }
            
            .slider-track {
                gap: 20px;
            }
        }

        @media (min-width: 1024px) {
    .point-slide {
        flex: 0 0 32%;
        box-sizing: border-box;
        justify-content: center;
    }
        }

        .point-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
                height: 100%;
        }

.point-header {
   background: url(../img/point-header-back.png) center bottom / cover no-repeat;
    padding: clamp(18px, 1.8vw, 24px) 0;
    text-align: center;
    position: relative;
}

        .point-number {
            color: white;
            font-size: clamp(18px, 1.8vw, 24px);
            font-weight: bold;
            line-height: 1;
            margin-bottom: clamp(6px, 0.7vw, 11px);
        }

        .point-title {
            color: white;
            font-size: clamp(20px, 1.8vw, 24px);
            font-weight: bold;
            line-height: 1.5;
        }

.point-image {
    padding: clamp(15px, 1.3vw, 20px);
    border-radius: 10px;
}

.point-description {
    padding: 0 clamp(18px, 1.8vw, 24px) clamp(18px, 1.8vw, 24px);
    color: #333;
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.5;
    font-weight: 500;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(40px, 6vw, 45px);
    height: clamp(40px, 6vw, 45px);
    border-radius: 50%;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

        .slider-btn:hover {
            background: #0066cc;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-btn-prev {
            left: 0;
        }

        .slider-btn-next {
            right: 0;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: clamp(10px, 1.5vw, 12px);
            margin-top: clamp(25px, 4vw, 35px);
        }

        .dot {
            width: clamp(10px, 1.5vw, 12px);
            height: clamp(10px, 1.5vw, 12px);
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #0066cc;
            transform: scale(1.3);
        }

        .dot:hover {
            background: #0099ff;
        }

        .slider-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .slider-btn:disabled:hover {
            background: rgba(255, 255, 255, 0.9);
            color: #0066cc;
            transform: translateY(-50%);
        }

        @media (max-width: 600px) {
    .slider-container {
        padding: 0 clamp(20px, 3vw, 40px);
    }

            .slider-btn {
                width: clamp(35px, 8vw, 42px);
                height: clamp(35px, 8vw, 42px);
                font-size: clamp(20px, 5vw, 26px);
            }
        }

        /* 無料体験授業の流れセクション */
        .trial-flow-section {
            background: url(../img/trial-flow-back.png);
            background-size: cover;
            padding:0 0 clamp(20px, 6vw, 40px);
            position: relative;
        }

.flow-title-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 120px);
}

/* 画像は中央寄せ、最大幅を制限 */
.flow-title-wrapper img.flow-txt {
    width: 100%;
    height: auto;
    display: inline-block;
}

/* タイトル */
.trial-flow-title {
    text-align: center;
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: bold;
    color: #333;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.flow-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f7fbff;
    padding: clamp(20px, 3vw, 40px);
    border-radius: 20px;
}

.flow-box {
    padding: 0 clamp(20px, 3vw, 40px);
}

.flow-step {
    margin-bottom: clamp(10px, 0.8vw, 12px);
    position: relative;
}

        .flow-step:last-child {
            margin-bottom: 0;
        }

.flow-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: clamp(20px, 3vw, 40px);
    top: clamp(40px, 5vw, 60px);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #ccc 0%, #ccc 50%, transparent 100%);
    border-left: 2px dashed #ccc;
    background: none;
}

        .flow-step-header {
            display: flex;
            align-items: center;
            gap: clamp(12px, 2vw, 18px);
            margin-bottom: clamp(15px, 1.3vw, 20px);
        }

        .flow-step-badge {
            background: #2076cc;
            color: white;
            font-size: clamp(13px, 1.1vw, 15px);
            font-weight: bold;
            padding: clamp(10px, 1.5vw, 10px) clamp(15px, 1.3vw, 20px);
            border-radius: 30px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .flow-step-title {
            font-size: clamp(17px, 1.2vw, 20px);
            font-weight: bold;
            color: #333;
            flex: 1;
        }

.flow-step-content {
    overflow: hidden;
    width: 85%;
    margin-left: clamp(45px, 7vw, 65px);
}

.flow-step-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

        .flow-step-description {
            padding: clamp(20px, 3.5vw, 30px) 0;
            color: #333;
            font-size: clamp(14px, 2vw, 16px);
            line-height: 1.5;
            font-weight: 500;
        }

        @media (max-width: 600px) {
            .flow-step-header {
                flex-wrap: wrap;
            }
        }

        @media (min-width: 769px) {
    .flow-container {
        max-width: 1200px;
        margin: 0 auto;
        background: #f7fbff;
        padding: clamp(20px, 3vw, 40px);
        border-radius: 20px;
        display: flex;
        gap: clamp(20px, 3vw, 40px);
        justify-content: center;
                flex-wrap: wrap;
    }

.flow-step:not(:last-child)::before{
    display: none;
}

.flow-step-content {
    overflow: hidden;
    width: 100%;
    margin-left: 0;
}

.flow-step {
    width: 30%;
}

.flow-step-description {
    padding: clamp(15px, 1.3vw, 20px) 0 0;
    color: #333;
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 2;
    font-weight: 500;
}

        .trial-flow-section {
            background: url(../img/trial-flow-back-pc.png);
            background-size: contain;
        }
        }

/* 塾長紹介セクション */
.director-section {
    background: url(../img/director-section-back.png);
    padding: clamp(40px, 6vw, 70px) clamp(20px, 3vw, 40px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

        .director-section-title {
            text-align: center;
            font-size: clamp(26px, 4.5vw, 40px);
            font-weight: bold;
            color: #333;
            margin-bottom: clamp(30px, 5vw, 50px);
        }

        .director-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .director-photo-wrapper {
            margin-bottom: clamp(20px, 3vw, 30px);
        }

        .director-info {
            margin-bottom: clamp(25px, 4vw, 35px);
        }

        .director-title {
            color: #0066cc;
            font-size: clamp(13px, 1.8vw, 15px);
            font-weight: bold;
            margin-bottom: clamp(8px, 1.2vw, 12px);
        }

.director-name {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: bold;
    color: #333;
    margin-bottom: clamp(15px, 2.5vw, 20px);
    border-bottom: solid 2px #2076cc;
    padding-bottom: clamp(15px, 2.5vw, 20px);
}

        .director-description {
            color: #333;
            font-size: clamp(13px, 1.9vw, 15px);
            line-height: 2;
            font-weight: 500;
        }

.director-message {
    text-align: center;
}

        .director-message-label {
            color: #ff6600;
            font-size: clamp(18px, 1.8vw, 24px);
            font-weight: bold;
            margin-bottom: clamp(8px, 1.2vw, 12px);
        }

        .director-message-text {
            color: #ff6600;
            font-size: clamp(18px, 1.8vw, 24px);
            font-weight: bold;
            line-height: 1.6;
        }

        .director-video {
            padding: clamp(15px, 1.3vw, 20px);
        }

        .video-placeholder {
            width: 100%;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* アクセスセクション */
        .access-section {
            background:url(../img/access-section-back.png);
            padding: clamp(40px, 6vw, 70px) clamp(20px, 3vw, 40px);
            color: white;
            background-size: cover;
        }

        .access-header {
            text-align: center;
            margin-bottom: clamp(20px, 3vw, 40px);
        }

        .access-title {
            font-size: clamp(28px, 4.5vw, 40px);
            font-weight: bold;
            margin-bottom: clamp(10px, 1.5vw, 15px);
        }

.access-subtitle {
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 600;
    opacity: 0.95;
    border-bottom: solid 2px;
    padding-bottom: clamp(20px, 3vw, 40px);
    max-width: 600px;
    margin: 0 auto;
}

.access-description {
    text-align: center;
    font-size: clamp(13px, 1.8vw, 16px);
    line-height: 1.8;
    margin-bottom: clamp(30px, 5vw, 40px);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
        font-weight: 600;
}

.access-school-title {
    background: rgba(32, 118, 204, 0.8);
    color: #fff;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: bold;
    text-align: center;
    padding: clamp(15px, 2.5vw, 20px);
    border-radius: 10px;
    margin: 0 auto clamp(20px, 3vw, 40px);
    max-width: 600px;
    line-height: 1.5;
    border: solid 1px;
}

        .accordion-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: clamp(15px, 2.5vw, 20px);
        }

        .accordion-header {
            background: white;
            color: #333;
            font-size: clamp(15px, 2.2vw, 18px);
            font-weight: bold;
            padding: clamp(13px, 1.1vw, 15px);
            border-radius: 10px;
            width: 100%;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: #f8f8f8;
            border-color: #4a90e2;
        }

.accordion-header.active {
    background: #2076cc;
    color: white;
    border-color: #2076cc;
}

.accordion-icon {
    width: clamp(13px, 1.1vw, 15px);
    align-items: center;
    display: flex;
}

        .accordion-header.active .accordion-icon {
            transform: rotate(180deg);
            color: white;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .accordion-content.active {
            max-height: 2000px;
        }

        .accordion-body {
            padding-top: clamp(15px, 2.5vw, 20px);
        }

        .school-card {
            background: white;
            border-radius: 10px;
            padding: clamp(25px, 4vw, 35px) clamp(20px, 3.5vw, 30px);
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .school-photo {
            margin-bottom: clamp(20px, 3vw, 25px);
        }

        .school-info {
            color: #333;
            font-size: clamp(13px, 1.9vw, 15px);
            line-height: 1.9;
            margin-bottom: clamp(20px, 3vw, 25px);
        }

        .school-info-item {
            font-weight: 500;
        }

        .school-info-item:last-child {
            margin-bottom: 0;
        }

        .school-info-label {
            display: inline-block;
            min-width: clamp(60px, 10vw, 80px);
            font-weight: bold;
            color: #4a90e2;
        }

        .school-map {
            width: 100%;
            height: clamp(200px, 35vw, 300px);
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: 500;
        }

        @media (min-width: 769px) {
            .access-section {
            background:url(../img/access-section-back-pc.png);
            padding: clamp(40px, 6vw, 70px) clamp(15px, 3vw, 30px);
            color: white;
            background-size: cover;
        }
        }

        /* フッター */
        .site-footer {
    background: #ffffff;
    padding:clamp(30px, 5vw, 50px) 0 clamp(100px, 25%, 180px);
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
}

.footer-logo img {
    width: clamp(120px, 20vw, 240px);
    height: auto;
    margin-bottom: clamp(22px, 2.4vw, 32px);
}

.footer-company {
    font-size: clamp(14px, 1.2vw, 16px);
    margin-bottom: clamp(15px, 1.3vw, 20px);
    color: #222;
}

.footer-policy a {
    font-size: clamp(14px, 1.2vw, 16px);
    text-decoration: none;
}


.footer-copy {
    margin-top: 25px;
    font-size: clamp(10px, 0.8vw, 12px);
    color: #666;
}


/* 追従CTAボタン */
        .fixed-cta {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            background: linear-gradient(180deg, rgba(173, 216, 230, 0.8) 0%, rgba(135, 206, 250, 0.8) 100%);
            padding: clamp(12px, 2vw, 18px) clamp(10px, 2vw, 20px);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            display: flex;
            gap: clamp(10px, 2vw, 15px);
            justify-content: center;
            align-items: center;
            border-radius: 15px 15px 0 0;
                opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
        }

        .fixed-cta.active {
    opacity: 1;
    visibility: visible;
}

        .cta-button {
            display: flex;
            align-items: center;
            gap: clamp(5px, 1vw, 10px);
            padding: clamp(11px, 0.9vw, 13px) clamp(20px, 3vw, 30px);
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            flex: 1;
            max-width: clamp(280px, 40%, 350px);
            min-width: clamp(250px, 40%, 300px);
            justify-content: center;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .cta-button-contact {
            background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
            color: white;
        }

        .cta-button-line {
            background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
            color: white;
        }

.cta-icon {
    width: clamp(35px, 5vw, 42px);
    height: clamp(35px, 5vw, 42px);
    background: white;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 3vw, 28px);
    flex-shrink: 0;
    padding: 2.5%;
}

        .cta-icon-envelope {
            color: #ff6b35;
        }

        .cta-icon-line {
            color: #06c755;
            font-weight: bold;
        }

        .cta-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
        }

.cta-text-small-envelope {
    font-size: clamp(11px, 1.5vw, 13px);
    opacity: 0.95;
    font-weight: 600;
    background: #fff;
    border-radius: 100px;
    padding: 2% 0%;
    color: #e64e0b;
    margin: 0 auto 4%;
    width: auto;
    width: 80%;
    text-align: center;
}

.cta-text-small-line {
    font-size: clamp(11px, 1.5vw, 13px);
    opacity: 0.95;
    font-weight: 600;
    background: #fff;
    border-radius: 100px;
    padding: 2% 0%;
    color: #05903b;
    margin: 0 auto 4%;
    width: auto;
    width: 80%;
    text-align: center;
}

        .cta-text-large {
            font-size: clamp(11px, 1.2vw, 20px);
            font-weight: bold;
            line-height: 1.2;
            margin: 0 auto;
        }

                @media (max-width: 1024px) {
.cta-text-large {
    font-size: clamp(11px, 1.8vw, 20px);
}

.cta-text-small-envelope {
    font-size: clamp(11px, 0.7vw, 11px);
}

.cta-text-small-line {
    font-size: clamp(11px, 0.7vw, 11px);
}

        }

        @media (max-width: 480px) {
            .fixed-cta {
                padding:clamp(10px, 0.8vw, 12px);
            }

            .cta-button {
                max-width: 100%;
                width: 100%;
                min-width: auto;
            }
        
            .cta-button {
                padding: clamp(10px, 2vw, 14px) clamp(15px, 3vw, 20px);
            }

    .cta-icon {
        width: clamp(26px, 2.8vw, 38px);
        height: clamp(26px, 2.8vw, 38px);
        padding: 3%;
    }

    .cta-text-small-envelope {
    font-size: clamp(11px, 1.5vw, 13px);
    width: 100%;
}

    .cta-text-small-line {
    font-size: clamp(11px, 1.5vw, 13px);
    width: 100%;
}

        .fixed-cta {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width:100%;
            border-radius: 10px 10px 0 0;
        }

                #about {
  scroll-margin-top: 80px !important; /* ヘッダーの高さに合わせる */
}

        #flow {
  scroll-margin-top: 80px !important; /* ヘッダーの高さに合わせる */
}

        #access {
  scroll-margin-top: 80px !important; /* ヘッダーの高さに合わせる */
}
        }

                #about {
  scroll-margin-top: 80px; /* ヘッダーの高さに合わせる */
}

        #flow {
  scroll-margin-top: -300px; /* ヘッダーの高さに合わせる */
}

        #access {
  scroll-margin-top: 80px; /* ヘッダーの高さに合わせる */
}

.tel-txt {
  position: relative;
  text-decoration: none;
  color: #000;
  padding-bottom: 3px;
  transition: color .3s ease;
}

.tel-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #355CBD;
  transition: width .3s ease;
}

.tel-txt:hover {
  color: #355CBD; /* 好みの色に変更可 */
}

.tel-txt:hover::after {
  width: 100%;
}