@charset "UTF-8";

/* デスクトップ */
@media (min-width: 1025px) {
    body {
        font-family: 'Noto Sans JP', sans-serif;
        background-color: #FAFAFA;
        color: #333;
        min-width: 1025px;
    }

    .sp-br {
        display: none;
    }

    a {
        text-decoration: none;
        color: #0072ff;
    }

    p {
        margin: 10px 0;
    }

    /* h２　見出し */
    .heading {
        position: relative;
        padding-top: 50px;
        padding-left: 30px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .heading span {
        position: relative;
        z-index: 0;
    }

    .heading::before {
        content: attr(data-en);
        position: absolute;
        transform: rotate(-5deg);
        top: 0;
        /* left: 0; */
        color: rgba(85, 213, 247, .2);
        font-size: 80px;
        font-weight: 400;
        font-family: 'Dancing Script', cursive;
    }

    .heading span::before {
        content: '';
        display: inline-block;
        width: 24px;
        /* 横棒の長さ */
        height: 2px;
        /* 太さ */
        background-color: #333;
        /* 色（黒系） */
        margin-right: 12px;
        /* 文字との距離 */
        vertical-align: middle;
        /* 縦位置調整 */
        border-radius: 1px;
        /* 丸めるなら追加 */
    }

    /*========= LoadingのためのCSS ===============*/

    /* Loading背景画面設定　*/
    #splash {
        /*fixedで全面に固定*/
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: #fafafa;
        text-align: center;
    }

    /* Loading画像中央配置　*/
    #splash_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
        width: 80%;
    }

    /* fadeUpをするアイコンの動き */

    .fadeUp {
        animation-name: fadeUpAnime;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes fadeUpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* 波 */
    .wave-background {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        pointer-events: none;
        /* クリックなどを無効化 */
        z-index: 1;
        /* 背面に回す */
    }

    #wrapper {
        display: flex;
        width: 100%;
    }

    /* 左側 */
    nav {
        width: 15%;
        height: 100vh;
        /* background-color: aqua; */
        position: fixed;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .logo img {
        width: 80%;
    }

    .navi {
        margin-top: -20px;
    }

    .navi li {
        margin: 16px 0;
    }

    .cta img {
        width: 80%;
        padding-left: 16px;
    }

    .cta {
        /* お好みで調整可能 */
        transition: transform 0.2s ease;
    }

    .cta:hover {
        transform: scale(1.05);

    }

    /* 右側 */
    .container {
        width: 85%;
        margin-left: 15%;
        /* background-color: bisque; */
    }

    .fv {
        width: 100%;
        height: 150px;
        text-align: center;
        margin: 0 auto;
    }

    .fv-ttl h1 {
        font-size: 80px;
        font-weight: 700;
        background: linear-gradient(90deg, #4A6CF7, #00CFFF);
        /* 左→右の青系グラデーション */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        margin: 60px auto;
        text-align: center;
        padding: 0;
    }

    .fv-main {
        margin-top: -120px;
    }

    .fv img {
        width: 100%;
    }

    .center {
        text-align: center;
    }

    /* --- 記事コンテナー --- */

    .article-container {
        width: 90%;
        margin: 40px auto;
        padding: 20px;
        /* background-color: #fff; */
    }

    /* --- 記事ヘッダー (日付とカテゴリ) --- */
    .article-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .article-date {
        font-size: 14px;
        color: #666;
    }

    .article-category {
        font-size: 12px;
        background-color: #f0f0f0;
        color: #555;
        padding: 4px 12px;
        border-radius: 4px;
        text-decoration: none;
    }

    .article-category:hover {
        background-color: #e0e0e0;
    }

    /* --- 記事タイトル --- */
    .article-title {
        font-size: 28px;
        font-weight: bold;
        line-height: 1.5;
        margin: 0 0 24px 0;
    }

    /* --- アイキャッチ画像 --- */
    .article-eyecatch {
        margin-bottom: 40px;
        width: 100%;
    }

    .article-eyecatch img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* --- 記事本文 --- */
    .article-content {
        font-size: 16px;
    }

    .article-content p {
        margin: 0 0 24px 0;
    }

    /* contact */

    .form-container {
        max-width: 600px;
        width: 100%;
        padding: 20px;
        margin: 0 auto;
    }

    .form-header {
        text-align: center;
        margin-bottom: 40px;
        line-height: 1.7;
        font-size: 14px;
        color: #5b6271;
    }

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

    label {
        display: block;
        margin-bottom: 12px;
        font-weight: bold;
        font-size: 15px;
        padding-left: 5px;
    }

    .required {
        background-color: #3d8de6;
        color: white;
        font-size: 12px;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: normal;
        margin-left: 8px;
        vertical-align: middle;
        box-shadow: 2px 2px 5px #c8c9ce, -2px -2px 5px #ffffff;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea {
        width: 100%;
        padding: 18px;
        border: none;
        /* Remove border for neumorphism */
        border-radius: 12px;
        background-color: #eef0f4;
        /* Same as body */
        font-size: 16px;
        box-sizing: border-box;
        color: #5b6271;
        /* Inset shadow to make it look like it's pressed into the background */
        box-shadow: inset 5px 5px 10px #d8dade,
            inset -5px -5px 10px #ffffff;
        transition: box-shadow 0.3s ease;
    }

    input:focus,
    textarea:focus {
        outline: none;
        box-shadow: inset 7px 7px 14px #d8dade,
            inset -7px -7px 14px #ffffff;
    }


    input::placeholder,
    textarea::placeholder {
        color: #9da3b1;
    }

    textarea {
        resize: vertical;
    }

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


    .contact-btn {
        margin: 0;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .footer-cta {
        width: 100%;
        height: 600px;
        text-align: center;
    }

    .neumo-button {
        width: 300px;
        margin: 40px auto;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        background: #FAFAFA;
        border-radius: 10px;
        box-shadow:
            6px 6px 12px rgba(0, 0, 0, 0.1),
            -6px -6px 12px rgba(255, 255, 255, 0.7);
        font-size: 16px;
        font-weight: 600;
        color: #333;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .neumo-button .icon {
        background: #FAFAFA;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: #333;
        box-shadow:
            inset 2px 2px 4px rgba(0, 0, 0, 0.1),
            inset -2px -2px 4px rgba(255, 255, 255, 0.7);
    }

    .neumo-button:hover {
        box-shadow:
            inset 6px 6px 12px rgba(0, 0, 0, 0.1),
            inset -6px -6px 12px rgba(255, 255, 255, 0.7);
        transform: translateY(1px);
    }

    .neumophic {
        flex-direction: column;
        gap: 12px;
        margin: 0 auto;
    }

    .footer-cta img {
        width: 100%;
    }



    /* フッター */
    footer {
        height: 300px;
    }

    /* フッター全体 */
    .site-footer {
        background-color: #f8f9fa;
        /* フッターの背景色 */
        padding: 60px 0 40px 0;
        font-size: 14px;
        color: #555;
        border-top: 1px solid #eaeaea;
    }

    /* コンテンツの最大幅と中央揃え */
    .footer-container {
        margin: 0 auto;
        padding: 0 20px;
    }

    /* メイン部分（ロゴとナビのコンテナ） */
    .footer-main {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
        margin-bottom: 50px;
    }

    /* 左側：ロゴとタグライン */
    .footer-left .logo-text {
        font-size: 24px;
        font-weight: bold;
        color: #222;
        margin: 0 0 10px 0;
    }

    .footer-left {
        width: 40%;
    }

    .footer-left .tagline {
        font-size: 12px;
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

    /* 右側：ナビゲーションとSNSアイコン */
    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 80%;
    }

    .footer-nav ul {
        display: flex;
        gap: 24px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }

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


    /* SNSアイコンをまとめるコンテナ */
    .footer-socials {
        display: flex;
        align-items: center;
        gap: 16px;
        /* アイコン同士の間隔 */
    }

    .social-link {
        /* リンク自体のスタイル（変更なし）*/
        text-decoration: none;
    }

    /* ▼▼▼ この部分を変更 ▼▼▼ */
    .social-link img {
        width: 24px;
        /* 画像の幅 */
        height: 24px;
        /* 画像の高さ */
        display: block;
        /* レイアウト崩れを防ぐため */
    }

    /* ▲▲▲ ここまで ▲▲▲ */


    .social-link:hover {
        opacity: 0.7;
        /* ホバー時に少し透過させる（この効果は画像にも適用されます） */
    }

    /* コピーライト */
    .footer-copyright {
        text-align: center;
        font-size: 12px;
        color: #888;
    }
}

/* タブレット */
@media (min-width: 641px) and (max-width: 1024px) {
    body {
        font-family: 'Noto Sans JP', sans-serif;
        background-color: #FAFAFA;
        color: #333;
        min-width: 641px;
        max-width: 1024px;
    }

    .sp-br {
        display: none;
    }

    a {
        text-decoration: none;
        color: #0072ff;
    }

    p {
        margin: 10px 0;
    }

    /* h２　見出し */
    .heading {
        position: relative;
        padding-top: 50px;
        padding-left: 30px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .heading span {
        position: relative;
        z-index: 0;
    }

    .heading::before {
        content: attr(data-en);
        position: absolute;
        transform: rotate(-5deg);
        top: 0;
        /* left: 0; */
        color: rgba(85, 213, 247, .2);
        font-size: 80px;
        font-weight: 400;
        font-family: 'Dancing Script', cursive;
    }

    .heading span::before {
        content: '';
        display: inline-block;
        width: 24px;
        /* 横棒の長さ */
        height: 2px;
        /* 太さ */
        background-color: #333;
        /* 色（黒系） */
        margin-right: 12px;
        /* 文字との距離 */
        vertical-align: middle;
        /* 縦位置調整 */
        border-radius: 1px;
        /* 丸めるなら追加 */
    }

    /*========= LoadingのためのCSS ===============*/

    /* Loading背景画面設定　*/
    #splash {
        /*fixedで全面に固定*/
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: #fafafa;
        text-align: center;
    }

    /* Loading画像中央配置　*/
    #splash_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
        width: 80%;
    }

    /* fadeUpをするアイコンの動き */

    .fadeUp {
        animation-name: fadeUpAnime;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes fadeUpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* 波 */
    .wave-background {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        pointer-events: none;
        /* クリックなどを無効化 */
        z-index: 1;
        /* 背面に回す */
    }

    #wrapper {
        display: flex;
        width: 100%;
    }

    /* 左側 */
    nav {
        width: 15%;
        height: 100vh;
        /* background-color: aqua; */
        position: fixed;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .logo img {
        width: 80%;
    }

    .navi {
        margin-top: -20px;
    }

    .navi li {
        margin: 16px 0;
    }

    .cta img {
        width: 80%;
        padding-left: 16px;
    }

    .cta {
        /* お好みで調整可能 */
        transition: transform 0.2s ease;
    }

    .cta:hover {
        transform: scale(1.05);

    }

    /* 右側 */
    .container {
        width: 85%;
        margin-left: 15%;
        /* background-color: bisque; */
    }

    .fv {
        width: 100%;
        max-width: 870px;
        height: 100vh;
        text-align: center;
        margin: 0 auto;
    }

    .fv {
        width: 100%;
        height: 150px;
        text-align: center;
        margin: 0 auto;
    }

    .fv-ttl h1 {
        font-size: 80px;
        font-weight: 700;
        background: linear-gradient(90deg, #4A6CF7, #00CFFF);
        /* 左→右の青系グラデーション */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        margin: 60px auto;
        text-align: center;
        padding: 0;
    }

    .fv-main {
        margin-top: -120px;
    }

    .fv img {
        width: 100%;
    }

    .center {
        text-align: center;
    }

    /* --- 記事コンテナー --- */

    .article-container {
        width: 90%;
        margin: 40px auto;
        padding: 20px;
        /* background-color: #fff; */
    }

    /* --- 記事ヘッダー (日付とカテゴリ) --- */
    .article-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .article-date {
        font-size: 14px;
        color: #666;
    }

    .article-category {
        font-size: 12px;
        background-color: #f0f0f0;
        color: #555;
        padding: 4px 12px;
        border-radius: 4px;
        text-decoration: none;
    }

    .article-category:hover {
        background-color: #e0e0e0;
    }

    /* --- 記事タイトル --- */
    .article-title {
        font-size: 28px;
        font-weight: bold;
        line-height: 1.5;
        margin: 0 0 24px 0;
    }

    /* --- アイキャッチ画像 --- */
    .article-eyecatch {
        margin-bottom: 40px;
        width: 100%;
    }

    .article-eyecatch img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* --- 記事本文 --- */
    .article-content {
        font-size: 16px;
    }

    .article-content p {
        margin: 0 0 24px 0;
    }

    /* contact */

    .form-container {
        max-width: 600px;
        width: 100%;
        padding: 20px;
        margin: 0 auto;
    }

    .form-header {
        text-align: center;
        margin-bottom: 40px;
        line-height: 1.7;
        font-size: 14px;
        color: #5b6271;
    }

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

    label {
        display: block;
        margin-bottom: 12px;
        font-weight: bold;
        font-size: 15px;
        padding-left: 5px;
    }

    .required {
        background-color: #3d8de6;
        color: white;
        font-size: 12px;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: normal;
        margin-left: 8px;
        vertical-align: middle;
        box-shadow: 2px 2px 5px #c8c9ce, -2px -2px 5px #ffffff;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea {
        width: 100%;
        padding: 18px;
        border: none;
        /* Remove border for neumorphism */
        border-radius: 12px;
        background-color: #eef0f4;
        /* Same as body */
        font-size: 16px;
        box-sizing: border-box;
        color: #5b6271;
        /* Inset shadow to make it look like it's pressed into the background */
        box-shadow: inset 5px 5px 10px #d8dade,
            inset -5px -5px 10px #ffffff;
        transition: box-shadow 0.3s ease;
    }

    input:focus,
    textarea:focus {
        outline: none;
        box-shadow: inset 7px 7px 14px #d8dade,
            inset -7px -7px 14px #ffffff;
    }


    input::placeholder,
    textarea::placeholder {
        color: #9da3b1;
    }

    textarea {
        resize: vertical;
    }

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


    .contact-btn {
        margin: 0;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .footer-cta {
        width: 100%;
        height: 600px;
        text-align: center;
    }

    .neumophic {
        flex-direction: column;
        gap: 12px;
        margin: 0 auto;
    }

    .footer-cta img {
        width: 100%;
    }



    /* フッター */
    footer {
        height: 300px;
    }

    /* フッター全体 */
    .site-footer {
        background-color: #f8f9fa;
        /* フッターの背景色 */
        padding: 60px 0 40px 0;
        font-size: 14px;
        color: #555;
        border-top: 1px solid #eaeaea;
    }

    /* コンテンツの最大幅と中央揃え */
    .footer-container {
        margin: 0 auto;
        padding: 0 20px;
    }

    /* メイン部分（ロゴとナビのコンテナ） */
    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }

    /* 左側：ロゴとタグライン */
    .footer-left .logo-text {
        font-size: 24px;
        font-weight: bold;
        color: #222;
        margin: 0 0 10px 0;
    }

    .footer-left {
        width: 100%;
    }

    .footer-left .tagline {
        font-size: 12px;
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

    /* 右側：ナビゲーションとSNSアイコン */
    .footer-right {
        display: flex;
        align-items: center;
        gap: 24px;
        width: 100%;
        padding-left: 80px;
    }

    .footer-nav ul {
        display: flex;
        gap: 24px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }

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


    /* SNSアイコンをまとめるコンテナ */
    .footer-socials {
        display: flex;
        align-items: center;
        gap: 16px;
        /* アイコン同士の間隔 */
    }

    .social-link {
        /* リンク自体のスタイル（変更なし）*/
        text-decoration: none;
    }

    /* ▼▼▼ この部分を変更 ▼▼▼ */
    .social-link img {
        width: 24px;
        /* 画像の幅 */
        height: 24px;
        /* 画像の高さ */
        display: block;
        /* レイアウト崩れを防ぐため */
    }

    /* ▲▲▲ ここまで ▲▲▲ */


    .social-link:hover {
        opacity: 0.7;
        /* ホバー時に少し透過させる（この効果は画像にも適用されます） */
    }

    /* コピーライト */
    .footer-copyright {
        text-align: center;
        font-size: 12px;
        color: #888;
    }
}

/* モバイル */
@media (max-width: 640px) {
    body {
        font-family: 'Noto Sans JP', sans-serif;
        background-color: #FAFAFA;
        color: #333;
        max-width: 640px;
    }

    #wrapper {
        width: 100%;
    }

    a {
        text-decoration: none;
        color: #0072ff;
    }

    p {
        margin: 10px 0;
    }

    /* h２　見出し */
    .heading {
        position: relative;
        padding-top: 50px;
        padding-left: 30px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .heading span {
        position: relative;
        z-index: 0;
    }

    .heading::before {
        content: attr(data-en);
        position: absolute;
        transform: rotate(-5deg);
        top: 0;
        /* left: 0; */
        color: rgba(85, 213, 247, .2);
        font-size: 80px;
        font-weight: 400;
        font-family: 'Dancing Script', cursive;
    }

    .heading span::before {
        content: '';
        display: inline-block;
        width: 24px;
        /* 横棒の長さ */
        height: 2px;
        /* 太さ */
        background-color: #333;
        /* 色（黒系） */
        margin-right: 12px;
        /* 文字との距離 */
        vertical-align: middle;
        /* 縦位置調整 */
        border-radius: 1px;
        /* 丸めるなら追加 */
    }

    /*========= LoadingのためのCSS ===============*/

    /* Loading背景画面設定　*/
    #splash {
        /*fixedで全面に固定*/
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: #fafafa;
        text-align: center;
    }

    /* Loading画像中央配置　*/
    #splash_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
        width: 80%;
    }

    /* fadeUpをするアイコンの動き */

    .fadeUp {
        animation-name: fadeUpAnime;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes fadeUpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* 波 */
    .wave-background {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        pointer-events: none;
        /* クリックなどを無効化 */
        z-index: 1;
        /* 背面に回す */
    }

    .logo {
        display: none;
    }

    header img {
        width: 30%;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
        position: fixed;
        z-index: -1;
        opacity: 0;
        /*はじめは透過0*/
        /*ナビの位置と形状*/
        top: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: rgba(255, 255, 255, 0.8);
        /*背景を少し透過させる*/
        /*動き*/
        transition: all 0.3s;
    }

    /*アクティブクラスがついたら透過なしにして最前面へ*/
    #g-nav.panelactive {
        opacity: 1;
        z-index: 999;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        display: none;
        /*はじめは非表示*/
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #g-nav.panelactive ul {
        display: block;
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 35px;
        right: 15px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #3283ff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .cta img {
        width: 80%;
        padding-left: 16px;
    }

    .cta {
        /* お好みで調整可能 */
        transition: transform 0.2s ease;
    }

    .cta:hover {
        transform: scale(1.05);

    }

    /* container SPコンテンツ */
    .container {
        width: 100%;
    }

    .fv {
        width: 100%;
        text-align: center;
    }



    .neumo-button {
        width: 200px;
        margin: 40px auto;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        background: #FAFAFA;
        border-radius: 10px;
        box-shadow:
            6px 6px 12px rgba(0, 0, 0, 0.1),
            -6px -6px 12px rgba(255, 255, 255, 0.7);
        font-size: 14px;
        font-weight: 600;
        color: #333;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .neumo-button .icon {
        background: #FAFAFA;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: #333;
        box-shadow:
            inset 2px 2px 4px rgba(0, 0, 0, 0.1),
            inset -2px -2px 4px rgba(255, 255, 255, 0.7);
    }

    .neumo-button:hover {
        box-shadow:
            inset 6px 6px 12px rgba(0, 0, 0, 0.1),
            inset -6px -6px 12px rgba(255, 255, 255, 0.7);
        transform: translateY(1px);
    }

    .center {
        text-align: center;
    }

    .fv {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .fv-ttl h1 {
        font-size: 50px;
        /* font-weight: 700; */
        background: linear-gradient(90deg, #4A6CF7, #00CFFF);
        /* 左→右の青系グラデーション */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        margin: 20px auto;
        text-align: center;
        padding: 0;
    }

    .fv-main {
        margin-top: -120px;
    }

    .fv img {
        width: 100%;
    }

    .center {
        text-align: center;
    }

    /* --- 記事コンテナー --- */

    .article-container {
        width: 90%;
        margin: 40px auto;
        padding: 20px;
        /* background-color: #fff; */
    }

    /* --- 記事ヘッダー (日付とカテゴリ) --- */
    .article-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .article-date {
        font-size: 14px;
        color: #666;
    }

    .article-category {
        font-size: 12px;
        background-color: #f0f0f0;
        color: #555;
        padding: 4px 12px;
        border-radius: 4px;
        text-decoration: none;
    }

    .article-category:hover {
        background-color: #e0e0e0;
    }

    /* --- 記事タイトル --- */
    .article-title {
        font-size: 28px;
        font-weight: bold;
        line-height: 1.5;
        margin: 0 0 24px 0;
    }

    /* --- アイキャッチ画像 --- */
    .article-eyecatch {
        margin-bottom: 40px;
        width: 100%;
    }

    .article-eyecatch img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* --- 記事本文 --- */
    .article-content {
        font-size: 16px;
    }

    .article-content p {
        margin: 0 0 24px 0;
    }

    /* company */
    .company-profile {
        display: flex;
        flex-direction: column;
        margin: 40px auto;
        overflow: hidden;
    }

    .info-section {
        flex-basis: 58%;
        /* Adjust percentage as needed */
        padding: 20px 30px;
    }

    .map-section iframe {
        height: 300px;
    }


    .info-list {
        width: 100%;
    }

    .info-row {
        display: flex;
        padding: 18px 0;
        border-bottom: 1px solid #f0f0f0;
        align-items: flex-start;
    }

    .info-row:last-child {
        border-bottom: none;
    }

    .info-label {
        flex-basis: 130px;
        flex-shrink: 0;
        padding-right: 20px;
    }

    .info-data {
        flex-grow: 1;
    }

    /* contact */

    .form-container {
        max-width: 600px;
        width: 100%;
        padding: 20px;
        margin: 0 auto;
    }

    .form-header {
        text-align: center;
        margin-bottom: 40px;
        line-height: 1.7;
        font-size: 14px;
        color: #5b6271;
    }

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

    label {
        display: block;
        margin-bottom: 12px;
        font-weight: bold;
        font-size: 15px;
        padding-left: 5px;
    }

    .required {
        background-color: #3d8de6;
        color: white;
        font-size: 12px;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: normal;
        margin-left: 8px;
        vertical-align: middle;
        box-shadow: 2px 2px 5px #c8c9ce, -2px -2px 5px #ffffff;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea {
        width: 100%;
        padding: 18px;
        border: none;
        /* Remove border for neumorphism */
        border-radius: 12px;
        background-color: #eef0f4;
        /* Same as body */
        font-size: 16px;
        box-sizing: border-box;
        color: #5b6271;
        /* Inset shadow to make it look like it's pressed into the background */
        box-shadow: inset 5px 5px 10px #d8dade,
            inset -5px -5px 10px #ffffff;
        transition: box-shadow 0.3s ease;
    }

    input:focus,
    textarea:focus {
        outline: none;
        box-shadow: inset 7px 7px 14px #d8dade,
            inset -7px -7px 14px #ffffff;
    }


    input::placeholder,
    textarea::placeholder {
        color: #9da3b1;
    }

    textarea {
        resize: vertical;
    }

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


    .contact-btn {
        margin: 0;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .footer-cta {
        width: 100%;
        height: 400px;
        text-align: center;
    }

    .neumophic {
        flex-direction: column;
        gap: 12px;
        margin: 0 auto;
    }

    .footer-cta img {
        width: 100%;
    }



    /* フッター */
    footer {
        height: 300px;
    }

    /* フッター全体 */
    .site-footer {
        background-color: #f8f9fa;
        /* フッターの背景色 */
        padding: 60px 0 40px 0;
        font-size: 14px;
        color: #555;
        border-top: 1px solid #eaeaea;
    }

    /* コンテンツの最大幅と中央揃え */
    .footer-container {
        margin: 0 auto;
        padding: 0 20px;
    }

    /* メイン部分（ロゴとナビのコンテナ） */
    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    /* 左側：ロゴとタグライン */
    .footer-left .logo-text {
        font-size: 24px;
        font-weight: bold;
        color: #222;
        margin: 0 0 10px 0;
    }

    .footer-left {
        width: 100%;
    }

    .footer-left .tagline {
        font-size: 12px;
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

    /* 右側：ナビゲーションとSNSアイコン */
    .footer-nav {
        display: none;
    }

    /* SNSアイコンをまとめるコンテナ */
    .footer-socials {
        display: flex;
        align-items: center;
        gap: 16px;
        /* アイコン同士の間隔 */
    }

    .social-link {
        /* リンク自体のスタイル（変更なし）*/
        text-decoration: none;
    }

    /* ▼▼▼ この部分を変更 ▼▼▼ */
    .social-link img {
        width: 24px;
        /* 画像の幅 */
        height: 24px;
        /* 画像の高さ */
        display: block;
        /* レイアウト崩れを防ぐため */
    }

    /* ▲▲▲ ここまで ▲▲▲ */


    .social-link:hover {
        opacity: 0.7;
        /* ホバー時に少し透過させる（この効果は画像にも適用されます） */
    }

    /* コピーライト */
    .footer-copyright {
        text-align: center;
        font-size: 12px;
        color: #888;
    }

}

