@charset "UTF-8";

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    --c-primary: #1a4d8c;
    --c-primary-dark: #103a6d;
    --c-text: #333333;
    --c-text-nav: #444444;
    --c-accent-red: #d32f2f; /* Title Underline */
    --c-btn-black: #000000;
    --c-border: #eaeaea;
    --c-line-blue: #bddaf2;
    --c-sns: #1544AD;
    
    --f-jp: "Noto Sans JP", sans-serif;
    --f-en: "Lato", sans-serif;
    
    --w-container-max: 1200px;
    --header-height: 90px;
    --section-spacing: 100px;
}

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

body {
    font-family: var(--f-jp);
    color: var(--c-text);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

ul { list-style: none; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Utilities */
.u-sp-only { display: none; }
.container {
    max-width: var(--w-container-max);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 960px) {
    .u-sp-only { display: block; }
    .container { padding: 0 20px; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    width: 100%;
    height: var(--header-height);
    background-color: #fff;
    position: fixed;
    z-index: 1000;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-left: 20px;
    padding-right: 0;
}

.header__logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
    z-index: 1600;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: serif;
    font-style: italic;
    font-size: 1.2rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text-en { font-size: 0.6rem; font-weight: 700; font-family: var(--f-en); line-height: 1; margin-bottom: 2px; }
.logo-text-jp { font-size: 1.1rem; font-weight: 700; line-height: 1; }

.header__desktop-group {
    display: flex;
    align-items: center;
    height: 100%;
    flex-grow: 1;
    justify-content: flex-end;
}

.header__nav { margin-right: auto; margin-left: 40px; }
.nav-list { display: flex; align-items: center; gap: 2vw; font-size: 0.9rem; font-weight: 700; color: var(--c-text-nav); }
.nav-item { position: relative; padding: 32px 0; cursor: pointer; white-space: nowrap; }
.header__nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--c-primary);
  transition: width 0.3s ease;
}
.header__nav .nav-item:hover::after { width: 100%; }

.submenu { 
    position: absolute; top: 80%; left: 50%; transform: translateX(-50%); 
    width: 280px; background-color: #fff; border: 1px solid var(--c-border); 
    border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); padding: 10px 0; 
    z-index: 100; opacity: 0; visibility: hidden; transition: all 0.3s; 
}
.nav-item:hover .submenu { opacity: 1; visibility: visible; top: 100%; }
.submenu__item a { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; font-size: 0.9rem; color: var(--c-text); transition: 0.2s; }
.submenu__item a:hover { background-color: #f9f9f9; color: var(--c-primary); }
.submenu__icon { color: var(--c-primary); font-size: 0.8rem; }

.header__actions { display: flex; align-items: center; height: 100%; }
.sns-icons { display: flex; gap: 15px; margin-right: 20px; margin-left: 20px;}
.sns-link { font-size: 1.2rem; color: var(--c-sns); }
.cta-button { background-color: var(--c-primary); color: #fff; height: 100%; padding: 0 30px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.cta-button:hover { background-color: var(--c-primary-dark); }

/* SP Elements */
.hamburger-btn { display: none; }
.mobile-menu {
    position: fixed; top: var(--header-height); left: 0;
    width: 100%; height: calc(100vh - var(--header-height));
    background-color: #fff; z-index: 1500;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: all 0.3s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__scroll { height: 100%; overflow-y: auto; padding-bottom: 50px; }

@media (max-width: 960px) {
    .header__desktop-group { display: none; }
    
    .hamburger-btn {
        display: flex; justify-content: center; align-items: center;
        width: 70px; height: 100%; background-color: var(--c-primary);
        border: none; cursor: pointer; padding: 0; z-index: 2000;
    }
    .hamburger-btn__inner { position: relative; width: 30px; height: 24px; }
    .hamburger-btn__bar {
        position: absolute; left: 0; width: 100%; height: 1px;
        background-color: #fff; transition: all 0.3s ease;
    }
    .hamburger-btn__bar:nth-child(1) { top: 0; }
    .hamburger-btn__bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .hamburger-btn__bar:nth-child(3) { bottom: 0; }
    
    .hamburger-btn.is-active .hamburger-btn__bar:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
    .hamburger-btn.is-active .hamburger-btn__bar:nth-child(2) { opacity: 0; }
    .hamburger-btn.is-active .hamburger-btn__bar:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

    .mobile-menu__list { padding: 20px 20px 0; }
    .mobile-menu__item { border-bottom: 1px solid var(--c-line-blue); }
    .mobile-menu__link { display: block; padding: 18px 0; color: #000; font-weight: 700; font-size: 1.05rem; line-height: 1.4; }
    
    .mobile-menu__sublist { padding-bottom: 15px; padding-left: 0; }
    .mobile-menu__sublist li { margin-bottom: 12px; }
    .mobile-menu__sublist a { font-size: 1rem; font-weight: 500; color: var(--c-text); }
    
    .mobile-menu__footer { padding: 40px 20px; margin-top: 20px; }
    .mobile-menu__line-btn {
        display: flex; justify-content: center; align-items: center;
        background-color: var(--c-primary); color: #fff;
        width: 100%; padding: 16px; border-radius: 6px;
        font-weight: 700; font-size: 1.1rem; gap: 12px;
        box-shadow: 0 4px 10px rgba(26, 77, 140, 0.2);
    }
    .mobile-menu__line-btn i { font-size: 1.8rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative; width: 100%; height: 700px;
    overflow: hidden; background-color: #fff;
    padding-top: 180px; display: flex; align-items: center;
}
.loop-slider { width: 100%; height: 600px; overflow: hidden; position: relative; z-index: 1; }
.loop-slider__track {
    display: flex; align-items: center; gap: 40px;
    width: max-content; animation: loop-slide 60s linear infinite;
}
.loop-slider__item {
    width: 500px; height: 500px; flex-shrink: 0;
    border-radius: 40px; overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.loop-slider__item:nth-child(even) { height: 550px; width: 450px; }
@keyframes loop-slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.hero__content {
    position: absolute; top: 65%; left: 50%;
    transform: translate(-50%, -50%); z-index: 10;
    width: 100%; max-width: var(--w-container-max);
    padding: 0 40px; text-align: left; pointer-events: none;
}
.hero__title { margin-bottom: 25px; max-width: 100%; }
.hero__title-bg {
    background-color: rgba(255, 255, 255, 0.9); color: #333;
    font-family: var(--f-en); font-weight: 900; font-size: 3.5rem;
    letter-spacing: 0.05em; padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: inline-block; backdrop-filter: blur(5px);
    line-height: 1.2; text-align: left;
}
.title-chunk { display: inline-block; margin-right: 15px; }
.title-chunk:last-child { margin-right: 0; }
.hero__subtitle-bg {
    background-color: rgba(255, 255, 255, 0.9); color: #333;
    font-weight: 700; padding: 12px 24px;
    display: inline-block; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 1.1rem; backdrop-filter: blur(5px);
}

@media (max-width: 960px) {
    .hero { height: auto; flex-direction: column; padding-top: 120px; padding-bottom: 60px; align-items: flex-start; }
    .loop-slider { height: auto; padding-bottom: 20px; margin-bottom: 20px; }
    .loop-slider__track { gap: 20px; }
    .loop-slider__item { width: 85vw; height: 85vw; border-radius: 30px; }
    .loop-slider__item:nth-child(even) { width: 85vw; height: 85vw; }
    
    .hero__content { position: static; transform: none; padding: 0 20px; text-align: left; margin-top: 20px; }
    .hero__title { margin-bottom: 30px; }
    .hero__title-bg {
        background: none; box-shadow: none; padding: 0;
        font-size: 2.2rem; color: #333; display: block; line-height: 1.3;
    }
    .title-chunk { display: inline; margin-right: 10px; }
    .hero__subtitle-bg {
        background: none; box-shadow: none; padding: 0;
        font-size: 0.9rem; color: #333; line-height: 1.8;
    }
}

/* ==========================================================================
   Service Section (New)
   ========================================================================== */
.service {
    padding: var(--section-spacing) 0;
    background-color: #fff;
}

.service-heading {
    margin-bottom: 60px;
    text-align: left; /* Image shows title aligned left relative to grid? Or center? Image shows standard section title. Let's align left to match image visual. */
}

.service-heading__en {
    font-family: var(--f-en);
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

/* Red underline for first few letters */
.service-heading__en::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px; /* Short line */
    height: 4px;
    background-color: var(--c-accent-red);
}

.service-heading__jp {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
}

/* Service Grid Layout */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns PC */
    gap: 50px 40px; /* Vertical gap 50, Horizontal 40 */
}

.service-card {
    display: flex;
    flex-direction: column;
}

/* Image & Label */
.service-card__figure {
    position: relative;
    width: 100%;
    /* aspect ratio approx 3:2 */
    aspect-ratio: 3 / 2; 
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card__img {
    transition: transform 0.5s ease;
}
.service-card:hover .service-card__img {
    transform: scale(1.05);
}

.service-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    color: #000;
    font-weight: 700;
    padding: 12px 25px;
    font-size: 1rem;
    border-top-right-radius: 15px; /* Rounded top-right corner */
    /* Visual tweak to match image exactly */
}

/* Body */
.service-card__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes button down */
}

/* Button */
.service-card__btn {
    display: flex;
    justify-content: center; /* テキストは中央揃え */
    align-items: center;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-family: var(--f-en);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    
    /* 基準位置の設定 */
    position: relative; 
    
    /* Default State: Black */
    background-color: #000; 
    
    /* Animation settings */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-card__btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.service-card__btn i {
/* 絶対配置で右端に固定 */
    position: absolute;
    right: 20px; /* 右端からの余白（お好みで調整してください） */
    
    /* 以前の margin-left は不要になるので削除または0に */
    margin-left: 0;
}

/* Hover State: Change to Blue */
.service-card__btn:hover {
    background-color: var(--c-primary);
    transform: translateY(-2px);
}

/* Responsive Service Section */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr; /* 1 column on SP */
        gap: 40px;
    }
    
    .service-heading__en {
        font-size: 2rem;
    }
    
    .service-card__figure {
        border-radius: 15px;
    }
}

/* ==========================================================================
   Access/Contact Section
   ========================================================================== */
.access {
    padding-bottom: var(--section-spacing);
    background-color: #fff;
}

/* --- LINE Banner --- */
.access-line {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    gap: 20px;
    
    /* 背景イラストを配置するための設定 */
    position: relative;
    overflow: hidden; /* 枠からはみ出したイラストをカット */
    z-index: 1;

    /* contact-options-top と同じ幅に揃える */
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.access-line:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

/* 背景のスマホイラスト (Font Awesomeのスマホアイコンを利用) */
.access-line::before {
    content: "\f3cd"; /* fa-mobile-screen のUnicode */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    
    position: absolute;
    right: -20px;    /* 右端からはみ出させる */
    bottom: -40px;   /* 下側からはみ出させる */
    
    font-size: 14rem; /* 巨大化 */
    color: #f0f0f0;   /* 非常に薄いグレー */
    transform: rotate(-15deg); /* 少し左に傾ける */
    z-index: -1;      /* 文字の下に配置 */
}

/* 背景の吹き出しイラスト (Font Awesomeのコメントアイコンを利用) */
.access-line::after {
    content: "\f075"; /* fa-comment のUnicode */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    
    position: absolute;
    right: 100px;    /* スマホの少し左 */
    top: 10px;       /* 上の方 */
    
    font-size: 6rem;
    color: #f5f5f5;   /* さらに薄いグレー */
    transform: rotate(10deg);
    z-index: -1;
}

/* コンテンツを前面に出す */
.access-line__icon-box,
.access-line__content {
    position: relative;
    z-index: 2; /* 背景より手前に */
}

.access-line__icon-box {
    display: flex;
    align-items: center;
}

.access-line__icon {
    font-size: 5rem; /* アイコンを大きく */
    color: #06c755;  /* LINE Green */
}

.access-line__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-line__sub {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.access-line__title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
}

.u-text-line {
    color: #06c755; /* LINE Green */
    font-family: var(--f-en); /* 欧文フォントで強調 */
}

/* --- Contact Grid --- */
.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* TOPページのaccessセクション内で、LINEバナーとグリッドの幅を揃える */
.access .access-line,
.access .access-grid {
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.access-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.access-card--link:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--c-primary);
}

.access-card__icon {
    font-size: 2.5rem;
    color: var(--c-primary); /* Brand Blue */
    margin-bottom: 15px;
}

/* Phone Card Specifics */
.access-card--tel .access-card__icon {
    font-size: 2rem;
}

.access-card__tel-link {
    text-decoration: none;
    color: inherit;
    pointer-events: none; /* PCではクリック無効化（スマホのみ有効にする場合はメディアクエリで調整） */
}

.access-card__tel-num {
    font-family: var(--f-en);
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.access-card__tel-time {
    font-size: 0.8rem;
    color: #666;
    font-weight: 700;
}

/* Link Card Specifics */
.access-card__text {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.5;
    color: #000;
}

/* --- Responsive --- */
@media (max-width: 960px) {
    /* スマホで電話番号をタップ可能に */
    .access-card__tel-link {
        pointer-events: auto;
    }

    /* LINE Banner Adjustment */
    .access-line {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 30px 20px;
    }
    /* スマホ時は背景イラストを少し小さく、邪魔にならない位置へ */
    .access-line::before {
        font-size: 10rem;
        right: -30px;
        bottom: -30px;
    }
    .access-line::after {
        font-size: 4rem;
        right: 20px;
        top: 20px;
    }

    .access-line__icon {
        font-size: 4rem;
    }
    
    .access-line__sub {
        font-size: 0.9rem;
    }
    
    .access-line__title {
        font-size: 1.6rem;
    }

    /* Grid Adjustment */
    .access-grid {
        grid-template-columns: 1fr; /* 1カラム */
        gap: 20px;
    }
    
    .access-card {
        padding: 30px;
        min-height: auto;
    }
    
    .access-card__tel-num {
        font-size: 2rem;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 0; 
    padding-top: 60px;
    background-color: #fff; /* ★画像周りの背景は白 */
    overflow: hidden;
}

/* --- Visual Images (Calculated Widths) --- */
.about-visual {
    width: 100%;
    /* PCでの画像の高さ: 400px * 1.5 = 600px に変更 */
    height: 600px; 
    position: relative;
    overflow: hidden;
}

.about-visual__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 961px) {
    /* 上の画像: 左端〜コンテンツ右端まで */
    .about-visual--top {
        width: calc(50% + 360px);
        margin-right: auto; /* 左寄せ */
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        margin-bottom: 80px;
    }

    /* 下の画像: コンテンツ左端〜右端まで */
    .about-visual--bottom {
        width: calc(50% + 360px);
        margin-left: auto; /* 右寄せ */
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
        margin-top: 80px;
    }
}

/* --- Split Layout (Middle Part) --- */
.about-split {
    display: flex;
    width: 100%;
    background-color: #f5f5f5; /* ★真ん中のエリア背景はグレー */
}

/* Left: Info Text (Gray Box) */
.about-info {
    width: 50%;
    /* 背景色は親(.about-split)と同じグレー、または透明 */
    background-color: transparent; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    /* パディング計算: 画面中央 - コンテナ半分 + コンテナ左余白 */
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 50px;
    padding-left: calc(50% - 600px + 40px);
}

.about-info__inner {
    max-width: 600px;
    width: 100%;
}

/* Right: Office Image */
.about-office {
    width: 50%;
    position: relative;
    min-height: 500px;
}

.about-office__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Content Styles --- */
.about-heading {
    margin-bottom: 30px;
    text-align: left;
}

.about-heading__en {
    font-family: var(--f-en);
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.about-heading__en::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--c-accent-red);
}

.about-heading__jp {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.about-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

/* Links List */
.about-links {
    display: flex;
    flex-direction: column;
    /* 枠線の色をグレー背景になじむように調整（少し濃いグレーに） */
    border-top: 1px solid #ddd;
}

.about-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.about-link:hover {
    background-color: #e0e0e0; /* ホバー時は少し濃いグレーに */
    padding-left: 20px;
    color: var(--c-primary);
}

.about-link__icon {
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s;
}

.about-link:hover .about-link__icon {
    transform: translateX(5px);
    color: var(--c-primary);
}


/* --- Responsive (SP Layout) --- */
@media (max-width: 1200px) {
    .about-info {
        padding-left: 40px;
    }
}

@media (max-width: 960px) {
    .about {
        padding-top: 40px;
    }

    .about-visual {
        height: 375px; 
        width: 100%;
    }
    
    .about-visual--top {
        margin-bottom: 40px;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    
    .about-visual--bottom {
        margin-top: 40px;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
    }

    /* Split Layout -> Column Layout */
    .about-split {
        flex-direction: column;
    }

    .about-info {
        width: 100%;
        padding: 60px 20px;
        /* SP時も背景はグレーのまま維持 */
    }
    
    .about-info__inner {
        max-width: 100%;
    }
    
    .about-heading__en {
        font-size: 2rem;
    }

    .about-office {
        width: 100%;
        height: 300px;
        min-height: auto;
    }
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news {
    padding: var(--section-spacing) 0;
    background-color: #fff;
}

.news-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px; /* 左右のカラム間の余白 */
}

/* --- Left Column: Sidebar --- */
.news-sidebar {
    width: 25%; /* 左側の幅 */
    flex-shrink: 0;
}

.news-heading {
    margin-bottom: 60px;
    text-align: left;
}

.news-heading__en {
    font-family: var(--f-en);
    font-size: 3.5rem; /* 画像に合わせてかなり大きく */
    font-weight: 900;
    color: #333;
    letter-spacing: 0.05em;
    position: relative;
    display: block;
    line-height: 1;
    margin-bottom: 20px;
}

/* Red Underline */
.news-heading__en::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 5px;
    background-color: var(--c-accent-red);
}

.news-heading__jp {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-top: 30px; /* 赤線との距離確保 */
}

/* View All Link */
.news-link-all {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s, border-color 0.3s;
}

.news-link-all:hover {
    color: var(--c-primary);
    border-color: var(--c-primary);
}

.news-link-all__icon {
    transition: transform 0.3s;
}

.news-link-all:hover .news-link-all__icon {
    transform: translateX(5px);
}

/* スマホ時のみ .news-content の下に表示 */
.news-link-all--sp { display: none; }

/* --- Right Column: News List --- */
.news-content {
    flex-grow: 1;
    width: 70%; /* 右側の幅 */
}

.news-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee; /* リスト最上部の線 */
}

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

/* 最初のアイテムの上にも線が必要ならコメントアウト解除、
   画像ではリスト全体の上部に線があるように見える */
.news-list {
    border-top: 1px solid #eee;
}

.news-item__link {
    display: flex;
    flex-direction: column; /* ★ここを縦並びに変更 */
    align-items: flex-start; /* 左揃え */
    justify-content: center;
    padding: 20px 0;
    color: #333;
    transition: background-color 0.3s;
    gap: 10px; /* 日付行とタイトルの間の余白 */
}

.news-item__link:hover {
    background-color: #fafafa; /* ホバー時の微細な背景変化 */
}

/* Meta Data (Date & Tag) */
.news-item__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%; /* 横幅いっぱいに */
}

.news-item__date {
    font-family: var(--f-en);
    font-weight: 900;
    font-size: 1rem;
    color: #333;
}

.news-item__tag {
    background-color: var(--c-primary);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 12px;
    font-weight: 700;
    border-radius: 0; 
}

/* Title */
.news-item__title {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 0; /* インデント解除 */
}

.news-item__tag--fpm {
    background-color: var(--c-primary);
}

/* News Section (Full Page) */
.news-section {
    padding: 60px 0;
    margin-bottom: 80px;
}

.news-section .news-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Pagination */
.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.news-pagination__prev,
.news-pagination__next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-pagination__prev:hover,
.news-pagination__next:hover {
    background-color: #f5f5f5;
    border-color: var(--c-primary);
}

.news-pagination__numbers {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-pagination__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.news-pagination__number:hover {
    background-color: #f5f5f5;
    color: #333;
}

.news-pagination__number--active {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.news-pagination__number--active:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* --- News Detail Page --- */
.news-detail-section {
    padding: 60px 0;
    margin-bottom: 0;
}

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

.news-detail__header {
    margin-bottom: 40px;
}

.news-detail__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-detail__date {
    font-size: 1rem;
    color: #666;
}

.news-detail__image {
    margin-bottom: 40px;
}

.news-detail__img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #f5f5f5;
    min-height: 400px;
    object-fit: cover;
}

.news-detail__content {
    font-size: 1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 60px;
}

.news-detail__content p {
    margin-bottom: 1.5em;
}

.news-detail__content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2em 0 1em;
    color: #1544AD;
}

.news-detail__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2em 0 1em;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #1544AD;
}

.news-detail__content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 2em 0 1em;
    color: #333;
    padding-left: 15px;
    position: relative;
}

