
/* リセットと基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    padding-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav > ul > li {
    position: relative;
}

.nav a {
    text-decoration: none;
    color: #444444;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav a:hover {
    color: #005081;
}

/* ドロップダウンメニュー */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    display: block;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 2px 20px;
    color: #444444;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    transition: all 0.3s;
    white-space: nowrap;
    width: 100%;
}

.dropdown-menu a:hover {
    color: #005081;
}

/* ヘッダー電話番号 */
.header-phone {
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header.scrolled .header-phone {
    opacity: 1;
    visibility: visible;
}

.header-phone span {
    color: #444444;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-phone svg {
    flex-shrink: 0;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #444444;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* メインビジュアル */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 200px;
    width: calc(100% - 200px);
    height: 100%;
}

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

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    background-color: rgba(255, 255, 255, 0.85);
    color: #444444;
    padding: 45px 50px;
    width: 50vw;
}

.hero-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #005081;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.8;
    color: #444444;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 15px 40px;
    border: 2px solid #005081;
    border-radius: 50px;
    color: #005081;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-contact:hover {
    background-color: #005081;
    color: #ffffff;
}

.arrow {
    font-size: 18px;
}

/* コンテンツセクション1 */
.content-section {
    padding: 80px 0 40px 0;
    background-color: #ffffff;
}

.content-wrapper {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.content-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 50px;
}

.content-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #444444;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 450px;
    padding: 0 0 0 20px;
}

.content-text p:first-of-type {
    font-size: 20px;
}

.content-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 1;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* コンテンツセクション2 - 特徴セクション */
.features-section {
    padding: 40px 0 80px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    background-image: url('logo-small.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 150px;
    padding: 80px 0;
    overflow: visible;
}

.section-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #005081;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.section-description {
    text-align: left;
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.flow-link a {
    color: #005081;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.flow-link a:hover {
    opacity: 0.7;
}

.link-icon {
    font-size: 12px;
    border: 1px solid #005081;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-box {
    background-color: #F7F5F6;
    padding: 30px 25px;
    border-radius: 8px;
}

.feature-content {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #005081;
    margin-bottom: 15px;
    line-height: 1.6;
}

.feature-text p {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.feature-text p:last-child {
    margin-bottom: 0;
}

/* コンテンツセクション4 */
.content-section-4 {
    padding: 80px 0;
    background-color: #F7F5F6;
}

.section-header-4 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header-4::before {
    content: 'OUR STRENGTHS';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: 700;
    color: #d2e2ed;
    letter-spacing: 8px;
    white-space: nowrap;
    z-index: 0;
}

.section-header-4 h2 {
    font-size: 28px;
    font-weight: 700;
    color: #005081;
    position: relative;
    z-index: 1;
}

.strengths-list {
    max-width: 1200px;
    margin: 0 auto;
}

.strength-item {
    margin-bottom: 80px;
    position: relative;
}

.strength-item:last-child {
    margin-bottom: 0;
}

.strength-content-left,
.strength-content-right {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.strength-content-left {
    padding-left: 0;
}

.strength-content-right {
    padding-right: 0;
}

.strength-text {
    flex: 1;
}

.strength-item:nth-child(1) .strength-content-left .strength-text,
.strength-item:nth-child(3) .strength-content-left .strength-text {
    margin-left: auto;
    padding-left: 100px;
}

.strength-text-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
}

.strength-number {
    font-size: 60px;
    font-weight: 700;
    color: #005081;
    line-height: 1;
}

.strength-slash {
    font-size: 40px;
    color: #005081;
    font-weight: 300;
    line-height: 1;
}

.strength-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #005081;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.strength-text p {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 450px;
}

.strength-text p:last-child {
    margin-bottom: 0;
}

.strength-image {
    flex: 0 0 400px;
    position: relative;
}

.strength-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: #005081;
    z-index: -1;
}

.strength-item:nth-child(1) .strength-image::before {
    top: -40px;
    right: -40px;
}

.strength-item:nth-child(2) .strength-image::before {
    bottom: -40px;
    left: -40px;
}

.strength-item:nth-child(3) .strength-image::before {
    bottom: -40px;
    right: -40px;
}

