@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');

/* ============================================
   1. リセット & ベーススタイル
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cabin",'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

p,
th,
td,
li,
dt,
dd{
    font-size:14px;
    line-height:1.75em;
    font-feature-settings : "palt";
    letter-spacing:0.05em;
}
h1,
h2,
h3,
h4,
h5{
    line-height:1.4em;
    font-weight: bold;
    font-feature-settings : "palt";
}


body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px 30px;
}


/* ============================================
   2. ヘッダー & ナビゲーション
   ============================================ */

/* ----- ヘッダー ----- */
.header {
    background-image: linear-gradient(0deg, transparent, #ffffffd1 51%, #ffffff);
    position: sticky;
    top: 0;
    z-index: 1000;
    max-height: 80px;
}

.header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

/* ----- ロゴ ----- */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.logo a {
    display: block;
}

.logo img {
    height: auto;
    width: 58vw;
    max-height: 50px;
    max-width: 390px;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #2d8659;
}

.logo-subtitle {
    font-size: 10px;
    color: #666;
}

/* ----- ヘッダー丸ボタン ----- */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 1200;
}

.header-circle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #2d8659;
    background: #fff;
    color: #2d8659;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    gap: 2px;
}

.header-circle-btn:hover {
    background: #2d8659;
    color: #fff;
    opacity: 1;
}

.header-circle-btn:hover svg {
    stroke: #fff;
}

.header-circle-btn:hover .hamburger-line {
    background-color: #fff;
}

.header-circle-btn:hover .circle-btn-text {
    color: #fff;
}

