/*
Theme Name: Buzz Media
Theme URI: https://buzzmedia.co.jp
Author: BUZZ MEDIA株式会社
Author URI: https://buzzmedia.co.jp
Description: BUZZ MEDIA株式会社のコーポレートサイト用WordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buzzmedia
*/

/* ============================================
   リセット & ベース設定
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ============================================
   左サイド固定ナビゲーション
   ============================================ */

.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 120px;
    height: 100vh;
    z-index: 1000;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-nav__inner {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.side-nav__logo {
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-bottom: 60px;
    white-space: nowrap; /* 改行を防ぐ */
}

.side-nav__logo-link {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.1rem; /* フォントサイズを少し小さく */
    font-weight: 900;
    letter-spacing: 0.05em; /* 文字間隔を調整 */
    color: #FFFFFF !important;
    transition: color 0.3s ease;
    line-height: 1.2; /* 行間を調整 */
    display: inline-block;
}

.side-nav__logo-link:hover {
    color: #FFFFFF !important;
    opacity: 0.7;
}

.side-nav__menu {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.side-nav__item {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.side-nav__link {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #FFFFFF !important;
    text-transform: uppercase;
    position: relative;
    display: block;
    transition: color 0.3s ease;
}

.side-nav__link::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background-color: #fff;
    transition: height 0.3s ease;
}

.side-nav__link:hover,
.side-nav__link.active {
    color: #FFFFFF !important;
    opacity: 0.7;
}

.side-nav__link:hover::after,
.side-nav__link.active::after {
    height: 100%;
}

@media (max-width: 1024px) {
    .side-nav {
        width: 80px;
    }
    
    .side-nav__inner {
        padding: 30px 15px;
    }
    
    .side-nav__logo-link {
        font-size: 0.875rem;
    }
    
    .side-nav__link {
        font-size: 0.625rem;
    }
}

@media (max-width: 768px) {
    .side-nav {
        display: none;
    }
}

/* ============================================
   メインコンテンツ
   ============================================ */

.main-content {
    margin-left: 120px;
    width: calc(100% - 120px);
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 1024px) {
    .main-content {
        margin-left: 80px;
        width: calc(100% - 80px);
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        width: 100%;
    }
}

/* ============================================
   FV (First View) セクション
   ============================================ */

.fv {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-right: 120px;
    background-color: #000000 !important;
    background-image: none !important;
}

/* Heroセクションのテキストの強制適用 */
.fv h1,
.fv h2,
.fv h3,
.fv p,
.fv span,
.fv__title,
.fv__title-line,
.fv__subtitle,
.fv__content,
.fv__text-wrapper,
.fv__scroll-text {
    color: #FFFFFF !important;
}

.fv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000000 !important;
    background-image: none !important;
}

.fv__bg-image {
    display: none !important;
    /* 背景画像を完全に削除 */
}

/* Canvas背景アニメーション */
.fv-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.fv__content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 40px;
    text-align: center;
}

.fv__text-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.fv__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #ffffff !important;
    margin-bottom: 32px;
}

.fv__title-line {
    display: block;
}

.fv__subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #ffffff !important;
    line-height: 1.8;
}

/* FVセクション内のテキストを確実に白にする */
.fv h1,
.fv h2,
.fv h3,
.fv p,
.fv span,
.fv__title,
.fv__title-line,
.fv__subtitle,
.fv__scroll-text {
    color: #ffffff !important;
}

.fv__scroll-indicator {
    position: absolute;
    right: 60px;
    bottom: 60px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.fv__scroll-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.fv__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(20px);
    }
}

@media (max-width: 1024px) {
    .fv {
        padding-right: 80px;
    }
    
    .fv__title {
        font-size: 3rem;
    }
    
    .fv__subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .fv {
        padding-right: 20px;
        padding-left: 20px;
        justify-content: center;
    }
    
    .fv__content {
        max-width: 100%;
        padding: 0;
    }
    
    .fv__title {
        font-size: 3rem;
    }
    
    .fv__subtitle {
        font-size: 1rem;
    }
    
    .fv__scroll-indicator {
        right: 20px;
        bottom: 40px;
    }
}

/* ============================================
   Service セクション（タイポグラフィ特化版）
   ============================================ */

.section-services-type {
    position: relative;
    padding: 200px 120px 200px 0;
    min-height: auto;
}

.section-services-type .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 80px;
}

.section-services-type .section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-transform: uppercase;
    position: absolute;
    left: -80px;
    top: 200px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    opacity: 0;
    transform: translateY(30px);
}

