/* 全ページ共通のスタイル調整 */
.orthodontics-stage__image {
    background-color: initial !important;
    min-height: initial !important;
}

/* ハイライトの位置調整 - グラデーションで下半分に背景 */
.highlight {
    background: linear-gradient(transparent 50%, #fffad7 50%) !important;
    padding: 0 0.125rem !important;
}

/* サイドバーメニューの現在ページ表示 - 最終版 */
.category-menu__item--current .category-menu__link {
    position: relative !important;
    padding-left: 1rem !important;
}

.content__sidebar .category-menu .category-menu__item--current .category-menu__link::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 6px !important;
    height: 6px !important;
    background-color: #d6d6e5 !important;
    border-radius: 50% !important;
    display: block !important;
    z-index: 999 !important;
}

@media (max-width: 768px) {
    .breadcrumb {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .breadcrumb__item:not(:last-child)::after {
        display: block !important;
        content: "" !important;
        position: absolute !important;
        right: -1.75rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: .875rem !important;
        height: .6875rem !important;
        background-image: url("../images/arw-circle-line.svg") !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        opacity: .6 !important;
    }
}

/* ハンバーガーメニュースタイル */
/* ボディのスクロール制御 */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ハンバーガーメニュー全画面オーバーレイ */
.hamburger-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hamburger-menu__container {
    display: flex !important;
    flex-direction: row !important;
    height: 100vh !important;
    width: 100% !important;
    background: linear-gradient(135deg, #949ba9 0%, #75818f 100%);
}

/* 左側: クリニック情報エリア */
.hamburger-menu__left {
    flex: 0 0 70.31%;
    width: 70.31%;
    padding: 3rem 2rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: linear-gradient(250deg, rgba(109, 114, 125, 0.80) 0%, rgba(59, 64, 74, 0.80) 100%);
    backdrop-filter: blur(5px);
}

/* ロゴ */
.hamburger-menu__logo {
    margin-bottom: 3rem;
}

.hamburger-menu__logo svg {
    width: 145px;
    height: 48px;
    color: #ffffff;
}

.hamburger-menu__logo img {
    width: 145px;
    height: 48px;
    object-fit: contain;
}

/* クリニック情報 */
.hamburger-menu__clinic-info {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.hamburger-menu__clinic-type {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.8;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
}

.hamburger-menu__clinic-name {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #ffffff;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* 住所 */
.hamburger-menu__address {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.hamburger-menu__address-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    margin-top: 0.125rem;
}

.hamburger-menu__address-icon svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
    opacity: 0.8;
}

.hamburger-menu__train-access {
    margin-bottom: 1rem;
}

.hamburger-menu__address-text {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    letter-spacing: 0.05rem;
}

/* アクセスリンク */
.hamburger-menu__access-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.9;
    letter-spacing: 0.05rem;
    transition: opacity 0.3s ease;
}

.hamburger-menu__access-link:hover {
    opacity: 1;
}

.hamburger-menu__access-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hamburger-menu__access-icon svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
}

/* 左側のテキストコンテンツ */
.hamburger-menu__left-content {
    display: flex;
    flex-direction: column;
}

.hamburger-menu__left-content .hamburger-menu__access-link {
    justify-self: flex-end;
    margin-left: auto;
}

/* 右側のCTAボタンエリア */
.hamburger-menu__right-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-self: flex-end;
}

/* CTAボタン */
.hamburger-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hamburger-menu__web-btn,
.hamburger-menu__tel-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 1.5rem 1rem 0.6rem;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 0.4rem;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.05rem;
}

.hamburger-menu__web-btn {
    background: linear-gradient(267deg, #9FA3AA 0%, #72757C 100%);
    color: #ffffff;
    height: 4rem;
    width: 200px;
}

.hamburger-menu__tel-btn {
    background: #595a5d;
    color: #ffffff;
    height: 3rem;
    width: 200px;
}

.hamburger-menu__web-btn:hover,
.hamburger-menu__tel-btn:hover {
    opacity: 0.8;
    transform: none;
}

.hamburger-menu__btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hamburger-menu__btn-icon svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.hamburger-menu__web-btn span,
.hamburger-menu__tel-btn span {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0.05rem;
    flex: 1;
    text-align: left;
    white-space: nowrap;
}

.hamburger-menu__btn-arrow {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -0.625rem;
}

.hamburger-menu__btn-arrow svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
}

/* 右側: ナビゲーションメニューエリア */
.hamburger-menu__right {
    flex: 0 0 29.69%;
    width: 29.69%;
    background: #ffffff;
    padding: 3rem 3rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
}

/* 閉じるボタン */
.hamburger-menu__close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #787b83;
    letter-spacing: 0.05rem;
    transition: color 0.3s ease;
    z-index: 10;
}

.hamburger-menu__close-btn:hover {
    color: #595a5d;
}

.hamburger-menu__close-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* セクション */
.hamburger-menu__section {
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.hamburger-menu__section:first-of-type {
    margin-top: 4rem;
}

.hamburger-menu__section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.hamburger-menu__section-label {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    font-size: 0.8125rem;
    color: #787B83;
    letter-spacing: 0.040625rem;
    line-height: 135%;
    position: relative;
    padding-left: 0.25rem;
}

.hamburger-menu__section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 0;
    width: 1px;
    background: #787B83;
    height: 72%;
}

.hamburger-menu__section-count {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #787B83;
    text-align: right;
    line-height: 135%;
    flex: 1;
    text-decoration: underline;
}

.hamburger-menu__section-number {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ナビゲーションリンク */
.hamburger-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hamburger-menu__nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5625rem 1rem;
    text-decoration: none;
    border: 1.5px solid #E8E8F0;
    background: #F8F8F9;
    transition: all 0.3s ease;
    border-radius: 0;
}

.hamburger-menu__nav-link:hover {
    background-color: rgba(120, 123, 131, 0.05);
}

.hamburger-menu__nav-link span {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    font-size: 1rem;
    color: #595A5D;
    letter-spacing: 0.05rem;
    line-height: 135%;
    transition: color 0.3s ease;
}

.hamburger-menu__nav-link:hover span {
    color: #787b83;
}

.hamburger-menu__nav-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 1;
    transition: all 0.3s ease;
}

.hamburger-menu__nav-link:hover .hamburger-menu__nav-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.hamburger-menu__nav-arrow svg {
    width: 100%;
    height: 100%;
    color: #787b83;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .hamburger-menu__container {
        flex-direction: column !important;
        overflow-y: auto !important;
    }
    
    .hamburger-menu__left {
        flex: none !important;
        width: 100% !important;
        padding: 24px !important;
        background: linear-gradient(135deg, #949ba9 0%, #75818f 100%) !important;
        min-height: auto !important;
    }
    
    .hamburger-menu__logo {
        margin-bottom: 24px !important;
    }
    
    .hamburger-menu__clinic-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 24px !important;
        margin-bottom: 32px !important;
    }
    
    .hamburger-menu__left-content {
        width: 100% !important;
    }
    
    .hamburger-menu__clinic-type {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }
    
    .hamburger-menu__clinic-name {
        font-size: 20px !important;
        margin-bottom: 24px !important;
    }
    
    .hamburger-menu__address {
        margin-bottom: 12px !important;
    }
    
    .hamburger-menu__address-icon {
        width: 24px !important;
        height: 24px !important;
    }
    
    .hamburger-menu__address-text {
        font-size: 12px !important;
    }
    
    .hamburger-menu__train-access {
        margin-bottom: 24px !important;
    }
    
    .hamburger-menu__access-link {
        font-size: 12px !important;
        margin-top: 16px !important;
    }
    
    .hamburger-menu__right-content {
        width: 100% !important;
        flex-direction: row !important;
        gap: 12px !important;
        margin-top: 24px !important;
    }
    
    .hamburger-menu__cta {
        flex-direction: row !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .hamburger-menu__web-btn,
    .hamburger-menu__tel-btn {
        flex: 1 !important;
        width: auto !important;
        height: 48px !important;
        padding: 12px 16px !important;
        font-size: 12px !important;
        justify-content: center !important;
    }
    
    .hamburger-menu__btn-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    .hamburger-menu__btn-arrow {
        display: none !important;
    }
    
    .hamburger-menu__right {
        flex: none !important;
        width: 100% !important;
        padding: 24px !important;
        background: #ffffff !important;
        overflow-y: visible !important;
    }
    
    .hamburger-menu__close-btn {
        position: fixed !important;
        top: 24px !important;
        right: 24px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        z-index: 10001 !important;
    }
    
    .hamburger-menu__close-btn span {
        display: none !important;
    }
    
    .hamburger-menu__close-btn svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .hamburger-menu__section {
        margin-bottom: 32px !important;
    }
    
    .hamburger-menu__section:first-of-type {
        margin-top: 0 !important;
    }
    
    .hamburger-menu__section-header {
        margin-bottom: 16px !important;
    }
    
    .hamburger-menu__section-label {
        font-size: 12px !important;
    }
    
    .hamburger-menu__section-count {
        font-size: 12px !important;
    }
    
    .hamburger-menu__nav {
        gap: 8px !important;
    }
    
    .hamburger-menu__nav-link {
        padding: 12px 16px !important;
    }
    
    .hamburger-menu__nav-link span {
        font-size: 14px !important;
    }
    
    .hamburger-menu__nav-arrow {
        width: 20px !important;
        height: 20px !important;
    }
}