/* 予約ボタン */
.header-circle-btn.reserve svg {
    width: 21px;
    height: 21px;
    stroke: #2d8659;
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.circle-btn-text {
    font-size: 9px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    color: #2d8659;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

/* メニューボタン */
.header-circle-btn.menu {
    gap: 0;
    padding-top: 6px;
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: #2d8659;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.header-circle-btn.menu .circle-btn-text {
    margin-top: 3px;
    font-size: 9px;
}

/* ×線（通常時は非表示） */
.header-circle-btn.menu .close-line {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: #2d8659;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

/* 4番目のspan = 1本目の×線 */
.header-circle-btn.menu span:nth-child(4) {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* 5番目のspan = 2本目の×線 */
.header-circle-btn.menu span:nth-child(5) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* メニュー開時：ハンバーガー非表示 → ×表示 */
.header-circle-btn.menu.is-open .hamburger-line {
    opacity: 0;
}

.header-circle-btn.menu.is-open .circle-btn-text {
    opacity: 0;
}

.header-circle-btn.menu.is-open .close-line {
    opacity: 1;
}

.header-circle-btn.menu.is-open:hover {
    background: #2d8659;
}

.header-circle-btn.menu.is-open:hover .close-line {
    background-color: #fff;
}

/* ----- フルスクリーンナビゲーションメニュー ----- */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.nav-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 70px 20px 30px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    border-bottom: 1px solid #e0e0e0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-menu.active .nav-item {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu.active .nav-item:nth-child(1) {
    transition-delay: 0.05s;
}

.nav-menu.active .nav-item:nth-child(2) {
    transition-delay: 0.1s;
}

.nav-menu.active .nav-item:nth-child(3) {
    transition-delay: 0.15s;
}

.nav-menu.active .nav-item:nth-child(4) {
    transition-delay: 0.2s;
}

.nav-menu.active .nav-item:nth-child(5) {
    transition-delay: 0.25s;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 16px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    padding-left: 10px;
}

.nav-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.nav-icon svg {
    width: 22px;
    height: 22px;
    color: #2d8659;
    transition: all 0.3s ease;
}

.nav-link:hover .nav-icon svg {
    color: #236b47;
    transform: scale(1.1);
}

.nav-text {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover .nav-text {
    color: #2d8659;
}

/* ----- サブメニュー ----- */
.nav-submenu {
    list-style: none;
    padding: 0 0 12px 50px;
    margin: 0;
    display: none;
}

.has-submenu.active .nav-submenu {
    display: block;
}

.nav-submenu li {
    margin: 4px 0;
}

.nav-submenu a {
    display: block;
    padding: 6px 0;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.nav-submenu a::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #2d8659;
}

.nav-submenu a:hover {
    color: #2d8659;
    padding-left: 20px;
}

/* ----- サブメニュー タグ風 ----- */
.nav-submenu--tags {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 0 16px 50px;
}

.has-submenu.active .nav-submenu--tags {
    display: flex !important;
}

.nav-submenu--tags li {
    margin: 0;
}

.nav-submenu--tags a {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #2d8659;
    border-radius: 50px;
    color: #2d8659;
    font-size: 13px;
    transition: all 0.3s ease;
}

.nav-submenu--tags a::before {
    display: none;
}

.nav-submenu--tags a:hover {
    background: #2d8659;
    color: #fff;
    border-color: #2d8659;
    padding-left: 14px;
}

.nav-submenu--tags .nav-submenu-all {
    background: transparent;
    border: 1px dashed #ccc;
    color: #999;
    font-size: 14px;
}

.nav-submenu--tags .nav-submenu-all:hover {
    background: #f9f9f9;
    color: #2d8659;
    border-color: #2d8659;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.has-submenu.active .nav-submenu li {
    animation: slideIn 0.3s ease forwards;
}

.has-submenu.active .nav-submenu li:nth-child(1) {
    animation-delay: 0.05s;
}

.has-submenu.active .nav-submenu li:nth-child(2) {
    animation-delay: 0.1s;
}

.has-submenu.active .nav-submenu li:nth-child(3) {
    animation-delay: 0.15s;
}

.has-submenu.active .nav-submenu li:nth-child(4) {
    animation-delay: 0.2s;
}

.has-submenu.active .nav-submenu li:nth-child(5) {
    animation-delay: 0.25s;
}

.has-submenu.active .nav-submenu li:nth-child(6) {
    animation-delay: 0.3s;
}

/* ----- ナビゲーション（タブレット・スマホ） ----- */
@media (max-width: 768px) {

    .nav-text {
        font-size: 16px;
    }
    
    .nav-icon {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
    
    .nav-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .nav-submenu {
        padding-left: 27px;
    }

    .nav-submenu--tags {
        padding: 0 0 20px 27px;
    }
}

/* ============================================
   3. メインスライダー
   ============================================ */

.main-slider {
    padding: 10px 0 0;
    background-color: #fff;
    overflow: hidden;
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 60vh;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----- スライド ----- */
.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 70%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    z-index: 0;
    border-radius: 10px;
    overflow: hidden;
}

/* グラデーションオーバーレイ */
.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: translate(-50%, -50%) scale(1);
}

.slide.prev {
    opacity: 0.5;
    visibility: visible;
    z-index: 1;
    transform: translate(-150%, -50%) scale(0.85);
}

.slide.next {
    opacity: 0.5;
    visibility: visible;
    z-index: 1;
    transform: translate(50%, -50%) scale(0.85);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- スライドコンテンツ ----- */
.slide-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}
.slide.active .slide-content {
    opacity: 1;
}
.slide-info {
    flex: 1;
    max-width: 600px;
}
.slide-date {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
}
.slide-title {
    font-size: 26px;
    margin-bottom: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.slide-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    margin-left: 20px;
    letter-spacing: 0.05em;
}

.slide-link:hover .slide-more {
    background-color: white;
    color: #2d8659;
}

.slide-more .arrow {
    transition: transform 0.3s ease;
}

.slide-link:hover .slide-more .arrow {
    transform: translateX(5px);
}

/* ----- スライダーインジケーター（矢印+ドット一列） ----- */
.slider-indicators {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 0;
    width: 100%;
}
.slider-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}
.slider-arrow svg {
    color: #2d8659;
    stroke: #2d8659;
}
.slider-arrow:hover svg {
    color: #bedccd;
    stroke: #bedccd;
}
.slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    border: 1.5px solid #2d8659;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background-color: #2d8659;
    border-color: #2d8659;
}
.slider-dot:hover {
    border-color: #2d8659;
}

/* ----- スライダー（タブレット） ----- */
@media (max-width: 1024px) {
    .slider-container {
        padding: 0 20px;
    }
    .slide {
        width: 95%;
    }
    .slide.prev,
    .slide.next {
        opacity: 0.3;
    }
    .slide-title {
        font-size: 24px;
    }
}
@media (max-width: 768px) {
    .slider-container {
        padding: 0 15px;
    }
    .slide {
        width: 85%;
    }
    .slide.active {
        transform: translate(-50%, -50%) scale(1);
    }
    .slide.prev {
        opacity: 0.4;
        transform: translate(-140%, -50%) scale(0.75);
    }
    .slide.next {
        opacity: 0.4;
        transform: translate(40%, -50%) scale(0.75);
    }
    .slide-content {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    .slide-title {
        font-size: 18px;
        font-weight: normal;
    }
    .slide-date {
        font-size: 14px;
        margin-bottom: 3px;
    }
    .slide-more {
        padding: 6px 16px;
        font-size: 14px;
        margin-left: 10px;
    }
}

/* ----- スライダー（スマホ） ----- */
@media (max-width: 480px) {
    .slider-container {
        padding: 0 10px;
    }
    .slide {
        width: 96%;
    }
    .slide.prev {
        transform: translate(-130%, -50%) scale(0.8);
    }
    .slide.next {
        transform: translate(30%, -50%) scale(0.8);
    }
    .slide-title {
        font-size: 16px;
    }
    .slide-content {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    .slide-date {
        font-size: 14px;
        margin-bottom: 2px;
    }
}

/* ============================================
   5. お知らせセクション
   ============================================ */

.news-section {
    padding: 50px 0 10px;
    background-color: #fff;
}

.section-title-green {
    font-size: 20px;
    color: #2d8659;
    font-weight: normal;
    margin-bottom: 30px;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}
.section-title-green b{
    font-weight: normal;
    border-top: 2px solid #2d8659;
    padding-top: 10px;
}
.section-title-green span{
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 0.15em;
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px 20px;
    margin-bottom: 40px;
}

.news-card {
    overflow: hidden;
}


.news-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #f5f5f5;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.news-date {
    font-size: 14px;
    color: #87b99d;
    margin-top: 12px;
    letter-spacing: 0.07em;
}

.news-title {
    font-size: 14px;
    font-weight: normal;
    color: #333;
    margin: 0 0 12px;
}

.no-news {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}

/* ----- お知らせグリッド（スマホ） ----- */
@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .btn-more {
        padding: 12px 30px;
        font-size: 14px;
    }
}


/* ============================================
   7. ボタン
   ============================================ */

.more-button-container {
    text-align: center;
    margin: 40px 0;
}

.btn-more {
    padding: 0;
    background-color: #fff;
    border: 1px solid #333;
    color: #333;
    font-size: 13px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: normal;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}

.btn-more + .btn-more{
    margin-top: 15px;
}

.btn-more a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px 30px;
    color: inherit;
    text-decoration: none;
}

.btn-more::after {
    content: '\02192';
    font-size: 14px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 12px;
}

.btn-more:hover {
    background-color: #f9f9f9;
    border-color: #2d8659;
    color: #2d8659;
}

.btn-more:hover::after {
    transform: translateX(5px);
}

/* 外部リンクボタン */
.btn-more.blank::after {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transform: none;
    position: absolute;
    right: 25px;
}

.btn-more.blank:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232d8659' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
    transform: none;
}