.news-detail__content h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e60012;
}

.news-detail__content h5 {
    font-size: 1rem;
    font-weight: 400;
    margin: 2em 0 1em;
    color: #333;
}

/* リストスタイル（クラス指定なしで自動適用） */
.news-detail__content ul,
.news-detail__content ol {
    margin: 1.5em 0;
    /*padding-left: 1.0em;*/
}

.news-detail__content ul {
    list-style: none;
}

.news-detail__content ul li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 1.5em;
}

.news-detail__content ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #e60012;
}

/* 番号付きリスト（ol）のスタイル */
.news-detail__content ol {
    counter-reset: my-counter; /* カウンターを初期化 */
    list-style: none; /* 標準の番号を消す */
    padding-left: 0;
    margin: 1em 0 2em;
}

.news-detail__content ol li {
    counter-increment: my-counter; /* 1ずつ増やす */
    position: relative;
    padding-left: 2.4em;
    margin: 0.4em 0;
}

.news-detail__content ol li::before {
    content: counter(my-counter);
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #e60012;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
}

.news-detail__list-red {
    list-style: none;
    padding-left: 0;
}

.news-detail__list-red li {
    color: #333;
    padding-left: 1.2em;
    position: relative;
    margin-bottom: 0.5em;
}

.news-detail__list-red li::before {
    content: '●';
    color: #e60012;
    position: absolute;
    left: 0;
}