.strength-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* コンテンツセクション3 */
.content-section-3 {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.services-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url('services-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.service-box {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #005081;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.service-box p {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-box p:last-child {
    margin-bottom: 0;
}

/* お問い合わせセクション */
.contact-section {
    position: relative;
    height: 400px;
    background-image: url('contact-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-content {
    text-align: center;
    color: #ffffff;
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-icon img {
    width: 70px;
    height: 70px;
}

.contact-content h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 50px;
    color: #ffffff;
}

.btn-contact-large {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 12px 70px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-contact-large:hover {
    background-color: #ffffff;
    color: #005081;
}

.btn-contact-large .arrow {
    font-size: 20px;
}

/* コンテンツセクション5 - 料金表 */
.content-section-5 {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header-5 {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-5 h2 {
    font-size: 48px;
    font-weight: 700;
    color: #005081;
    letter-spacing: 6px;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 18px;
    color: #444444;
    font-weight: 400;
}

.price-list {
    max-width: 900px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.price-name {
    padding: 25px 40px;
    font-size: 18px;
    color: #444444;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.price-value {
    padding: 25px 40px;
    font-size: 20px;
    color: #444444;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.price-name:nth-of-type(1),
.price-name:nth-of-type(5),
.price-name:nth-of-type(9),
.price-name:nth-of-type(13) {
    background-color: #F7F5F6;
}

.price-value:nth-of-type(2),
.price-value:nth-of-type(6),
.price-value:nth-of-type(10),
.price-value:nth-of-type(14) {
    background-color: #F7F5F6;
}

.price-name:nth-of-type(3),
.price-name:nth-of-type(7),
.price-name:nth-of-type(11),
.price-name:nth-of-type(15) {
    background-color: #F3F8FC;
}

.price-value:nth-of-type(4),
.price-value:nth-of-type(8),
.price-value:nth-of-type(12),
.price-value:nth-of-type(16) {
    background-color: #F3F8FC;
}

.price-link {
    text-align: center;
    margin-top: 40px;
}

.price-link a {
    color: #005081;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.price-link a:hover {
    opacity: 0.7;
}

.price-link .link-icon {
    font-size: 12px;
    border: 1px solid #005081;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* コンテンツセクション6 - 期間の目安 */
.content-section-6 {
    padding: 80px 0;
    background-color: #F3F8FC;
}

.timeline-flow {
    max-width: 850px;
    margin: 60px auto 50px;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:last-child .timeline-arrow {
    display: none;
}

.timeline-box {
    border: 3px solid #005081;
    border-radius: 10px;
    padding: 30px 40px 30px 150px;
    background-color: #ffffff;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.timeline-number {
    font-size: 50px;
    font-weight: 700;
    color: #005081;
    line-height: 1;
}

.timeline-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #444444;
    margin: 0;
    line-height: 1.2;
}

.timeline-period {
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    background-color: #F7F5F6;
    padding: 8px 20px;
    border-radius: 5px;
}

.timeline-box p {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin: 0;
}

.timeline-arrow {
    text-align: center;
    font-size: 30px;
    color: #005081;
    margin: 15px 0;
}

.timeline-link {
    text-align: center;
    margin-top: 40px;
}

.timeline-link a {
    color: #005081;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.timeline-link a:hover {
    opacity: 0.7;
}

.timeline-link .link-icon {
    font-size: 12px;
    border: 1px solid #005081;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* コンテンツセクション7 - FAQ */
.content-section-7 {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    background-color: #F7F5F6;
    border-radius: 10px;
    padding: 40px 50px;
}

.faq-item {
    padding: 35px 0;
    border-bottom: 1px solid #005081;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #005081;
    margin-bottom: 20px;
    line-height: 1.6;
}

.faq-answer p {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-link {
    margin-top: 15px;
}

.faq-link a {
    color: #005081;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.faq-link a:hover {
    opacity: 0.7;
}

.faq-link .link-icon {
    font-size: 12px;
    border: 1px solid #005081;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* フッター */
.footer {
    background-color: #005081;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 80, 129, 0.98);
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        z-index: 100;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 25px;
        justify-content: flex-start;
    }

    .nav a {
        color: #ffffff;
        font-size: 18px;
        display: block;
        padding: 10px 15px;
    }

    /* スマホ表示時のドロップダウンメニュー */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        box-shadow: none;
        padding: 10px 0 0 20px;
        min-width: auto;
    }

    .dropdown-menu a {
        color: #ffffff;
        font-size: 16px;
        padding: 8px 0;
    }

    .dropdown-menu a:hover {
        background-color: transparent;
        color: #e0e0e0;
        padding-left: 0;
    }

    /* スマホ表示時の電話番号 */
    .header-phone {
        display: none !important;
    }

    .hero {
        height: auto;
    }

    .hero-text {
        width: 100%;
        padding: 40px 30px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .content-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .content-text {
        max-width: 100%;
        padding: 30px;
        margin-bottom: 30px;
    }

    .content-text h2 {
        font-size: 20px;
    }

    .content-image {
        position: relative;
        width: 100%;
        transform: none;
        top: auto;
    }

    .section-header {
        background-size: auto 100px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 25px 20px;
    }

    .feature-text h3 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 14px;
    }

    .contact-section {
        height: 300px;
    }

    .contact-content h2 {
        font-size: 36px;
        letter-spacing: 6px;
        margin-bottom: 30px;
    }

    .contact-icon img {
        width: 50px;
        height: 50px;
    }

    .btn-contact-large {
        font-size: 16px;
        padding: 15px 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .service-box {
        padding: 30px 25px;
        height: auto;
    }

    .service-box h3 {
        font-size: 18px;
    }

    .section-header-4::before {
        font-size: 30px;
        letter-spacing: 4px;
    }

    .section-header-4 h2 {
        font-size: 22px;
    }

    .strength-item {
        margin-bottom: 60px;
    }

    .strength-number {
        font-size: 50px;
    }

    .strength-content-left,
    .strength-content-right {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
        gap: 30px;
    }

    .strength-item.reverse .strength-content-right {
        flex-direction: column-reverse;
    }

    .strength-item:nth-child(1) .strength-content-left .strength-text,
    .strength-item:nth-child(3) .strength-content-left .strength-text {
        margin-left: 0;
        padding-left: 0;
    }

    .strength-item:nth-child(1) .strength-image {
        margin-top: 30px;
    }

    .strength-text h3 {
        font-size: 20px;
    }

    .strength-text p {
        font-size: 15px;
    }

    .strength-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .section-header-5 h2 {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .price-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .price-name {
        font-size: 16px;
        padding: 20px 25px;
    }

    .price-value {
        font-size: 18px;
        padding: 20px 25px;
    }

    .timeline-box {
        padding: 25px 30px;
    }

    .timeline-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .timeline-number {
        font-size: 40px;
    }

    .timeline-box h3 {
        font-size: 18px;
    }

    .timeline-period {
        font-size: 14px;
        margin-left: 0;
        width: 100%;
    }

    .timeline-box p {
        font-size: 15px;
    }

    .faq-list {
        padding: 30px 25px;
    }

    .faq-item {
        padding: 30px 0;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-link a {
        font-size: 14px;
    }

    /* カスタムフッター（レスポンシブ） */
    footer.footer-custom .footer-nav {
        flex-direction: column !important;
        gap: 12px !important;
    }

    footer.footer-custom .footer-nav .divider {
        display: none !important;
    }

    footer.footer-custom .footer-nav a {
        font-size: 13px !important;
    }

    footer.footer-custom .footer-copyright p {
        font-size: 12px !important;
    }
}

/* カスタムフッター */
footer.footer-custom {
    background-color: #00537B !important;
    color: #ffffff !important;
    padding: 30px 0 20px !important;
    width: 100% !important;
}

footer.footer-custom .footer-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    padding: 0 20px !important;
    margin-bottom: 20px !important;
}

footer.footer-custom .footer-nav a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: opacity 0.3s ease !important;
}

footer.footer-custom .footer-nav a:hover {
    opacity: 0.7 !important;
    color: #ffffff !important;
}

footer.footer-custom .footer-nav .divider {
    color: #ffffff !important;
    font-size: 14px !important;
}

footer.footer-custom .footer-copyright {
    text-align: center !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

footer.footer-custom .footer-copyright p {
    font-size: 13px !important;
    color: #ffffff !important;
}

/* スマホ追従ボタン */
.mobile-fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mobile-fixed-buttons {
        display: flex;
    }
}

.mobile-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    transition: opacity 0.3s;
    gap: 4px;
}

.mobile-btn:active {
    opacity: 0.7;
}

.mobile-btn-phone {
    background-color: #2E8B57;
}

.mobile-btn-contact {
    background-color: #005081;
}