/* ============================================
   8. About Schoolセクション
   ============================================ */

.about-section {
    padding: 60px 0 30px;
    background-color: #f0f8f3;
}

.section-title-center {
    text-align: center;
    margin-bottom: 40px;
}

.subtitle-en {
    font-size: 24px;
    color: #2d8659;
    padding-bottom: 5px;
    border-bottom: 1px dashed #2d8659;
}
.title-ja {
    display: block;
    font-size: 14px;
    color: #2d8659;
}

.about-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-description {
    margin: 0 auto 40px;
}

.about-description p {
    text-align: justify;
}

/* ----- 特徴カード ----- */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: #bedccd;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    padding: 0 15px 0 0;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 120px;
    height: 94px;
    flex-shrink: 0;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    flex-grow: 1;
}

.feature-content h3 {
    font-size: 16px;
    color: #2d8659;
    margin-bottom: 5px;
    font-weight: normal;
    letter-spacing: 0.075em;
    line-height: 1.2;
}
.feature-content h3 span{
    color: #fff;
    font-style: italic;
    font-size: 0.75em;
}
.feature-content p {
    font-size: 12px;
    color: #2d8659;
    margin: 4px 0;
}

.btn-arrow {
    background-color: white;
    color: #2d8659;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.btn-arrow:hover {
    background-color: #236b47;
}

/* ----- スクール情報 ----- */
.shop-section {
    max-width: 860px;
    margin: -25px auto 0;
    padding: 60px 0 40px;
    background-color: #bedccd;
    border-radius: 15px 15px 0 0;
    text-align: center;
}
.shop-section p{
}
.shop-section img{
    width: 200px;
    height: auto;
    margin-top: 20px;
}

/* ============================================
   9. フッター
   ============================================ */
 
.footer {
}
 
/* ----- Instagram セクション ----- */
.footer-instagram {
    background-color: #fff;
    text-align: center;
    padding: 28px 20px;
    position: relative;
}
.footer-instagram-title {
    font-size: 14px;
    color: #2d8659;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.footer-instagram-title span{
    font-weight: bold;
}
.footer-instagram-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer-instagram-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2d8659;
    transition: opacity 0.3s ease;
}
.footer-instagram-item:hover {
    opacity: 0.7;
}
.footer-instagram-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #2d8659;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d8659;
    flex-shrink: 0;
}
.footer-instagram-icon svg {
    width: 18px;
    height: 18px;
}
.footer-instagram-name {
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
    color: #2d8659;
}
 
/* ----- フッター本体 ----- */
.footer-main {
    background: linear-gradient(135deg, #236b47 0%, #2d8659 60%, #35966a 100%);
    padding: 50px 0 30px;
    clip-path: ellipse(200% 100% at 50% 100%);
}
 
.footer-main-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}
 
.footer-logo img {
    height: auto;
    width: 240px;
    max-width: 60vw;
    filter: brightness(0) invert(1);
}

.footer-btns {
    display: flex;
    gap: 12px;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 10px 10px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
 
.footer-contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    opacity: 1;
}
 
.footer-contact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    transition: transform 0.3s ease;
}
 
.footer-contact-btn:hover .footer-contact-arrow {
    transform: translateX(3px);
}
 
/* ----- フッターナビ ----- */
.footer-nav {
    text-align: center;
    margin-bottom: 20px;
    font-size: 11px;
}
 
.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
 
.footer-nav a:hover {
    color: #fff;
}
 
.footer-nav-sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
}



/* ----- コピーライト ----- */
.footer-bottom {
    text-align: center;
    padding-top: 0;
    border-top: none;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}