.news-detail__list-red-numbered {
    list-style: none;
    padding-left: 0;
    counter-reset: list-counter;
}

.news-detail__list-red-numbered li {
    color: #333;
    padding-left: 2em;
    position: relative;
    margin-bottom: 0.5em;
    counter-increment: list-counter;
}

.news-detail__list-red-numbered li::before {
    content: '';
    color: #fff;
    background-color: #e60012;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    font-size: 0.9em;
    line-height: 1;
}

.news-detail__list-red-numbered li:nth-child(1)::before {
    content: '①';
}

.news-detail__list-red-numbered li:nth-child(2)::before {
    content: '②';
}

.news-detail__list-red-numbered li:nth-child(3)::before {
    content: '③';
}

.news-detail__list-red-numbered li:nth-child(4)::before {
    content: '④';
}

.news-detail__list-red-numbered li:nth-child(5)::before {
    content: '⑤';
}

.news-detail__content a {
    color: #1544AD;
    text-decoration: underline;
}

.news-detail__content a:hover {
    opacity: 0.7;
}

/* Privacy Policy Section */
.privacy-section {
    padding: 60px 0;
    margin-bottom: 0;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2;
    color: #333;
}

/* Solicitation Policy Section */
.solicitation-section {
    padding: 60px 0;
    margin-bottom: 0;
}

.solicitation-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2;
    color: #333;
}

.solicitation-content p {
    margin-bottom: 1.5em;
}

.solicitation-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2em 0 1em;
    color: #333;
}

.solicitation-content h2:first-of-type {
    margin-top: 0;
}

.solicitation-content h2:not(:first-of-type) {
    padding-bottom: 10px;
    border-bottom: 3px solid #000;
}

.solicitation-content ul {
    margin: 1.5em 0;
    padding-left: 1.5em;
    list-style: none;
}

.solicitation-content ul li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 1em;
}

.solicitation-content ul li::before {
    content: '●';
    position: absolute;
    left: -20px;
    top: 5px;
    color: #e60012;

}

.solicitation-content__numbered-list {
    counter-reset: solicitation-counter;
    list-style: none;
    padding-left: 0;
}

.solicitation-content__numbered-list li {
    counter-increment: solicitation-counter;
    padding-left: 2.5em;
    position: relative;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
}

.solicitation-content__numbered-list li::before {
    content: attr(data-number);  /* counter(solicitation-counter) から attr(data-number) に戻す */
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: 700;
    width: 1.8em;
    height: 1.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e60012;
    border-radius: 50%;
    font-size: 0.9em;
    line-height: 1;
    flex-shrink: 0;
    z-index: 1;
}
.solicitation-content__numbered-list li:nth-child(1)::before {
    content: '1';
    color:#FFF;
}

.solicitation-content__numbered-list li:nth-child(2)::before {
    content: '2';
    color:#FFF;
}

.solicitation-content__numbered-list li:nth-child(3)::before {
    content: '3';
    color:#FFF;
}

.solicitation-content__numbered-list li:nth-child(4)::before {
    content: '4';
    color:#FFF;
}

/* Site Policy Section */
.site-policy-section {
    padding: 60px 0;
    margin-bottom: 0;
}

.site-policy-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2;
    color: #333;
}

.site-policy-content p {
    margin-bottom: 1.5em;
}

.site-policy-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2em 0 1em;
    color: #333;
}

.site-policy-content h2:not(:first-of-type) {
    padding-bottom: 10px;
    border-bottom: 3px solid #000;
}

.site-policy-content__prohibited-list {
    margin: 1.5em 0;
    padding-left: 0;
    list-style: none;
}

.site-policy-content__prohibited-list li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 2.5em;
    display: flex;
    align-items: flex-start;
}

.site-policy-content__prohibited-list li::before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: 700;
    width: 1.8em;
    height: 1.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e60012;
    border-radius: 50%;
    font-size: 0.9em;
    line-height: 1;
    flex-shrink: 0;
}

/* Fiduciary Duty Section */
.fiduciary-duty-section {
    padding: 60px 0;
    margin-bottom: 0;
}

