/*　汎用st　*/
/* 1. リセットスタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vw: 1vw;
}

/* 横スクロールを防ぐ */
body,
html {
    /* overflow-x: hidden; */
    /* 横スクロールを禁止 */
}

html {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
}

body {
    /* background-color: #f8f9fa; */
    color: #333;
    margin: 0;
    padding: 0;
}

/* <a>タグのリセット */
a {
    text-decoration: none;
    /* 下線を削除 */
    color: inherit;
    /* テキスト色を親要素に合わせる */
    cursor: pointer;
    /* クリック可能に */
}

/* リストのリセット */
ul,
ol {
    list-style: none;
    /* リストの記号を非表示 */
    margin: 0;
    padding: 0;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

/*
.fade-in {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}
*/

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* アニメーションを適用した後の状態 */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-20px);
    /* 左からフェードイン */
}

.fade-in-right {
    transform: translateX(20px);
    /* 右からフェードイン */
}

.fade-in-center {
    transform: scale(0.8);
    /* ズームイン */
}

.fade-in-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    /* アニメーション完了時 */
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* ズームインアニメーション */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* ボックスサイズを要素のサイズに合わせる */
*::before,
*::after {
    box-sizing: inherit;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}

/* ヘッダー内のロゴ（h1）の位置を調整 */
.header__logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    flex-shrink: 0;
    /* ロゴが縮小されないように */
    align-self: flex-start;
    /* ロゴを左端に寄せる */
    /* color: #007BFF; */
}

/* ヘッダー全体のコンテナ */
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    /* 必要に応じて調整 */
    /* margin: 0 auto; */
    margin: 1rem;
    /* padding: 0 20px; */
    /* 横方向の余白を追加 */
    /* color: #ffffff; */
    /* background: #ffffff; */
}

/* ナビゲーションメニュー */
.header__nav {
    display: flex;
    align-items: center;
}

/* メニューリスト */
.header__menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.header__menu li {
    opacity: 0;
    /* 初期状態で透明 */
    transform: translateX(20px);
    /* 右にオフセット */
    animation: fadeIn 0.5s ease forwards;
}

.header__menu.active li:nth-child(1) {
    animation-delay: 0.1s;
}

.header__menu.active li:nth-child(2) {
    animation-delay: 0.2s;
}

.header__menu.active li:nth-child(3) {
    animation-delay: 0.3s;
}

/* メニューリンク */
.header__link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.header__link:hover {
    color: #1a73e8;
    /* ホバー時のリンク色 */
}

/* ハンバーガーアイコンの基本スタイル（常に適用） */
.header__hamburger {
    display: none;
    /* デフォルトでは非表示 */
    position: relative;
    width: 30px;
    height: 20px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #000000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger span:nth-child(1) {
    top: 0;
}

.header__hamburger span:nth-child(2) {
    top: 8px;
}

.header__hamburger span:nth-child(3) {
    top: 16px;
}

/* ハンバーガーアイコンのアニメーション */
.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

.header__menu {
    display: none;
    /* 初期状態は非表示 */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: right 0.3s ease, opacity 0.3s ease;
    /* スライドとフェードの効果 */
    opacity: 0;
    /* 非表示状態で透明 */
    z-index: 1000;
}

.header__menu.active {
    right: 0;
    /* スライド表示 */
    opacity: 1;
    /* 不透明状態に変化 */
    display: flex;
    /* メニューを表示 */
}