/* ----- About（タブレット・スマホ） ----- */
@media (max-width: 768px) {
    .info-title {
        font-size: 24px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .school-info {
        padding: 30px 20px;
    }
}


/* ============================================
   11. その他のユーティリティ
   ============================================ */

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

/* リンク全般のデフォルトスタイル */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

p a {
    color: #2d8659;
    text-decoration: underline;
}


/* ============================================
   12. PC用レイアウト（サイドメニュー＋スマホフレーム）
   ============================================ */

/* ----- PC背景・サイドメニュー（スマホでは非表示） ----- */
.pc-background {
    display: none;
}

.pc-side-menu {
    display: none;
}

/* ----- スマホフレーム（スマホではそのまま通常表示） ----- */
.sp-frame {
    width: 100%;
}

/* ----- PC表示（769px以上） ----- */
@media (min-width: 769px) {

    /* === 背景：左半分を薄緑ベタ塗り === */
    .pc-background {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        z-index: 0;
        background-color: #d2e7dd;
    }

    /* === 左サイドメニュー === */
    .pc-side-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 50%;
        height: 100vh;
        z-index: 1;
        padding: 40px 30px;
    }

    .pc-side-logo {
        margin-bottom: 30px;
        width: 100%;
        max-width: 320px;
    }

    .pc-side-logo img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .pc-side-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 400px;
    }

    .pc-side-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #2d8659;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        padding: 14px 20px;
        background: none;
        border: 1.5px solid #2d8659;
        border-radius: 50px;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .pc-side-link:hover {
        background: #2d8659;
        color: #fff;
        opacity: 1;
    }

    .pc-side-link:hover .pc-side-sep {
        color: rgba(255, 255, 255, 0.5);
    }

    .pc-side-link:hover .pc-side-link-arrow {
        transform: translateX(3px);
        color: #fff;
    }

    .pc-side-link-text {
        flex: 1;
    }

    .pc-side-link-arrow {
        font-size: 14px;
        color: #2d8659;
        flex-shrink: 0;
        transition: all 0.3s ease;
        margin-left: 10px;
    }

    .pc-side-sep {
        color: rgba(45, 134, 89, 0.35);
        margin: 0 6px;
        font-weight: 400;
        font-size: 12px;
    }

    .pc-side-copyright {
        margin-top: 30px;
        font-size: 11px;
        color: #2d8659;
        opacity: 0.6;
        width: 100%;
        max-width: 320px;
    }

    /* === 右半分にコンテンツ直表示 === */
    .sp-frame {
        position: relative;
        width: 50%;
        max-width: none;
        margin: 0 0 0 50%;
        background-color: #fff;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
        min-height: 100vh;
        z-index: 2;
    }

    /* ヘッダー：PCではロゴ非表示 */
    .header {
        position: sticky;
        top: 0;
        border-radius: 0;
    }

    .header .logo {
        display: none;
    }

    /* ハンバーガー・体験ボタン：PC非表示 */
    .header-buttons {
        display: none;
    }

    /* ナビメニュー：PCでは不要（左メニューがある） */
    .nav-menu {
        display: none !important;
    }

    /* スライダー */
    .slider-container {
        padding: 0 20px;
    }

    .slide {
        width: 90%;
    }

    .slide.prev {
        transform: translate(-140%, -50%) scale(0.8);
        opacity: 0.3;
    }

    .slide.next {
        transform: translate(40%, -50%) scale(0.8);
        opacity: 0.3;
    }

    .slide-title {
        font-size: 18px;
    }

    .slide-content {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .slide-more {
        padding: 8px 18px;
        font-size: 14px;
        margin-left: 10px;
    }

    /* お知らせグリッド2列 */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    /* フッター */
    .footer {
        margin-top: 0;
        border-radius: 0;
    }

    .footer-nav {
        font-size: 14px;
    }

    /* feature-cards */
    .feature-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    /* container */
    .container {
        max-width: 600px;
        padding: 5px 30px 15px;
    }

    /* ボタン */
    .btn-more {
        max-width: 340px;
    }

    /* About */
    .about-description {
        padding: 0 10px;
    }

    .school-info {
        margin: 30px auto 20px;
        padding: 25px 15px;
    }

    .info-title {
        font-size: 24px;
    }

    /* ロゴ */
    .logo img {
        width: 60%;
        max-width: 280px;
    }

    /* シングルページ：PCではアイキャッチ非表示 */
    .single-thumbnail {
        display: none;
    }
}

/* ----- 大画面（1200px以上） ----- */
@media (min-width: 1200px) {
    .container {
        max-width: 640px;
        padding: 5px 40px 15px;
    }

    .pc-side-logo img {
        max-width: 420px;
    }

    .pc-side-link {
        font-size: 16px;
        padding: 16px 24px;
    }
}

/* ----- 超大画面（1600px以上） ----- */
@media (min-width: 1600px) {
    .container {
        max-width: 680px;
    }
}

/* ============================================
   スクロールフェードインアニメーション
   ============================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}



/* ============================================
   10. ページヘッダー
   ============================================ */

/* ============================================
   10. ページヘッダー
   ============================================ */
 
.page-header-section {
    background: linear-gradient(135deg, #236b47 0%, #2d8659 60%, #35966a 100%);
    padding: 38px 0 48px;
    text-align: center;
    clip-path: ellipse(120% 100% at 50% 0%);
    position: relative;
    margin-bottom: 20px;
}
 
.page-header-section::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 1.5px;
    background: #fff;
    opacity: 0.5;
}
 
