/*
Theme Name: Arkhe
Theme URI: https://arkhe-theme.com/
Version: 3.12.0
Tested up to: 6.8
Requires at least: 6.0
Requires PHP: 7.0
Description: A very simple theme for production templates. Customize as you like.
Tags: two-columns, one-column, right-sidebar, custom-colors, custom-menu, editor-style, theme-options, block-styles, wide-blocks
Author: LOOS,Inc.
Author URI: https://loos.co.jp/
Text Domain: arkhe
Domain Path: /languages
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/


/* 全体設定 */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.8;
}

html {
  scroll-behavior: smooth;
}


.pcnon{
	display: none;
}

.spnon{
	display: block;
}

/* ヘッダー */
.site-header {
    padding: 20px 40px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img { height: 60px; }
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
.nav-menu a {
    text-decoration: none;
    font-size: 13px;
    color: #444;
    text-align: center;
    display: block;
}
.nav-menu a span {
    display: block;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
}

/* メインビジュアル */
.main-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* NEWS */
.news-section {
    background-color: #802246; /* ボルドー色 */
    padding: 60px 0;
    margin-top: -30px; /* MVに少し被せる場合 */
}
.news-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    background: #f8f8f8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.news-label {
    background: #802246;
    color: #c9a96e; /* ゴールド系 */
    padding: 40px;
    text-align: center;
    min-width: 180px;
}
.news-label h2 { font-size: 32px; letter-spacing: 0.1em; margin: 0;font-weight: normal;}
.news-list {
    flex: 1;
    padding: 30px 40px;
}
.news-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    display: flex;
    gap: 30px;
}
.news-item:last-child { border-bottom: none; }
.news-item .date { color: #888; font-size: 14px; }
.news-item .title { text-decoration: none; color: #333; font-size: 14px; }

/* コンセプト */
.concept-section {
    padding: 100px 20px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.concept-icon { margin-bottom: 20px; }
.concept-icon img { width: 60px; }
.catch-copy {
    color: #802246;
    font-size: 28px;
    margin-bottom: 40px;
    line-height: 1.5;
}
.concept-text p { margin-bottom: 25px; text-align: left; font-size: 15px; }

/* ボタンデザイン（内側に白線） */
.concept-btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.btn-design {
    display: inline-block;
    background-color: #802246;
    color: #fff;
    padding: 20px 50px;
    text-decoration: none;
    position: relative;
    border: 1px solid #802246;
    min-width: 250px;
    transition: 0.3s;
}
.btn-design::after {
    content: "";
    position: absolute;
    top: 4px; left: 4px; right: 4px; bottom: 4px;
    border: 1px solid rgba(255,255,255,0.6);
}
.btn-design:hover { opacity: 0.9; }

/* 縦文字 */
.vertical-text {
    position: absolute;
    right: -100px;
    top: 50px;
    writing-mode: vertical-rl;
    font-size: 80px;
    color: rgba(128, 34, 70, 0.1);
    font-weight: normal;
    letter-spacing: 0.2em;
}

/* 固定お問い合わせ */
.fixed-contact {
    position: fixed;
    right: 0;
    top: 40%;
    background-color: #5d142d;
    color: #fff;
    padding: 20px 10px;
    writing-mode: vertical-rl;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    z-index: 100;
}
.fixed-contact i {
    writing-mode: horizontal-tb;
    font-size: 20px;
}

@media screen and (max-width: 1150px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #f8f8f8;
        z-index: 998;
        transition: 0.4s;
        padding-top: 80px;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        padding-left: 40px;
    }

    .hamburger-menu {
        display: block;
        width: 30px;
        height: 24px;
        position: relative;
        z-index: 999;
        cursor: pointer;
    }
    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 2px;
        background: #802246;
        position: absolute;
        transition: 0.3s;
    }
    .hamburger-menu span:nth-child(1) { top: 0; }
    .hamburger-menu span:nth-child(2) { top: 11px; }
    .hamburger-menu span:nth-child(3) { bottom: 0; }
    
    .hamburger-menu.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
    .hamburger-menu.active span:nth-child(2) { opacity: 0; }
    .hamburger-menu.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }


    .fixed-contact {
        display: none !important;
    }


    .news-container {
        flex-direction: column;
    }
    .concept-btns {
        flex-direction: column;
        align-items: center;
    }
    .vertical-text {
        display: none;
    }
}

.footer-cta {
    display: none;
}