/* PC用のスタイル */
@media (min-width: 769px) {
    .header__menu {
        display: flex;
        /* メニューを表示 */
        flex-direction: row;
        /* 横並びにする */
        opacity: 1;
        /* 完全に表示 */
        position: static;
        /* 固定解除 */
        background-color: transparent;
        /* 背景色を透明に */
        box-shadow: none;
        /* ボックスシャドウを解除 */
        width: auto;
        height: auto;
        padding: 0;
    }

    .header__hamburger {
        display: none;
        /* ハンバーガーアイコンを非表示 */
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .header__logo {
        font-size:1.2rem;
    }

    .header__link {
        color: #fff
    }

    .header__hamburger {
        display: block;
        /* ハンバーガーアイコンをモバイル画面で表示 */
    }

    .header__menu {
        display: none;
        /* デフォルトでは非表示 */
    }

    .header__menu.active {
        display: flex;
        /* ハンバーガークリック時に表示 */
        flex-direction: column;
        /* 縦並びに表示 */
        position: fixed;
        /* 固定配置 */
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #000000cc;
        /* background-color: #1a73e8; */
        /* background-image: url('../images/jewelry.webp'); */
        background-size: contain;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
    }

}

.slideshow-container {
    position: relative;
    max-width: 100%;
    height: 100vh;
    margin: auto;
    overflow: hidden;
}

.mySlides img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    animation: zoomIn 10s ease-in-out infinite;
}

@media (min-width: 768px) {
    .slideshow-container {
        height: 75vh;
    }
}

@media (min-width: 768px) {
    .mySlides img {
        height: 75vh;
    }
}

@media (min-width: 1024px) {
    .slideshow-container {
        height: 100vh;
    }
}

@media (min-width: 1024px) {
    .mySlides img {
        height: 100vh;
    }
}

/*　汎用en　*/

#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* ヒーローセクションを画面全体に */
    overflow: hidden;
}

.hero__video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero__content {
    position: absolute;
    z-index: 1;
    text-align: left;
    /* color: #fff; */
    left: 60rem;
    top: 20rem;
    font-size: 4rem;
    padding: 1rem;
}

.hero__content h1 {
    font-size: 4rem; /* 大きく目立つ */
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero__content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .hero__content h1 {
        font-size: 2.5rem;
    }

    .hero__content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero__content {
        top: unset;
        left: 5rem;
        bottom: 1rem;
        font-size: 1rem;
        padding: 1rem;
    }
}

/* #problems セクション自体は既存の背景色（#ffffff）とパディングをそのまま利用 */
#problems {
    background-color: #ffffff;
    padding: 60px 20px;
}

/* コンテナ：max-width は使用せず、全幅を利用 */
.problems__container {
    display: flex;
    flex-direction: column;
    /* スマホ用：縦並び */
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

/* PC表示時（横幅768px以上）は横並びに変更 */
@media (min-width: 768px) {
    .problems__container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        /* space-between → center に変更 */
    }

    /* 必要に応じて、テキスト部分に左右の余白を追加 */
    .problems__content {
        margin-left: 20px;
        margin-right: 20px;
    }

    .problems__image,
    .problems__content {
        width: 50%;
    }
}

/* 円形の画像エリア */
.problems__image {
    /*
    width: 300px;
    height: 300px;
    */
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    /* 1:1の正方形を維持 */
    border-radius: 50%;
    overflow: hidden;
    /* <img> を円形に切り抜く */
}

/* img タグのスタイル */
.problems__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* リスト・テキストエリア */
.problems__content {
    flex: 1;
    text-align: left;
}

/* 見出し */
.problems__content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .problems__content h2 {
        font-size: 2rem;
    }
}


/* リストのスタイル */
.problems__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problems__list li {
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.problems__list li:last-child {
    border-bottom: none;
}

/* #solution セクションの基本設定はそのまま */
#solution {
    background-color: #ffffff;
    padding: 60px 20px;
}

/* スマートフォンではデフォルトで縦並び（画像上、テキスト下） */
.solution__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

/* PC表示時：左右50%ずつ、テキストを左、画像を右に表示 */
@media (min-width: 768px) {
    .solution__container {
        flex-direction: row-reverse;
        /* HTML順は画像→テキストですが、row-reverseで逆順に表示 */
        align-items: center;
        justify-content: center;
    }

    .solution__image,
    .solution__content {
        width: 50%;
    }
}

/* 円形の画像エリア */
.solution__image {
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    /* 1:1の正方形を維持 */
    border-radius: 50%;
    overflow: hidden;
    /* <img> を円形に切り抜く */
}

/* img タグのスタイル */
.solution__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* テキスト部分 */
.solution__content {
    text-align: left;
}