.page-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    line-height: 1;
    margin-top: 10px;
    gap: 5px;
}
 
.page-title-ja {
    font-size: 21px;
    font-weight: normal;
    letter-spacing: 0.1em;
}
 
.page-title-en {
    font-size: 10px;
    font-weight: normal;
    letter-spacing: 0.25em;
    order: -1;
    color: #fff;
    opacity: 0.7;
}

/* ============================================
   11. アーカイブ（一覧）ページ
   ============================================ */

.archive-section {
    padding: 30px 0 40px;
}

.archive-card {
    margin-bottom: 16px;
}

.archive-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 14px;
    align-items: stretch;
    padding-bottom: 16px;
    border-bottom: 1px dashed #ddd;
}

.archive-card-image {
    position: relative;
    width: 55%;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

.archive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.archive-card:hover .archive-card-image img {
    transform: scale(1.03);
}

/* 右側の情報エリア */
.archive-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    padding: 2px 0;
}

.archive-card-category {
    display: inline-block;
    padding: 4px 11px;
    background: #f0f8f3;
    border: 0px solid #2d8659;
    border-radius: 50px;
    font-size: 11px;
    color: #2d8659;
    font-weight: 500;
    line-height: 1.4;
    align-self: flex-start;
    margin-bottom: 6px;
}

.archive-card:hover .archive-card-category {
    background: #2d8659;
    color: #fff;
}

.archive-card-date {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.05em;
    margin-top: auto;
    text-align: right;
}

.archive-card-title {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.6;
    color: #333;
}

.archive-card:hover .archive-card-title {
    color: #2d8659;
}


/* ----- ページネーション ----- */

.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination .page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0;
}