.fiduciary-duty-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2;
    color: #333;
}

.fiduciary-duty-content p {
    margin-bottom: 1.5em;
}

.fiduciary-duty-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2em 0 1em;
    color: #333;
}

.fiduciary-duty-items {
    margin: 2em 0;
}

.fiduciary-duty-item {
    margin-bottom: 2.5em;
}

.fiduciary-duty-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5em;
    padding-bottom: 10px;
    border-bottom: 3px solid #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fiduciary-duty-item__number {
    color: #333;
    font-weight: 700;
}

.fiduciary-duty-item__text {
    font-size: 1rem;
    line-height: 2;
    color: #333;
    margin: 0;
}

.fiduciary-duty-date {
    text-align: right;
    margin: 3em 0 2em;
}

.fiduciary-duty-date__text {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.fiduciary-duty-kpi {
    text-align: right;
    margin: 2em 0;
}

.fiduciary-duty-kpi__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #333;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.fiduciary-duty-kpi__btn:hover {
    background-color: #1C1C1C;
}

.fiduciary-duty-kpi__btn i {
    font-size: 0.9rem;
}

/* KPI Section */
.kpi-section {
    padding: 60px 0;
}

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

.kpi-intro {
    font-size: 1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 1em;
}

.kpi-note {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2em;
}

.kpi-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 2em 0 1.5em;
}

.kpi-items {
    margin: 2em 0;
}

.kpi-item {
    margin-bottom: 2.5em;
}

.kpi-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5em;
    padding-bottom: 10px;
    border-bottom: 3px solid #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kpi-item__number {
    color: #333;
    font-weight: 700;
}

.kpi-item__intro {
    font-size: 1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 1em;
}

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

.kpi-item__list li {
    font-size: 1rem;
    line-height: 2;
    color: #333;
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.5em;
}

.kpi-item__list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #e60012;
}

.kpi-date {
    text-align: right;
    margin: 3em 0 2em;
}

.kpi-date__text {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.privacy-content p {
    margin-bottom: 1.5em;
}

.privacy-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2em 0 1em;
    color: #333;
}

.privacy-content h2:not(:first-of-type) {
    padding-bottom: 10px;
    border-bottom: 3px solid #000;
}

.privacy-content h2.privacy-content__no-underline {
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2em 0 1em;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}

.privacy-content ul {
    margin: 1.5em 0;
    padding-left: 1.5em;
    list-style: none;
}

.privacy-content ul li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 1em;
}

.privacy-content ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #e60012;
}

.privacy-contact-info {
    margin: 2em 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.privacy-contact-info dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.privacy-contact-info__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    border-bottom: 1px solid #ddd;
}

.privacy-contact-info__row:last-child {
    border-bottom: none;
}

.privacy-contact-info dt {
    font-weight: 700;
    color: #333;
    padding: 10px 0;
    display: flex;
    align-items: center;
    margin: 0;
}

.privacy-contact-info dd {
    margin: 0;
    padding: 10px 0 10px 20px;
    color: #333;
    display: flex;
    align-items: center;
}

.privacy-contact-note {
    margin-top: 1.5em;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 1em 0 2em;
    counter-reset: privacy;
}

.privacy-list li {
    position: relative;
    padding-left: 2.4em;
    margin: 0.4em 0;
}

.privacy-list li::before {
    counter-increment: privacy;
    content: counter(privacy);
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #e60012;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
}

/* テーブルスタイル（クラス指定なしで自動適用） */
.news-detail__content table,
.news-detail__table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    border: 1px solid #ddd;
}

.news-detail__content table th,
.news-detail__content table td,
.news-detail__table th,
.news-detail__table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.news-detail__content table thead th,
.news-detail__table thead th {
    background-color: #f5f5f5;
    font-weight: 700;
}

.news-detail__content table thead th:last-child,
.news-detail__table thead th:last-child {
    background-color: #fff;
}

.news-detail__content table tbody th,
.news-detail__table tbody th {
    background-color: #f5f5f5;
    font-weight: 400;
}

.news-detail__content table tbody td,
.news-detail__table tbody td {
    background-color: #fff;
}

.news-detail__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.news-detail__nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.news-detail__nav-btn:hover {
    background-color: #1C1C1C;
}

.news-detail__nav-btn--list {
    margin: 0 auto;
}

.news-detail__nav-btn--prev {
    flex-direction: row;
}

.news-detail__nav-btn--next {
    flex-direction: row-reverse;
}

/* --- Responsive (SP Layout) --- */
@media (max-width: 960px) {
    .news-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .news-sidebar {
        width: 100%;
    }

    .news-detail__title {
        font-size: 1.5rem;
    }

    .news-detail__nav {
        flex-direction: column;
        gap: 15px;
    }

    .news-detail__nav-btn {
        width: 100%;
        justify-content: center;
    }

    .news-detail__nav-btn--list {
        order: -1;
    }

    .news-heading {
        margin-bottom: 30px;
    }
    
    .news-heading__en {
        font-size: 3rem;
    }

    .news-content {
        width: 100%;
    }

    /* スマホ時：「お知らせ一覧」を .news-content の下に表示 */
    .news-link-all--pc { display: none; }
    .news-link-all--sp {
        display: inline-flex;
        margin-top: 30px;
    }

    /* SPでは日付とタイトルを縦並びにするか、そのままか。
       一般的にはそのまま横並びでタイトルだけ折り返すことが多いですが、
       画面幅が狭い場合はメタ情報を上にします。 */
    .news-item__link {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 0;
    }

    .news-item__meta {
        min-width: auto;
        width: 100%;
        gap: 15px;
    }
}


/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    padding: var(--section-spacing) 0;
/*    background-color: #F9F9F9;*/
}

.contact--footer {
    padding: var(--section-spacing) 0;
    background-color: #F9F9F9;
}

/* Footer内 contact セクション：access-grid を access-line と同幅に */
.contact--footer .access-grid {
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Header Styles */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header__en {
    font-family: var(--f-en);
    font-size: 3.5rem;
    font-weight: 900;
    color: #333;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    line-height: 1;
    margin-bottom: 25px;
}

/* Red Center Underline */
.contact-header__en::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background-color: var(--c-accent-red);
}

