body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: #AECF92;
}
a {
    text-decoration: none;
}
a:visited, a:focus {
    color: #000;
}
h1, h2, h3, h4 {
    font-size: 1em;
    font-weight: 400;
}

/* ------------- 背景色 ------------- */
.bgc-main {
    background-color: #AECF92;
}
.bgc-sub {
    background-color: #FFFEE1;
}

/* ------------- セクション共通 ------------- */
.section-main {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* 中央揃えセクション */
.section-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* セクションタイトル */
.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}
.section-title h1 {
    font-size: 2.5em;
    font-weight: 700;
    font-family: "Zen Kaku Gothic New", sans-serif;
}
.section-title::before,
.section-title::after {
    content: "";
    display: inline-block;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.section-title::before {
    background: url(../img/tabler_slashes_left.svg);
}
.section-title::after {
    background: url(../img/tabler_slashes_right.svg);
}

/* ------------- お問い合わせフォームボタン ------------- */
.inquiresBtn {
    padding: 20px 28px;
    display: inline-block;
    background-color: #2C75BA;
    border-radius: 70px;
    font-size: 24px;
    text-align: center;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
    transition: background-color 150ms ease-in, transform 150ms ease-in;
}
.inquiresBtn p {
    color: #FFF;
}
.inquiresBtn:hover {
    background-color: #6CA9E2;
    transform: translateY(3px);
}



/* ------------- ヘッダー ------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: transform 0.3s ease;
}

/* スクロールしてheader-mainだけ隠れるようにする */
/* 下スクロール時：全部隠す */
.headroom--unpinned {
    transform: translateY(-60%);
}
/* 上スクロール時：全部表示 */
.headroom--pinned {
    transform: translateY(0);
}

/* メインヘッダー */
#header-main{
    display: flex;
    justify-content: space-between;
    height: 50px;
    box-shadow: 0 4px 4px 2px rgba(0,0,0,0.2);
    position: relative;
    z-index: 100;
}
.school-logo img{
    height: 100%;
    margin: auto 22px;
    padding: 5px 0;
}
/* ナビ */
#nav-btn nav{
    height: 100%;
}
#nav-btn nav ul{
    height: 100%;
    margin: 0;
    display: flex;
    list-style: none;
}
#nav-btn nav ul li {
    display: flex;
    align-items: center;
    padding: 5px 0;
    transition: background-color 150ms ease-in;
}
#nav-btn nav ul li a {
    display: flex;
    align-items: center;
    margin: auto 0;
}
#nav-btn nav ul li p {
    font-size: 20px;
    color: #000;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    border-left: 1px solid #000;
    padding: 5px 20px;
    transition: color 150ms ease-in;
}

#nav-btn nav ul li:hover {
    background-color: #AFC32B;
}
#nav-btn nav ul li:hover p {
    color: #FFFEE1;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* サブヘッダー */
#header-sub {
    display: flex;
    justify-content: flex-end;
}
.header-tell {
    background-color: #AFC32B;
    display: flex;
    padding: 5px 11px;
    box-shadow: -2px 4px 4px 2px rgba(0,0,0,0.25);
    position: relative;
    z-index: 110;
}
.header-tell p {
    margin: auto 0;
}
.header-tellNum {
    font-size: 20px;
    margin-right: 8px;
}
.header-inquiBtn {
    background-color: #2C75BA;
    display: flex;
    align-items: center;
    box-shadow: 2px 4px 4px 2px rgba(0,0,0,0.25);
    position: relative;
    z-index: 110; 
}
.header-inquiBtn a {
    color: #FFF;
    font-size: 20px;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 32px;
}
.header-inquiBtn p::before {
    content: url(../img/mdi_triangle.svg);
    margin-right: 4px;
}
.header-inquiBtn:hover {
    background-color: #6CA9E2;
    transition-property: background-color;
    transition-duration: 150ms;
    transition-timing-function: ease-in;
    transition-delay: 0ms;
}