.pagination .page-numbers li {
    display: inline-block;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers li a:hover {
    background-color: #2d8659;
    border-color: #2d8659;
    color: #fff;
}

.pagination .page-numbers li span.current {
    background-color: #2d8659;
    border-color: #2d8659;
    color: #fff;
}


/* ============================================
   13. パンくずリスト
   ============================================ */

.breadcrumb {
    padding: 4px 0px 4px 20px;
    margin-top: 20px;
    border-top: 2px solid #2d8659;
    border-bottom: 2px solid #2d8659;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #2d8659;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.breadcrumb-list::-webkit-scrollbar {
    display: none;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.breadcrumb-list li + li::before {
    content: '›';
    margin: 0 8px;
    color: #2d8659;
}

.breadcrumb-list a {
    color: #2d8659;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: #2d8659;
}


/* ============================================
   14. シングル（詳細）ページ
   ============================================ */

.single-article {
    padding: 0 0 40px;
}

/* ----- アイキャッチ（全幅・正方形） ----- */
.single-thumbnail {
    margin-bottom: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.single-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ----- 記事ヘッダー（緑背景） ----- */
.single-header-wrap {
    background: linear-gradient(135deg, #236b47 0%, #2d8659 60%, #35966a 100%);
    padding: 20px 20px 40px;
    margin-bottom: 30px;
    clip-path: ellipse(200% 100% at 50% 0%);
}
 

.single-header-wrap .single-thumbnail {
    margin-bottom: 15px;
}

.single-header {
    margin-bottom: 0;
    padding-top: 0;
}

.single-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 10px;
}

.single-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-meta time {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.single-category {
    display: inline-block;
    padding: 5px 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-size: 11px;
    color: #fff;
    background: none;
}

/* ----- 記事本文 ----- */
.single-content {
    line-height: 1.9;
    font-size: 15px;
    color: #444;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.single-content p {
    margin-bottom: 1.5em;
}

.single-content img {
    max-width: 100%;
    height: auto;
}

.single-content h2 {
    font-size: 20px;
    font-weight: bold;
    color: #2d8659;
    margin: 2em 0 1em;
    padding-bottom: 8px;
    border-bottom: 2px solid #2d8659;
}

.single-content h3 {
    font-size: 17px;
    font-weight: bold;
    color: #2d8659;
    margin: 1.5em 0 0.8em;
}

.single-content h4 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 2em 0 0.5em;
}

.single-content strong {
    background-color: #e6f1ea;
    font-weight: normal;
}

.single-content a {
    color: #2d8659;
    text-decoration: underline;
}

.single-content blockquote {
    padding: 15px 20px;
    margin: 1.5em 0;
    background: #f9f9f9;
    border-left: 4px solid #2d8659;
    color: #666;
}

.single-content .mokuji {
    padding: 15px 20px 15px 35px;
    margin: 2em 0 1.5em;
    background: #f9f9f9;
    color: #666;
}

.single-content .box{
    padding: 15px 20px;
    margin: 1.5em 0;
    border: 1px solid #2d8659;
}

.single-content ul,
.single-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.single-content ul li {
    list-style-type: disc;
}

.single-content li {
    margin-bottom: 0.5em;
}

/* PDFボタン */
.single-content a.pdf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #fff;
    border: 1.5px solid #2d8659;
    border-radius: 50px;
    color: #2d8659;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 1.5em auto;
    max-width: 320px;
}
 
.single-content a.pdf-btn::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232d8659' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='12' y1='18' x2='12' y2='12'/%3E%3Cline x1='9' y1='15' x2='12' y2='18'/%3E%3Cline x1='15' y1='15' x2='12' y2='18'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}
 
.single-content a.pdf-btn:hover {
    background: #2d8659;
    color: #fff;
}
 
.single-content a.pdf-btn:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='12' y1='18' x2='12' y2='12'/%3E%3Cline x1='9' y1='15' x2='12' y2='18'/%3E%3Cline x1='15' y1='15' x2='12' y2='18'/%3E%3C/svg%3E");
}

.single-content a.pdf-btn + p{
    text-align: center;
}
 

/* 店舗リストテーブル */
.single-content table.shoplist {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 1.5em 0;
}

.single-content table.shoplist th,
.single-content table.shoplist td {
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

.single-content table.shoplist th {
    padding: 12px 0 12px 5px;
    width: 60px;
    color: #2d8659;
    white-space: nowrap;
    font-size: 14px;
    font-weight: normal;
}

.single-content table.shoplist td{
    padding: 12px 0 12px 15px;
}

.single-content table.shoplist td a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-content table.shoplist td a:hover {
    color: #2d8659;
    border-bottom-color: #2d8659;
}

/* 画像ギャラリー共通 */
.image-gallery {
    position: relative;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 1.5em 0 0;
}

.image-gallery::-webkit-scrollbar {
    display: none;
}

.image-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

h3 + .image-gallery,
h4 + .image-gallery{
    margin: 0.5em 0 0;
}

/* デフォルト：全幅1枚表示（詳細ページ用） */
.image-gallery:not(.image-gallery--peek) {
    gap: 0;
}

.image-gallery:not(.image-gallery--peek) .image-gallery-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

/* チラ見せタイプ（カード内・カリキュラム用） */
.image-gallery--peek {
    gap: 10px;
    padding: 0 20px;
    scroll-snap-stop: always;
}

.image-gallery--peek .image-gallery-item {
    flex: 0 0 75%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-radius: 8px;
    overflow: hidden;
}

.image-gallery--peek .image-gallery-item img {
    border-radius: 8px;
}

/* ギャラリーコントロール（矢印＋ドット） */
.image-gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 12px 0 1.5em;
}

.image-gallery-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.image-gallery-btn:hover {
    border-color: #2d8659;
    color: #2d8659;
}

.image-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.image-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.image-gallery-dot.is-active {
    background-color: #2d8659;
}
.single-content li:last-child {
    margin-bottom: 0;
}


/* ----- 前後の記事ナビゲーション ----- */

.single-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.single-nav-prev,
.single-nav-next {
    flex: 1;
    max-width: 200px;
}

.single-nav-prev a,
.single-nav-next a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.single-nav-prev a:hover,
.single-nav-next a:hover {
    border-color: #2d8659;
    color: #2d8659;
}


/* ----- カテゴリータグ共通 ----- */

.tag-section {
    margin-top: 10px;
    padding: 25px 20px 10px;
    border-top: 1px solid #2d8659;
}

.tag-title {
    font-size: 15px;
    font-weight: bold;
    color: #2d8659;
    margin-bottom: 15px;
   }

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-pill:hover {
    border-color: #2d8659;
    color: #2d8659;
}

.tag-pill.is-active {
    background-color: #2d8659;
    border-color: #2d8659;
    color: #fff;
}




/* ============================================
   15. 単独ページ
   ============================================ */


.page-content {
    line-height: 1.9;
    font-size: 15px;
    color: #444;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-content p {
    margin-bottom: 1.5em;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.page-content h2 {
    font-size: 20px;
    font-weight: normal;
    color: #2d8659;
    margin: 2.5em 0 1em;
    padding: 12px 0 0;
    border-top: 2px solid #2d8659;
    text-align: center;
    letter-spacing: 0.05em;
}

.page-content h3 {
    font-size: 17px;
    font-weight: bold;
    color: #2d8659;
    margin: 2em 0 0.8em;
    letter-spacing: 0.05em;
}

.page-content h4 {
    font-size: 18px;
    font-weight: normal;
    font-style: italic;
    color: #2d8659;
    margin: 1.5em 0 1.5em;
    text-align: center;
    letter-spacing: 0.05em;
}

.page-content h5 {
    font-size: 18px;
    font-weight: normal;
    font-style: italic;
    color: #2d8659;
    margin: 4em 0 1.5em;
    text-align: center;
    letter-spacing: 0.05em;
}

.page-content strong {
    background-color: #e6f1ea;
    font-weight: normal;
}

.page-content .wrapper{
    margin: 0 0 4em;
}

.page-content p < a {
    color: #2d8659;
    text-decoration: underline;
}

.page-content blockquote {
    padding: 15px 20px;
    margin: 1.5em 0;
    background: #f9f9f9;
    border-left: 4px solid #2d8659;
    color: #666;
}

.page-content .mokuji {
    padding: 15px 20px 15px 35px;
    margin: 2em 0 1.5em;
    background: #f9f9f9;
    color: #666;
}

.page-content .box{
    padding: 15px 20px;
    margin: 1.5em 0;
    border: 1px solid #2d8659;
}
.page-content .box p:last-child{
    margin: 0 0;
}


.page-content ul,
.page-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.page-content ul li {
    list-style-type: disc;
}

.page-content li {
    margin-bottom: 0.5em;
}

/* 店舗リストテーブル */
.page-content table.shoplist {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 1.5em 0;
}

.page-content table.shoplist th,
.page-content table.shoplist td {
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

.page-content table.shoplist th {
    padding: 12px 0 12px 5px;
    width: 60px;
    color: #2d8659;
    white-space: nowrap;
    font-size: 14px;
    font-weight: normal;
}

.page-content table.shoplist td{
    padding: 12px 0 12px 15px;
}

.page-content table.shoplist td a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-content table.shoplist td a:hover {
    color: #2d8659;
    border-bottom-color: #2d8659;
}

/* スクールについて */

/* ----- コーディネートカード ----- */

.coordinate-card {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px dashed #ddd;
}

.coordinate-card:last-of-type {
    border-bottom: none;
}

.coordinate-number {
    font-size: 14px;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.coordinate-number span {
    font-size: 22px;
    font-weight: bold;
    color: #2d8659;
    margin-left: 2px;
}

.coordinate-body {
    padding: 0 5px;
}

.coordinate-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.coordinate-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.coordinate-item-label {
    flex-shrink: 0;
    background: #2d8659;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
    margin-top: 2px;
}

.coordinate-item strong {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background: none;
}

.coordinate-item small {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 2px;
}

.coordinate-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.coordinate-card .image-gallery {
    margin: 0 0 15px;
}

.coordinate-card .image-gallery-controls {
    margin: 8px 0 10px;
}

/* ----- おすすめリスト ----- */

.recommend-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2em;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.recommend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 14px;
    color: #333;
}

.recommend-item:last-child {
    border-bottom: none;
}

.recommend-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #2d8659;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* ----- 作品カード ----- */

.work-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 2em;
}

.work-card {
    display: flex;
    gap: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    align-items: center;
}

.work-card img {
    width: 136px;
    height: 182px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.work-card-body {
    flex: 1;
}

.work-card-body h3 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0 0 6px;
}

.work-card-technique {
    font-size: 14px;
    font-weight: bold;
    color: #2d8659;
    margin-bottom: 3px;
}

.work-card-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
}

/* 作品カード 2列 */
.work-cards--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* 作品カード 縦型 */
.work-card--vertical {
    flex-direction: column;
    align-items: stretch;
}

.work-card--vertical img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.work-card--vertical .work-card-body {
    text-align: center;
    padding-top: 5px;
}

/* ----- 体験レッスン バナー ----- */

.trial-banner {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    margin-bottom: 2em;
}

.trial-banner-header {
    background: #2d8659;
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

.trial-banner-cols {
    display: flex;
    background: #fff;
}

.trial-banner-col {
    flex: 1;
    text-align: center;
    padding: 18px 6px;
    border-right: 1px solid #eee;
}

.trial-banner-col:last-child {
    border-right: none;
}

.trial-banner-label {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 6px;
}

.trial-banner-value {
    font-size: 14px;
    color: #333;
}

.trial-banner-value span {
    font-size: 26px;
    font-weight: bold;
    color: #2d8659;
}

.trial-banner-note {
    font-size: 14px;
    color: #999;
    display: block;
    margin-top: 4px;
}

.trial-banner-footer {
    background: #f9f9f9;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #999;
}

/* ----- 予約フローステップ ----- */

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 2em;
}

.flow-step {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
}

.flow-step-number {
    font-size: 14px;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.flow-step-number span {
    font-size: 22px;
    font-weight: bold;
    color: #2d8659;
    margin-left: 2px;
}

.flow-step img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #eee;
}

.flow-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5em;
}