/* 見出しのスタイル */
.solution__content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .solution__content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    }
}

/* リストのスタイル */
.solution__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution__list li {
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.solution__list li:last-child {
    border-bottom: none;
}

/* テストモニアルセクション全体 */
#testimonials {
    padding: 60px 20px;
    background-color: #f7f7f7;
    /* 背景色はお好みに合わせて */
}

/* コンテナ内の見出し */
.testimonials__container {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.testimonials__container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .testimonials__container h2 {
        font-size: 2rem;
    }
}


/* 横スクロールのリスト */
.testimonials__list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

/* 各テストモニアルカード */
.testimonial {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    scroll-snap-align: start;
    /* 余白は調整に応じて */
}

/* PC表示時：カードの幅を 100%/4.5 で計算（約22.2%） */
@media (min-width: 769px) {
    .testimonial {
        flex: 0 0 calc(100% / 4.5);
    }
}

/* スマートフォン表示時：カードの幅を 100%/1.5 で計算（約66.7%） */
@media (max-width: 768px) {
    .testimonial {
        flex: 0 0 calc(100% / 1.2);
    }
}

/* ブロック内の引用文 */
.testimonial blockquote {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #555;
}

/* 著者名 */
.testimonial__author {
    font-size: 1rem;
    color: #777;
    text-align: right;
    margin: 0;
}

/* FAQ セクション全体 */
#faq {
    padding: 40px 20px;
    background-color: #ffffff;
    /* 背景色は必要に応じて変更 */
    text-align: left;
}

/* FAQ コンテナ */
.faq__container {
    width: 100%;
    margin: 0 auto;
}

/* 見出し */
#faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

@media (max-width: 768px) {
    #faq h2 {
        font-size: 2rem;
    }
}

/* 各 FAQ アイテム */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

/* FAQ 質問 */
.faq-question {
    font-size: 1.5rem;
    color: #007BFF;
    margin-bottom: 10px;
}

/* FAQ 回答 */
.faq-answer {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* サービスセクション全体 */
#services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    text-align: center;
}

/* セクション内コンテナ */
.services-container {
    width: 100%;
    margin: 0 auto;
    /* max-width を使用せず、全幅を活用 */
}

/* セクション見出し */
#services h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #333;
}

@media (max-width: 768px) {
    #services h2 {
        font-size: 2rem;
    }
}

/* サービスグリッド */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* 各サービスカード */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* アイコンエリア：円形に */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* アイコン画像 */
.service-icon img {
    height: 100%;
}

/* サービスカードのタイトル */
.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #007BFF;
}

/* サービスカードの説明文 */
.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* #features セクション全体 */
#features {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

/* 内部コンテナ */
.features__container {
    width: 100%;
    margin: 0 auto;
}

/* セクション見出し */
#features h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #333;
}

@media (max-width: 768px) {
    #features h2 {
        font-size: 2rem;
    }
}

/* グリッドレイアウト */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* 各特徴カード */
.feature-item {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* アイコンエリア */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e6f2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-icon img {
    height: 100%;
}

/* タイトル */
.feature-item h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #007BFF;
}

/* 説明文 */
.feature-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* ◆◆◆ Pricing Section CSS ◆◆◆ */

/* セクション全体 */
#pricing {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fafe, #dbe3f2);
    text-align: center;
}

/* 内部ラッパー */
.pricing-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクションタイトル */
.pricing-section__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

/* 前置きの説明文 */
.pricing-section__intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* カードのコンテナ */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* 各カード */
.pricing-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    /* カード幅 */
    text-align: left;
    position: relative;
    /* for featured highlight if needed */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* 強調表示するカード */
