
/* --- Reset & Basic --- */
*,
*::before,
*::after {
  box-sizing: border-box; /* ← この3行を追記 */
}
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button {color:inherit}
body {
    font-family: 'Noto Serif JP', serif;
    color: #333;
    background-color: #fff;
}

/* --- Common Layout --- */
.section-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.lp-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    word-break: normal;
    overflow-wrap: anywhere;
}
.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.section-title {
    color: #fff;
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.1em;
}
.section-title-standalone{
    letter-spacing: 0.1em;
}
.text2 {
    font-size: 24px;
    line-height: 1.6;
}
.text3 {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

/* --- Accordion (Common Functional Style) --- */
[data-accordion-content] {
    display: none; /* 初期状態ではコンテンツを隠す */
}
/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
    
}
.header-logo img {
    height: 40px;
    width: auto;
}
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: #bdbcbc;
    display: block;
    transition: all 0.3s;
}
.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); }
.hamburger-menu.active span { background-color: #fff; }

.global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 30%;
    height: 80vh;
    background-color: rgba(0, 0, 0, 0.9);
    transition: right 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.global-nav.active { right: 0; }
.nav-list { text-align: center; }
.nav-list li a {
    color: #fff;
    font-size: 24px;
    display: block;
    padding: 15px;
    transition: opacity 0.3s;
}
.nav-list li a:hover { opacity: 0.7; }

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background-color: #28a7e1;
}
/* 1. 背景画像コンテナのスタイル */
.hero-bg-container {
    position: fixed; /* 'absolute' から 'fixed' に変更 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* '100%' から '100vh' に変更して画面の高さいっぱいにする */
    object-fit: contain;
    z-index: 1; /* '0' から '-1' に変更して全てのコンテンツの背面に配置 */
}

/* 2. 背景画像のフェードイン用スタイル */
.bg-animation {
    opacity: 0; /* 初期状態: 透明 */
    transition: opacity 2s ease-in; /* 2秒かけてフェードイン */
}
.bg-animation.is-animated {
    opacity: 1; /* アニメーション後: 見える */
}

/* 3. テキストのスライドイン用スタイル */
.text-animation .creator,
.text-animation .name-contents,
.text-animation .information {
    opacity: 0; /* 初期状態: 透明 */
    transform: translateY(30px); /* 初期状態: 30px下にずらす */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* アニメーション後の状態 */
.text-animation.is-animated .creator,
.text-animation.is-animated .name-contents,
.text-animation.is-animated .information {
    opacity: 1;
    transform: translateY(0);
}

/* 4. 各テキスト要素に時間差（ディレイ）をつける */
.text-animation.is-animated .creator { transition-delay: 0.5s; } /* キャッチコピーは0.5秒後 */
.text-animation.is-animated .name-contents { transition-delay: 0.8s; }       /* 本文は0.8秒後 */
.text-animation.is-animated .information { transition-delay: 1.1s; }       /* 氏名は1.1秒後 */
/* --- ここまでアニメーション定義 --- */

.hero-container {
    height: 80vh;
}
.hero-text-content {
    color: #fff;
    width: 100%;
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
}
.creator{
    display: flex;
    font-size: 28px;
    align-self: flex-start;
}
.name-contents {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items:center;
    align-self: center; 
}
.name {
    text-align: center;
    justify-items: left;
    letter-spacing: 0.1em;
}
.position { font-size: 24px;}
.hero-name-ja { font-size: 42px; }
.hero-name-en { font-size: 18px;}
.information {
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center; 
    align-self: flex-end; 
    text-align: right;
}
.line-link img{
    height: 100px;
    width: 100px;
    object-fit: contain;
}
/* --- Career Section --- */
.career-section {
    position: relative;
    min-height: 650px; /* セクションの高さを維持 */
    color: #fff;
    /* 前景コンテンツを中央に配置するための設定 */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 80px 0;
    background-color: #28a7e1;
}
.career-section .section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.career-section .section-bg-image img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    object-position: 80% 50%;
}
.career-section .career-container {
    position: relative;
    width: 90%;
    text-align: center;
    height: 70vh;
}
.career-container {
    /* アニメーションの初期状態と設定*/
    opacity: 0; /* 初期状態: 透明 */
    transition: opacity 1.5s ease-in-out; /* 1.5秒かけて変化 */
}
/* アニメーションの初期状態と設定*/
.career-container.is-in-view {
    opacity: 1;
}

