@charset "utf-8";

/* ============================================
   基本設定（既存サイトのフォントに合わせる）
============================================ */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

.noko-page {
    margin: 0;
    padding: 0;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #4a3a2a;
    background: #fff;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
}

.noko-page .en {
    font-family: 'Oswald', sans-serif;
}

.noko-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.noko-page a {
    color: inherit;
    text-decoration: none;
}

.noko-page ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ============================================
   ヘッダー (pptx image2.jpg を再現)
============================================ */
.noko-page .header {
    background: #FAF3E3;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.noko-page .header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.noko-page .logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    position: relative;
    padding: 0 30px;
}

.noko-page .logo .sub {
    font-size: 1.1rem;
    color: #6b5a3e;
    font-weight: bold;
}

.noko-page .logo .main {
    font-size: 2.7rem;
    font-weight: bold;
    color: #f5b042;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 0 #fff;
}

.noko-page .logo .main .plus { color: #ee7373; }
.noko-page .logo .main .noko { color: #7cb56b; }

.noko-page .logo::before,
.noko-page .logo::after {
    content: "❀";
    position: absolute;
    font-size: 1.75rem;
}
.noko-page .logo::before {
    content: "❀";
    color: #ee7373;
    left: 0;
    top: 4px;
    transform: rotate(-15deg);
}
.noko-page .logo::after {
    content: "❀";
    color: #f5b042;
    right: 0;
    bottom: 4px;
    transform: rotate(15deg);
}

.noko-page .nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.noko-page .nav ul {
    display: flex;
    gap: 28px;
}

.noko-page .nav ul li a {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4a3a2a;
    position: relative;
    padding: 4px 0;
}

.noko-page .nav ul li a.active,
.noko-page .nav ul li a:hover {
    color: #f5b042;
}

.noko-page .nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    background: #f5b042;
    border-radius: 2px;
}

.noko-page .contact-btn {
    background: #f5b5c0;
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 3px 0 #e08fa0;
}

.noko-page .contact-btn::before { content: "✉ "; }

.noko-page .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: #4a3a2a;
}

/* ============================================
   ヒーロー (pptx: 1.jpg 背景 + キャッチ + 見学受付バッジ)
============================================ */
.noko-page .hero {
    position: relative;
    background: #fff;
    padding: 150px 0;
    padding-top: 0px;
}

.noko-page .hero-wrap {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

.noko-page .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/noko_img/1.jpg");
    background-size: cover;
    background-position: center;
}

.noko-page .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(250, 243, 227, 0.15);
}

.noko-page .hero-logo {
    display: block;
    width: 90%;
    max-width: 450px;
    height: auto;
    margin: 0 auto 40px;
}

.noko-page .hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 5%;
    max-width: 850px;
    width: 90%;
    margin: 0 auto;
    background: rgba(250, 243, 227, 0.85);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.noko-page .hero-catch .accent {
    color: #f5b042;
}

.noko-page .hero-catch {
    display: inline-block;
    font-size: 3.6rem;
    font-weight: bold;
    color: #409d24;
    margin: 0;
    line-height: 1.45;
    position: relative;
    z-index: 2;
    text-shadow:
        0 0 10px #FAF3E3,
        0 0 6px #FAF3E3,
        2px 2px 0 #fff,
        -2px -2px 0 #fff,
        2px -2px 0 #fff,
        -2px 2px 0 #fff;
}

.noko-page .hero-rainbow {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: -30px auto -40px;
    opacity: 0.75;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.noko-page .hero-title {
    font-size: 3.6rem;
    font-weight: bold;
    color: #4a3a2a;
    margin: -50px 0 28px;
    line-height: 1.45;
    position: relative;
    z-index: 2;
    text-shadow:
        0 0 10px #FAF3E3,
        0 0 6px #FAF3E3,
        2px 2px 0 #fff,
        -2px -2px 0 #fff,
        2px -2px 0 #fff,
        -2px 2px 0 #fff;
}

.noko-page .hero-desc {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: bold;
    color: #4a3a2a;
    text-align: center;
    margin: 0;
    padding: 0 5%;
    max-width: 850px;
    width: 90%;
    text-shadow:
        0 0 10px #FAF3E3,
        0 0 6px #FAF3E3,
        1px 1px 0 #fff,
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff;
}

.noko-page .hero-badge {
    position: absolute;
    top: 450px;
    right: -2%;
    width: 250px;
    height: 250px;
    background: #3f77be;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.65rem;
    z-index: 10;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
}

/* ============================================
   共通セクション
============================================ */
.noko-page .section {
    padding: 80px 5%;
    position: relative;
}

.noko-page .section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.noko-page .section-ttl {
    text-align: center;
    margin-bottom: 50px;
}

.noko-page #info .section-ttl {
    padding-top: 80px;
}