.contact-header__jp {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-header__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

/* Contact Intro */
.contact-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-intro__text-top {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Contact Lead (お問い合わせページ上部の見出し＋説明) */
.contact-lead {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-lead__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    margin: 0 0 20px;
    text-align: left;
}

.contact-lead__text {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #333;
    margin: 0;
    text-align: left;
}

/* Contact Options Top */
.contact-options-top {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options-top__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-options-top__item--link:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--c-primary);
}

.contact-options-top__icon {
    font-size: 2.5rem;
    color: var(--c-primary);
    flex-shrink: 0;
}

.contact-options-top__item--tel .contact-options-top__icon {
    font-size: 2rem;
}

.contact-options-top__content {
    flex: 1;
}

.contact-options-top__tel-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-options-top__tel-num {
    font-family: var(--f-en);
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.contact-options-top__tel-time {
    font-size: 0.85rem;
    color: #666;
    font-weight: 700;
    margin: 0;
}

.contact-options-top__text {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.5;
    color: #000;
}

@media (max-width: 960px) {
    .contact-options-top {
        flex-direction: column;
        gap: 20px;
    }
}

/* Contact Options */
.contact-options {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.contact-options__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 40px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-options__item--link:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--c-primary);
}

.contact-options__icon {
    font-size: 2.5rem;
    color: var(--c-primary);
    margin-bottom: 15px;
}

.contact-options__item--tel .contact-options__icon {
    font-size: 2rem;
}

.contact-options__tel-link {
    text-decoration: none;
    color: inherit;
}

.contact-options__tel-num {
    font-family: var(--f-en);
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.contact-options__tel-time {
    font-size: 0.8rem;
    color: #666;
    font-weight: 700;
}

.contact-options__text {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.5;
    color: #000;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 60px auto 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    border: none;
}

.contact-form__row {
    margin-bottom: 30px;
}

.contact-form__group {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.contact-form__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    min-width: 200px;
    padding-top: 12px;
    flex-shrink: 0;
}

.contact-form__required {
    display: inline-block;
    background-color: #e60012;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    margin-left: 0;
    border-radius: 2px;
}

.contact-form__name-group {
    display: flex;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.contact-form__name-group .contact-form__input {
    flex: 1;
}

/* Contact Form 7: CF7が挿入するspanラッパーの補正 */
.contact-form .wpcf7-form-control-wrap {
    display: block;
}

.contact-form__group > .wpcf7-form-control-wrap,
.contact-form__name-group > .wpcf7-form-control-wrap {
    flex: 1;
    min-width: 0;
}

/* 氏名/カナ：wrap配下のinputを100%にしてはみ出し防止 */
.contact-form__name-group > .wpcf7-form-control-wrap input {
    width: 100%;
    min-width: 0;
}

/* CF7の自動整形で<p>が挿入された場合も横並びにする（メール/電話など） */
.contact-form__group > p {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    margin: 0;
}

.contact-form__group > p > .wpcf7-form-control-wrap {
    flex: 1;
    min-width: 0;
}

.contact-form__group > p > br {
    display: none;
}

.contact-form__postal .wpcf7-form-control-wrap {
    flex: 0 0 200px;
    width: 200px;
    min-width: 0;
}

.contact-form__postal .wpcf7-form-control-wrap .contact-form__input--postal {
    width: 100%;
}

/* radio（連絡方法/お問い合わせ項目） */
.contact-form__radio-group .wpcf7-form-control {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.contact-form__radio-group--vertical .wpcf7-form-control {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.contact-form__radio-group {
    min-width: 0;
}

.contact-form__radio-group .wpcf7-form-control-wrap {
    display: block;
    flex: 1;
    min-width: 0;
    width: 100%;
}

.contact-form__radio-group .wpcf7-list-item {
    margin: 0;
    flex: 0 0 auto;
}

.contact-form__radio-group .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
}

.contact-form__radio-group .wpcf7-list-item .wpcf7-list-item-label {
    white-space: nowrap;
}

/* 縦並び（お問い合わせ項目）だけは1項目ごとに改行し、文字も通常折返し可にする */
.contact-form__radio-group--vertical .wpcf7-form-control.wpcf7-radio {
    display: block !important; /* flexをやめて確実に縦積み */
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    column-count: 1 !important;
    columns: auto !important;
}

.contact-form__radio-group--vertical .wpcf7-form-control-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.contact-form__radio-group--vertical .wpcf7-list-item {
    display: block !important;
    width: 100% !important;
    margin: 0 0 15px !important;
    float: none !important;
    clear: both !important;
}

.contact-form__radio-group--vertical .wpcf7-list-item:last-child {
    margin-bottom: 0 !important;
}

.contact-form__radio-group--vertical .wpcf7-list-item label {
    width: 100%;
    white-space: normal !important;
}

.contact-form__radio-group--vertical .wpcf7-list-item .wpcf7-list-item-label {
    white-space: normal !important;
}

.contact-form__radio-group .wpcf7-list-item input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    background-color: #fff;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 150px;
    flex: 1;
}

.contact-form__sub-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.contact-form__address-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.contact-form__postal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form__input--postal {
    flex: 1;
    max-width: 200px;
}

.contact-form__postal-btn {
    background-color: var(--c-primary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form__postal-btn:hover {
    background-color: #0d3d8a;
}

.contact-form__prefecture,
.contact-form__city,
.contact-form__street {
    width: 100%;
}

.contact-form__radio-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex: 1;
}

.contact-form__radio-group--vertical {
    flex-direction: column;
    gap: 15px;
}

.contact-form__radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

.contact-form__radio {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-form__file-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
}

.contact-form__file {
    display: none;
}

/* Contact Form 7: ファイル入力のwrapがレイアウトを崩さないようにする */
.contact-form__file-group .wpcf7-form-control-wrap {
    flex: 0 0 auto;
    width: 0; /* inputは非表示なのでスペースを取らない */
}

.contact-form__file-group br {
    display: none;
}

.contact-form__file-label {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-form__file-label:hover {
    background-color: #e0e0e0;
}

.contact-form__file-text {
    font-size: 0.9rem;
    color: #666;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-form__file-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

/* 添付ファイル行：注意書きをボタンの下（右カラム）へ */
.contact-form__row--file .contact-form__group {
    flex-wrap: wrap;
}

.contact-form__row--file .contact-form__file-group {
    flex: 1 1 auto;
    min-width: 0;
}

.contact-form__row--file .contact-form__file-note {
    flex: 0 0 100%;
    margin-left: calc(200px + 30px); /* label(min 200) + gap(30) */
    margin-top: 8px;
    max-width: calc(100% - (200px + 30px));
}

@media (max-width: 960px) {
    .contact-form__row--file .contact-form__file-note {
        margin-left: 0;
        max-width: 100%;
    }
}

.contact-form__disclaimer {
    margin: 30px 0;
    padding: 15px;
    background-color: #fff;
    border-left: none;
    display: flex;
}

.contact-form__disclaimer-text {
    flex: 1;
}

.contact-form__disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e60012;
}

.contact-form__privacy {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
}

.contact-form__privacy-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.contact-form__privacy-link {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-form__privacy-link:hover {
    color: var(--c-primary);
}

.contact-form__privacy .contact-form__checkbox-label {
    margin-left: 200px;
}

.contact-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

.contact-form__checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Contact Form 7: acceptance（同意チェック） */
.contact-form__checkbox-label .wpcf7-form-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form__checkbox-label .wpcf7-list-item {
    margin: 0;
}

.contact-form__checkbox-label .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.contact-form__checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-form__submit {
    text-align: center;
    margin-top: 40px;
}

.contact-form__btn {
    background-color: #333;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form__btn:hover {
    background-color: #1C1C1C;
}

/* Reserve Form Section */
.reserve-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

.reserve-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.reserve-intro__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

.reserve-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
}

.reserve-form__row {
    margin-bottom: 30px;
}

.reserve-form__group {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.reserve-form__group--consultation {
    flex-direction: row;
    align-items: flex-start;
}

.reserve-form__group--consultation .reserve-form__label {
    min-width: 200px;
    margin-bottom: 0;
}

.reserve-form__consultation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reserve-form__group--consultation .reserve-form__radio-group {
    width: 100%;
    margin-left: 0;
}

.reserve-form__group--consultation .reserve-form__textarea {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
}

.reserve-form__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    min-width: 200px;
}

.reserve-form__required {
    display: inline-block;
    background-color: #e60012;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
}

.reserve-form__name-group {
    display: flex;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.reserve-form__name-group .reserve-form__input {
    flex: 1;
}

/* Contact Form 7: reserve-form 氏名/カナのwrap補正（はみ出し防止） */
.reserve-form__name-group > .wpcf7-form-control-wrap {
    flex: 1;
    min-width: 0;
}

.reserve-form__name-group > .wpcf7-form-control-wrap input {
    width: 100%;
    min-width: 0;
}

.reserve-form__date-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.reserve-form__date-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reserve-form__date-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.reserve-form__date-inputs {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reserve-form__date-wrapper {
    position: relative;
    flex: 0 0 auto;
    width: 200px;
}

.reserve-form__input--date {
    width: 100%;
    padding-right: 40px;
}

.reserve-form__date-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    pointer-events: none;
    font-size: 1rem;
}

.reserve-form__input,
.reserve-form__select,
.reserve-form__textarea {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--f-jp);
    background-color: #f5f5f5;
    color: #333;
}

.reserve-form__input::placeholder,
.reserve-form__textarea::placeholder {
    color: #999;
}

.reserve-form__input:focus,
.reserve-form__select:focus,
.reserve-form__textarea:focus {
    outline: none;
    background-color: #fff;
}

.reserve-form__select {
    flex: 0 0 auto;
    width: 200px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.reserve-form__textarea {
    resize: vertical;
    min-height: 150px;
    width: 100%;
    margin-top: 15px;
}

.reserve-form__radio-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex: 1;
}

.reserve-form__radio-group--vertical {
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.reserve-form__radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

.reserve-form__radio {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Contact Form 7: reserve-form のラジオを縦並びに揃える */
.reserve-form__radio-group--vertical .wpcf7-form-control.wpcf7-radio {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    column-count: 1 !important;
    columns: auto !important;
}

.reserve-form__radio-group--vertical .wpcf7-form-control-wrap {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
}

.reserve-form__radio-group--vertical .wpcf7-list-item {
    display: block !important;
    width: 100% !important;
    margin: 0 0 15px !important;
    float: none !important;
    clear: both !important;
}

.reserve-form__radio-group--vertical .wpcf7-list-item:last-child {
    margin-bottom: 0 !important;
}

.reserve-form__radio-group--vertical .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    cursor: pointer;
}

.reserve-form__disclaimer {
    margin: 30px 0;
    padding: 15px;
    background-color: #fff;
    border-left: none;
    display: flex;
    align-items: flex-start;
}

.reserve-form__disclaimer-text {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e60012;
}

.reserve-form__privacy {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
}

.reserve-form__privacy-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.reserve-form__privacy-link {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.reserve-form__privacy-link:hover {
    color: var(--c-primary);
}

.reserve-form__privacy .reserve-form__checkbox-label {
    margin-left: 200px;
}

.reserve-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

.reserve-form__checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.reserve-form__submit {
    text-align: center;
    margin-top: 40px;
}

.reserve-form__btn {
    background-color: #333;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 60px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.reserve-form__btn:hover {
    background-color: #1C1C1C;
}

.reserve-form__btn i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 960px) {
    .contact-options {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    /* 問い合わせフォーム：スマホでラベルと入力を縦並びに */
    .contact-form__group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .contact-form__group > p {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form__label {
        min-width: auto;
        padding-top: 0;
    }

    /* 入力欄のはみ出し防止（メール・電話・市区町村・番地・お問い合わせ内容など） */
    .contact-form .wpcf7-form-control-wrap {
        max-width: 100%;
        min-width: 0;
    }

    .contact-form__group input[type="text"],
    .contact-form__group input[type="email"],
    .contact-form__group input[type="tel"],
    .contact-form__group select,
    .contact-form__group textarea,
    .contact-form__group .contact-form__input,
    .contact-form__group .contact-form__select,
    .contact-form__group .contact-form__textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .contact-form textarea {
        min-width: 0;
    }

    .contact-form__address-group .wpcf7-form-control-wrap,
    .contact-form__address-group input,
    .contact-form__address-group select {
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-form__address-group input,
    .contact-form__address-group select {
        width: 100%;
    }

    .contact-form__row {
        min-width: 0;
    }

    /* お名前・お名前(カナ)は問い合わせ・来店予約とも横並びに統一 */
    .contact-form__name-group,
    .reserve-form__name-group {
        flex-direction: row;
        gap: 15px;
    }

    .contact-form__postal {
        flex-wrap: wrap;
    }

    .contact-form__postal .wpcf7-form-control-wrap {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .contact-form__input--postal {
        max-width: 100%;
    }

    .contact-form__privacy .contact-form__checkbox-label {
        margin-left: 0;
    }

    .contact-form__radio-group .wpcf7-form-control {
        gap: 15px;
    }

    .contact-form__radio-group .wpcf7-list-item label,
    .contact-form__radio-group .wpcf7-list-item .wpcf7-list-item-label {
        white-space: normal;
    }

    .contact-form__file-group {
        flex-wrap: wrap;
    }

    .contact-form__file-label {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    /* お問い合わせページ上部（リード・オプション） */
    .contact-lead {
        margin-bottom: 30px;
    }

    .contact-lead__title {
        font-size: 1.35rem;
        line-height: 1.6;
    }

    .contact-lead__text {
        font-size: 0.85rem;
    }

    .contact-options-top__item {
        padding: 20px 15px;
        gap: 15px;
    }

    .contact-options-top__icon {
        font-size: 2rem;
    }

    .contact-options-top__tel-num {
        font-size: 1.5rem;
    }

    .contact-options-top__text {
        font-size: 1rem;
    }

    .reserve-section {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .reserve-form {
        padding: 30px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .reserve-form__group {
        flex-direction: column;
        gap: 15px;
    }

    .reserve-form__label {
        min-width: auto;
        width: 100%; /* スマホ時のみ：ラベル行を full 幅にして「必須」を右寄せ（問い合わせページと統一） */
    }

    .reserve-form__required {
        margin-left: auto;
    }

    /* 来店予約フォーム：メール・電話など入力欄のはみ出し防止 */
    .reserve-form .wpcf7-form-control-wrap {
        max-width: 100%;
        min-width: 0;
    }

    .reserve-form__group input[type="text"],
    .reserve-form__group input[type="email"],
    .reserve-form__group input[type="tel"],
    .reserve-form__group select,
    .reserve-form__group textarea,
    .reserve-form__group .reserve-form__input,
    .reserve-form__group .reserve-form__select,
    .reserve-form__group .reserve-form__textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .reserve-form textarea {
        min-width: 0;
    }

    .reserve-form__row {
        min-width: 0;
    }

    .reserve-form__date-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .reserve-form__date-label {
        min-width: auto;
    }

    .reserve-form__date-inputs {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .reserve-form__date-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .reserve-form__input--date,
    .reserve-form__select {
        width: 100%;
    }

    .reserve-form__privacy .reserve-form__checkbox-label {
        margin-left: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 960px) {
    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header__en {
        font-size: 2.8rem;
    }

    .contact-header__desc {
        text-align: left; /* スマホでは読みやすさ優先で左寄せにする場合が多いですが、画像通りならcenter維持でも可 */
        font-size: 0.9rem;
    }
    
    /* 改行タグをスマホで無効化する場合 */
    .contact-header__desc br {
        display: none;
    }
}

/* 問い合わせフォーム：極小画面での調整 */
@media (max-width: 480px) {
    .contact-form {
        padding: 24px 16px;
    }

    .contact-form__row {
        margin-bottom: 24px;
    }

    .contact-form__btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        box-sizing: border-box;
    }

    .contact-options-top__tel-num {
        font-size: 1.35rem;
    }
}


/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    font-size: 0.9rem;
}

/* Page Top Button */
.page-top {
    position: absolute;
    top: -35px;
    right: 5%;
    width: 70px;
    height: 70px;
    background-color: var(--c-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 10;
}

.page-top:hover {
    background-color: var(--c-primary-dark);
    transform: translateY(-5px);
}

/* Layout */
.footer__main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 0;
}

/* --- Left Column --- */
.footer__left {
    width: 40%;
}

/* Logo (White Version) */
.footer__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.footer__logo-circle {
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: serif;
    font-style: italic;
    font-size: 1.3rem;
}
.footer__logo-text { display: flex; flex-direction: column; }
.footer__logo-en { font-size: 0.7rem; font-weight: 700; font-family: var(--f-en); opacity: 0.9; }
.footer__logo-jp { font-size: 1.4rem; font-weight: 900; }

/* Actions */
.footer__line-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--c-primary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 20px;
    gap: 10px;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}
.footer__line-btn:hover { opacity: 0.8; }
.footer__line-btn i { font-size: 1.2rem; }

.footer__sns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.footer__sns a {
    font-size: 1.5rem;
    color: #fff;
    transition: opacity 0.3s;
}
.footer__sns a:hover { opacity: 0.7; }

/* Data Table */
.footer__data {
    border-top: 1px solid #444;
    font-size: 0.85rem;
}
.footer__data-row {
    display: flex;
    border-bottom: 1px solid #444;
    padding: 15px 0;
}
.footer__data-row dt {
    width: 180px;
    font-weight: 700;
}
.footer__data-row dd {
    flex: 1;
    line-height: 1.6;
}

/* --- Right Column --- */
.footer__right {
    width: 55%;
}

.footer__nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__nav-link {
    display: block;
    color: #fff;
    transition: color 0.3s;
}
.footer__nav-link:hover { color: var(--c-primary); text-decoration: underline; }
.footer__nav-link--head { font-weight: 700; }

.footer__nav-label {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer__sub-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}
.footer__sub-list li::before {
    content: '—'; /* Em dash or hyphen */
    position: absolute;
    left: 0;
    opacity: 0.7;
}
.footer__sub-list a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer__sub-list a:hover { color: #fff; }

/* Partner Area */
.footer__partner-title {
    font-weight: 700;
    margin-bottom: 15px;
}
.footer__partner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer__partner-img {
    width: 200px;
    height: auto;
    border: 1px solid #333; /* Placeholder visual aid */
}
.footer__partner-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #ccc;
    max-width: 300px;
}

/* --- Bottom Area --- */
.footer__bottom {
    margin-bottom: 40px;
    border-bottom: 1px solid #444; 
    padding-bottom: 20px; /* 線とリンクの間に余白 */
    padding-top: 10px; /* 上側に少し余白を持たせる */
}
.footer__policy-list {
    display: flex;
    gap: 40px;
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 0;
}
.footer__policy-list a:hover { color: #fff; }

.footer__copyright {
    display: block;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    font-family: var(--f-en);
}


/* --- Responsive (SP) --- */
@media (max-width: 960px) {
    .page-top {
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: -25px;
    }

    .footer__main {
        flex-direction: column;
        gap: 50px;
        padding-bottom: 40px;
    }

    .footer__left, .footer__right {
        width: 100%;
    }

    /* Logo adjustment */
    .footer__logo-jp { font-size: 1.2rem; }

    /* Data Table to stack on very small screens? usually ok as is */
    .footer__data-row dt { width: 140px; }

    /* Nav Grid -> Stack */
    .footer__nav-grid {
        grid-template-columns: 1fr; /* 1 column */
        gap: 40px;
    }

    .footer__partner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__bottom {
        border-bottom: 1px solid #444; 
        padding-bottom: 20px;
        padding-top: 10px;
        margin-bottom: 40px;
    }

    .footer__policy-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer {
        padding-top: 60px;
    }
}


/* ==========================================================================
   Lower Page Common Styles
   ========================================================================== */
.page-header {
    padding: 140px 0 40px;
    background-color: #fff;
    text-align: left; /* 左揃え */
}

.page-header__title {
    font-family: var(--f-en);
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 20px; /* 線とサブタイトルの間隔を確保 */
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.page-header__title::after {
    content: '';
    position: absolute;
    bottom: -10px; /* タイトルの少し下 */
    left: 0;
    width: 50px;   /* 線の長さ */
    height: 4px;   /* 線の太さ */
    background-color: var(--c-accent-red);
}

.page-header__sub {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: #fff;
    padding: 15px 0;
    margin-bottom: 60px;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
}

.breadcrumbs__list li {
    display: flex;
    align-items: center;
}

.breadcrumbs__list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    font-family: monospace;
}

.breadcrumbs__list a {
    color: #333;
    text-decoration: underline;
}

.breadcrumbs__list a:hover {
    text-decoration: none;
    color: var(--c-primary);
}

/* ==========================================================================
   Life Planning Page Specifics
   ========================================================================== */
/* Lead Section */
.lp-lead {
    margin-bottom: 80px;
    padding-top: 20px;
    overflow: hidden;
}

/* 画像エリア: 画面幅いっぱい & 左上のみ角丸 */
.lp-lead__visual {
    width: 100%;
    height: 400px; /* SPでの高さ（基本） */
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    
    /* 左上と左下を角丸に */
    border-top-left-radius: 50px; 
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* SP時は高さを固定 */
@media (max-width: 960px) {
    .lp-lead__visual {
        height: 220px;
        margin-left:20px;
    }
}

.lp-lead__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-lead__content {
    text-align: left;
    margin: 0 auto; /* 中央寄せ（コンテナ内） */
    padding: 0;     /* 余計なパディングを削除 */
    width: 100%;
    /* テキストが横に広がりすぎないように最大幅のみ制限 */
    max-width: 100%;
}

.lp-lead__heading {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.4;
    color: #000;
}

.lp-lead__text {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Black Button Style */
.lp-lead__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
    margin-top: 20px;
    margin-bottom: 0;
    width: 100%;
    max-width: 350px;
    gap: 15px;
}

.lp-lead__content::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin-top: 40px;
    margin-bottom: 40px;
}

.lp-lead__btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.lp-lead__note {
    font-size: 0.85rem;
    color: #666;
}

/* Content Blocks */
.lp-details {
    padding-bottom: 80px;
    position: relative;
}

/* 2-Column Layout Wrapper */
.lp-layout {
    display: flex;
    flex-direction: column; /* スマホは縦並び */
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid #A5A5A5;
}

/* Sidebar Styling */
.lp-sidebar { width: 100%; }
.lp-nav__list { padding-left: 10px; }
.lp-nav__item { position: relative; }
.lp-nav__link {
    display: flex; align-items: center; gap: 12px; padding: 12px 0;
    color: #333; font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: color 0.3s; background-color: transparent !important;
}
.lp-nav__link::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background-color: #ccc; flex-shrink: 0; transition: background-color 0.3s, transform 0.3s;
}
.lp-nav__link:hover { color: var(--c-primary); }
.lp-nav__link:hover::before { background-color: var(--c-primary); }
.lp-nav__link.is-active { color: var(--c-primary); }
.lp-nav__link.is-active::before { background-color: var(--c-primary); transform: scale(1.3); }

/* SPではサイドバーを非表示 */
@media (max-width: 960px) {
    .lp-sidebar {
        display: none;
    }
}

/* Right Content Area */
.lp-main-content {
    width: 100%;
}

.lp-block {
    margin-bottom: 60px;
    /* アンカーリンクで飛んだ時にヘッダーに隠れないための余白 */
    scroll-margin-top: 120px;
}

/* Block Heading (Black Bar) */
.lp-block__head {
    background-color: transparent;
    color: #333;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 40px;
}

.lp-block__en {
    font-family: var(--f-en);
    font-weight: 900;
    font-size: 1.8rem; /* 文字サイズを大きく */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px; /* 赤線との距離を含める */
    position: relative;
}

.lp-block__en::after {
    content: none;
    display: block;
    width: 50px;       /* 線の長さ */
    height: 4px;       /* 線の太さ */
    background-color: #d32f2f; /* 赤色 (var(--c-accent-red)と同等) */
    margin-top: 15px;  /* 文字と線の間隔 */

}

.lp-block__jp {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    display: block;
}

.lp-block__jp::after {
    content: '';
    display: block;
    width: 50px;       /* 線の長さ */
    height: 4px;       /* 線の太さ */
    background-color: #d32f2f; /* 赤色 */
    margin-top: 15px;  /* 文字と線の間隔 */
}

/* Sub-section Block (New) */
.lp-sub-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee; /* 区切り線 */
}
.lp-sub-block--no-border {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

/* Sub-heading (New) */
.lp-sub-heading {
    background-color: #000; /* 黒背景 */
    color: #fff;            /* 白文字 */
    padding: 12px 20px;     /* 上下の厚みと左右の余白 */
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    border-left: none; 
    line-height: 1.4;
}

/* Sub-heading (Border Style for Lower Weight) */
.lp-sub-heading--border {
    background-color: transparent; /* 背景色なし */
    color: #000;                   /* 文字色は黒 */
    padding: 10px 0;               /* 上下の余白（横の余白はなし） */
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    
    /* 黒い下線を追加 */
    border-bottom: 2px solid #000; 
    
    line-height: 1.4;
}

/* PCサイズでの微調整 */
@media (min-width: 961px) {
    .lp-sub-heading--border {
        font-size: 1.1rem;
        padding-bottom: 15px; /* 下線との距離を少し広げる */
    }
}

/* Block Body (Split Layout) */
.lp-block__body {
    display: flex; flex-direction: column-reverse; gap: 30px;
}
.lp-block__text { flex: 1; font-size: 0.95rem; line-height: 1.8; }
.lp-block__text-full { font-size: 0.95rem; line-height: 1.8; margin-bottom: 30px; }
.lp-block__img { flex: 1; text-align: center; }
.lp-block__img img { max-width: 100%; height: auto; max-height: 250px; object-fit: contain; }

/* Banners Row (New) */
.lp-banners-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.lp-banner-link, .lp-banner-item {
    border: 1px solid #eee;
    background-color: #fff;
    padding: 10px;
    display: flex; align-items: center; justify-content: center;
}

.lp-banner-link:hover { opacity: 0.8; }
.lp-banner-link img, .lp-banner-item img {
    max-width: 100%; height: auto; display: block;
}

/* Insurance Clinic Banner */
.lp-insurance-banner { margin-top: 25px; }
.lp-insurance-banner img { height: 60px; width: auto; }


/* Logos Grid (Common) */
.lp-logos__grid--insurance {
    display: grid; grid-template-columns: repeat(2, 1fr); /* SP 2列 */
    gap: 10px; margin-top: 20px;
}
.lp-logos__item {
    border: 1px solid #eee; display: flex; align-items: center; justify-content: center;
    padding: 5px; background-color: #fff; height: 70px;
}
.lp-logos__item img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Photos Row for Inheritance (New) */
.lp-photos-row {
    display: flex;
    flex-direction: column; /* SP 縦並び */
    gap: 20px;
    margin-top: 30px;
}
.lp-photo-item img {
    width: 100%; height: auto; object-fit: cover; border-radius: 10px;
}

/* Layout Variation for Cash Flow & Mortgage (Full Width Text) */
.lp-block__body--column {
    display: flex;
    flex-direction: column;
}

.lp-block__text-full {
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.lp-block__imgs-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* PC Responsive */
@media (min-width: 961px) {
    .page-header { padding: 160px 0 50px; }
    .page-header__title { font-size: 3.5rem; }

    /* Lead */
    .lp-lead__visual {
        height: 600px;
        width: calc(50% + 600px);
        margin-left: auto;
        margin-right: 0;
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
    }

    .lp-lead__content {
        /* 左端はウィンドウ端（paddingで調整）、右側は適度な幅で制限 */
        max-width: 100%; 
        padding: 0;
    }

    .lp-lead__heading {
        font-size: 2.4rem;
    }

    .lp-lead__btn {
        width: auto; /* PCでは文字幅に合わせる */
        padding: 18px 60px;
    }

    /* Block Head: Horizontal */
    .lp-block__head {
        flex-direction: column; 
        align-items: flex-start;
        gap: 0;
    }
    .lp-block__en { 
        font-size: 2rem; 
        margin-bottom: 10px;
    }


/* 横並びレイアウト */
    .lp-layout {
        flex-direction: row;
        align-items: flex-start; /* stickyを効かせるために重要 */
        gap: 60px;
    }

    /* サイドバーの追従設定 */
    .lp-sidebar {
        width: 250px; flex-shrink: 0;
        position: sticky; top: 120px;
    }

/* コンテンツエリア */
    .lp-main-content { flex: 1; min-width: 0; }

    /* Sub-block spacing */
    .lp-sub-block { margin-bottom: 60px; padding-bottom: 60px; }
    .lp-sub-heading { 
        font-size: 1.1rem;
        padding: 15px 25px; }

    /* Split Layout */
    .lp-block__body { flex-direction: row; align-items: flex-start; gap: 50px; }
    .lp-block__img { text-align: right; }

    /* Banners Row PC */
    .lp-banners-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Logos Grid PC */
    .lp-logos__grid--insurance { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .lp-logos__item { height: 80px; padding: 10px; }

    /* Photos Row PC */
    .lp-photos-row { flex-direction: row; gap: 30px; }
    .lp-photo-item { width: 50%; }
}

/* ==========================================================================
   About FPM Page Styles
   ========================================================================== */

/* About FPM Visual Section */
.about-fpm {
    margin-bottom: 80px;
}

.about-fpm__visual {
    width: calc(100vw - 10vw); /* ビューポート幅から10%を引いた幅 */
    height: 400px;
    overflow: hidden;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-left: 10vw; /* 左端に10%の余白 */
    margin-right: 0; /* 右端は余白なし（画面端まで） */
}

.about-fpm__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Philosophy Section */
.philosophy {
    margin-bottom: 100px;
    padding: 80px 0;
}

.philosophy__heading {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy__title-en {
    font-family: var(--f-en);
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.philosophy__title-jp {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.philosophy__title-jp::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--c-accent-red);
}

.philosophy__main-text {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.8rem;
    line-height: 2;
    color: #333;
    font-weight: 700;
}

.philosophy__main-text p {
    margin: 0;
}

.philosophy__blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy__block {
    background-color: #fff;
    border: none;
}

.philosophy__block-header {
    background-color: #333;
    padding: 10px 40px;
    text-align: left;
}

.philosophy__block-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.philosophy__block-content {
    background-color: #fff;
    padding: 30px 40px;
}

.philosophy__block-text {
    font-size: 0.95rem;
    line-height: 2;
    color: #333;
    margin: 0;
    font-weight: 700;
}

/* Strategy Section */
.strategy {
    margin-bottom: 100px;
    padding: 80px 0;
    background-color: #F9F9F9;
}

.strategy__heading {
    text-align: center;
    margin-bottom: 60px;
}

.strategy__title-en {
    font-family: var(--f-en);
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.strategy__title-jp {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.strategy__title-jp::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--c-accent-red);
}

.strategy__video {
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.strategy__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.strategy__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.strategy__blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.strategy__block {
    background-color: transparent;
    border: none;
}

.strategy__block-header {
    background-color: #333;
    padding: 20px 40px;
    text-align: center;
}

.strategy__block-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.strategy__block-content {
    background-color: transparent;
    padding: 30px 40px;
}

.strategy__block-text {
    font-size: 0.95rem;
    line-height: 2;
    color: #333;
    margin: 0;
    font-weight: 700;
}

/* Professionals Section */
.professionals {
    margin-bottom: 100px;
    padding: 80px 0;
    overflow: hidden; /* 子要素がはみ出しても親要素でクリップ */
}

.professionals__visual {
    width: calc(100vw - 10vw); /* ビューポート幅から10%を引いた幅 */
    height: 400px;
    overflow: hidden;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-left: calc(-20px - (100vw - 100%) / 2); /* container padding分と中央揃え分を相殺して左端を画面端に */
    margin-right: calc(10vw - (100vw - 100%) / 2); /* 右端に10%の余白（container中央揃え分を考慮） */
    margin-bottom: 60px;
}

.professionals__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.professionals__heading {
    text-align: center;
    margin-bottom: 60px;
}

.professionals__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
}

.professionals__desc {
    text-align: center; /* 中央寄せ */
    max-width: 800px;
    margin: 0 auto 60px auto; /* 中央寄せと下マージン */
}

.professionals__desc p {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    line-height: 2;
    margin-bottom: 15px;
}

.professionals__diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 0;
}

.professionals__diagram-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Partner Section */
.partner {
    margin-bottom: 100px;
    padding: 80px 0;
}

.partner__heading {
    text-align: center;
    margin-bottom: 60px;
}

.partner__title-en {
    font-family: var(--f-en);
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.partner__title-jp {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.partner__title-jp::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--c-accent-red);
}

.partner__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner__logo-item {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.partner__logo-item:hover {
    opacity: 0.8;
}

.partner__logo-img-wrapper {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.partner__logo-img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.partner__logo-link {
    color: var(--c-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1.5;
}

.partner__logo-icon {
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Partner Affiliated Section */
.partner-affiliated {
    margin-bottom: 80px;
}

.partner-affiliated__heading {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #000;
    text-align: left;
}

.partner-affiliated__logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-affiliated__logo-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.partner-affiliated__logo-item:hover {
    opacity: 0.8;
}

.partner-affiliated__logo-img-wrapper {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partner-affiliated__logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Partner Insurance Section */
.partner-insurance {
    margin-bottom: 80px;
}

.partner-insurance__heading {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #000;
    text-align: left;
}

.partner-insurance__logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-insurance__logo-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
}

.partner-insurance__logo-img-wrapper {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.partner-insurance__logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Partner Mortgage Section */
.partner-mortgage {
    margin-bottom: 80px;
}

.partner-mortgage__heading {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #000;
    text-align: left;
}

.partner-mortgage__logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-mortgage__logo-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.partner-mortgage__logo-item:hover {
    opacity: 0.8;
}

.partner-mortgage__logo-img-wrapper {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partner-mortgage__logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive - About FPM Page */
@media (max-width: 960px) {
    .about-fpm__visual {
        height: 250px;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
        /* SP時のスタイルは上記で設定済み */
    }

    .philosophy,
    .strategy,
    .professionals,
    .partner {
        padding: 60px 0;
        margin-bottom: 60px;
    }

    .philosophy__title-en,
    .strategy__title-en,
    .partner__title-en {
        font-size: 2rem;
    }

    .philosophy__main-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .philosophy__block-header,
    .strategy__block-header {
        padding: 15px 20px;
    }

    .philosophy__block-title,
    .strategy__block-title {
        font-size: 1.1rem;
    }

    .philosophy__block-content,
    .strategy__block-content {
        padding: 25px 20px;
    }

    .professionals__visual {
        height: 250px;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
        width: calc(100vw - 40px);
        margin-left: -20px;
        margin-right: auto;
    }

    .professionals__title {
        font-size: 1.5rem;
    }

    .professionals__desc {
        padding: 0 20px;
    }

    .professionals__diagram-img {
        max-width: 300px;
    }

    .partner__logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner__logo-item {
        padding: 25px 15px;
    }

    .partner__logo-img-wrapper {
        height: 70px;
        margin-bottom: 0px;
    }

    .partner__logo-img {
        max-height: 70px;
    }

    .partner__logo-link {
        font-size: 0.85rem;
    }

    .partner-affiliated__logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-affiliated__logo-img-wrapper {
        height: 80px;
        padding: 15px;
    }

    .partner-insurance__logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .partner-insurance__logo-img-wrapper {
        height: 60px;
        padding: 8px;
    }

    .partner-mortgage__logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-mortgage__logo-img-wrapper {
        height: 80px;
        padding: 15px;
    }
}

@media (min-width: 961px) {
    .about-fpm__visual {
        height: 600px;
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
        width: calc(100vw - 10vw); /* PCでもビューポート幅から10%を引いた幅 */
        margin-left: 10vw; /* PCでも左端に10%の余白 */
    }

    .professionals__visual {
        height: 600px;
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        width: calc(100vw - 10vw); /* PCでもビューポート幅から10%を引いた幅 */
        margin-left: calc(-40px - (100vw - 100%) / 2); /* container padding分と中央揃え分を相殺して左端を画面端に */
        margin-right: calc(10vw - (100vw - 100%) / 2); /* PCでも右端に10%の余白（container中央揃え分を考慮） */
    }

    .philosophy__title-en,
    .strategy__title-en,
    .partner__title-en {
        font-size: 3.5rem;
    }

    .professionals__title {
        font-size: 1.8rem; /* PC */
    }

    .professionals__diagram-img {
        max-width: 400px;
    }

    .partner__logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .partner__logo-item {
        padding: 10px 30px;
    }

    .partner__logo-img-wrapper {
        height: 120px;
        margin-bottom: 0px;
    }

    .partner__logo-img {
        max-height: 120px;
    }

    .partner__logo-link {
        font-size: 0.95rem;
    }

    .partner-affiliated__heading,
    .partner-insurance__heading,
    .partner-mortgage__heading {
        font-size: 1.1rem;
        padding-bottom: 15px;
    }

    .partner-affiliated__logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .partner-affiliated__logo-img-wrapper {
        height: 120px;
        padding: 30px;
    }

    .partner-insurance__logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .partner-insurance__logo-img-wrapper {
        height: 80px;
        padding: 15px;
    }

    .partner-mortgage__logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .partner-mortgage__logo-img-wrapper {
        height: 120px;
        padding: 30px;
    }
}