/* PC: タイトル */
.career-section .section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    display: flex; /* Flexboxを有効にする */
    align-items: center; /* 子要素（テキストと線）を垂直方向の中央に揃える */
    gap: 1em; /* テキストと線の間の隙間を空ける */
}
.career-section .section-title::after {
    content: '';
    height: 2px;
    background-color: #fff;
    flex-grow: 1; 
}

/* PC: 経歴リストと小さな画像のラッパー */
.career-content-wrapper {
    display: flex;
    justify-content: space-between;
}

/* PC: 経歴リストのスタイリング */
.career-history {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    box-sizing: border-box;
    width: 50%;
}

/* --- Accordion Section --- */
.accordion-section {
    padding: 80px 0;
    position: relative;
    background-color: #28a7e1;
    overflow: hidden; /* 念のため、はみ出しを防止 */
}
.selection-container {
    /* アニメーションの初期状態と設定*/
    opacity: 0; /* 初期状態: 透明 */
    transition: opacity 1.5s ease-in-out; /* 1.5秒かけて変化 */
}
/* アニメーションの初期状態と設定*/
.selection-container.is-in-view {
    opacity: 1;
}
.accordion-section .section-title{
    color: #ffffff;
    position: relative;
    display: flex; /* Flexboxを有効にする */
    align-items: center; /* 子要素（テキストと線）を垂直方向の中央に揃える */
    gap: 1em; /* テキストと線の間の隙間を空ける */
}
.accordion-section .section-title::after {
    content: '';
    height: 2px;
    background-color: #fff;
    flex-grow: 1; 
}
.accordion-item {
    background-color: rgba(255, 255, 255, 0.75); /* 半透明の白 */
    border: 1px solid #ddd;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
}
.accordion-title {
    font-weight: bold;
    color: #333;
}
.accordion-toggle-button {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
}
.plus-minus-icon {
    display: block;
    width: 100%;
    height: 100%;
}
.plus-minus-icon::before,
.plus-minus-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 3px;
    background-color: #555;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