@media screen and (max-width: 768px) {
    .footer-cta {
        display: block;
        position: fixed;
        bottom: -100px;
        left: 0;
        width: 100%;
        background: #802246;
        z-index: 1000;
        transition: bottom 0.5s ease;
    }
    .footer-cta.is-visible {
        bottom: 0;
    }
    .footer-cta a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: #fff;
        text-decoration: none;
        padding: 18px 0;
        font-weight: bold;
        letter-spacing: 0.1em;
    }
}

@media screen and (min-width: 1151px) {
    .hamburger-menu {
        display: none;
    }
}

body {
    font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    color: #333;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

.news-label h2 {
    font-family: "Times New Roman", "Georgia", serif;
    font-size: 32px;
    letter-spacing: 0.1em;
    margin: 0;
}

.catch-copy {
    font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    color: #802246;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-design {
    font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-weight: 600;
}

.vertical-text {
    font-family: "Times New Roman", "Georgia", serif;
}

.school-section {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.school-group {
    margin-bottom: 100px;
}

.school-header {
    text-align: center;
    margin-bottom: 30px;
}

.en-title {
    font-family: "Times New Roman", serif;
    font-size: 60px;
    color: #e5d1d6;
    margin: 0;
    line-height: 1;
	font-weight: normal;
	margin-bottom: 15px;
}

.jp-title {
    font-family: "游明朝", serif;
    font-size: 18px;
    color: #802246;
    margin-top: -15px;
    letter-spacing: 0.2em;
}

.school-flex {
    display: flex;
    gap: 40px;
}

.school-card {
    flex: 1;
    padding: 60px 40px 40px;
    position: relative;
}

.number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Times New Roman", serif;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    z-index: 11;
}

.card-link {
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s;
}

.card-link:hover {
    opacity: 0.9;
}

.card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    min-height: 240px;
}