/* ------------- main ------------- */
main {
    margin-top: 40px;
}

/* ------------- 教室について ------------- */
#info {
    position: relative;
    display: flex;
    padding-left: 120px;
    width: 100%;
    min-height: 536px;
}
.info-text {
    flex: 0 0 598px;
    max-width: 598px;
    padding: 110px 0;
    position: relative;
    z-index: 2;
}
.info-text h2 {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-bottom: 38px ;
    text-shadow: 0 2px 10px rgba(255,254,225,0.7);
}
.info-text span {
    color: #BC291C;
}
.info-text p {
    font-size: 20px;
    margin-bottom: 10px;
}

/* 画像 */
.info-img { 
    position: absolute; 
    top: 0; 
    bottom: 0; 
    left: calc(50% - 720px + 567px); 
    right: 0; 
    background: url(../img/info-image.png) no-repeat center/cover; background-position: center center; 
    z-index: 1; 
}

/* ------------- お知らせ/イベント ------------- */
#notice {
    margin: 0 auto;
    padding: 70px 0;
}
.notice-title {
    margin-bottom: 10px;
}
.notice-card-wrap {
    padding: 30px 0;
}
/* noticeカード */
.notice-card {
    background-color: #FFF;
    width: 264px;
    padding: 14px 18px;
    margin: 0 35px 10px 35px;
    box-shadow: 0 4px 4px 2px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    transition: transform 150ms ease;
}
.notice-card:hover {
    transform: scale(1.2);
}
.notice-card img {
    width: 100%;
    height: 149px;
    order: 1;
    margin-bottom: 20px;
}
.notice-card-text {
    margin-bottom: 20px;
    order: 2;
}
.notice-card-text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}
.notice-card-about{
    text-align: right;
    order: 3;
}
.notice-card-about a{
    text-decoration: none;
    display: inline-block;
}
.notice-card-about p {
    display: inline;
    font-weight: 700;
    color: #2C75BA;
}
.notice-card-about p:hover {
    color: #6CA9E2;
}
.notice-card-about p::after {
    content: url(../img/arow-icon.svg);
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 1px;
}
/* スライダー */
#cards-slide {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
}
/* dots全体の位置 */
.slick-dots {
    bottom: -40px;
}
.slick-dots li button:before {
    content: none;
}
/* liのサイズ */
.slick-dots li {
    width: 20px;
    height: 20px;
    margin: 0 8px;
}
/* button */
.slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
}
/* custom dot 本体 */
.custom-dot {
    width: 10px;
    height: 10px;
    background-color: #aaa;
    border-radius: 50%;
    display: block;
}
/* active時 */
.slick-dots li.slick-active .custom-dot {
    background-color: #2C75BA;
}

/* ------------- コース案内 ------------- */
#course {
    padding-top: 30px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