/* サービスリスト（タイポグラフィ特化） */
.service-type-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #ccc; /* 一番上の線 */
}

.service-type-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    border-bottom: 1px solid #ccc; /* 各行の下線 */
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    opacity: 0;
}

/* 数字 */
.service-num {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    margin-right: 40px;
    opacity: 0.5;
    min-width: 60px;
}

/* テキスト情報 */
.service-info {
    flex: 1;
    background-color: transparent;
}

.service-type-item .service-name {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem; /* 巨大な文字 */
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: inherit;
}

.service-type-item .service-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.7;
    color: inherit;
}

/* 矢印 */
.service-arrow {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    transition: transform 0.4s ease;
    color: inherit;
    margin-left: 40px;
}

/* ホバーエフェクト（黒背景・黄色文字） */
.service-type-item:hover {
    background-color: #000000 !important;
    color: #FFD700 !important;
    border-color: #000000 !important;
    padding-left: 40px; /* 少し右にずれる演出 */
}

/* ホバー時のservice-infoの背景を透明に */
.service-type-item:hover .service-info {
    background-color: transparent !important;
}

/* 内部のテキスト要素も個別に黄色を指定（より具体的なセレクタで確実に適用） */
.service-type-item:hover .service-num,
.service-type-item:hover .service-name,
.service-type-item:hover .service-desc,
.service-type-item:hover .service-arrow,
.service-type-item:hover .service-info,
.service-type-item:hover .service-info h3,
.service-type-item:hover .service-info p,
.service-type-item:hover h3,
.service-type-item:hover p,
.service-type-item:hover span {
    color: #FFD700 !important;
    opacity: 1 !important; /* 半透明だったものもハッキリ見せる */
}

.service-type-item:hover .service-arrow {
    transform: translateX(20px); /* 矢印が右に動く */
    color: #FFD700 !important;
}

/* もし矢印などがSVGの場合は fill も黄色にする */
.service-type-item:hover svg {
    fill: #FFD700 !important;
}

@media (max-width: 1024px) {
    .section-services-type {
        padding: 150px 80px 150px 0;
    }
    
    .section-services-type .section-title {
        left: -60px;
    }
    
    .service-type-item .service-name {
        font-size: 2.5rem;
    }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .section-services-type {
        padding: 100px 20px 100px 0;
    }
    
    .section-services-type .container {
        padding-left: 0;
    }
    
    .section-services-type .section-title {
        position: static;
        writing-mode: horizontal-tb;
        text-orientation: upright;
        margin-bottom: 60px;
        padding-left: 20px;
    }
    
    .service-type-item {
        padding: 30px 10px;
        flex-wrap: wrap;
    }
    
    .service-type-item .service-name {
        font-size: 1.8rem;
    }
    
    .service-arrow {
        display: none; /* スマホでは矢印消すなど調整 */
    }
    
    .service-num {
        margin-right: 20px;
        min-width: 40px;
    }
}

/* ============================================
   News セクション
   ============================================ */

.news {
    position: relative;
    padding: 200px 120px 200px 0;
    background-color: #fafafa;
    min-height: 100vh;
}

.news__header {
    position: absolute;
    left: -80px;
    top: 200px;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.news__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.news__container {
    max-width: 1000px;
    margin: 0 auto;
}

.news__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    position: relative;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.news-item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #1a1a1a;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.news-item:hover .news-item__bg {
    width: 100%;
}

.news-item__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: color 0.3s ease;
}

.news-item:hover .news-item__content {
    color: #ffffff;
}

.news-item__date {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    min-width: 120px;
    flex-shrink: 0;
}

.news-item__category {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border: 1px solid currentColor;
    border-radius: 2px;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.news-item__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: -0.01em;
    flex: 1;
}

.news-item__title a {
    display: block;
}

.news__more {
    margin-top: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.news__more-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    display: inline-block;
    padding: 16px 32px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.news__more-link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .news {
        padding: 150px 80px 150px 0;
    }
    
    .news__header {
        left: -60px;
    }
}

@media (max-width: 768px) {
    .news {
        padding: 100px 20px 100px 0;
    }
    
    .news__header {
        position: static;
        writing-mode: horizontal-tb;
        margin-bottom: 60px;
        padding-left: 20px;
    }
    
    .news-item {
        padding: 40px 0;
    }
    
    .news-item__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .news-item__title {
        font-size: 1.25rem;
    }
}

/* ============================================
   Recruit セクション
   ============================================ */