.plus-minus-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-header[aria-expanded="true"] .plus-minus-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.accordion-content {
    padding: 30px;
    border-top: 1px solid #eee;
    display: none;
}
.content-inner {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.content-block {
    display: flex;
    justify-content: space-around;
    text-align: left;
    gap: 10px;
}
.pictogram {
    height: 250px;
    width: auto;
    margin: 0 auto 15px;
}

.pictogram-caption {
    color: #333;
    margin-bottom: 20px;
    width: 50%;
}

/* --- selection Section --- */
.selection-section {
    background-color: #28a7e1; /* 画像に合わせた青色 */
    color: #fff;
    padding: 80px 0;
}
.selection-section .section-title {
    color: #fff;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
    display: flex; /* Flexboxを有効にする */
    align-items: center; /* 子要素（テキストと線）を垂直方向の中央に揃える */
    gap: 1em; /* テキストと線の間の隙間を空ける */
}
.selection-section .section-title::after {
    content: '';
    height: 1px;
    background-color: #fff;
    flex-grow: 1; 
}
.selection-list-area {
    flex: 1;
}
.selection-item {
    margin-bottom: 15px;
}
.selection-question {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* アイコンのスペース */
    display: flex;
    align-items: baseline;
}
.selection-question .mark {
    margin-right: 20px;
    flex-shrink: 0;
}
.selection-answer-content{
    display: flex;
}
.selection-answer .a-text {
    flex: 1;
    margin-top: 10px;
}
/* --- Works Section --- */
.works-section {
    background-color: #28a7e1; /* デザインに合わせた青色 */
    color: #fff;
    padding: 80px 0;
}

.works-item-title {
    /* アニメーションの初期状態と設定*/
    opacity: 0; /* 初期状態: 透明 */
    transform: translateY(-30px); /* 初期状態: 30px下にずらす */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
/* アニメーションの初期状態と設定*/
.works-item-title.is-in-view {
    opacity: 1;
    transform: translateY(0);
}

.works-item-subtitle {
    opacity: 0; /* 初期状態: 透明 */
    transform: translateY(-30px); /* 初期状態: 30px下にずらす */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.works-item-subtitle.is-in-view {
    opacity: 1;
    transform: translateY(0);
}

.works-item-description {
    opacity: 0; /* 初期状態: 透明 */
    transform: translateY(-30px); /* 初期状態: 30px下にずらす */
    transition: opacity 1.1s ease-out, transform 1.1s ease-out;
}
.works-item-description.is-in-view {
    opacity: 1;
    transform: translateY(0);
}
.works-media-content {
    opacity: 0; /* 初期状態: 透明 */
    transform: translateX(30px); /* 初期状態: 30px下にずらす */
    transition: opacity 1.3s ease-out, transform 1.5s ease-out;
}
.works-media-content.is-in-view {
    opacity: 1;
    transform: translateX(0);
}

.section-title-works {
    font-size: 36px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    display: flex; /* Flexboxを有効にする */
    align-items: center; /* 子要素（テキストと線）を垂直方向の中央に揃える */
    gap: 1em; /* テキストと線の間の隙間を空ける */
}
.section-title-works::after {
    content: '';
    height: 1px;
    background-color: #fff;
    flex-grow: 1; 
}

.works-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.works-text-content {
    flex: 1;
    min-width: 0; /* flexアイテムの縮小対策 */
}

.works-media-content {
    flex: 1.5; /* テキストより少し幅を広めに */
    min-width: 0;
}

.works-media-content img {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid #fff;
}

.works-item-title {
    font-weight: normal;
    margin-bottom: 15px;
}

.works-item-subtitle {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
}

.works-more-link {
    text-align: right;
    margin-top: 30px;
}

.works-more-link a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.works-more-link a:hover {
    opacity: 0.8;
}

.works-more-link .arrow-icons {
    margin-left: 10px;
    font-size: 12px; /* 矢印のサイズを調整 */
}

.works-media-content {
    flex: 1.5;
    min-width: 0;
    /* ▼▼▼ 以前のimgへのスタイルは削除またはコメントアウト ▼▼▼ */
    /*
    .works-media-content img { ... }
    */
}

/* --- ▼▼▼ ここから動画用のスタイルを追記 ▼▼▼ --- */

/* 動画のアスペクト比を16:9に保つためのラッパー */
.works-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 のアスペクト比 (9 / 16 * 100) */
    border: 3px solid #8a7d6e; /* デザインに合わせた枠線 */
    box-sizing: border-box;
}

/* ラッパーいっぱいにiframeを広げる */
.works-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- FAQ Section --- */
.faq-section {
    background-color: #28a7e1; /* 画像に合わせた青色 */
    color: #fff;
    padding: 80px 0;
}
.faq-section .section-title {
    color: #fff;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
    display: flex; /* Flexboxを有効にする */
    align-items: center; /* 子要素（テキストと線）を垂直方向の中央に揃える */
    gap: 1em; /* テキストと線の間の隙間を空ける */
}
.faq-section .section-title::after {
    content: '';
    height: 1px;
    background-color: #fff;
    flex-grow: 1; 
}
.faq-list-area {
    flex: 1;
}
.faq-item {
    margin-bottom: 15px;
}
.faq-question {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* アイコンのスペース */
    display: flex;
    align-items: baseline;
}

.faq-question::after {
    transform: translateY(-50%) rotate(90deg);
}
.faq-question.active::after {
    transform: translateY(-50%) rotate(0deg);
}
.faq-question .q-mark {
    margin-right: 15px;
    flex-shrink: 0;
}
.faq-answer {
    display: none; /* 初期状態は非表示 */
    line-height: 1.8;
}
.faq-answer-content{
    display: flex;
}
.faq-answer .a-mark {
    margin-top: 10px;
    font-weight: bold;
    margin-right: 10px;
}
.faq-answer .a-text {
    flex: 1;
    margin-top: 10px;
}

/* --- Footer Contact --- */
.site-footer-contact {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    padding-right: 10px;
}
.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    padding: 10px ;
}
.contact-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.contact-text-icon {
    display: flex;
    align-items: center;
    background: #fffcf4;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}
.contact-text-icon img { height: 24px; margin-right: 8px; }
.contact-text-icon:hover { transform: scale(1.1); }
.contact-button img { width: 60%; height: auto; }
#form-modal-open-button span{
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
}

/* --- Form Modal --- */
.form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none; /* JSでflexに変更 */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}
.form-modal.is-visible { display: flex; opacity: 1; }
.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.modal-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    line-height: 1;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
}
.modal-title { margin-bottom: 20px; text-align: center; }
/* Contact Form 7 Styles */
/* --- お問い合わせフォーム全体 --- */
.wpcf7-form {
    font-size: 16px;
}