/* ハンバーガーメニュー アコーディオン */
.hamburger-menu__nav-accordion {
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.hamburger-menu__nav-accordion .hamburger-menu__nav-arrow {
    transition: transform 0.3s ease;
}

.hamburger-menu__nav-accordion.is-open .hamburger-menu__nav-arrow {
    transform: rotate(180deg);
}

.hamburger-menu__nav-accordion.is-open:hover {
    background: linear-gradient(89deg, #72757C -0.49%, #9FA3AA 100%) !important;
    color: #fff !important;
}

.hamburger-menu__nav-accordion.is-open:hover span {
    color: #fff !important;
}

.hamburger-menu__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
    margin-left: 0;
    padding: 0;
}

.hamburger-menu__submenu.is-open {
    max-height: 700px;
    padding: 8px 0;
}

.hamburger-menu__submenu-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 16px;
}

.hamburger-menu__submenu-item {
    display: block !important;
    padding: 6px 0 6px 1rem !important;
    position: relative;
    min-height: 24px;
}

.hamburger-menu__submenu-item:first-child {
    padding-top: 12px;
    border-bottom: 1px solid #E8E8F0;
}

.hamburger-menu__submenu-item {
    border-bottom: 1px solid #E8E8F0 !important;
}

.hamburger-menu__submenu-item.footer__menu-category__child {
    border-bottom: none !important;
}


.hamburger-menu__submenu-title {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 600;
    font-size: 15px;
    color: #595A5D;
    letter-spacing: 0.75px;
    line-height: 1.35;
    position: relative;
    padding-left: 0;
}


.hamburger-menu__submenu-link {
    text-decoration: none;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 500;
    font-size: 14px;
    color: #595A5D;
    letter-spacing: 0.7px;
    line-height: 1.35;
    transition: all 0.2s ease;
    display: inline-block;
}

.hamburger-menu__submenu-link:hover {
    color: #787B83;
}

.hamburger-menu__submenu-subtitle {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    font-size: 14px;
    color: #595A5D;
    opacity: 0.7;
    letter-spacing: 0.7px;
    line-height: 1.35;
    white-space: nowrap;
}

.hamburger-menu__submenu-main {
    text-decoration: none;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 600;
    font-size: 15px;
    color: #595A5D;
    letter-spacing: 0.75px;
    line-height: 1.35;
    transition: all 0.2s ease;
    display: inline-block;
}

.hamburger-menu__submenu-main:hover {
    color: #787B83;
}

/* ハンバーガーメニュー内のfooter__menu-category__child擬似要素位置調整 */
.hamburger-menu__submenu-item.footer__menu-category__child::before {
    top: calc(50% - 3px) !important;
}

.hamburger-menu__submenu-item.footer__menu-category__child::after {
    top: calc(50% + 2px) !important;
}

/* レスポンシブ対応のアコーディオン調整 */
@media (max-width: 767px) {
    .hamburger-menu__submenu-section {
        padding-left: 12px;
    }

    .hamburger-menu__submenu-title {
        font-size: 13px;
    }

    .hamburger-menu__submenu-link {
        font-size: 12px;
    }

    .hamburger-menu__submenu-subtitle {
        font-size: 11px;
    }

    .hamburger-menu__submenu-main {
        font-size: 13px;
    }
    
    .hamburger-menu__submenu-item {
        padding: 5px 0;
    }
}

/* アニメーション */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