.school-logo {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-logo img {
    max-width: 80%;
    max-height: 100%;
}

.school-desc {
    font-size: 13px;
    color: #333;
    line-height: 1.8;
    text-align: left;
}

/* 背景グラデーション設定 */
.bg-grad-purple { background: linear-gradient(135deg, #802246 0%, #4a1429 100%); }
.bg-grad-blue { background: linear-gradient(135deg, #4a70d8 0%, #2e4689 100%); }
.bg-grad-green { background: linear-gradient(135deg, #b3d465 0%, #7c9641 100%); }
.bg-grad-light-blue { background: linear-gradient(135deg, #7dc3ee 0%, #4a8db5 100%); }

@media screen and (max-width: 768px) {
    .school-flex {
        flex-direction: column;
        padding: 0 20px;
    }
    .en-title {
        font-size: 40px;
    }
}


/* How to Choose */
.how-to-section {
    padding: 100px 0;
    background-repeat: repeat;
    text-align: center;
}
.how-to-inner {
    max-width: 800px;
    margin: 0 auto;
}
.how-to-illust {
    margin: -20px auto 30px;
}
.how-to-illust img { width: 500px; }
.how-to-box {
    background: #fff;
    border: 2px solid #802246;
    padding: 60px 40px;
    position: relative;
}
.box-title {
    color: #802246;
    font-size: 20px;
    margin-bottom: 30px;
    text-decoration: underline;
    text-underline-offset: 8px;
}
.box-text {
    font-size: 14px;
    text-align: left;
    margin-bottom: 40px;
}

/* BLOG (画面左端に縦文字) */

.blog-wrap{
    position: relative;
}
.blog-section {
    padding: 100px 0;
    position: relative;
    width: 90%;
    background: linear-gradient(to bottom, #f2e7c9 0%, #d4bc7f 100%);
    margin: 100px 0 100px auto;
}
.vertical-blog-text {
    position: absolute;
    left: 20px;
    top: 0;
    writing-mode: vertical-rl;
    font-family: "Times New Roman", serif;
    font-size: 80px;
    color: #ebddba;
    opacity: 0.5;
    letter-spacing: 0.2em;
    padding-bottom: 40px; /* 線のスペースを確保 */
}

.vertical-blog-text::after {
    content: "";
    position: absolute;
    bottom: 120;
    left: 50%; /* 中央に配置 */
    transform: translateX(-50%);
    width: 1px; /* 線の太さ */
    height: 400px; /* 線の長さ */
    background-color: #ebddba;
}
.blog-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.blog-header-icon {
    text-align: center;
    margin-bottom: 40px;
}
.blog-header-icon img { width: 50px; margin-bottom: 15px; }
.blog-header-icon p { font-size: 14px; }

.blog-list {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.blog-item {
    flex: 1;
    background: #fff;
    transition: transform 0.3s;
}
.blog-item:hover { transform: translateY(-5px); }
.blog-item a { text-decoration: none; color: inherit; }
.blog-img img { width: 100%; height: 200px; object-fit: cover; }
.blog-meta { padding: 20px; }
.blog-meta .date { font-size: 12px; color: #999; }
.blog-meta .title { font-size: 14px; margin-top: 10px; height: 3em; overflow: hidden; }

.btn-gold {
    display: inline-block;
    background: #c9a96e;
    color: #fff;
    padding: 15px 80px;
    text-decoration: none;
    border: 1px solid #fff;
    font-weight: 600;
}

/* CONTACT */
.contact-section {
    background-color: #802246;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.contact-title { font-family: "Times New Roman", serif; font-size: 40px; letter-spacing: 0.1em;font-weight: normal;}
.contact-subtitle { font-size: 14px; margin-bottom: 30px; }
.contact-text { font-size: 15px; margin-bottom: 40px; line-height: 2; }
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #802246;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* FOOTER */
.site-footer {
    padding: 60px 0 20px;
    text-align: center;
}
.footer-catch { font-size: 18px; color: #333; margin-bottom: 20px; line-height: 1.5; font-weight: 600; }
.footer-logo img { width: 220px; margin-bottom: 40px; }
.footer-nav {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 40px;
}
.footer-nav a {
    text-decoration: none;
    color: #666;
    font-size: 12px;
    margin: 0 15px;
}
.copyright { font-size: 10px; color: #999; }

/* スマホ調整 */
@media screen and (max-width: 1150px) {
    .vertical-blog-text { display: none; }
}
@media screen and (max-width: 768px) {
    .blog-list { flex-direction: column; padding: 0 20px; }
    .how-to-box { margin: 0 20px; }
.how-to-illust img { width: 300px; }
}

.lower-header {
    background: linear-gradient(135deg, #802246 0%, #4a1429 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}

.lower-header i {
    font-size: 40px;
    color: #c9a96e;
    margin-bottom: 15px;
    display: block;
}

.lower-header h1 {
    font-family: "游明朝", serif;
    font-size: 32px;
    letter-spacing: 0.15em;
    margin: 0;
}

.lower-header span {
    font-family: "Times New Roman", serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.concept-lead {
    text-align: center;
    margin-bottom: 100px;
}

.concept-catch {
    font-family: "游明朝", serif;
    font-size: 28px;
    color: #802246;
    line-height: 1.8;
    margin-bottom: 40px;
text-align: center;
}

.concept-intro-text p {
    font-family: "游明朝", serif;
    margin-bottom: 25px;
    text-align: left;
}

.policy-grid {
    margin-bottom: 100px;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.policy-item.reverse {
    flex-direction: row-reverse;
}

.policy-img {
    flex: 1;
}

.policy-img img {
    width: 100%;
    height: auto;
    box-shadow: 20px 20px 0 #f9f6f1;
}

.policy-txt {
    flex: 1;
}

.policy-txt h3 {
    font-family: "游明朝", serif;
    font-size: 22px;
    color: #802246;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.policy-txt h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #c9a96e;
}

.policy-txt p {
    font-size: 15px;
    line-height: 2;
}

.concept-message {
    background-color: #f9f6f1;
    padding: 60px;
    text-align: center;
}

.message-box p {
    font-family: "游明朝", serif;
    font-size: 16px;
    line-height: 2.2;
    margin-bottom: 20px;
}

.signature {
    margin-top: 40px;
    font-weight: bold;
    color: #802246;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .lower-header { padding: 60px 20px; }
    .concept-catch { font-size: 22px; }
    .policy-item, .policy-item.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .concept-message { padding: 40px 20px; }
}


.section-title-center {
    font-family: "游明朝", serif;
    font-size: 24px;
    color: #802246;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title-center::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: #c9a96e;
}

.synergy-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 100px;
}

.synergy-card {
    flex: 1;
    border: 1px solid #eee;
    background: #fff;
    transition: 0.3s;
}

.synergy-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-head {
    background: #f9f6f1;
    padding: 15px;
    font-size: 13px;
    color: #802246;
    font-weight: bold;
    text-align: center;
}

.card-body {
    padding: 30px 20px;
}

.card-body h4 {
    font-family: "游明朝", serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.method-box {
    text-align: center;
    padding: 40px 20px;
    background: #fdfaf5;
}

.method-box i {
    font-size: 32px;
    color: #c9a96e;
    margin-bottom: 20px;
}

.method-box h4 {
    font-family: "游明朝", serif;
    font-size: 18px;
    color: #802246;
    margin-bottom: 15px;
}

.method-box p {
    font-size: 13px;
    text-align: left;
    line-height: 1.8;
}

.synergy-cta {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.synergy-cta p {
    font-family: "游明朝", serif;
    font-size: 18px;
    margin-bottom: 30px;
}

@media screen and (max-width: 900px) {
    .synergy-cards, .method-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}


.mission-box {
    text-align: center;
    margin-bottom: 80px;
}

.mission-text {
    font-family: "游明朝", serif;
    font-size: 18px;
    line-height: 2.2;
    color: #333;
    margin-top: 30px;
}

.common-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 80px;
    border-top: 2px solid #802246;
}

.common-table th, .common-table td {
    padding: 25px !important;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.common-table th {
    width: 250px;
    background-color: #fdfaf5;
    text-align: left;
    font-family: "游明朝", serif;
    color: #802246;
    vertical-align: top;
}

.common-table td {
    line-height: 1.8;
}

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

.info-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 5px;
}

.info-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #c9a96e;
    font-weight: bold;
}

.map-wrapper {
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.access-notes {
    font-size: 14px;
    color: #666;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .common-table th, .common-table td {
        display: block;
        width: 100%;
        padding: 15px;
    }
    .common-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }
    .mission-text {
        font-size: 16px;
    }
}

.policy-main-title {
    font-family: "游明朝", serif;
    font-size: 22px;
    text-align: center;
    color: #802246;
    margin-bottom: 40px;
}

.policy-lead {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 60px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    font-family: "游明朝", serif;
    font-size: 18px;
    color: #802246;
    border-bottom: 1px solid #c9a96e;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.policy-section p {
    font-size: 15px;
    line-height: 1.8;
}

.policy-list {
    margin-top: 15px;
    padding-left: 20px;
}

.policy-list li {
    font-size: 15px;
    margin-bottom: 10px;
    position: relative;
    list-style-type: disc;
}

.policy-info-block {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.policy-date {
    margin-top: 40px;
    text-align: right;
    line-height: 2;
}

@media screen and (max-width: 768px) {
    .policy-main-title { font-size: 20px; }
    .policy-section h3 { font-size: 17px; }
}

.fs-mission {
    margin-bottom: 100px;
}

.fs-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.fs-item {
    display: flex;
    gap: 40px;
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    align-items: center;
}

.fs-img {
    flex: 0 0 320px;
}

.fs-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fs-info {
    flex: 1;
}

.fs-tag {
    display: inline-block;
    background: #c9a96e;
    color: #fff;
    font-size: 11px;
    padding: 2px 10px;
    margin-bottom: 15px;
    border-radius: 2px;
}

.fs-info h4 {
    font-family: "游明朝", serif;
    font-size: 20px;
    color: #802246;
    margin-bottom: 15px;
}

.fs-info p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.btn-fs {
    display: inline-block;
    padding: 12px 30px;
    background: #802246;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    border-radius: 2px;
}

.btn-fs:hover {
    background: #a02b58;
    transform: translateY(-2px);
}

.btn-fs i {
    margin-left: 8px;
    font-size: 12px;
}

@media screen and (max-width: 850px) {
    .fs-item {
        flex-direction: column;
        padding: 20px;
    }
    .fs-img {
        flex: none;
        width: 100%;
    }
    .fs-img img {
        height: auto;
    }
}

.umeda-fs-lead {
    margin-bottom: 80px;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 100px;
}

.feature-txt {
    background: #fdfaf5;
    padding: 40px;
    position: relative;
}

.feature-num {
    font-family: "Times New Roman", serif;
    font-size: 40px;
    color: rgba(201, 169, 110, 0.3);
    position: absolute;
    top: 10px;
    right: 20px;
}

.feature-txt h3 {
    font-family: "游明朝", serif;
    font-size: 18px;
    color: #802246;
    margin-bottom: 20px;
}

.feature-txt p {
    font-size: 14px;
    line-height: 1.8;
}

.timetable-mini p {
    margin-bottom: 5px;
}

.umeda-fs-message {
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .feature-detail {
        grid-template-columns: 1fr;
    }
}


.school-intro-lead {
    margin-bottom: 80px;
}

.brand-item {
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.brand-visual {
    flex: 0 0 380px;
}

.brand-visual img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.brand-detail {
    flex: 1;
}

.brand-logo-area {
    margin-bottom: 20px;
}

.brand-logo-area img {
    max-height: 50px;
    width: auto;
}

.brand-copy {
    font-family: "游明朝", serif;
    font-size: 18px;
    color: #802246;
    font-weight: bold;
    margin-bottom: 15px;
}

.brand-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.brand-info-box {
    background: #f9f6f1;
    padding: 20px;
    margin-bottom: 25px;
}

.brand-info-box dl {
    margin: 0;
}

.brand-info-box dt {
    font-weight: bold;
    font-size: 13px;
    color: #802246;
    margin-bottom: 5px;
}

.brand-info-box dd {
    font-size: 14px;
    margin-left: 0;
    margin-bottom: 10px;
}

.brand-info-box dd:last-child {
    margin-bottom: 0;
}

.sub-link-banner {
    background: #802246;
    color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.sub-link-banner h3 {
    font-family: "游明朝", serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.sub-link-banner p {
    font-size: 14px;
    opacity: 0.9;
}

.sub-link-banner2 {
    background: #802246;
    color: #fff;
    padding: 40px;
    margin-top: 60px;
	text-align: center;
}

.sub-link-banner2 h3 {
    font-family: "游明朝", serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.sub-link-banner2 p {
    font-size: 14px;
    opacity: 0.9;
margin-bottom: 30px;
}


.btn-white-border {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-white-border:hover {
    background: #fff;
    color: #802246;
}

@media screen and (max-width: 992px) {
    .brand-item {
        flex-direction: column;
        gap: 30px;
    }
    .brand-visual {
        flex: none;
        width: 100%;
    }
    .sub-link-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

.faq-group {
    margin-bottom: 60px;
}

.faq-group-title {
    font-family: "游明朝", serif;
    font-size: 20px;
    color: #802246;
    background: #fdfaf5;
    padding: 15px 20px;
    border-left: 4px solid #802246;
    margin-bottom: 25px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-q {
    padding: 25px 40px 25px 50px;
    position: relative;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.6;
    list-style: none; /* デフォルトの三角を消す */
}

.faq-q::-webkit-details-marker {
    display: none; /* Safari用 */
}

/* Qのアイコン */
.faq-q::before {
    content: "Q";
    position: absolute;
    left: 10px;
    top: 22px;
    font-family: "Times New Roman", serif;
    font-size: 24px;
    color: #c9a96e;
    line-height: 1;
}

/* 開閉矢印 */
.faq-q::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ccc;
    transition: 0.3s;
}

.faq-item[open] .faq-q::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-a {
    padding: 0 40px 30px 50px;
    position: relative;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* Aのアイコン */
.faq-a::before {
    content: "A";
    position: absolute;
    left: 10px;
    top: 0;
    font-family: "Times New Roman", serif;
    font-size: 24px;
    color: #802246;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .faq-q { padding: 20px 35px 20px 40px; font-size: 15px; }
    .faq-a { padding: 0 20px 25px 40px; font-size: 14px; }
    .faq-q::before, .faq-a::before { font-size: 20px; }
}

.recruit-lead {
    margin-bottom: 80px;
}

.recruit-role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.role-box {
    background: #fdfaf5;
    padding: 30px 20px;
    text-align: center;
}

.role-box h4 {
    font-family: "游明朝", serif;
    font-size: 17px;
    color: #802246;
    margin-bottom: 15px;
}

.role-box p {
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
}

.location-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.location-card {
    border: 1px solid #c9a96e;
    padding: 30px;
}

.location-card h5 {
    font-family: "游明朝", serif;
    font-size: 16px;
    color: #802246;
    margin-bottom: 10px;
}

.location-card p {
    font-size: 14px;
    margin-bottom: 5px;
}

.loc-desc {
    font-size: 13px !important;
    color: #666;
    margin-top: 10px;
}

.salary-box p {
    margin-bottom: 10px;
}

.note {
    font-size: 12px;
    color: #888;
}

.apply-box {
    background: #802246;
    color: #fff;
    padding: 60px 40px;
    text-align: center;
}

.apply-box h4 {
    font-family: "游明朝", serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.apply-list {
    text-align: left;
    display: inline-block;
    margin: 20px 0 40px;
    padding: 0;
    list-style: none;
}

.apply-list li {
    margin-bottom: 10px;
}

@media screen and (max-width: 900px) {
    .recruit-role-grid, .location-cards {
        grid-template-columns: 1fr;
    }
}

.contact-lead-area {
    margin-bottom: 60px;
    text-align: center;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
}

.form-row {
    margin-bottom: 30px;
}

.form-row label {
    display: block;
    font-family: "游明朝", serif;
    font-weight: bold;
    color: #802246;
    margin-bottom: 10px;
    font-size: 16px;
}

.required-icon {
    display: inline-block;
    background: #802246;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    margin-left: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: "游明朝", serif;
    font-size: 15px;
    background-color: #fdfaf5;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

/* 既存のボタンデザインを利用 */
.contact-form-wrapper .btn-design {
    cursor: pointer;
    border: none;
    display: inline-block;
    background-color: #802246;
    color: #fff;
    padding: 20px 80px;
    position: relative;
    transition: 0.3s;
    font-size: 16px;
}

.recaptcha-notice {
    margin-top: 30px;
    font-size: 12px;
    color: #999;
    text-align: center;
    line-height: 1.6;
}

.recaptcha-notice a {
    color: #666;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .contact-form-wrapper {
        padding: 20px;
    }
    .contact-form-wrapper .btn-design {
        width: 100%;
        padding: 15px 20px;
    }
}

.author-info {
    margin-top: 60px;
    padding: 30px;
    background: #fdfaf5;
    border: 1px solid #eee;
}
.author-flex {
    display: flex;
    gap: 30px;
    align-items: center;
}
.author-avatar img {
    border-radius: 50%;
}
.author-label {
    font-size: 11px;
    color: #c9a96e;
    margin-bottom: 5px;
    font-weight: bold;
}
.author-name {
    font-family: "游明朝", serif;
    font-size: 18px;
    color: #802246;
    margin-bottom: 10px;
}
.author-desc {
    font-size: 14px;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .author-flex { flex-direction: column; text-align: center; }
}

/* お知らせ：シンプルリスト */
.news-simple-list {
    border-top: 1px solid #eee;
}
.news-list-item {
    display: flex;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    gap: 20px;
    transition: 0.3s;
}
.news-list-item:hover {
    background: #fdfaf5;
}
.news-list-item .date {
    font-size: 14px;
    color: #999;
}
.news-list-item .title {
    flex: 1;
    font-size: 15px;
    font-family: "游明朝", serif;
    margin: 0;
}
.news-list-item i {
    color: #ccc;
    font-size: 12px;
}

/* ブログ：カードレイアウト */
.blog-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card-item {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s;
}
.blog-card-item:hover {
    transform: translateY(-5px);
}
.blog-card-item .card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-card-item .card-body {
    padding: 20px;
}
.blog-card-item .date {
    font-size: 12px;
    color: #999;
}
.blog-card-item h2 {
    font-size: 15px;
    font-family: "游明朝", serif;
    margin-top: 10px;
    line-height: 1.5;
}

/* 投稿本文の基本スタイル */
.post-content-body {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 60px;
}

/* 一覧に戻るボタンエリア */
.post-nav {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

@media screen and (max-width: 900px) {
    .blog-grid-list { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px) {
    .blog-grid-list { grid-template-columns: 1fr; }
    .news-list-item { flex-direction: column; align-items: flex-start; gap: 10px; }
}

.post-content-body h2 {
    font-family: "游明朝", serif;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #802246 0%, #4a1429 100%);
    padding: 15px 20px;
    margin-top: 60px;
    margin-bottom: 30px;
    border-radius: 2px;
    position: relative;
}

/* 左側にアクセントライン */
.post-content-body h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #c9a96e;
}

.post-content-body h3 {
    font-family: "游明朝", serif;
    font-size: 20px;
    color: #333;
    font-weight: 700;
    background: #fdfaf5;
    padding: 12px 20px;
    border-bottom: 2px solid #802246;
    margin-top: 50px;
    margin-bottom: 25px;
}

.post-content-body h4 {
    font-family: "游明朝", serif;
    font-size: 18px;
    color: #802246;
    font-weight: 700;
    position: relative;
    padding: 10px 0 10px 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* 下線と左線の組み合わせ */
.post-content-body h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #c9a96e;
}

.post-content-body h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
}

/* 目次（Table of Contents Plus）のカスタマイズ */
#toc_container {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 25px;
    margin-bottom: 40px;
    width: 100% !important;
    box-sizing: border-box;
}

#toc_container .toc_title {
    font-family: "游明朝", serif;
    font-size: 18px;
    color: #802246;
    text-align: center;
    border-bottom: 1px solid #c9a96e;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: bold;
}

#toc_container li a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: 0.3s;
}

#toc_container li a:hover {
    color: #802246;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .post-content-body h2 { font-size: 20px; padding: 12px 15px; }
    .post-content-body h3 { font-size: 18px; }
    .post-content-body h4 { font-size: 17px; }
}

トップページのブログセクションで、記事数に関わらずカードの幅を固定し、レイアウトが崩れないように修正します。

現状の display: flex; のままでも対応可能ですが、カードが1枚や2枚のときに横に伸びきってしまわないよう、「最大幅」の指定、または**「CSS Grid」への書き換え**が有効です。

以下、現在のコードを活かした修正案です。

1. CSSの修正（ブログセクション）
blog-list と blog-item の箇所を以下のように書き換えてください。

CSS
/* BLOGセクションの修正 */
.blog-list {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* 折り返しを許可 */
    justify-content: flex-start; /* 左寄せに固定 */
}

.blog-item {
    flex: 0 0 calc(33.333% - 14px); 
    background: #fff;
    transition: transform 0.3s;
    box-sizing: border-box;
}

/* スマホ・タブレット用調整 */
@media screen and (max-width: 900px) {
    .blog-item {
        flex: 0 0 calc(50% - 10px); /* 2段 */
    }
}

@media screen and (max-width: 768px) {
    .blog-list {
        padding: 0 20px;
    }
    .blog-item {
        flex: 0 0 100%; /* 1段 */
    }
}

#main_content{
	margin: 0 auto;
}

.lower-page-content{
	margin: 0 auto;
	max-width: 1200px;
}

#ez-toc-container{
	margin-top: 30px;
}

/* お知らせ：シンプルリスト全体の枠組み */
.news-simple-list {
    border-top: 1px solid #eee;
    margin-top: 20px;
}

/* リストアイテム：1行の定義 */
.news-list-item {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none !important; /* 打ち消し */
    color: #333 !important;
    gap: 25px;
    transition: background-color 0.3s ease;
}

.news-list-item:hover {
    background-color: #fdfaf5;
}

/* 日付 */
.news-list-item .date {
    font-size: 14px;
    color: #999;
    white-space: nowrap; /* 改行防止 */
    font-family: "Times New Roman", serif;
}

/* カテゴリータグ：WordPress標準のul/li/aを調整 */
.news-list-item .category-tag {
    white-space: nowrap;
}

.news-list-item .category-tag a {
    display: inline-block;
    background: #802246;
    color: #fff !important;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 2px;
    text-decoration: none !important;
    pointer-events: none; /* リスト全体がリンクなのでタグ自体のクリックを無効化 */
}

/* 記事タイトル */
.news-list-item .title {
    flex: 1;
    font-size: 16px;
    font-family: "游明朝", serif;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    /* 長すぎるタイトルを1行で切る場合（任意） */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* 右側の矢印アイコン */
.news-list-item i {
    color: #c9a96e;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.news-list-item:hover i {
    transform: translateX(5px);
}

/* スマホ対応（768px以下） */
@media screen and (max-width: 768px) {
    .news-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 10px;
    }
    
    .news-list-item .title {
        font-size: 15px;
        -webkit-line-clamp: 2; /* スマホは2行まで許容 */
    }
    
    .news-list-item i {
        align-self: flex-end; /* 矢印を右下に配置 */
        margin-top: -10px;
    }
}

.synergy_top{
	text-align: center;
	margin-bottom: 40px;
}
.synergy_top img{
	max-width: 600px;
}

.role-icon-center {
    text-align: center;
    margin-bottom: 10px;
}
.role-icon-center i {
    font-size: 32px;
    color: #c9a96e; /* 法人アクセントカラー（ゴールド系） */
}

/* LINEのアイコン（ボルドー背景の上に表示） */
.apply-icon-center {
    text-align: center;
    margin-bottom: 15px;
}
.apply-icon-center i {
    font-size: 40px;
    color: #fff; /* ボルドー背景なので白に */
}

.select-guide-section {
    padding: 80px 40px;
    background-color: #fdfaf5;
    margin-top: 60px;
}

.select-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 15px;
}

.select-flow {
    max-width: 800px;
    margin: 0 auto;
}

.select-step {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
}

.step-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c9a96e;
    color: #fff;
    font-size: 11px;
    padding: 2px 15px;
    font-family: "Times New Roman", serif;
}

.select-step h4 {
    font-family: "游明朝", serif;
    color: #802246;
    margin-bottom: 20px;
    font-size: 18px;
}

.select-options {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.option-item {
    background: #802246;
    border: 1px solid #eee;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 20px;
    color: #fff;
}

.step-arrow {
    text-align: center;
    padding: 15px 0;
    color: #c9a96e;
}

/* 結果カード */
.select-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.result-card {
    background: #fff;
    border-top: 3px solid #802246;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.result-card h5 {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.result-card p {
    font-family: "游明朝", serif;
    color: #802246;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 15px;
}

.result-card a {
    display: inline-block;
    font-size: 11px;
    color: #c9a96e;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .select-options {
        flex-direction: column;
    }
    .select-result-grid {
        grid-template-columns: 1fr;
    }
}


.mv-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.main-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* 背景フィルター：画像自体の明るさを保ちつつ文字を読みやすくする */
.mv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0; /* 最初は非表示 */
    transition: opacity 2s ease-in-out; /* ゆっくり暗くする */
    animation: fadeOverlay 2s ease-in-out 1s forwards; /* 1秒待ってから開始 */
}

/* 縦書きテキストのラッパー */
.mv-copy-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.mv-copy-vertical {
    writing-mode: vertical-rl;
    font-family: "游明朝", serif;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
font-weight: normal;
    letter-spacing: 0.3em;
    opacity: 0;
    text-shadow: 0 0 20px rgba(0,0,0,0.2);
    animation: fadeInText 2.5s ease-out 1.5s forwards;
}

/* アニメーション定義：フィルター */
@keyframes fadeOverlay {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* アニメーション定義：テキスト */
@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 下からふわっと上げる */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .mv-copy-vertical {
        font-size: 28px;
        letter-spacing: 0.2em;
    }
}


@media screen and (max-width: 768px) {
.logo img {
    height: 50px;
}
.synergy_top img {
    max-width: 100%;
}
.site-header {
    padding: 20px;
}
.news-container {
	margin: 0 5%;
	}
.catch-copy {
	font-size: 18px;
	}
.lower-header h1 {
	font-size: 24px;
	}
.btn-design {
    display: inline-block;
    background-color: #802246;
    color: #fff;
    padding: 20px;
    text-decoration: none;
    position: relative;
    border: 1px solid #802246;
    min-width: unset;
	width: 280px;
	font-size: 16px;
    transition: 0.3s;
}
.school-section {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}
.school-header {
    text-align: center;
    margin-bottom: 20px;
}
	.blog-header-icon{
		margin: 0 5% 30px 5%;
	}
	.contact-text{
		margin: 0 5% 30px 5%;
font-size: 14px;
	}
.blog-section {
    padding: 100px 0;
    position: relative;
    width: auto;
    background: linear-gradient(to bottom, #f2e7c9 0%, #d4bc7f 100%);
    margin: 0 0 0 auto;
}
.concept-section {
	padding: 50px 20px 100px 20px;
	}
	.blog-btn-area{
		text-align: center;
	}
}
.message-icon-center {
    text-align: center;
    margin-bottom: 30px; /* 文章との間隔 */
}

.message-icon-center i {
    font-size: 45px; /* アイコンの大きさ */
    color: #c9a96e; /* クリエートベースのアクセントゴールド */
    opacity: 0.8;
}

@media screen and (max-width: 1151px) {
	.mv-copy-vertical{
		font-size: 24px;
	}

}

@media screen and (max-width: 768px) {
	.mv-copy-vertical{
		font-size: 18px;
	}
	
.news-label {
	padding: 10px 40px;
	}	
.main-visual img {
    display: block;
    height: 260px;
    object-fit: cover;
    width: 100%;
    object-position: 100% 1;
}
.news-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    display: block;
    gap: 30px;
}
.date{
    display: block;
	font-size: 11px !important;
	}
.news-list {
    flex: 1 1 0%;
    padding: 20px 30px;
}
.pcnon{
	display: block;
}
.spnon{
	display: none;
}
.btn-fs {
    display: block;
    padding: 12px 30px;
    background: #802246;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    text-align: center;
    width: 220px;
    margin: 0 auto;
}
    .blog-grid-list {
        grid-template-columns: 1fr;
        margin: 0 5%;
    }

}
#main_content {
    margin: 0 auto;
    width: 100%;
    max-width: unset;
}

.blog-btn-area{
	text-align: center;
}