.flow-step-note {
    font-size: 14px;
    color: #999;
}

.page-content .prof{
    text-align: center;
    margin-bottom: 0.8em;
}
.page-content .prof img{
    width: 60vw;
    max-width: 360px;
    max-height: 520px;
}

/* ----- コースカード ----- */

.course-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2em;
}

.course-card {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
}

h4.course-card-title {
    color: #2d8659;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card-title span {
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    background: #2d8659;
    padding: 2px 10px;
    border-radius: 50px;
}

.course-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

.course-card .image-gallery {
    margin: 20px -20px 0;
    padding: 0 15px;
}

.course-card .image-gallery-controls {
    margin: 8px 0 0;
    padding: 0 0 15px;
}

.course-card p + .image-gallery {
    margin-top: 20px;
}

.course-card-link {
    display: block;
    text-align: center;
    padding: 12px 0 0;
    margin-top: 5px;
    font-size: 14px;
    color: #2d8659;
    text-decoration: none;
    border-top: 1px dashed #e0e0e0;
    transition: all 0.3s ease;
}

.course-card-link:hover {
    background: #f0f8f3;
}

/* ----- 料金テーブル ----- */

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 1.5em 0;
}

.price-table thead th {
    background: #2d8659;
    color: #fff;
    font-weight: normal;
    padding: 10px 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
}

.price-table thead th:first-child {
    border-radius: 6px 0 0 0;
}

.price-table thead th:last-child {
    border-radius: 0 6px 0 0;
}