#course::before {
    content: "";
    position: absolute;
    inset: -50%;
    background-image: url("../img/course-bg.png");
    background-repeat: repeat;
    transform: rotate(-40deg);
    opacity: 0.15;
    z-index: -1;
}
.course-title {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}
.courseInfo-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* 各コース情報 */
.courseInfo {
    padding: 35px;
    width: 550px;
    background-color: #FFF;
    border-radius: 50px;
}
.courseInfo-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
    background-color: #AFC32B;
    border-radius: 20px;
}
.courseInfo-title-text {
    width: 50%;
    margin: 0 auto;
    padding: 0 24px;
    margin-top: 18px;
    text-align: center;
}
.courseInfo-title-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.courseInfo-title-text h3 {
    background-color: #BC291C;
    padding: 5px;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
}
.courseInfo-line {
    width: 100%;
    height: 2px;
    margin: 20px 0;
    background-color: #AFC32B;
}
.reaction {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
.reaction-img {
    margin: auto;
    margin-right: 13px;
    border-radius: 20px;
}
.reaction-name {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
}
.reaction-sentence {
    width: 368px;
}

/* ------------- 体験教室 ------------- */
#trialClass {
    padding: 70px 200px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.trialClass-title {
    margin-bottom: 21px;
}
.trialClass-info {
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    position: relative;
    z-index: 2;
}
.trialClass-info h2 {
    font-size: 2em;
    font-weight: 500;
}
.trialClass-info p {
    margin-top: 8px;
    font-size: 20px;
}
.trialClass-info h2 span {
    color: #BC291C;
}
.trialClass-main {
    width: 660px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 体験内容 */
.trialClass-content {
    margin-top: 27px;
    padding: 32px 41px;
    background-color: #AFC32B;
}
.trialClass-content h2 {
    font-size: 2em;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New", sans-serif;
}
.trialClass-content h2::after {
    content: "";
    display: inline-block;
    width: 100%;
    margin: 12px 0;
    border-top: 1px solid #000;
}

/* お問い合わせ */
.trialClass-inquiry {
    display: flex;
    justify-content: space-between;
    padding: 0 13px;
    margin-top: 34px;
}
/* 電話番号 */
.trialClass-inquiry-tel {
    text-align: center;
}
.trialClass-inquiry-tel h3 {
    font-size: 32px;
}
.trialClass-inquiry-tel h4 {
    font-size: 24px;
}

/* 画像 */
.trialClass-img-base {
    position: absolute;
}
.trialClass-img-base img {
    width: fit-content;
    border-radius: 100%;
    box-shadow: 0 4px 10px 4px rgba(0, 0, 0, 0.25);
}
.trialClass-img1 {
    top: 216px;
    left: -105px;
}
.trialClass-img2 {
    top: -49px;
    right: -160px;
}
.trialClass-img3 {
    top: 466px;
    right: 20px;
}

/* ------------- アクセス ------------- */
#access {
    padding: 70px 120px;
    position: relative;
    z-index: 2;
}
.access-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 105px;
}

/* アクセス情報 */
.access-info {
    text-align: center;
}
.travelTime {
    width: 245px;
    height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BC291C;
    border-radius: 100%;
}
.travelTime h2 {
    color: #FFF;
    font-size: 32px;
}
.travelTime h2 span {
    font-size: 40px;
}
.address {
    margin: 20px 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

/* googleボタン */
.mapBtn {
    font-size: 24px;
}
.mapBtn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    color: #000;
    border: 2px solid #000;
    overflow: hidden;
    transition: color 0.3s ease;
}
.mapBtn a::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #2C75BA;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
}
.mapBtn a:hover {
    color: #FFF;
    border-color: #2C75BA;
}
.mapBtn a:hover::before {
    transform: scaleX(1);
}

/* マップ */
.access-map {
    width: 620px;
    border: 1px solid #000;
}

/* ------------- お問い合わせ ------------- */
.inquiry-bg {
    position: relative;
    overflow: hidden;
    padding: 66px 0;
    z-index: 0;
}
.inquiry-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/inquiries-bg.jpg);
    background-size: cover;
    opacity: 0.15;
    z-index: -1;
}

/* 電話番号 */
.inquiry-tel {
    margin-top: 20px;
    margin-bottom: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.inquiry-tel p {
    font-family: "Zen Kaku Gothic New", sans-serif;
}
.inquiry-tel p span {
    font-family: 
        "Inter", 
        "Hiragino Kaku Gothic ProN",
        "Noto Sans JP",
        sans-serif;
}
.inquiry-telText {
    text-align: center;
    font-size: 24px;
}
.inquiry-telNumber {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 64px;
}
.inquiry-telNumber::before {
    content: "";
    display: inline-block;
    width: 47px;
    height: 47px;
    background-image: url(../img/phone.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* ------------- フッター ------------- */
footer {
    color: #FFF;
    background-color: #000;
    text-align: center;
    margin: 0 auto;
    padding: 11px 0;
}