/* --- 各入力項目のラッパー --- */
.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}

/* --- 入力フィールド、セレクトボックス、テキストエリア共通 --- */
.wpcf7-form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* 崩れ防止 */
}

/* --- テキストエリアの高さ --- */
textarea.wpcf7-form-control {
    height: 120px;
}

/* --- 送信ボタン --- */
.wpcf7-submit {
    width: 100%;
    padding: 15px;
    background-color: #8a7d6e;  
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: opacity 0.3s;
}

/* --- 送信ボタン（ホバー時） --- */
.wpcf7-submit:hover {
    opacity: 0.8;
}

/* === ▼ レイアウト崩れ修正 ▼ === */

/* ラジオボタンとチェックボックスの項目を横並びに */
.wpcf7-form .wpcf7-radio .wpcf7-list-item {
    display: inline-block; /* 横並びにする */
    margin: 0 20px 0 0;  /* 右側に余白を設ける */
}

.wpcf7-form-control .wpcf7-radio {
    padding: 3px;
}

/* ラジオボタンとラベルの縦位置を中央に揃える */
.wpcf7-form .wpcf7-radio .wpcf7-list-item label {
    display: flex;
    align-items: center;
}

/* --- Responsive (SP) --- */
@media (max-width: 900px) {
    .lp-section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .text2 {
        font-size: 18px;
        line-height: 1.6;
        letter-spacing: 0.1em;
    }
    .text3 {
        font-size: 15px;
        line-height: 1.6;
        letter-spacing: 0.1em;
    }
    .global-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 60vh;
    }

    /* --- Header --- */
    .site-header { padding: 10px 15px; }

    /* --- Hero --- */
    .hero-section {
        height: 100vh;
        min-height: 500px;
        align-items: flex-end; /* テキストを下部に */
        padding-bottom: 60px;
    }
    
    .hero-container {
        display: flex;
        justify-content: center;
    }
    .hero-text-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    .name-contents {
        display: flex;
        align-items: center;
        text-align: left;
    }

    .hero-information {
        text-align: right;
        font-size: 12px;
    }
    .information .line-link {
        object-fit: contain;
    }
    
    /* --- Career --- */ 
    @media (max-width: 768px) {
        .career-section {
            /* PCで指定したflex-direction等を上書きし、縦並びにする */
            flex-direction: column;
            /* PC用の高さをリセットし、コンテンツに応じた高さに */
            min-height: auto; 
            padding: 60px 20px;
        }

        /* 画像(imgタグ)を通常のブロック要素に変更 */
        .career-section .section-bg-image {
            /* position: absolute を解除し、通常の要素としてレイアウト */
            position: static; 
            width: auto;
            height: 60vh;
            /* object-fit/position をリセット */
            object-fit: cover;
            object-position: center;
        }
        
        /* 画像の親であるpictureタグの表示順を指定 */
        .career-section picture {
            /* flexアイテムの表示順を2番目にする */
            order: 2;    
            /* 上のテキストブロックとの間に余白を設ける */
            margin-top: 10px; 
        }
        /* テキストコンテナの表示順とスタイルを調整 */
        .career-section .career-container {
            /* flexアイテムの表示順を1番目にする */
            order: 1; 
            /* PC用の幅制限を解除 */
            max-width: 100%;
            height: auto;
        }
        /* スマホ: 経歴リストのスタイリング */
        .career-container .section-title{
            font-size: 28px;
        }
        .career-history {
            width: 100%;
        }
    }

    /* --- Accordion Responsive --- */
    @media (max-width: 900px) {
        .accordion-section .section-title{
            margin-bottom: 60px;
        }
        .accordion-header {
            padding: 15px 20px;
        }
        .content-inner {
            width: 100%;
        }
        .content-block {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .pictogram {
            height: auto;
        }
        .pictogram-caption {
            margin-bottom: 15px;
            width: 100%;
        }
    }

    /* --- selsection Responsive --- */
    @media (max-width: 900px) {
        .selection-container {
            flex-direction: column;
            gap: 30px;
            overflow: hidden;
        }
        .selection-title-area {
            flex: auto;
            min-width: 0;
            margin-bottom: 30px;
        }
        .selection-section .section-title {
            font-size: 28px;
            text-align: center;
            padding-bottom: 0;
            margin-bottom: 0;
        }
    }
    /* --- Works Responsive --- */
    @media (max-width: 768px) {
        .works-section {
            padding: 60px 0;
        }
        .section-title-works {
            font-size: 28px;
            margin-bottom: 30px;
        }
        .works-content-wrapper {
            flex-direction: column; /* スマホでは縦積みに */
            gap: 30px;
        }
        
        .works-item-subtitle {
            font-size: 22px;
            margin-bottom: 20px;
        }
        .works-more-link {
            margin-top: 25px;
            font-size: 15px;
        }
        .works-text-content,
        .works-media-content {
            /* flexアイテムとしての比率指定をリセット */
            flex: none; 
            /* 幅を100%に設定 */
            width: 100%;
        }
    }
    /* --- FAQ Responsive --- */
    @media (max-width: 900px) {
        .faq-container {
            flex-direction: column;
            gap: 30px;
            overflow: hidden;
        }
        .faq-title-area {
            flex: auto;
            min-width: 0;
            margin-bottom: 30px;
        }
        .faq-section .section-title {
            font-size: 28px;
            text-align: center;
            padding-bottom: 0;
            margin-bottom: 0;
        }
    }
    /* --- Footer --- */
    .footer-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap:10px;
        padding: 10px 0;
    }
    .contact-button-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    .contact-button-wrapper span {
        font-size: 12px;
    }
    .contact-text-icon {
        display: flex;
        align-items: center;
        background: #fffcf4;
        padding: 10px 20px;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        border: none;
        cursor: pointer;
        transition: transform 0.2s;
    }
    #form-modal-open-button span{
        font-family: 'Noto Serif JP', serif;
        font-size: 12px;
    }
    .contact-text-icon img { height: 24px; margin-right: 8px; }
    .contact-text-icon:hover { transform: scale(1.1); }
    .contact-button img { width: 60%; height: auto; }
}