.pricing-card--featured {
    background: linear-gradient(135deg, #007BFF, #00BFFF);
    color: #fff;
}

/* プラン名 */
.pricing-card__plan-name {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: inherit;
    /* featuredの場合は白文字に */
}

/* 価格部分 */
.pricing-card__price {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: inherit;
}

/* 特徴リスト */
.pricing-card__features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.pricing-card__features li {
    font-size: 1rem;
    color: inherit;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

/* ボタン */
.pricing-card__btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

/* フィーチャードカード上のボタン */
.pricing-card--featured .pricing-card__btn {
    background: #fff;
    color: #007BFF;
}

.pricing-card__btn:hover {
    background: #0056b3;
    color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
        max-width: 400px;
    }

    .pricing-section__title {
        font-size: 2rem;
    }
}


/* セクション全体 */
#introduction {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

/* コンテナ */
.introduction__container {
    width: 100%;
    margin: 0 auto;
}

/* セクション見出し */
#introduction h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #333;
}

@media (max-width: 768px) {
    #introduction h2 {
        font-size: 2rem;
    }
}

/* コンテンツ全体をカード風に配置 */
.introduction__content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* 各カード */
.introduction__overview,
.introduction__mission,
.introduction__vision {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    flex: 1 1 300px;
    max-width: 320px;
}

/* カード内タイトル */
.introduction__content h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #007BFF;
}

/* カード内本文 */
.introduction__content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* About セクション全体 */
#about {
    padding: 80px 20px;
    background-color: #f0f4f8;
    text-align: center;
}

/* 内部コンテナ */
.about-container {
    width: 100%;
    margin: 0 auto;
    /* 必要に応じて max-width を調整 */
}

/* セクション見出し */
#about h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #333;
}

@media (max-width: 768px) {
    #about h2 {
        font-size: 2rem;
    }
}

/* コンテンツ全体のレイアウト */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

/* 会社概要、タイムライン、理念ブロック */
.about-info,
.about-timeline,
.about-philosophy {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    flex: 1 1 300px;
    max-width: 350px;
}

/* 各ブロックのタイトル */
.about-info h3,
.about-timeline h3,
.about-philosophy h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #007BFF;
}

/* 会社概要・理念本文 */
.about-info p,
.about-philosophy p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* タイムライン */
.about-timeline .timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline li {
    position: relative;
    padding-left: 80px;
    margin-bottom: 20px;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: #007BFF;
    border-radius: 50%;
}

.timeline .timeline-year {
    font-weight: bold;
    font-size: 1.2rem;
    color: #007BFF;
    margin-bottom: 5px;
    display: block;
}

/* レスポンシブ対応：スマートフォンでは縦並び */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-info,
    .about-timeline,
    .about-philosophy {
        max-width: 100%;
    }
}

/* Blog セクション全体 */
#blog {
    padding: 60px 20px;
    background-color: #f7f7f7;
    /* テストモニアルと同じ背景色 */
}

/* コンテナ */
.blog__container {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

/* セクション見出し */
#blog h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    #blog h2 {
        font-size: 2rem;
    }
}

/* 横スクロールリスト */
.blog__list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

/* 各ブログカード */
.blog-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    scroll-snap-align: start;
    flex: 0 0 360px;
    /* PC表示時は360px固定で、5件目が少し見える設定 */
    text-align: left;
}

/* サムネイル画像 */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* 記事タイトル */
.blog-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #007BFF;
}

/* 抜粋文 */
.blog-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* スマートフォン表示時：カードの幅を全体の約66.7%に設定（2件目が部分表示） */
@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 calc(100% / 1.2);
    }
}


/* フッター全体 */
footer {
    background-color: #323232;
    color: #fff;
    padding: 40px 20px;
}

/* 上部の情報とマップを横並びに */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

/* 会社情報エリア */
.footer-info {
    flex: 1 1 300px;
    min-width: 280px;
    line-height: 1.6;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.footer-business,
.footer-phone,
.footer-info address {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Googleマップエリア */
.footer-map {
    flex: 1 1 500px;
    /* min-width: 300px; */
    /* マップ枠の角丸など、必要なら追加 */
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* フッター下部 */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

/* スマートフォン対応：縦並びに */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-map {
        width: 100%;
        /* max-width: 500px; */
    }
}

.contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    background-color: #323232;
}

.contact-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    background: transparent;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 真ん中に白い線を入れて区切る */
.contact-btn.email-btn {
    border-left: 1px solid #fff;
}

/* iOSやAndroidのデフォルト再生ボタンを非表示にする */
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