.hamburger-menu.slide-in {
    animation: slideInFromRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hamburger-menu.slide-out {
    animation: slideOutToRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* メッセージセクション */
.message {
    position: relative;
    padding: 12.625rem 0 4rem;
    overflow: hidden;
}

.message__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.message__bg-text {
    position: absolute;
    top: -10%;
    left: 0%;
    transform: translate(-50%, -50%);
    font-family: 'Pinyon Script', cursive;
    color: #FBFCFE;
    font-size: 200px;
    font-style: normal;
    font-weight: 400;
    line-height: 50%; /* 100px */
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.message__content {
    position: relative;
    z-index: 2;
}

.message__text-main {
    max-width: 536px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message__text-intro {
    margin: 0;
}

.message__text-intro p {
    color: #595A5D;
    font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.6px;
    margin: 0;
}

.message__text-highlight {
    background: var(--gradation, linear-gradient(250deg, #9FA3AA 0%, #72757C 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.message__text-philosophy {
    margin: 0;
}

.message__text-line {
    color: #595A5D;
    font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.6px;
    margin: 0;
}

.message__text-emphasis {
    background: var(--gradation, linear-gradient(250deg, #9FA3AA 0%, #72757C 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1.6px;
    margin: 0;
}

.message__text-approach {
    margin: 0;
}

.message__text-approach p {
    color: #595A5D;
    font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.6px;
    margin: 0;
}


.message__tagline-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.message__tagline {
    text-align: center;
    white-space: nowrap;
}

.message__tagline p {
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 180%; /* 43.2px */
    letter-spacing: 2.4px;
    background: linear-gradient(268deg, #949BA9 3.88%, #697181 100.68%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .message {
        padding: 4rem 0 3rem;
    }
    
    .message__container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .message__bg-text {
        font-size: 8rem;
    }
    
    .message__content {
        text-align: left;
    }
    
    .message__text-main {
        max-width: 100%;
    }
    
    .message__text-intro p,
    .message__text-line,
    .message__text-emphasis,
    .message__text-approach p {
        font-size: 0.875rem;
        text-align: left;
    }
    
    .message__tagline-wrapper {
        text-align: center;
    }
    
    .message__tagline p {
        font-size: 1.25rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .message__bg-text {
        font-size: 6rem;
    }
    
    .message__tagline p {
        font-size: 1.125rem;
    }
}

/* 当院の特徴セクション */
.features {
    padding: 5rem 0 4rem;
}

@media (min-width: 1024px) {
    .features {
        padding: 8rem 0 7rem;
    }
}

.features__item {
    justify-content: flex-start;
}

@media (max-width: 1023px) {
    .features__item-image {
        height: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Instagramバナー */
.instagram-banner {
    text-align: center;
    background: none;
    background-color: transparent;
    padding-bottom: 10rem;
}

.instagram-banner__img {
    max-width: 700px;
    width: 100%;
    height: auto;
}

/* アクセス情報セクション */
.information {
    position: relative;
    height: auto;
}

.information__bg-text {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Pinyon Script", serif;
    font-size: 104px;
    color: #595A5D;
    opacity: 0.2;
    line-height: 0.5;
    pointer-events: none;
    z-index: 1;
}

.information__container {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    z-index: 2;
    background: #787B83;
    box-shadow: 10px 10px 10px 0px rgba(122, 134, 158, 0.03);
    padding: 4rem 2rem;
    border-radius: 0;
}

.information__content {
    flex: 1;
    color: #FFFFFF;
}

.information__clinic-name {
    margin-bottom: 3rem;
}

.information__clinic-name-company {
    font-family: "Zen Old Mincho", serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.information__clinic-name-main {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 1.3px;
    line-height: 1.35;
    margin: 0;
}

.information__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.information__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.information__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
}

.information__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.information__text {
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.35;
    color: #FFFFFF;
}

.information__map {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.information__map-container {
    width: 480px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 10px 10px 10px 0px rgba(122, 134, 158, 0.03);
}

.information__map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.information__access-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    text-decoration: none;
    color: #FFFFFF;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 1.35;
    margin-top: 0.5rem;
}

.information__access-link span {
    text-decoration: underline;
    text-underline-position: from-font;
}

.information__access-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* レスポンシブデザイン */
@media (max-width: 1199px) {
    .information__container {
        max-width: 100%;
        margin: 0 2rem;
        padding: 3rem 2rem;
    }
    
    .information__map-container {
        width: 100%;
        max-width: 480px;
    }
}

@media (max-width: 767px) {
    .information {
    }
    
    .information__bg-text {
        font-size: 60px;
        top: 1rem;
        left: 1rem;
    }
    
    .information__container {
        flex-direction: column;
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .information__clinic-name {
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .information__clinic-name-main {
        font-size: 22px;
    }
    
    .information__details {
        gap: 1.5rem;
    }
    
    .information__item {
        gap: 0.75rem;
    }
    
    .information__icon {
        width: 28px;
        height: 28px;
    }
    
    .information__text {
        font-size: 14px;
    }
    
    .information__map-container {
        width: 100%;
        height: 200px;
    }
    
    .information__access-link {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* FV Slideshow Styles */
.fv-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 40px;
}

.fv-swiper {
    width: 1600px;
    margin: 50px auto 0 auto;
    max-width: calc(100% - 0px);
}

.fv-slide {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fv-slide__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.fv-slide__image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Swiper Navigation Buttons */
.fv-swiper .swiper-button-next,
.fv-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.fv-swiper .swiper-button-next:after,
.fv-swiper .swiper-button-prev:after {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

.fv-swiper .swiper-button-next:hover,
.fv-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .fv-swiper .swiper-button-next,
    .fv-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .fv-swiper .swiper-button-next:after,
    .fv-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
}

/* 基本リセットとレイアウト */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: "Zen Old Mincho", serif;
    line-height: 1.6;
    color: #595a5d;
    background: #f8f8f9;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

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

/* ヘッダースタイル */
.header {
    background-color: rgba(0,0,0,0);
    border-bottom: none;
    position: relative;
    width: 100%;
    z-index: 1200;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    max-width: none;
    position: relative;
}

@media (min-width: 768px) {
    .header__container {
        height: 6.25rem;
    }
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    color: #231815;
    transition: color 0.3s ease;
}

.header__logo-svg {
    height: 3rem;
    width: auto;
    max-width: 9.4375rem;
}

@media (min-width: 768px) {
    .header__logo-svg {
        height: 3.125rem;
    }
}

.header__logo-img {
    height: 3rem;
    width: auto;
    max-width: 9.4375rem;
}

@media (min-width: 768px) {
    .header__logo-img {
        height: 3.125rem;
    }
}

.header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    gap: 0.125rem;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    justify-content: center;
}

.header__hamburger-icon {
    width: 1.5rem;
    height: 0.9375rem;
    display: block;
    transition: all 0.3s ease;
}

.header__hamburger-icon svg {
    width: 100%;
    height: 100%;
    fill: #787b83;
    transition: fill 0.3s ease;
}

.header__hamburger-text {
    font-size: 0.75rem;
    color: #787b83;
    font-weight: 700;
    letter-spacing: 0.040625rem;
    margin-top: 0.125rem;
    line-height: 1;
}

.header__hamburger:hover .header__hamburger-icon svg {
    fill: #595a5d;
}

.header__hamburger:hover .header__hamburger-text {
    color: #595a5d;
}

/* フッタースタイル */
.footer {
    position: relative;
    background-color: #fff;
}

.footer__cta {
    position: relative;
    padding: 14.5rem 0 8rem;
    overflow: hidden;
    min-height: 21.75rem;
    background: linear-gradient(180deg, rgba(232, 232, 240, 0) 0%, #E8E8F0 100%);
}

.footer__cta-content {
    position: relative;
    z-index: 10;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas: "text buttons";
    gap: 5.625rem;
    height: 100%;
    padding-top: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    justify-content: center;
}

@media (max-width: 767px) {
    .footer__cta-content {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        padding-top: 1rem;
    }
}

.footer__cta-bg-text {
    position: absolute;
    bottom: -2rem;
    left: 100%;
    font-family: "Zen Old Mincho", serif;
    font-size: 10rem;
    color: rgba(89,90,93,0.1);
    z-index: 1;
    line-height: 1.6;
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: 0.5rem;
    pointer-events: none;
    animation: scroll-left 20s linear infinite;
}

@media (max-width: 1023px) {
    .footer__cta-bg-text {
        font-size: 8rem;
        bottom: -1.5rem;
        animation: scroll-left 15s linear infinite;
    }
}

@media (max-width: 767px) {
    .footer__cta-bg-text {
        font-size: 6rem;
        bottom: -1rem;
        animation: scroll-left 12s linear infinite;
    }
}

.footer__cta-text {
    grid-area: text;
    max-width: 35rem;
    align-self: start;
    margin-top: -6rem;
}

.footer__cta-text-title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: 2rem;
    color: transparent;
    background: linear-gradient(90deg, #595A5D 0%, rgba(89, 90, 93, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 0.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .footer__cta-text-title {
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .footer__cta-text-title {
        font-size: 1.5rem;
        text-align: center;
        white-space: normal;
    }
    .footer__cta-text {
        grid-area: unset;
    }
}

.footer__cta-text-description {
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-size: 1rem;
    color: #787b83;
    letter-spacing: 0.05rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .footer__cta-text-description {
        text-align: center;
    }
}

.footer__cta-buttons {
    grid-area: buttons;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 23.75rem;
    align-self: center;
}

@media (max-width: 767px) {
    .footer__cta-buttons {
        grid-area: unset;
        align-self: unset;
        width: 100%;
        max-width: 23.75rem;
        margin: 0 auto;
    }
}

/* CTAボタンスタイル */
.cta-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-button--web {
    height: 6.25rem;
    background: linear-gradient(267deg, #9FA3AA 0%, #72757C 100%);
}

.cta-button--web:hover {
    background: linear-gradient(267deg, rgba(159, 163, 170, 0.9) 0%, rgba(114, 117, 124, 0.9) 100%);
}

.cta-button--tel {
    height: 4.375rem;
    background: #595A5D;
}

.cta-button--tel:hover {
    background: rgba(89,90,93,0.9);
}

.cta-button__content {
    position: absolute;
    left: 24.211%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-button__icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.cta-button__text {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.0625rem;
    line-height: 1.35;
    color: #fff;
    white-space: nowrap;
}

.cta-button__arrow {
    position: absolute;
    right: 8.421%;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    flex-shrink: 0;
}

/* フッターメニュー */
.footer__menu {
    background-color: #f8f8f9;
    padding: 3.5rem 0 5rem;
}

.footer__menu-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer__menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: 
        "about-us about-us doctor-staff others"
        "about-us about-us news-updates others"
        "about-us about-us news-updates others"
        "menu-header menu-header menu-header menu-header"
        "menu-laminate aesthetic general general";
    gap: 0.75rem 2.5rem;
    min-height: 25rem;
}

@media (max-width: 1023px) {
    .footer__menu-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "about-us doctor-staff"
            "about-us news-updates"
            "others others"
            "menu-header menu-header"
            "menu-laminate aesthetic"
            "general general";
        gap: 0.75rem 2rem;
        min-height: auto;
    }
}

.footer__menu-category__header {
    margin-bottom: 0.75rem;
}

.footer__menu-category__title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: 0.8125rem;
    color: #787b83;
    letter-spacing: 0.040625rem;
    line-height: 1.35;
    margin: 0;
    position: relative;
    padding-left: 0.375rem;
}

.footer__menu-category__title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.0625rem;
    height: 0.875rem;
    background-color: #787b83;
}

.footer__menu-category__link {
    display: block;
    font-family: "Zen Old Mincho", serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #595a5d;
    letter-spacing: 0.046875rem;
    line-height: 1.35;
    text-decoration: underline;
    margin-bottom: 0.625rem;
    transition: color 0.3s ease;
}

.footer__menu-category__link:hover {
    color: #787b83;
}

.footer__menu-category__child {
    position: relative;
    margin-bottom: 0.625rem;
    padding-left: 0.75rem;
}

.footer__menu-category__child::before {
    content: "";
    position: absolute;
    left: 0.1875rem;
    top: 0.5625rem;
    width: 0.0625rem;
    height: 0.375rem;
    background-color: #595a5d;
}

.footer__menu-category__child::after {
    content: "";
    position: absolute;
    left: 0.1875rem;
    top: 0.875rem;
    width: 0.3125rem;
    height: 0.0625rem;
    background-color: #595a5d;
}

.footer__menu-category__child-link {
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: #595a5d;
    letter-spacing: 0.04375rem;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__menu-category__child-link:hover {
    color: #787b83;
}

/* グリッドエリアの設定 */
.footer__menu-about { grid-area: about-us; }
.footer__menu-doctor-staff { grid-area: doctor-staff; }
.footer__menu-news-updates { grid-area: news-updates; }
.footer__menu-others { grid-area: others; }
.footer__menu-menu-header { grid-area: menu-header; }
.footer__menu-menu-laminate { grid-area: menu-laminate; }
.footer__menu-aesthetic { grid-area: aesthetic; }
.footer__menu-general { grid-area: general; }

.footer__menu-about-content {
    display: flex;
}

@media (max-width: 767px) {
    .footer__menu-about-content {
        flex-direction: column;
        gap: 2rem;
    }
}

.footer__menu-about-left {
    flex: 1;
}

.footer__menu-about-right {
    flex: 1.4;
}

.footer__menu-general-content {
    display: flex;
}

@media (max-width: 767px) {
    .footer__menu-general-content {
        flex-direction: column;
    }
}

.footer__menu-general-left {
    flex: 1;
}

.footer__menu-general-right {
    flex: 1.4;
}

/* フッター情報セクション */
.footer__info {
    background-color: #f8f8f9;
    padding: 1.5rem 2rem 7.5rem;
}

.footer__info-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
    background-color: #f1f1f6;
    border: 1.5px solid #e8e8f0;
    border-radius: 0;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .footer__info-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem 1rem;
    }
}

.footer__info-logo {
    flex-shrink: 0;
    width: 9.0625rem;
    height: 3rem;
}

.footer__info-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__info-details {
    flex: 1;
    margin-left: 2rem;
}

@media (max-width: 767px) {
    .footer__info-details {
        margin-left: 0;
    }
}

.footer__info-details-name {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.footer__info-details-name-company {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: 0.8125rem;
    color: #595a5d;
    letter-spacing: 0.040625rem;
    line-height: 1.35;
    margin-bottom: 0.125rem;
}

.footer__info-details-name-clinic {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: #595a5d;
    letter-spacing: 0.0625rem;
    line-height: 1.35;
}

.footer__info-details-address {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: #595a5d;
    letter-spacing: 0.04375rem;
    line-height: 1.35;
}

@media (max-width: 767px) {
    .footer__info-details-address {
        justify-content: center;
    }
}

.footer__info-details-address-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.footer__info-social {
    flex-shrink: 0;
    display: flex;
    gap: 1.5rem;
}

.footer__info-social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 2.5rem;
    padding: 0.625rem 1rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: 0.875rem;
    color: #787b83;
    letter-spacing: 0.04375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.75rem;
    min-width: 7rem;
}

.footer__info-social-link:hover {
    color: #595a5d;
}

.footer__info-social-text {
    flex: 1;
    white-space: nowrap;
}

.footer__info-social-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    object-fit: contain;
}

/* コピーライトセクション */
.footer__copyright {
    background: linear-gradient(250deg, #9FA3AA 0%, #72757C 100%);
    padding: 0.5rem 0;
    box-shadow: 10px 10px 10px 0px rgba(122,134,158,0.03);
}

.footer__copyright-text {
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: 0.875rem;
    color: #fff;
    letter-spacing: 0.04375rem;
    line-height: 1.35;
}

/* アニメーション */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-120%); }
}

/* 基本的なSwiperスタイル */
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: block;
    padding: 0;
    box-sizing: content-box;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev {
    left: 10px;
    right: auto;
}

.swiper-button-next {
    right: 10px;
    left: auto;
}

.swiper-button-prev:after {
    content: 'prev';
}

.swiper-button-next:after {
    content: 'next';
}

@media (min-width: 1024px) {
    .laminate-veneer__content {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        max-width: 70rem;
        order: 1;
    }
}

/* 院長紹介セクション */
.director-intro {
    position: relative;
    padding: 110px 0;
    background: #F2F3F6;
    overflow: visible;
}

.director-intro__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.director-intro__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

/* 左側: 院長写真（600px幅） */
.director-intro__left {
    flex: 0 0 600px;
    position: relative;
    z-index: 3;
}

.director-intro__image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

/* 名前カード - 画像の左下に絶対配置 */
.director-intro__name-card {
    position: absolute;
    bottom: 30px;
    left: -44px;
    width: 278px;
    height: 118px;
    background: #F8F8F9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 24px 32px;
    box-shadow: 10px 10px 10px 0px rgba(122, 134, 158, 0.03);
    z-index: 4;
    overflow: hidden;
}

.director-intro__name-card::before {
    content: 'Yotaro Abe';
    position: absolute;
    top: 62px;
    right: 28px;
    font-family: 'Pinyon Script', cursive;
    font-size: 40px;
    color: #595A5D;
    opacity: 0.2;
    line-height: 0.5;
    white-space: nowrap;
    transform: rotate(-5deg);
    z-index: 1;
}

.director-intro__position {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    color: #595A5D;
    margin-bottom: 0;
    letter-spacing: 0.9px;
    line-height: 1.6;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.director-intro__name {
    font-family: 'Zen Old Mincho', serif;
    font-size: 20px;
    font-weight: 900;
    color: #595A5D;
    letter-spacing: 0;
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 2;
}

/* 右側: 紹介文（400px幅、左側と重なり） */
.director-intro__right {
    flex: 0 0 400px;
    margin-left: -80px; /* 重なりを作る */
    padding: 0;
    z-index: 4;
    position: relative;
    margin-top: 97px;
}

.director-intro__content {
    position: relative;
    width: 400px;
}

.director-intro__title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 700;
    color: #595A5D;
    margin-bottom: 24px;
    letter-spacing: 3.2px;
    line-height: 1.35;
    position: relative;
    text-align: left;
}

.director-intro__title::before {
    content: 'Doctor';
    position: absolute;
    top: -17px;
    left: 0;
    font-family: 'Pinyon Script', cursive;
    font-size: 104px;
    font-weight: 400;
    color: #7E7F82;
    opacity: 0.2;
    line-height: 0.5;
    z-index: -1;
    white-space: nowrap;
}

.director-intro__subtitle {
    font-family: 'Zen Old Mincho', serif;
    font-size: 20px;
    font-weight: 900;
    background: var(--gradation, linear-gradient(250deg, #9FA3AA 0%, #72757C 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.35;
    letter-spacing: 1px;
}

.director-intro__description {
    margin-bottom: 56px;
}

.director-intro__description p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    color: #595A5D;
    line-height: 1.6;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.director-intro__description p:last-child {
    margin-bottom: 0;
}

/* 院長紹介セクション内のservices__main-buttonの上マージンを削除 */
.director-intro .services__main-button {
    margin: 0;
}

/* 装飾用医師画像 */
.director-intro__decorative-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.director-intro__decorative-img {
    position: absolute;
}

.director-intro__decorative-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* 左下 - doctor4.webp */
.director-intro__decorative-img--bottom-left {
    bottom: 80px;
    left: 60px;
    width: 280px;
}

/* 左上 - doctor2.webp */
.director-intro__decorative-img--top-left {
    top: 50px;
    left: 120px;
    width: 220px;
}

/* 右上 - doctor3.webp */
.director-intro__decorative-img--top-right {
    top: -90px;
    right: 0;
    width: 340px;
}



/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .director-intro__left {
        flex: 0 0 500px;
    }
    
    .director-intro__right {
        flex: 0 0 350px;
        margin-left: -80px;
        padding: 50px 35px;
    }
    
    .director-intro__title {
        font-size: 42px;
    }
    
    .director-intro__image-wrapper {
        height: 700px;
    }
}

@media (max-width: 768px) {
    .director-intro {
        padding: 60px 0;
    }
    
    .director-intro__container {
        padding: 0 20px;
    }
    
    .director-intro__inner {
        flex-direction: column;
        align-items: center;
    }
    
    .director-intro__left {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .director-intro__image-wrapper {
        height: 500px;
    }
    
    .director-intro__name-card {
        bottom: 80px;
        left: 80px;
        padding: 20px;
    }
    
    .director-intro__right {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-top: 40px;
        padding: 40px 30px;
        text-align: center;
    }
    
    .director-intro__title {
        font-size: 32px;
    }
    
    .director-intro__subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .director-intro__description p {
        font-size: 14px;
        text-align: left;
    }
    
    .director-intro__button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* モバイルで装飾画像を非表示 */
    .director-intro__decorative-images {
        display: none;
    }
}

@media (max-width: 480px) {
    .director-intro__left {
        max-width: 320px;
    }
    
    .director-intro__image-wrapper {
        height: 400px;
    }
    
    .director-intro__name-card {
        bottom: 60px;
        left: 60px;
        padding: 16px;
    }
    
    .director-intro__name {
        font-size: 20px;
    }
    
    .director-intro__title {
        font-size: 28px;
    }
    
    .director-intro__right {
        padding: 30px 25px;
    }
}

/* 審美歯科セクション */
.aesthetic-dentistry {
    position: relative;
    padding: 80px 0;
    background: #F8F8F9;
    border: 1.5px solid #E8E8F0;
    max-width: 1200px;
    margin: 0 auto 24px;
}

.aesthetic-dentistry__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.aesthetic-dentistry__inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* 左側: テキストコンテンツ */
.aesthetic-dentistry__left {
    flex: 0 0 390px;
    padding-top: 20px;
}

.aesthetic-dentistry__title-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.aesthetic-dentistry__number {
    font-family: 'Pinyon Script', cursive;
    font-size: 64px;
    color: #C5CCDB;
    line-height: 0.5;
    white-space: nowrap;
    position: absolute;
    left: 80px;
    top: 0px;
    text-align: right;
    z-index: 1;
}

.aesthetic-dentistry__title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    font-weight: 900;
    color: #595A5D;
    letter-spacing: 1.4px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.aesthetic-dentistry__description {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 500;
    color: #595A5D;
    line-height: 1.6;
    letter-spacing: 0.8px;
    margin-bottom: 40px;
}

/* 審美歯科セクション内のボタンマージン調整 */
.aesthetic-dentistry .services__main-button {
    margin: 0;
    background: #F8F8F9;
    box-shadow: none;
    gap: 12px;
    justify-content: flex-end;
    width: auto;
    padding: 0;
}

/* 右側: 画像グリッド */
.aesthetic-dentistry__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aesthetic-dentistry__grid-row {
    display: flex;
    gap: 8px;
}

.aesthetic-dentistry__card {
    flex: 1;
    position: relative;
    width: 281px;
    height: 150px;
    background: #F8F8F9;
    overflow: hidden;
    cursor: pointer;
}

.aesthetic-dentistry__card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.aesthetic-dentistry__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aesthetic-dentistry__card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px 24px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.aesthetic-dentistry__card-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 19px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.35;
    letter-spacing: 0.95px;
    margin: 0;
}

.aesthetic-dentistry__card-subtitle {
    font-family: 'Zen Old Mincho', serif;
    font-size: 13px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.35;
    letter-spacing: 0.65px;
    margin: 4px 0 0 0;
}

.aesthetic-dentistry__card-arrow {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    opacity: 1;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .aesthetic-dentistry__inner {
        gap: 60px;
    }
    
    .aesthetic-dentistry__left {
        flex: 0 0 340px;
    }
    
    .aesthetic-dentistry__card {
        width: 240px;
        height: 130px;
    }
    
    .aesthetic-dentistry__card-content {
        padding: 32px 20px 8px;
    }
    
    .aesthetic-dentistry__card-title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .aesthetic-dentistry {
        padding: 60px 0;
    }
    
    .aesthetic-dentistry__container {
        padding: 0 20px;
    }
    
    .aesthetic-dentistry__inner {
        flex-direction: column;
        gap: 40px;
    }
    
    .aesthetic-dentistry__left {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .aesthetic-dentistry__title-wrapper {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .aesthetic-dentistry__number {
        margin-right: 40px;
        font-size: 50px;
    }
    
    .aesthetic-dentistry__title {
        font-size: 24px;
    }
    
    .aesthetic-dentistry__description {
        text-align: left;
        margin-bottom: 40px;
    }
    
    .aesthetic-dentistry__right {
        width: 100%;
    }
    
    .aesthetic-dentistry__grid-row {
        flex-direction: column;
    }
    
    .aesthetic-dentistry__card {
        width: 100%;
        height: 120px;
    }
    
    .aesthetic-dentistry__card-content {
        padding: 20px 16px 8px;
    }
    
    .aesthetic-dentistry__card-title {
        font-size: 16px;
    }
    
    .aesthetic-dentistry__card-subtitle {
        font-size: 12px;
    }
}

/* その他のメニューセクション（審美歯科セクションと同じスタイル） */
.other-menu {
    position: relative;
    padding: 80px 0;
    background: #F8F8F9;
    border: 1.5px solid #E8E8F0;
    max-width: 1200px;
    margin: 0 auto 56px;
}

.other-menu__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.other-menu__inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* 左側: テキストコンテンツ */
.other-menu__left {
    flex: 0 0 390px;
    padding-top: 20px;
}

.other-menu__title-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.other-menu__number {
    font-family: 'Pinyon Script', cursive;
    font-size: 64px;
    color: #C5CCDB;
    line-height: 0.5;
    white-space: nowrap;
    position: absolute;
    left: 200px;
    top: 0px;
    text-align: right;
    z-index: 1;
}

.other-menu__title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    font-weight: 900;
    color: #595A5D;
    letter-spacing: 1.4px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.other-menu__description {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 500;
    color: #595A5D;
    line-height: 1.6;
    letter-spacing: 0.8px;
    margin-bottom: 40px;
}

/* その他のメニューセクション内のボタン調整 */
.other-menu .services__main-button {
    margin: 0;
    background: #F8F8F9;
    box-shadow: none;
    gap: 12px;
    justify-content: flex-end;
    width: auto;
    padding: 0;
}

/* 右側: 画像グリッド */
.other-menu__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.other-menu__grid-row {
    display: flex;
    gap: 8px;
}

.other-menu__card {
    flex: 1;
    position: relative;
    width: 281px;
    height: 150px;
    background: #F8F8F9;
    overflow: hidden;
    cursor: pointer;
}

.other-menu__card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.other-menu__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-menu__card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px 24px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.other-menu__card-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 19px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.35;
    letter-spacing: 0.95px;
    margin: 0;
}

.other-menu__card-subtitle {
    font-family: 'Zen Old Mincho', serif;
    font-size: 13px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.35;
    letter-spacing: 0.65px;
    margin: 4px 0 0 0;
}

.other-menu__card-arrow {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    opacity: 1;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .other-menu__inner {
        gap: 60px;
    }
    
    .other-menu__left {
        flex: 0 0 340px;
    }
    
    .other-menu__card {
        width: 240px;
        height: 130px;
    }
    
    .other-menu__card-content {
        padding: 32px 20px;
    }
    
    .other-menu__card-title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .other-menu {
        padding: 60px 0;
    }
    
    .other-menu__container {
        padding: 0 20px;
    }
    
    .other-menu__inner {
        flex-direction: column;
        gap: 40px;
    }
    
    .other-menu__left {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .other-menu__title-wrapper {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .other-menu__number {
        margin-right: 40px;
        font-size: 50px;
    }
    
    .other-menu__title {
        font-size: 24px;
    }
    
    .other-menu__description {
        text-align: left;
        margin-bottom: 40px;
    }
    
    .other-menu__right {
        width: 100%;
    }
    
    .other-menu__grid-row {
        flex-direction: column;
    }
    
    .other-menu__card {
        width: 100%;
        height: 120px;
    }
    
    .other-menu__card-content {
        padding: 20px 16px;
    }
    
    .other-menu__card-title {
        font-size: 16px;
    }
    
    .other-menu__card-subtitle {
        font-size: 12px;
    }
}

/* ラミネートべニアセクション */
.laminate-veneer {
    position: relative;
    padding: 80px 0;
    border: 1.5px solid #3a4a5f;
    max-width: 1200px;
    margin: 0 auto 24px;
    overflow: hidden;
}

.laminate-veneer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg-menu-lv.jpg') center center / cover no-repeat;
    z-index: 0;
}

.laminate-veneer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.laminate-veneer__inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* 左側: テキストコンテンツ */
.laminate-veneer__left {
    flex: 0 0 390px;
    padding-top: 20px;
}

.laminate-veneer__title-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.laminate-veneer__number {
    position: absolute;
    right: 114px;
    top: -36px;
    font-family: 'Pinyon Script', cursive;
    font-size: 64px;
    color: #C5CCDB;
    z-index: 1;
    opacity: 0.3;
}

.laminate-veneer__title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 1.4px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: left;
}

.laminate-veneer__description {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.6;
    letter-spacing: 0.8px;
    margin: 0 0 40px 0;
}

/* 右側: 画像コンテンツ */
.laminate-veneer__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.laminate-veneer__image-top,
.laminate-veneer__image-bottom {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.laminate-veneer__image-top img,
.laminate-veneer__image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ボタンスタイリング - 背景色と影を無効化 */
.laminate-veneer .services__main-button {
    background: transparent;
    box-shadow: none;
    color: #fff;
    margin: 0;
    gap: 12px;
    justify-content: flex-end;
    width: auto;
    padding: 0;
}

.laminate-veneer .services__main-button span {
    color: #fff;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .laminate-veneer {
        padding: 40px 0;
        margin: 0 auto 16px;
    }

    .laminate-veneer__container {
        padding: 0 20px;
    }

    .laminate-veneer__inner {
        flex-direction: column;
        gap: 40px;
    }

    .laminate-veneer__left {
        flex: none;
        width: 100%;
        padding-top: 0;
    }

    .laminate-veneer__number {
        left: 40px;
        font-size: 50px;
    }

    .laminate-veneer__title {
        font-size: 24px;
    }

    .laminate-veneer__description {
        font-size: 14px;
    }

    .laminate-veneer .services__main-button {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: flex;
    }

    .laminate-veneer__image-top,
    .laminate-veneer__image-bottom {
        height: 150px;
    }
}

/* 歯の悩み・症状別セクション */
.dental-troubles {
    position: relative;
    background-image: url('../images/bg-trouble.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 600px;
}

.dental-troubles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg-trouble.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    z-index: 0;
}

.dental-troubles__hero {
    position: relative;
    z-index: 1;
    padding: 96px 0 0;
}

.dental-troubles__hero-content {
    max-width: 962px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.dental-troubles__hero-left {
    flex: 1;
    max-width: 600px;
}

.dental-troubles__hero-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2.4px;
    line-height: 1.35;
    margin: 0 0 16px 0;
    white-space: nowrap;
}

.dental-troubles__hero-text {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.8px;
    line-height: 1.35;
    margin: 0;
}

.dental-troubles__hero-right {
    flex: 0 0 auto;
}

.dental-troubles__hero-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    height: 44px;
}

.dental-troubles__hero-btn-text {
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.9px;
    line-height: 1.35;
    margin-right: 12px;
}

.dental-troubles__hero-btn-arrow {
    width: 44px;
    height: 44px;
    background-image: url('../images/arw-circle-line-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.dental-troubles__container {
    background: #fff;
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px;
    position: relative;
    z-index: 2;
    bottom: -100px;
}

.dental-troubles__special-btn {
    position: absolute;
    bottom: 120px;
    right: 90px;
    z-index: 3;
}

.dental-troubles__special-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #787B83;
    gap: 12px;
}

.dental-troubles__special-text {
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.9px;
    line-height: 1.35;
}

.dental-troubles__special-arrow {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.dental-troubles__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dental-troubles__item {
    background: #F8F8F9;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    position: relative;
    min-height: 132px;
    text-decoration: none;
    color: inherit;
}

.dental-troubles__image {
    flex: 0 0 102px;
    height: 102px;
    background: #F8F8F9;
    border-radius: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.dental-troubles__image img {
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
}

.dental-troubles__content {
    flex: 1;
    padding-right: 40px;
}

.dental-troubles__title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 20px;
    font-weight: 900;
    color: #787B83;
    letter-spacing: 1px;
    line-height: 1.35;
    margin: 0 0 8px 0;
}

.dental-troubles__text {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 500;
    color: #595A5D;
    letter-spacing: 0.8px;
    line-height: 1.35;
    margin: 0;
}

.dental-troubles__arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('../images/arw-circle-line-grid.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* デスクトップではPC版を表示、モバイル版は非表示 */
.dental-troubles__hero-title-pc {
    display: block;
}

.dental-troubles__hero-title-mobile {
    display: none;
}

/* コラムカテゴリ - PC版でセレクトボックスを非表示 */
.column__category-select-wrapper {
    display: none;
}

/* 歯の悩み・症状別セクション - レスポンシブ対応 */
@media (max-width: 767px) {
    .dental-troubles {
        min-height: auto;
    }

    .dental-troubles__hero {
        padding: 60px 0 0;
        text-align: center;
    }

    .dental-troubles__hero-content {
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .dental-troubles__hero-left {
        text-align: center;
        max-width: 100%;
    }

    .dental-troubles__hero-title {
        font-size: 20px;
        white-space: normal;
        text-align: center;
    }

    /* モバイル版はPC版を非表示、モバイル版を表示 */
    .dental-troubles__hero-title-pc {
        display: none;
    }
    
    .dental-troubles__hero-title-mobile {
        display: block;
    }
    
    .dental-troubles__hero-title-mobile .line1,
    .dental-troubles__hero-title-mobile .line2,
    .dental-troubles__hero-title-mobile .line3 {
        display: block;
        line-height: 1.35;
    }

    .dental-troubles__hero-text {
        font-size: 14px;
        text-align: center;
    }

    .dental-troubles__hero-right {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .dental-troubles__hero-btn {
        justify-content: center;
    }

    .dental-troubles__hero-btn-text {
        font-size: 16px;
    }

    .dental-troubles__container {
        padding: 40px 20px;
        bottom: -50px;
        display: flex;
        flex-direction: column;
        margin: 0 16px;
    }

    .dental-troubles__special-btn {
        position: absolute;
        bottom: -86px;
        left: 0;
        right: initial;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 0;
    }

    .dental-troubles__special-text {
        font-size: 16px;
    }

    .dental-troubles__special-link {
        justify-content: center;
        border-radius: 30px;
        background: #FAFAFB;
        box-shadow: 5px 5px 10px 0 rgba(122, 134, 158, 0.20);
        height: 60px;
        padding: 0 8px 0 24px;
        width: 100%;
    }

    .dental-troubles__special-arrow {
        position: relative;
        right: -26px;
    }

    /* グリッドは2列のまま維持 */
    .dental-troubles__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* アイテムを縦レイアウトに変更 */
    .dental-troubles__item {
        flex-direction: column;
        align-items: center;
        padding: 16px 12px;
        text-align: center;
        min-height: auto;
    }

    /* 画像を上部に配置 */
    .dental-troubles__image {
        flex: none;
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .dental-troubles__image img {
        max-width: 80px;
        max-height: 80px;
    }

    /* コンテンツエリア調整 */
    .dental-troubles__content {
        padding-right: 0;
    }

    /* タイトルのみ表示 */
    .dental-troubles__title {
        font-size: 16px;
        margin: 0 0 12px 0;
    }

    /* 本文は非表示 */
    .dental-troubles__text {
        display: none;
    }

    /* 矢印を下部に配置 */
    .dental-troubles__arrow {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    /* バナーセクション レスポンシブ対応 */
    .banner-section {
        padding: 80px 0 40px;
        margin-bottom: 80px;
    }

    .banner-section__container {
        padding: 0 24px !important;
    }

    .banner-section__grid {
        flex-direction: column;
        gap: 20px;
        max-width: none;
    }

    .banner-section__item {
        max-width: none;
        width: 100%;
    }

    .banner-section__image {
        max-height: 200px;
    }

    /* Instagram バナー レスポンシブ対応 */
    .instagram-banner {
        padding: 0 24px 80px 24px;
    }

    /* Features メインボタン レスポンシブ対応 */
    .features__main-button {
        width: 100%;
    }

    /* Features リスト レスポンシブ対応 */
    .features__list {
        gap: 4.5rem;
    }

    /* FV slideshow レスポンシブ対応 */
    .fv-slideshow {
        padding: 0;
    }

    /* FV swiper レスポンシブ対応 */
    .fv-swiper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    /* Column container レスポンシブ対応 */
    .column__container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 24px !important;
    }

    /* 全体の横スクロール防止 */
    body {
        overflow-x: hidden;
    }

    html {
        overflow-x: hidden;
    }

    /* Header container レスポンシブ対応 */
    .header__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Message section レスポンシブ対応 */
    .message {
        padding: 5rem 0 2rem;
    }

    .message__bg-text {
        top: 2%;
        left: 50%;
    }

    .message__container {
        padding: 0 24px;
    }

    .pc-br {
        display: none;
    }

    .features__title {
        margin-bottom: 40px;
    }

    .aesthetic-dentistry__right {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .aesthetic-dentistry__card-image {
        position: static;
    }

    .aesthetic-dentistry__card-image img {
        height: 106px;
    }

    .other-menu__card-image {
        position: static;
    }

    .other-menu__card-image img {
        height: 106px;
    }

    .aesthetic-dentistry {
        margin: 0 16px;
    }

    .other-menu {
        margin: 0 16px;
    }

    .services__main-button {
        width: 100%;
    }

    .menu-button-wrapper {
        padding: 0 20px;
        margin-bottom: 300px !important;
    }

    .navigation-buttons__btn {
        height: 76px !important;
        max-width: 100% !important;
        flex: auto !important;
    }

    /* ナビゲーションボタンのレスポンシブレイアウト */
    .navigation-buttons__inner {
        flex-direction: column !important;
        gap: 8px;
    }

    /* 削らないラミネートベニア - 横幅いっぱい */
    .navigation-buttons__btn:first-child {
        width: 100% !important;
    }

    /* 2行目のコンテナ */
    .navigation-buttons__row-2 {
        display: flex !important;
        gap: 8px;
        width: 100%;
    }

    /* 審美歯科とその他メニュー - 1:1で横並び */
    .navigation-buttons__row-2 .navigation-buttons__btn {
        flex: 1 !important;
        width: auto !important;
    }

    /* information セクション レスポンシブ対応 */
    .information {
        padding: 60px 0 40px;
        margin: 40px auto 0 !important;
    }

    .information__content {
        flex-direction: column;
        padding: 56px 24px !important;
        gap: 40px !important;
    }

    .information__left {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .information__clinic-info {
        margin-bottom: 32px;
    }

    .information__clinic-type {
        text-align: left;
    }

    .information__clinic-name {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .information__details {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .information__address,
    .information__transport {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
        max-width: 320px;
    }

    .information__address-text {
        white-space: normal;
    }

    .information__bg-text {
        font-size: 80px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .information__right {
        width: 100%;
        order: 2;
    }

    .information__map {
        padding: 8px;
    }

    .information__map-placeholder {
        height: 280px;
        overflow: hidden;
    }

    .information__access-link {
        text-align: center;
    }

    /* notice セクション レスポンシブ対応 */
    .notice {
        padding: 60px 0 40px;
        margin-bottom: 0 !important;
    }

    .notice__container {
        flex-direction: column;
        padding: 0 24px;
        position: relative;
        gap: 0 !important;
    }

    .notice__left {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .notice__title {
        margin-bottom: 40px;
    }

    .notice__right {
        width: 100%;
        order: 2;
        margin-bottom: 80px;
    }

    .notice__btn-sub-link {
        position: absolute !important;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        width: 100%;
        justify-content: flex-end;
        padding-right: 24px;
        right: 0 !important;
    }

    .notice__list {
        display: flex;
        flex-direction: column;
        gap: 8px !important;
        padding-right: 16px !important;
    }

    .notice__item {
        height: auto !important;
        gap: 24px !important;
        padding: 16px 24px !important;
    }

    .notice__item-category {
        height: auto !important;
    }

    .notice__item-category-text {
        white-space: nowrap !important;
    }

    .laminate-veneer {
        margin: 0 16px 16px !important;
    }

    .laminate-veneer__number {
        left: 180px !important;
        top: -28px !important;
    }

    .director-intro__content {
        width: auto !important;
    }

    .director-intro__image-wrapper {
        height: auto !important;
    }

    .director-intro__name-card {
        padding: 16px 16px 25px !important;
        bottom: -48px !important;
        left: -22px !important;
        width: 251px !important;
        height: 99px !important;
    }

    .director-intro {
        padding: 0 0 110px !important;
    }

    .director-intro__left {
        position: relative !important;
        top: -48px !important;
        max-width: 100% !important;
    }

    .director-intro__title::before {
        font-size: 80px;
    }

    .director-intro__right {
        padding: 0 !important;
        margin-top: 80px !important;
    }

    .director-intro__subtitle {
        text-align: left !important;
    }

    .director-intro__decorative-img--bottom-left {
        bottom: -74px !important;
        width: 230px !important;
        left: 170px !important;
    }

    .director-intro__decorative-images {
        display: block !important;
        position: static !important;
    }

    .director-intro__decorative-img--top-left {
        top: -110px !important;
        left: 0 !important;
        width: 130px !important;
        z-index: 3 !important;
    }

    .director-intro__decorative-img--top-right {
        top: -250px !important;
        right: 0 !important;
        width: 240px !important;
        z-index: 3 !important;
    }

    .navigation-buttons__container {
        padding: 0 24px !important;
    }

    .navigation-buttons__inner {
        gap: 8px !important;
    }

    .navigation-buttons__btn-text {
        position: relative !important;
        top: -10px !important;
    }

    .navigation-buttons__btn::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: initial !important;
        top: initial !important;
        bottom: 10% !important;
    }

    .services-menu-title .section-title-with-subtitle__subtitle {
        font-size: 80px !important;
    }

    .column__btn-sub-link {
        padding-right: 24px !important;
    }

    /* コラムカテゴリ セレクトボックス */
    .column__category-selection {
        display: none !important;
    }

    .column__category-select-wrapper {
        display: block !important;
        position: relative;
        width: 100%;
    }

    .column__category-select {
        width: 100%;
        height: 32px;
        padding: 0 40px 0 16px;
        background: white;
        border: 1.5px solid #E8E8F0;
        border-radius: 4px;
        font-family: 'Zen Old Mincho', serif;
        font-size: 13px;
        font-weight: 900;
        color: #787B83;
        letter-spacing: 0.65px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
    }

    .column__category-select-arrow {
        position: absolute !important;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 10px !important;
        height: 6px !important;
        pointer-events: none !important;
    }

    .column__btns {
        align-items: center !important;
        flex-direction: initial !important;
        margin-top: 45px !important;
        margin-bottom: 29px !important;
        gap: 12px !important;
    }

    .column__btn-arw-icon {
        width: 40px !important;
        height: 40px !important;
        gap: 0 !important;
    }

    .column__title-en {
        font-size: 80px !important;
    }

    .column__title {
        padding: 0 24px !important;
    }

    .notice__title-en {
        font-size: 80px !important;
    }

    .notice {
        margin-top: 0 !important;
    }

    .column {
        margin-bottom: 0 !important;
    }

    .column__btn-arw {
        width: 40px !important;
        height: 40px !important;
    }

    .column__arw-divider {
        display: none !important;
    }

    .column__btn-arw--prev::after {
        display: none !important;
    }

    .column__btn-arw--next::after {
        content: '' !important;
        display: block !important;
        width: 40px !important;
        height: 1px !important;
        background-color: #787B83 !important;
        position: absolute !important;
        top: 50% !important;
        left: -22% !important;
        transform: translate(-50%, -50%) rotate(90deg) !important;
        z-index: 1 !important;
    }

    .column__arws {
        gap: 18px !important;
    }

}

/* タブレット対応 */
@media (min-width: 768px) and (max-width: 1024px) {
    .dental-troubles__container {
        padding: 60px 40px;
    }

    .dental-troubles__item {
        padding: 16px;
    }

    .dental-troubles__title {
        font-size: 18px;
    }

    .dental-troubles__text {
        font-size: 14px;
    }
}

/* バナーセクション */
.banner-section {
    background: #F2F3F6;
    padding: 220px 0 80px;
    margin-bottom: 137px;
}

.banner-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.banner-section__grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 832px;
    margin: 0 auto;
}

.banner-section__item {
    flex: 1;
    display: block;
    text-decoration: none;
    max-width: 400px;
}

.banner-section__image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.section-title__en, .services__title-en, .features__title-en {
    color: #E9ECF2;
}

/* カードリンクのスタイル調整 */
.aesthetic-dentistry__card,
.other-menu__card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.aesthetic-dentistry__card:hover,
.other-menu__card:hover {
    text-decoration: none;
    color: inherit;
}

/* 診療メニューセクションタイトル */
.services-menu-title {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-menu-title__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-menu-title .section-title-with-subtitle {
    margin-bottom: 56px;
}

.services-menu-title .section-title-with-subtitle__subtitle {
    color: #E9ECF2;
    text-align: center;
    font-family: "Pinyon Script";
    font-size: 104px;
    font-style: normal;
    font-weight: 400;
    line-height: 50%;
}

/* ナビゲーションボタンセクション */
.navigation-buttons {
    padding: 0;
    margin: 0 auto 56px;
    max-width: 1200px;
}

.navigation-buttons__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.navigation-buttons__inner {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.navigation-buttons__btn {
    flex: 1;
    max-width: 370px;
    height: 60px;
    background: #F8F8F9;
    border: 1.5px solid #E8E8F0;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    transition: all 0.6s ease;
    text-decoration: none;
}

.navigation-buttons__btn::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('../images/arw-circle-line-menu.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.navigation-buttons__btn-text {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    font-size: 20px;
    color: #787B83;
    letter-spacing: 1px;
    line-height: 1.35;
    white-space: nowrap;
    transition: color 0.6s ease;
}

.navigation-buttons__btn:hover {
    background: var(--gradation, linear-gradient(250deg, #9FA3AA 0%, #72757C 100%));
    border: none;
}

.navigation-buttons__btn:hover .navigation-buttons__btn-text {
    color: #fff;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .navigation-buttons__inner {
        flex-direction: column;
        gap: 2px;
    }
    
    .navigation-buttons__btn {
        height: 50px;
        padding: 0 12px;
    }
    
    .navigation-buttons__btn-text {
        font-size: 16px;
    }
}

/* メニューボタンラッパー */
.menu-button-wrapper {
    text-align: center;
    margin-top: 0;
    margin-bottom: 120px;
}

/* ===== コラムセクション ===== */
.column {
    position: relative;
    width: 100%;
}

/* タイトル */
.column__title {
    position: relative;
    text-align: center;
    margin-bottom: 79px;
}

.column__title-en {
    font-family: "Pinyon Script", sans-serif;
    font-size: 104px;
    line-height: 0.5;
    color: #E9ECF2;
    margin: 0;
    white-space: nowrap;
}

.column__title-ja {
    font-family: "Zen Old Mincho", sans-serif;
    font-weight: bold;
    font-size: 32px;
    line-height: 1.35;
    color: #595A5D;
    margin: 17px 0 0 0;
    letter-spacing: 3.2px;
}

/* コンテナ */
.column__container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

/* ボタンエリア */
.column__btns {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 52px;
    margin-bottom: 40px;
}

.column__category {
    flex: 1;
}

.column__category-selection {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.column__topics-category {
    height: 38px;
    border: 1px solid #787B83;
    background-color: rgba(120, 123, 131, 0.15);
    cursor: pointer;
    border-radius: 15.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.column__topics-category:hover {
    background-color: rgba(120, 123, 131, 0.25);
}

.column__topics-category--active {
    background-color: #787B83;
    border-color: #787B83;
}

.column__topics-category-text {
    font-family: "Zen Old Mincho", sans-serif;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.35;
    color: #787B83;
    opacity: 0.6;
    letter-spacing: 0.65px;
    white-space: nowrap;
    margin: 0;
}

.column__topics-category--active .column__topics-category-text {
    color: #FFFFFF;
    opacity: 1;
}

.column__btn-category-others {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    height: 52px;
    padding: 0;
}

.column__btn-category-others-text {
    font-family: "Zen Old Mincho", sans-serif;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.35;
    color: #595A5D;
    letter-spacing: 0.65px;
    white-space: nowrap;
    margin: 0;
}

.column__btn-category-others-arrow {
    width: 16px;
    height: 16px;
}

/* ナビゲーション矢印 */
.column__arws {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 52px;
}

.column__btn-arw {
    width: 50px;
    height: 50px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.column__btn-arw-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #787B83;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.column__btn-arw:hover .column__btn-arw-circle {
    opacity: 1;
    transform: scale(1.1);
}

.column__btn-arw-icon {
    width: 13px;
    height: 13px;
    position: relative;
}

.column__btn-arw-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #787B83;
    border-right: 2px solid #787B83;
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
}

.column__btn-arw-icon--left::before {
    transform: translate(-50%, -50%) rotate(-135deg);
}

.column__btn-arw-icon--right::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.column__arw-divider {
    width: 40px;
    height: 1px;
    background-color: #787B83;
    opacity: 0.3;
    transform: rotate(90deg);
}

/* トピックス */
.column__topics {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0;
    overflow-x: auto;
    overflow-y: clip;
    margin-bottom: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: calc(50vw - 600px);
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.column__topics::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.column__topics-container {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 0;
    transition: transform 0.5s ease;
}

.column__topic {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 334px;
    flex-shrink: 0;
    background-color: transparent;
}

.column__topic-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.column__topic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.column__topic-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(120, 123, 131, 0.6);
    border: 1px solid #787B83;
    border-radius: 15.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    height: auto;
    min-height: 28px;
}

.column__topic-category-text {
    font-family: "Zen Old Mincho", sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.35;
    color: #787B83;
    opacity: 0.6;
    letter-spacing: 0.7px;
    white-space: nowrap;
    margin: 0;
}

.column__topic-txts {
    padding: 16px 0 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.column__topic-date {
    font-family: "Zen Old Mincho", sans-serif;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.35;
    color: #787B83;
    letter-spacing: 0.65px;
    margin: 0;
}

.column__topic-title {
    font-family: "Zen Old Mincho", sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.35;
    color: #787B83;
    letter-spacing: 0.8px;
    margin: 0;
    flex: 1;
}

/* コラム一覧ボタン */
.column__btn-sub {
    position: relative;
    height: 44px;
    width: 356px;
    margin: 0 auto;
}

.column__btn-sub-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.column__btn-sub-text {
    font-family: "Zen Old Mincho", sans-serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.35;
    color: #787B83;
    letter-spacing: 0.9px;
    margin: 0;
}

.column__btn-sub-arrow {
    width: 44px;
    height: 44px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1200px) {
    .column__container {
        width: 100%;
        padding: 0 20px;
    }
    
    .column__topics {
        overflow-x: scroll;
        padding-right: 20px;
        padding-left: 20px;
        margin-left: -20px;
        width: calc(100vw);
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .column__topics::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
}

@media screen and (max-width: 768px) {
    .column__title-en {
        font-size: 60px;
    }
    
    .column__title-ja {
        font-size: 24px;
        letter-spacing: 2.4px;
    }
    
    .column__btns {
        flex-direction: column;
        height: auto;
        gap: 20px;
        align-items: flex-start;
    }
    
    .column__category-selection {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .column__topics-category {
        height: 32px;
        padding: 0 12px;
    }
    
    .column__topics-category-text {
        font-size: 12px;
    }
}