.noko-page .section-ttl h2 {
    font-size: 2.7rem;
    font-weight: bold;
    color: #4a3a2a;
    margin: 0;
    display: inline-block;
}

/* ============================================
   のこの特徴 (2.png 横並び)
============================================ */
.noko-page .features { background: #fff; }

.noko-page .features-detail {
    display: flex;
    flex-direction: row-reverse;
    gap: 70px;
}

.noko-page .features-illust {
    flex: 0 0 35%;
    text-align: center;
}

.noko-page .features-illust img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
}

.noko-page .features-list {
    flex: 1;
}

.noko-page .features-list .f-item {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px dotted #f5b042;
}
.noko-page .features-list .f-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.noko-page .features-list .f-item h3 {
    font-size: 1.55rem;
    font-weight: bold;
    color: #ee7373;
    margin: 0 0 8px;
    text-align: left;
}

.noko-page .features-list .f-item h3 .bullet {
    color: #f5b042;
    font-size: 1.1rem;
    margin-right: 8px;
}

.noko-page .features-list .f-item p {
    font-size: 1.1rem;
    line-height: 1.95;
    margin: 0 0 10px;
    font-weight: bold;
}
.noko-page .features-list .f-item p:last-of-type {
    margin-bottom: 0;
}

.noko-page .features-list .f-item .tag {
    display: inline-block;
    font-size: 1.1rem;
    color: #6b5a3e;
    background: #FAF3E3;
    padding: 2px 12px;
    border-radius: 999px;
    margin-top: 6px;
    font-weight: bold;
}

/* ============================================
   「のこ」はこんなところ (左=タイトル / 右=カード2点)
============================================ */
.noko-page .place {
    background-color: #ffe4e1;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #FFEFEF), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #FFEFEF), color-stop(.75, #FFEFEF), color-stop(.75, transparent), to(transparent));
    -webkit-background-size: 7px 7px;
}

.noko-page .place-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.noko-page .place-head {
    flex: 0 0 280px;
}

.noko-page .place-head h2 {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #ef7372;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.noko-page .place-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.noko-page .place-card {
    background: #fff;
    border: 3px solid #ef7372;
    border-radius: 24px;
    padding: 36px;
}

.noko-page .place-card .bullet {
    color: #ee7373;
    margin-right: 6px;
}

.noko-page .place-card p {
    font-size: 1.3rem;
    line-height: 2;
    margin: 0 0 14px;
    font-weight: bold;
}
.noko-page .place-card p:last-child { margin-bottom: 0; }

/* ============================================
   設備紹介 (上段3列・下段2列)
============================================ */
.noko-page .equipment {
    background: #fff;
    padding-top: 40px;
}

.noko-page .eq-row {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}
.noko-page .eq-row:last-child { margin-bottom: 0; }

.noko-page .eq-row.row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.noko-page .eq-row.row-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.noko-page .eq-card {
    background: #FAF3E3;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.noko-page .eq-card .eq-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.noko-page .eq-card .eq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noko-page .eq-card .eq-img.no-photo {
    background: linear-gradient(135deg, #ececec, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-weight: bold;
}

.noko-page .eq-card .eq-body {
    padding: 22px 24px;
    flex: 1;
}

.noko-page .eq-card .eq-body h3 {
    font-size: 1.45rem;
    font-weight: bold;
    color: #4a3a2a;
    margin: 0 0 10px;
    text-align: left;
}

.noko-page .eq-card .eq-body h3 .bullet {
    color: #ee7373;
    font-size: 1.1rem;
    margin-right: 6px;
}

.noko-page .eq-card .eq-body p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin: 0;
    font-weight: bold;
}

/* ============================================
   施設情報 (テーブル + 7.jpg 右 + 地図フル幅)
============================================ */
.noko-page #info {
    background-color: #ECECEC;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #F9F9F9), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #F9F9F9), color-stop(.75, #F9F9F9), color-stop(.75, transparent), to(transparent));
    -webkit-background-size: 7px 7px;
    border-top: none;
    padding: 0px 0px 90px;
    width: 100%;
}