.price-table tbody th {
    background: #f0f8f3;
    color: #2d8659;
    font-weight: bold;
    padding: 12px 10px;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
}

.price-table tbody td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
    vertical-align: middle;
}

.price-table tbody td small {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 3px;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

/* ----- 料金カード ----- */

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2em;
}

.price-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.price-card-header {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #2d8659;
    display: inline-block;
    padding: 4px 18px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.price-card-amount {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

.price-card-amount span {
    font-size: 28px;
    font-weight: bold;
    color: #2d8659;
    letter-spacing: 0.02em;
}

.price-card-amount small {
    font-size: 14px;
    color: #999;
    margin-left: 3px;
}

.price-card-note {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ----- プラン選択カード ----- */

.plan-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.plan-card {
    border: 2px solid #7ca43c;
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.plan-card:first-child {
    border-color: #2d8659;
}

.plan-card-badge {
    font-size: 14px;
    color: #fff;
    background: #2d8659;
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.plan-card:last-child .plan-card-badge {
    background: #7ca43c;
}

.plan-card-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.plan-card-price {
    font-size: 14px;
    color: #333;
}

.plan-card-price span {
    font-size: 30px;
    font-weight: bold;
    color: #2d8659;
}
.plan-card:last-child .plan-card-price span {
    color: #7ca43c;
}

.plan-card-price small {
    font-size: 13px;
    color: #999;
}

.plan-card-desc {
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 0;
}

.plan-applies {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-bottom: 2em;
}

/* ----- 費用例 ----- */

.cost-example {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 2em;
}

.cost-example-title {
    font-size: 14px;
    font-weight: bold;
    color: #2d8659;
    margin-bottom: 15px;
    text-align: center;
}

.cost-example-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cost-example-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 15px;
    color: #333;
}

.cost-example-row:nth-child(3){
    border-bottom: none;
}

.cost-example-total {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #2d8659;
    margin-top: 5px;
    padding-top: 12px;
    font-weight: bold;
}

.cost-example-total b {
    font-size: 22px;
    color: #2d8659;
}

.cost-example-note {
    font-size: 14px;
    color: #999;
    margin-top: 12px;
    margin-bottom: 0;
}

.page-content .prof{
    text-align: center;
    margin-bottom: 0.8em;
}
.page-content .prof img{
    width: 60vw;
    max-width: 360px;
    max-height: 520px;
}


/* ----- レスポンシブ：アーカイブ・シングル ----- */

@media (max-width: 480px) {
    .page-title-ja {
        font-size: 18px;
    }

    .archive-card-image {
        width: 45%;
    }

    .archive-card-title {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }

    .single-title {
        font-size: 18px;
    }

    .single-content {
        font-size: 14px;
    }
}

/* ============================================
   店舗一覧ページ
   ============================================ */

/* ----- 地域ジャンプナビ ----- */

.region-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 2em;
}

.region-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border: 1px solid #2d8659;
    border-radius: 50px;
    color: #2d8659;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.region-nav-item:hover {
    background: #2d8659;
    color: #fff;
}

.region-nav-item span {
    font-size: 14px;
    opacity: 0.6;
}

/* ----- 地域ブロック ----- */

.shop-region {
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    margin-bottom: 12px;
    overflow: hidden;
}

.shop-region-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: background 0.3s ease;
}

.shop-region-header:hover {
    background: #f9f9f9;
}

.shop-region-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d8659;
}

.shop-region-count {
    font-size: 14px;
    font-weight: normal;
    color: #999;
}

.shop-region-toggle {
    font-size: 20px;
    color: #2d8659;
    transition: transform 0.3s ease;
    line-height: 1;
}

.shop-region.is-open .shop-region-toggle {
    transform: rotate(45deg);
}

.shop-region-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease;
}

.shop-region.is-open .shop-region-body {
    padding: 0 20px 20px;
}

/* ----- 県名 ----- */

.shop-pref {
    margin-bottom: 15px;
}

.shop-pref:last-child {
    margin-bottom: 0;
}

.page-content h3.shop-pref-name {
    font-size: 14px;
    font-weight: bold;
    color: #2d8659;
    padding: 8px 0 ;
    border-bottom: 1px solid #2d8659;
    margin-bottom: 0;
}

/* ----- 店舗リンク ----- */

.shop-list {
    display: flex;
    flex-direction: column;
}

.shop-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px dashed #eee;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.shop-item:last-child {
    border-bottom: none;
}

.shop-item:hover {
    color: #2d8659;
}

.shop-item-name {
    font-size: 14px;
    display: flex;
    align-items: baseline;
    gap: 0;
    flex-wrap: wrap;
}

.shop-item-brand {
    font-size: 11px;
    color: #333;
    margin-right: 3px;
}

.shop-item-arrow {
    font-size: 13px;
    color: #999;
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.shop-item:hover .shop-item-arrow {
    color: #2d8659;
    transform: translateX(3px);
}

/* ----- NEWバッジ ----- */

.badge-new {
    display: inline-block;
    background: #fff;
    color: #2d8659;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid #2d8659;
    letter-spacing: 0.05em;
    line-height: 1.4;
    vertical-align: middle;
}