.recruit {
    position: relative;
    padding: 200px 120px 200px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.recruit__header {
    position: absolute;
    left: -80px;
    top: 200px;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.recruit__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.recruit__container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.recruit__content {
    opacity: 0;
    transform: translateY(30px);
}

.recruit__catch {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.recruit__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2;
    color: #666;
    margin-bottom: 60px;
}

.recruit__button {
    display: inline-block;
}

.recruit__link {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    display: inline-block;
    padding: 20px 48px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.recruit__link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .recruit {
        padding: 150px 80px 150px 0;
    }
    
    .recruit__header {
        left: -60px;
    }
    
    .recruit__catch {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .recruit {
        padding: 100px 20px 100px 0;
    }
    
    .recruit__header {
        position: static;
        writing-mode: horizontal-tb;
        margin-bottom: 60px;
        padding-left: 20px;
    }
    
    .recruit__catch {
        font-size: 2rem;
    }
    
    .recruit__text {
        font-size: 1rem;
    }
}

/* ============================================
   About セクション
   ============================================ */

.about {
    position: relative;
    padding: 20px 120px 80px 0;
    background-color: #ffffff;
    min-height: auto;
}

.about__header {
    position: absolute;
    left: -80px;
    top: 20px;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.about__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.about__container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.about__content {
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
}

.about__logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
    /* 背景を透過させる */
    background: transparent;
    /* 画像の白背景を透過させる（白背景の場合） */
    mix-blend-mode: multiply;
    /* 白背景をより効果的に削除 */
    filter: contrast(1.2) brightness(1.1);
    /* 画像の背景色を削除するための追加設定 */
    image-rendering: -webkit-optimize-contrast;
}

.about__logo-divider {
    width: 300px;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto 30px auto;
    display: block;
}

.about__info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.about__info-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.about__info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about__info-term {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0 20px 8px 0;
    border-bottom: none;
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
    display: block;
}

.about__info-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    color: #666;
    margin: 0;
    padding: 0 0 8px 0;
    border-bottom: none;
    line-height: 1.8;
    flex: 1;
    display: block;
}

.about__info-item:last-child .about__info-desc {
    padding-bottom: 0;
}

@media (max-width: 1024px) {
    .about {
        padding: 20px 80px 60px 0;
    }
    
    .about__header {
        left: -60px;
        top: 20px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 20px 20px 40px 0;
    }
    
    .about__header {
        position: static;
        writing-mode: horizontal-tb;
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .about__logo {
        max-width: 100%;
        margin: 0 auto 20px auto;
    }
    
    .about__logo-divider {
        width: 250px;
        margin-bottom: 25px;
    }
    
    .about__info-item {
        flex-direction: column;
        padding-bottom: 12px;
    }
    
    .about__info-term {
        font-size: 0.9rem;
        width: 100%;
        min-width: 100%;
        padding-right: 0;
        padding-bottom: 4px;
        margin-bottom: 4px;
    }
    
    .about__info-desc {
        font-size: 1rem;
        padding-left: 0;
        padding-bottom: 0;
        width: 100%;
    }
}

/* ============================================
   Contact セクション
   ============================================ */

.contact {
    position: relative;
    padding: 200px 120px 200px 0;
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact__header {
    position: absolute;
    left: -80px;
    top: 200px;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.contact__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.contact__container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.contact__content {
    opacity: 0;
    transform: translateY(30px);
}

.contact__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 40px;
}

.contact__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2;
    color: #cccccc;
    margin-bottom: 60px;
}

.contact__buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact__btn {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 20px 48px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact__btn--primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.contact__btn--primary:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact__btn--secondary {
    background-color: transparent;
    color: #ffffff;
}

.contact__btn--secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .contact {
        padding: 150px 80px 150px 0;
    }
    
    .contact__header {
        left: -60px;
    }
    
    .contact__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 100px 20px 100px 0;
    }
    
    .contact__header {
        position: static;
        writing-mode: horizontal-tb;
        margin-bottom: 60px;
        padding-left: 20px;
    }
    
    .contact__title {
        font-size: 2rem;
    }
    
    .contact__text {
        font-size: 1rem;
    }
    
    .contact__buttons {
        flex-direction: column;
    }
    
    .contact__btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   フッター
   ============================================ */

.footer {
    padding: 80px 120px 20px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    margin-bottom: 0;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    justify-content: flex-end; /* 右寄せにする（ロゴがなくなったため） */
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.copyright {
    text-align: center; /* コピーライトは中央揃え */
    font-size: 0.8rem;
    color: #666;
    font-family: 'Noto Sans JP', sans-serif;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .footer {
        padding: 60px 80px 20px 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 20px 0;
    }
    
    .footer-inner {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
}

/* ============================================
   アニメーション用ユーティリティ
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ============================================
   サービス詳細ページ用スタイル
   ============================================ */

/* サービスヒーローセクション */
.service-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    padding-right: 120px;
}

.service-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero__bg-image {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.service-hero__content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 0 40px;
}

.service-hero__inner {
    opacity: 0;
    transform: translateY(30px);
}

.service-hero__number {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-hero__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 32px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.service-hero__catch {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 16px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.service-hero__subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* サービス概要セクション */
.service-about {
    padding: 120px 120px 120px 0;
    background-color: #ffffff;
}

.service-about__content {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.service-about__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.service-about__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2;
    color: #666;
}

.service-about__text p {
    margin-bottom: 24px;
}

.service-about__text p:last-child {
    margin-bottom: 0;
}

/* メリットセクション */
.service-benefits {
    padding: 120px 120px 120px 0;
    background-color: #fafafa;
}

.service-benefits__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #ffffff;
    padding: 48px 40px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card__number {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 24px;
}

.benefit-card__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.benefit-card__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

/* 料金プランセクション */
.service-pricing {
    padding: 120px 120px 120px 0;
    background-color: #ffffff;
}

.service-pricing__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #fafafa;
    padding: 48px 40px;
    border-radius: 8px;
    border: 2px solid transparent;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card--featured {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4px 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.pricing-card--featured .pricing-card__badge {
    background-color: #ffffff;
    color: #1a1a1a;
}

.pricing-card__name {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.pricing-card--featured .pricing-card__name {
    color: #ffffff;
}

.pricing-card__price {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card__amount {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.pricing-card--featured .pricing-card__amount {
    color: #ffffff;
}

.pricing-card__period {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-left: 8px;
}

.pricing-card--featured .pricing-card__period {
    color: #cccccc;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-card__features li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
    color: #666;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.pricing-card--featured .pricing-card__features li {
    color: #cccccc;
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.pricing-card--featured .pricing-card__features li::before {
    color: #ffffff;
}

.pricing-card__button {
    display: block;
    width: 100%;
    padding: 16px 32px;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pricing-card__button:hover {
    background-color: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.pricing-card--featured .pricing-card__button {
    background-color: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.pricing-card--featured .pricing-card__button:hover {
    background-color: transparent;
    color: #ffffff;
}

/* CTAセクション */
.service-cta {
    padding: 120px 120px 120px 0;
    background-color: #1a1a1a;
}

.service-cta__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service-cta__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 32px;
}

.service-cta__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2;
    color: #cccccc;
    margin-bottom: 48px;
}

.service-cta__buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta__btn {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 20px 48px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-cta__btn--primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.service-cta__btn--primary:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.service-cta__btn--secondary {
    background-color: transparent;
    color: #ffffff;
}

.service-cta__btn--secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .service-hero {
        padding-right: 80px;
    }
    
    .service-hero__title {
        font-size: 3rem;
    }
    
    .service-about,
    .service-benefits,
    .service-pricing,
    .service-cta {
        padding: 100px 80px 100px 0;
    }
    
    .service-benefits__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-pricing__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding-right: 20px;
        padding-left: 20px;
        height: 70vh;
        min-height: 500px;
        justify-content: center;
    }
    
    .service-hero__content {
        max-width: 100%;
        padding: 0;
    }
    
    .service-hero__title {
        font-size: 2.5rem;
    }
    
    .service-hero__subtitle {
        font-size: 1rem;
    }
    
    .service-about,
    .service-benefits,
    .service-pricing,
    .service-cta {
        padding: 80px 20px 80px 0;
    }
    
    .service-about__title,
    .service-benefits__title,
    .service-pricing__title,
    .service-cta__title {
        font-size: 2rem;
    }
    
    .service-about__text {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .benefit-card__title {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-card__amount {
        font-size: 2rem;
    }
    
    .service-cta__buttons {
        flex-direction: column;
    }
    
    .service-cta__btn {
        width: 100%;
    }
}

/* Reasonセクションのタイトル改行制御 */
.reason-card__title {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* ============================================
   サービス詳細ページ追加スタイル（service-biz.html用）
   ============================================ */

/* サービスの特徴セクション */
.service-features {
    padding: 120px 120px 120px 0;
    background-color: #ffffff;
}

.service-features__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__number {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 16px;
}

.feature-card__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.feature-card__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

/* カリキュラム例セクション */
.service-curriculum {
    padding: 120px 120px 120px 0;
    background-color: #fafafa;
}

.service-curriculum__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

/* タブボタン */
.curriculum-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.curriculum-tab {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #666;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.curriculum-tab:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.curriculum-tab.active {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.tab-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.8;
}

.curriculum-tab.active .tab-subtitle {
    opacity: 0.9;
}

/* タブコンテンツ */
.curriculum-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.curriculum-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.curriculum-timeline {
    max-width: 1000px;
    margin: 0 auto 48px;
    height: auto;
    min-height: auto;
}

.curriculum-day {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
}

.curriculum-day:last-child {
    margin-bottom: 0;
}

.curriculum-day__header {
    margin-bottom: 20px;
}

.curriculum-day__label {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    padding-bottom: 12px;
    border-bottom: 3px solid #1a1a1a;
    display: inline-block;
}

.curriculum-day__schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto;
    gap: 20px;
    align-items: center;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #1a1a1a;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.schedule-item__time {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.9375rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-align: center;
    padding: 6px 12px;
    background-color: #fafafa;
    border-radius: 4px;
}

.schedule-item__content {
    flex: 1;
}

.schedule-item__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a1a;
}

.curriculum-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: #666;
    text-align: center;
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
}

/* 料金・場所セクション */
.service-info {
    padding: 120px 120px 120px 0;
    background-color: #ffffff;
}

.service-info__content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.info-item {
    opacity: 0;
    transform: translateY(30px);
}

.info-item__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #1a1a1a;
}

.info-item__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2;
    color: #666;
}

.info-location {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.info-address {
    margin-bottom: 24px;
    line-height: 1.8;
}

.info-alternative {
    font-size: 1rem;
    color: #999;
    font-style: italic;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .service-features,
    .service-curriculum,
    .service-info {
        padding: 100px 80px 100px 0;
    }
    
    .service-features__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-info__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .service-hero__catch {
        font-size: 1.25rem;
    }
    
    .service-hero__subtitle {
        font-size: 1rem;
    }
    
    .service-features,
    .service-curriculum,
    .service-info {
        padding: 80px 20px 80px 0;
    }
    
    .service-features__title,
    .service-curriculum__title {
        font-size: 2rem;
        margin-bottom: 60px;
    }
    
    .curriculum-day__label {
        font-size: 1.5rem;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .schedule-item__time {
        text-align: left;
    }
    
    .info-item__title {
        font-size: 2rem;
    }
    
    .info-item__text {
        font-size: 1rem;
    }
    
    .curriculum-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .curriculum-tab {
        width: 100%;
        min-width: auto;
        padding: 16px 24px;
    }
    
    .tab-subtitle {
        font-size: 0.7rem;
    }
}

/* 緊急表示用 */
.service-type-list, .service-type-item {
    opacity: 1 !important;
    visibility: visible !important;
}

/* 偶数番目（2, 4...）のレイアウト反転 */
.service-type-item:nth-child(even) {
    flex-direction: row-reverse; /* 要素の並びを逆にする（矢印 ← テキスト ← 数字） */
    text-align: right; /* テキストを右揃えにする */
}

/* 偶数番目の数字のマージン調整 */
.service-type-item:nth-child(even) .service-num {
    margin-right: 0;
    margin-left: 40px; /* 数字の左側に余白を移す */
}

/* 偶数番目の矢印の向きを反転（←にする演出） */
.service-type-item:nth-child(even) .service-arrow {
    display: inline-block;
    transform: rotate(180deg); /* 左向き矢印にする */
}

/* 偶数番目のホバー時の動き（左へ動く） */
.service-type-item:nth-child(even):hover .service-arrow {
    transform: translateX(-20px) rotate(180deg) !important; /* 左方向にスライド */
    color: #FFD700 !important; /* 黄色を確実に適用 */
}

/* ============================================
   お問い合わせフォーム送信ボタンの文字色を白に固定
   ============================================ */
.form-submit,
button[type="submit"],
input[type="submit"] {
    color: #FFFFFF !important;
}
.form-submit:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    color: #FFFFFF !important;
}

/* ============================================
   クリック可能な要素のカーソル設定
   ============================================ */
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.curriculum-module-header,
.pricing-card__button,
.service-cta__btn,
.contact__btn,
.recruit__link,
.news__more-link,
[role="button"] {
    cursor: pointer;
}