.noko-page .info-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.noko-page .info-table {
    flex: 1.2;
    background: #fff;
    border-radius: 24px;
    padding: 30px 40px;
    border: 3px solid #59a6d8;
}

.noko-page .info-table dl {
    display: flex;
    padding: 14px 0;
    border-bottom: 2px dotted #58a7d7;
    margin: 0;
}
.noko-page .info-table dl:last-of-type { border-bottom: none; }

.noko-page .info-table dt {
    width: 35%;
    font-weight: bold;
    color: #58a7d7;
    font-size: 1.1rem;
}

.noko-page .info-table dd {
    width: 65%;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: bold;
}

.noko-page .info-photo {
    flex: 0 0 320px;
}

.noko-page .info-photo img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.noko-page .info-map {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.noko-page .info-map iframe {
    width: 100%;
    height: 500px;
    display: block;
}

/* ============================================
   フッター
============================================ */
.noko-page .footer {
    background: #6fb6e0;
    color: #fff;
    text-align: center;
    padding: 50px 5% 30px;
}

.noko-page .footer .f-logo {
    font-size: 1.85rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.noko-page .footer .f-info {
    font-size: 1.1rem;
    line-height: 1.95;
    margin-bottom: 25px;
}

.noko-page .footer .f-tel {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.noko-page .footer .f-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.noko-page .footer .f-nav a {
    font-size: 1.1rem;
    font-weight: bold;
}

.noko-page .footer .copyright {
    font-size: 1.1rem;
    opacity: 0.8;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   レスポンシブ
============================================ */
@media (max-width: 1024px) {
    .noko-page .hero-title { font-size: 2.9rem; }
    .noko-page .features-detail { gap: 30px; }
    .noko-page .info-photo { flex-basis: 260px; }
    .noko-page h3 { padding: 0 !important; }
}

@media (max-width: 767px) {
    .noko-page .header { padding: 14px 4%; }
    .noko-page .header-inner { flex-wrap: wrap; }
    .noko-page .logo .main { font-size: 1.85rem; }
    .noko-page .logo { padding: 0 22px; }

    .noko-page .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 16px;
        gap: 14px;
    }
    .noko-page .nav.open { display: flex; }
    .noko-page .nav ul {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        text-align: center;
    }
    .noko-page .contact-btn {
        padding: 10px 18px;
        font-size: 1.1rem;
    }
    .noko-page .menu-toggle { display: block; }

    .noko-page .hero { padding-top: 50px; }
    .noko-page .hero-logo { max-width: 280px; }
    .noko-page .hero-wrap { min-height: 0; padding: 30px 4%; }
    .noko-page .hero-content {
        padding: 20px 6%;
        margin: 0 auto;
        width: 100%;
        max-width: none;
    }
    .noko-page .hero-catch { font-size: 2rem; }
    .noko-page .hero-rainbow { max-width: 320px; margin: -10px auto -40px; }
    .noko-page .hero-title { font-size: 2rem; margin-top: 20px; margin-bottom: 10px; }
    .noko-page .hero-desc { font-size: 1.1rem; line-height: 1.95; width: 100%; padding: 0; }
    .noko-page .hero-badge {
        top: auto;
        bottom: -100px;
        right: 20px;
        width: 120px;
        height: 120px;
        font-size: 1.1rem;
    }

    .noko-page .section { padding: 60px 5%; }
    .noko-page .section-ttl { margin-bottom: 20px; }
    .noko-page .section-ttl h2 { font-size: 2rem; }

    .noko-page .features-detail { flex-direction: column; gap: 24px; }
    .noko-page .features-illust { flex: none; width: 100%; }
    .noko-page .features-illust img { max-width: 240px; }

    .noko-page .place-flex { flex-direction: column; gap: 30px; }
    .noko-page .place-head { flex: none; position: static; width: 100%; text-align: center; display: flex; justify-content: center; }
    .noko-page .place-head h2 { font-size: 1.85rem; width: 180px; height: 180px; }
    .noko-page .place-card { padding: 24px; }

    .noko-page .eq-row.row-3,
.noko-page .eq-row.row-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .noko-page .info-flex { flex-direction: column; padding: 5%; }
    .noko-page .info-table { padding: 24px; width: 100%; }
    .noko-page .info-photo { flex-basis: auto; width: 100%; }
    .noko-page .info-table dl { flex-direction: column; padding: 12px 0; }
    .noko-page .info-table dt,
.noko-page .info-table dd { width: 100%; }
    .noko-page .info-table dt { margin-bottom: 4px; }

}
