@charset "UTF-8";
/* CSS Document */

/* 全デバイスでブラウザの高さにフィット */
.fit-screen {
    height: 100dvh;      /* Dynamic viewport height → iOS/Androidでも安定 */
    min-height: 100dvh;
    width: 100%;
    overflow: hidden;    /* 好みで外す */
}

/*======================================
  アシタノクラス専用：白背景・テキストが映えるセクション
======================================*/
.section-text-visual {
    min-height: 100dvh;
    padding: clamp(3rem, 5vw, 5rem) clamp(5vw, 8vw, 8rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff; /* ★白背景に変更 */
    color: #1a2a3a;      /* 上品な濃紺グレー（文字色） */
}

.section-text-visual__inner {
    max-width: 960px;
    width: 100%;
}

/* 塾名（ラベル） */
.section-text-visual__label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    border-left: 3px solid #5eb6ff; /* 淡い未来ブルーに調整 */
    padding-left: 0.75rem;
    margin-bottom: 1.8rem;
    color: #324a64;
    opacity: 0.9;
}

/* キャッチコピー */
.section-text-visual__title {
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 3.4vw, 3.2rem);
    line-height: 1.35;
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    color: #132539;
}

/* キャッチの強調アクセント */
.section-text-visual__title span.-acce


/*======================================
  アシタノクラス：５つの理念セクション
======================================*/
/* セクション全体：背景なし */
.principles-heading-section {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
    text-align: center;
}

/* 見出し本体 */
.principles-heading--twoline {
    margin: 0;
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    color: #111;
}

/* １行目：小さめ */
.principles-heading__small {
    display: block;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 0.15em;
}

/* ２行目：大きく強調 */
.principles-heading__big {
    display: block;
    font-size: clamp(2rem, 3.4vw, 2.7rem);
}

/* リスト全体 */
.principles-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.8rem;
}

/* 各行（01〜05） */
.principles-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.6rem, 4vw, 2.5rem);
    padding-bottom: 1.4rem;
    position: relative;
}

/* 下にうっすら区切り線（最後の要素は消す） */
.principles-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(180,196,214,0.6), rgba(255,255,255,0));
}
.principles-item:last-child::after {
    display: none;
}

/* 左の番号：大きめ、ライン付き */
.principles-num {
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-size: clamp(2.4rem, 4.4vw, 3.2rem);
    font-weight: 400;
    line-height: 1;
    color: #111;
    letter-spacing: 0.12em;
    padding-left: 0.1em;
    position: relative;
    flex-shrink: 0;
}

.principles-num::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 1.8em;
    height: 1px;
    background: #C5D6B9;  /* アシタノクラスらしいセラドン */
}

/* 右側テキスト部分 */
.principles-content {
    flex: 1;
}

.principles-title {
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0 0 0.3rem;
    color: #111;
}

.principles-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    line-height: 1.9;
    margin: 0;
    color: #555;
}

/* スマホで少しコンパクトに */
@media (max-width: 599px) {
    .principles-item {
        gap: 1.3rem;
    }
    .principles-num {
        font-size: 2.1rem;
    }
    .principles-num::after {
        width: 1.5em;
    }
}



/*======================================
  アシタノクラス：紹介セクション
======================================*/
.section-about {
    background: #ffffff;
    color: #1a2a3a;
    padding: clamp(3rem, 6vw, 5rem) clamp(5vw, 8vw, 8rem);
}

.section-about__inner {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

/* タイトル */
.section-about__title {
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-weight: 600;
    font-size: clamp(1.9rem, 2.6vw, 2.4rem);
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin: 0 0 1.5rem;
    color: #132539;
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.section-about__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #5eb6ff, #a9d5ff);
}

/* リード文（1文目） */
.section-about__lead {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.08em;
    margin: 1.5rem 0 1.5rem;
    font-weight: 600;
    color: #22354a;
}

/* 本文ブロック */
.section-about__text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    line-height: 2.1;
    letter-spacing: 0.06em;
    color: #3b4b5b;
}

.section-about__text p {
    margin: 0 0 1.2rem;
}

/* PCで読みやすく少しだけ広げる */
@media (min-width: 960px) {
    .section-about__text {
        font-size: 1rem;
    }

    .section-about__text p {
        margin-bottom: 1.4rem;
    }
}
/* ===== 自立学習クラス セクション ===== */
.class-section {
    padding: clamp(1rem, 4vw, 2rem) 0;
    background: transparent;
    color: #111;
}


.class-section__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    text-align: center; /* 中央揃えで読みやすく */
}

/* タイトル */
.class-section__title {
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0 0 1.2rem;
    color: #132539;
}

/* リード文（短文用） */
.class-section__lead {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.05rem);
    line-height: 2;
    letter-spacing: 0.06em;
    color: #3b4b5b;
    margin: 0 auto;
    max-width: 42em; /* 行幅が広くなりすぎないように */
	text-align: left;
}

/* スマホ調整 */
@media (max-width: 599px) {
    .class-section__lead {
        line-height: 1.9;
    }
}

.asita-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
  border: none;
}

/* 通常 */
.asita-btn--primary {
  background: #e86c3a;
  color: #fff;
}

/* ホバー（シンプル） */
.asita-btn--primary:hover {
  background: #cf5e2f; /* 少し濃くなるだけ */
  opacity: 0.95;
}

/********************************************
 * アシタノクラス – フッターコピーライトCSS
 * Elementor 専用（どのテーマでも上品に見える）
 ********************************************/
.ac-footer-copy {
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(0.78rem, 1.2vw, 0.9rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #546274;

    padding: 1.8rem 0;
    margin-top: 1rem;

    border-top: 1px solid #e3e7ec;
}

/* 少しだけフェードした上品な演出 */
.ac-footer-copy {
    opacity: 0.85;
}

.ac-footer-copy:hover {
    opacity: 1;
    transition: opacity 0.2s ease;
}

/* スマホでは余白を少し縮める */
@media (max-width: 600px) {
    .ac-footer-copy {
        padding: 1.3rem 0;
    }
}

.class-section {
    background: rgba(255, 255, 255, 0.7); /* 0.7は透明度、好みで調整 */
    backdrop-filter: blur(4px); /* ぼかし効果：不要なら削除OK */
    -webkit-backdrop-filter: blur(4px);
}
