.main-visual {
    position: relative;
    width: 100%;
    height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mv-inner {
    width: 100%;
    /* ヘッダーのロゴ位置と合わせる */
    margin: 0 auto;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 130px;
    background-image: url(https://www.omik.co.jp/wp/wp-content/themes/solaris_tcd088-child/img/renewal/top/image_main_1310x690_pc.png);
    background-size: cover;
    background-position: center right;
    background-color: #f0f2f5;
}

@media (max-width: 1440px) {
    .mv-inner {
        margin-left: max(80px, calc(50% - 650px));
    }
}

/* キャッチコピーの設定 */
.mv-copy {
    font-family: "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
    /* 明朝体を指定 */
    font-size: 64px;
    line-height: 1.8;
    /*letter-spacing: 0.15em;*/
    color: #fff;
    /* ロゴの紺色に合わせた色味 */
    font-weight: 500;
    background: linear-gradient(to right, #022E6B, #1A88D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mv-copy-wrapper {
    margin-left: -50px;
}

/* スクロールダウン（左下・縦書き） */
.scroll-down {
    position: absolute;
    left: 0;
    bottom: 0px;
    margin-left: -50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: 0.6s;
}

.scroll-down:hover {
    opacity: 0.6;
}

.scroll-text {
    writing-mode: vertical-rl;
    /* 縦書きに設定 */
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #344052;
    margin-bottom: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
}

.scroll-arrow {
    writing-mode: vertical-rl;
    font-size: 16px;
    color: #344052;
    letter-spacing: 2px;
    /* 矢印を詰める */
    font-weight: bold;
    font-family: monospace;
    padding-right: 4px;
}

/* アバウト */
.about-section {
    width: 100%;
    padding: 160px 0 80px;
    /* 上下の十分な余白 */
    background-color: #fff;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-items: stretch;
}

/* 左側エリア */
.about-left {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: space-between;
}

.about-title {
    font-family: "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
    font-size: 32px;
    line-height: 1.6;
    color: #344052;
    /* 濃い紺色 */
    font-weight: 500;
    margin-bottom: 60px;
}

/* 会社案内ボタン（ヘッダーの採用情報と統一感を持たせる） */
.btn-company {
    display: flex;
    align-items: center;
    justify-content: center;
    /* テキストを中央へ */
    width: 220px;
    height: 54px;
    position: relative;
    /* 矢印の基準点 */
    background: linear-gradient(to right, #022E6B, #1A88D6);
    /* 画像に合わせた深い紺から青へのグラデ */
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn-company .btn-text {
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: 500;
    /* 矢印の幅を考慮して、わずかに左にずらすとより視覚的な中央に見えます */
    padding-right: 0;
}

.btn-company .arrow {
    position: absolute;
    right: 20px;
    /* 右端から20pxの位置に固定 */
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

.btn-company:hover {
    color: #fff;
    opacity: 0.8;
}

/* 右側エリア */
.about-right {
    width: 50%;
    /* 見出しとの高さ微調整 */
}

.about-right p {
    font-size: 16px;
    line-height: 2.0;
    /* 行間を広く取って読みやすく */
    color: #344052;
    margin-bottom: 2em;
    /* 段落間の余白 */
    text-align: justify;
}

.about-right p:last-child {
    margin-bottom: 0;
}

/* サービス */
.services-section {
    width: 100%;
    /* 上側350pxを白、下側を紺色の背景画像風に設定 */
    background: linear-gradient(to bottom, #fff 350px, #1a3673 350px);
    padding: 80px 0 100px;
    background-image:
        url('https://www.omik.co.jp/wp/wp-content/themes/solaris_tcd088-child/img/renewal/top/image_ businessBg_1440x485_pc.png'),
        /* 1層目：画像 */
        linear-gradient(to bottom, #fff 350px, #1a3673 350px);
    /* 2層目：背景色 */
    /* 画像の表示位置を調整（上から350pxの位置に配置） */
    background-position: center top 350px, center top;

    /* 画像が繰り返されないように設定 */
    background-repeat: no-repeat;

    /* 画像のサイズ調整（青い部分の高さに合わせるなど） */
    background-size: cover, cover;
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    text-align: center;
    font-family: "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
    font-size: 48px;
    color: #344052;
    margin-bottom: 60px;
    /*letter-spacing: 0.1em;*/
    font-weight: 500;
}

/* カードレイアウト */
.services-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.service-card {
    flex: 1;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all .3s ease-in-out;
}

a:hover .card-image img {
    border-radius: 20px;
}

.card-content {
    padding: 0 25px 20px;
}

.card-content h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #344052;
}

/* テキストをグラデーションにする共通クラス */
.grad-text {
    background: linear-gradient(to right, #022E6B, #1A88D6);
    /* 紺から明るい青へ */
    -webkit-background-clip: text;
    /* テキストの形に背景を切り抜く */
    -webkit-text-fill-color: transparent;
    /* テキスト自体を透明にする */
    display: inline-block;
    font-weight: bold;
}

/* 特定のテキスト（青色部分） */
.card-content h3 span {
    color: #1e88e5;
    /* 明るい青 */
}

.card-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

/* 下部ボタン（枠線タイプ） */
.services-footer {
    display: flex;
    justify-content: center;
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
}

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

.btn-outline .arrow {
    position: absolute;
    right: 15px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* 採用情報 */
.recruit-section {
    width: 100%;
    padding: 160px 0 40px;
    background-color: #fff;
    overflow: hidden;
}

.recruit-container {
    /* 画像を右端まで寄せるため少し広めに設定 */
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    width: auto;
    margin-left: max(0px, calc(50% - 550px));
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 40px;
}

/* テキストエリア */
.recruit-content {
    width: 432px;
    z-index: 2;
    margin-right: 44px;
}

.recruit-title {
    font-family: "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
    font-size: 48px;
    color: #344052;
    margin-bottom: 40px;
    /*letter-spacing: 0.1em;*/
    font-weight: 500;
}

.recruit-text {
    margin-bottom: 50px;
}

.recruit-text p {
    font-size: 16px;
    line-height: 2.2;
    color: #344052;
    margin-bottom: 1.5em;
}

.recruit-text .lead {
    font-weight: bold;
    font-size: 16px;
}

/* ボタン（中央配置＋右矢印） */
.btn-recruit-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 54px;
    position: relative;
    background: linear-gradient(to right, #022E6B, #1A88D6);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.btn-recruit-bottom:hover {
    opacity: 0.8;
    color: #fff;
}

.btn-recruit-bottom .btn-text {
    letter-spacing: 0.1em;
}

.btn-recruit-bottom .arrow {
    position: absolute;
    right: 20px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* 画像エリア */
.recruit-image {
    width: calc(100% - 476px);
}

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

/* セクション全体 */
.data-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
}

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

/* カード基本スタイル */
.data-card {
    border: 1px solid #eee;
    padding: 25px;
    background: #fff;
    margin-bottom: 20px;
}

.card-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: bold;
}

/* セクション共通 */
.data-stats-section {
    padding: 0px 0 80px;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.stats-img-box-h {
    font-size: 20px;
    margin: 25px;
    position: absolute;
}

.stats-img-box-cover {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stats-img-box img {
    width: 100%;
}

.stats-img-box01 {
    width: 100%;
}

.stats-img-box02 {
    width: 50%;
    width: calc(50% - (20px * 0.5));
}

.stats-img-box03 {
    width: 50%;
    width: calc(50% - (20px * 0.5));
}

.stats-img-box04 {
    width: calc(70% - (20px * 0.3));
    box-sizing: border-box;
}

.stats-img-box05 {
    width: 30%;
    box-sizing: border-box;
    width: calc(30% - (20px * 0.7));
}


.stats-img-box {
    border: 1px solid #d7d9dc;
}

/* 巨大数値グラデーション設定 */
.grad-num {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    line-height: 1.1;
    display: inline-block;
    background: linear-gradient(to right, #0a265c 0%, #3182ce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.xxl {
    font-size: 88px;
}

.xl {
    font-size: 72px;
}

.lg {
    font-size: 54px;
}

.unit {
    font-size: 18px;
    color: #999;
    font-weight: bold;
    margin-left: 4px;
}

/* カードレイアウト */
.stats-card {
    border: 1px solid #eeeeee;
    padding: 30px;
    background: #fff;
    margin-bottom: 20px;
}

.stats-card__title {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    font-weight: bold;
}

/* グリッドシステム（PC） */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.occupation-card {
    grid-column: 3;
    grid-row: 1 / 3;
}

.generation-card {
    grid-column: 1 / 3;
}

/* 内部の配置調整 */
.main-stats-values {
    display: flex;
    gap: 60px;
    margin-bottom: 30px;
}

.flex-values {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.label {
    display: block;
    font-size: 12px;
    color: #344052;
    margin-bottom: 8px;
    font-weight: bold;
}

.list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f7f7f7;
    padding: 12px 0;
}

.chart-img {
    width: 100%;
    height: auto;
}

/* 下部リンク（画像 のデザイン再現） */
.stats-link-nav {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 60px;
    padding-top: 40px;
}

.stats-link-nav a.link-item {
    transition: 0.6s;
}

.stats-link-nav a.link-item:hover {
    opacity: 0.6;
    color: #344052;
}

.link-item {
    text-decoration: none;
    color: #344052;
    font-weight: bold;
    transition: opacity 0.3s;
    border-bottom: 2px solid #d7d9dc;
    width: 250px;
    text-align: center;
    padding-bottom: 15px;
    position: relative;
}

.link-text {
    font-size: 16px;
    margin-right: 12px;
}

.chevron {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #344052;
    border-right: 1px solid #344052;
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
    top: 8px;
}



/* セクション全体 */
.news-section {
    padding: 160px 0 100px;
    background-color: #fff;
}

.news-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    /* タイトルとリストの間隔 */
}

/* 左側：グラデーションタイトルとボタン */
.news-title-area {
    flex: 0 0 250px;
}

.news-grad-title {
    font-family: "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
    /* 明朝体 */
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1;
    /* 数値と同様のグラデーション */
    color: #344052;
}

/* ニュース一覧ボタン（メインビジュアル等と統一） */
.news-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 54px;
    position: relative;
    background: linear-gradient(to right, #022E6B, #1A88D6);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.news-btn:hover {
    opacity: 0.8;
    color: #fff;
}

.news-btn .arrow {
    position: absolute;
    right: 20px;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* 右側：ニュースリスト */
.news-list {
    flex: 1;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #344052;
    gap: 30px;
}

.news-item:first-child {
    border-top: 1px solid #344052;
}

/* タグのスタイル */
.news-tag {
    font-size: 12px;
    font-weight: bold;
    width: 80px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background-color: #E3ECFA;
    color: #022E6B;
}

.tag-recruit {
    background-color: #e8f0fb;
    color: #3182ce;
}

/* 採用は薄い青 */
.tag-info {
    background-color: #f5f5f5;
    color: #666;
}

/* お知らせはグレー */

.news-date {
    font-size: 16px;
    color: #344052;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.news-text {
    font-size: 16px;
    color: #344052;
    text-decoration: none;
    transition: color 0.3s;
    flex: 1;
    transition: 0.3s;
}

.news-text:hover {
    color: #1A88D6;
}


/* セクション全体 */
.contact-section {
    padding: 60px 0 0;
    background-color: #fff;
}

.contact-inner {
    width: 1100px;
    margin: 0 auto;
    height: 383px;
    padding: 0 40px;
    max-width: 100%;
}

.contact-content {
    display: flex;
    align-items: center;
    height: 383px;
    justify-content: space-between;
}

/* バナー本体（背景画像） */
.contact-banner {
    display: block;
    /* max-width: 1100px; */
    margin: 0 auto;
    height: 383px;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    background: url('https://www.omik.co.jp/wp/wp-content/themes/solaris_tcd088-child/img/renewal/top/image_inquiry_1440x363.png') no-repeat center center;
    background-size: cover, cover;
    transition: transform 0.4s ease;
}


/* コンテンツ配置 */
.contact-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

/* グラデーションタイトル */
.contact-grad-title {
    font-family: "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
    /* 明朝体 */
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.2;
    /* 他のセクションと共通のグラデーション */
    color: #fff;
}

.contact-desc {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

/* 円形の矢印ボタン */
.contact-arrow-circle {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.contact-banner:hover .contact-arrow-circle {
    background-color: #fff;
}

.arrow-right {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: -5px;
    transition: border-color 0.3s;
}

.contact-banner:hover .arrow-right {
    border-color: #0a265c;
}

/* 会社情報 */
.company-info h2.section-title {
    text-align: left;
    font-size: 48px;
}

a.info-card {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    width: calc((100% - 48px) / 3);
}

a.info-card:hover {
    color: #fff;
}

a.info-card:hover .arrow-right {
    border-color: #0a265c;
}

a.info-card:hover .card-content-arrow-circle {
    background-color: #fff;
}

section.company-info {
    width: 100%;
    padding: 80px 0 100px;
    background-position: center top 350px, center top;
    background-repeat: no-repeat;
    background-size: cover, cover;
    background-image: linear-gradient(to bottom, #fff 350px, #1a3673 350px);
    background: linear-gradient(to bottom, #fff 350px, #E3ECFA 350px);
    position: relative;
}

section.company-info:after {
    position: absolute;
    content: "";
    background: #fff;
    height: calc(100% - 349px);
    top: 349px;
    right: 0;
    width: calc((100% - 1260px) / 2);
}

.company-info__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.card-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.company-info .card-content {
    padding: 30px 25px;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-content-arrow-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

@media (max-width: 960px) {
    .recruit-section {
        padding: 80px 0 0;
    }

    .recruit-container {
        flex-direction: column;
        padding: 0;
    }

    .recruit-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .recruit-content,
    .recruit-image {
        width: 100%;
        margin-left: 0;
    }

    .recruit-content {
        order: 2;
        margin: 30px 20px 0;
        padding: 0 40px;
    }

    .recruit-content p br {
        display: none;
    }

    .btn-recruit-bottom {
        margin: 0 auto;
    }

    .recruit-text {
        margin-bottom: 20px;
    }
}

/* スマホ対応の調整 */
@media (max-width: 768px) {
    .main-visual {
        background-position: 40px 0;
        background-repeat: no-repeat;
        background-color: #fff;
        background-size: 100% auto;
        height: calc(100vh - 80px);
        height: 560px;
    }

    .mv-inner {
        margin-left: 55px;
        padding: 0;
        background-image: url(https://www.omik.co.jp/wp/wp-content/themes/solaris_tcd088-child/img/renewal/top/image_main_320x560_sp.png);
    }

    .mv-copy-wrapper {
        position: absolute;
        left: -40px;
        margin-left: 0;
        top: 128px;
    }

    .scroll-down {
        left: -40px;
        margin-left: 0;
    }

    .mv-copy {
        font-size: 32px;
    }



    .sp-only {
        display: block;
    }

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





    .data-footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-bottom: 40px;
    }

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

    .occupation-card,
    .generation-card {
        grid-column: auto;
        grid-row: auto;
    }

    .main-stats-values {
        flex-direction: column;
        gap: 20px;
    }

    .xxl {
        font-size: 60px;
    }

    .xl {
        font-size: 50px;
    }



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

    .occupation-card,
    .generation-card {
        grid-column: auto;
        grid-row: auto;
    }

    .main-stats {
        flex-direction: column;
        gap: 15px;
    }

    .size-xxl {
        font-size: 60px;
    }

    .size-xl {
        font-size: 50px;
    }





    .recruit-sub-nav {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }


    .services-inner {
        padding: 0 20px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .service-card {
        width: 100%;
    }

    .services-section {
        background: #1a3673;
        /* モバイルでは境界線を消して紺背景に統一すると綺麗です */
        padding: 0 0 40px;
        background-image:
            url('https://www.omik.co.jp/wp/wp-content/themes/solaris_tcd088-child/img/renewal/top/image_ businessBg_375x1464_sp.png'),
            /* 1層目：画像 */
            linear-gradient(to bottom, #fff 150px, #1a3673 150px);
        /* 2層目：背景色 */
        /* 画像の表示位置を調整（上から350pxの位置に配置） */
        background-position: center top 150px, center top;

        /* 画像が繰り返されないように設定 */
        background-repeat: no-repeat;

        /* 画像のサイズ調整（青い部分の高さに合わせるなど） */
        background-size: cover, cover;

    }

    .section-title {
        text-align: left;
        font-size: 32px;
        margin-bottom: 30px;
    }


    /* アバウト */
    .about-section {
        padding: 80px 0;
    }

    .about-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .about-left,
    .about-right {
        width: 100%;
        padding-top: 0;
    }

    .about-left {
        display: contents;
    }

    .btn-company {
        order: 3;
        margin-top: 30px;
    }

    .about-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    /* グラフ */
    .data-stats-section {
        padding: 40px 0 0;
    }

    .stats-img-box-h {
        margin: 30px;
    }

    .stats-img-box {
        width: 100%;
    }

    .container {
        padding: 0 20px;
    }

    .stats-link-nav {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 0;
    }

    /* 会社情報 */
    .company-info__inner {
        padding: 0 20px;
    }

    .company-info h2.section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .card-container {
        gap: 20px;
    }

    a.info-card {
        width: 100%;
    }

    /* ニュース */
    .news-container {
        flex-direction: column;
        gap: 0;
    }

    .news-title-area {
        display: contents;
        width: 100%;
    }

    .news-item {
        flex-wrap: wrap;
        gap: 15px;
    }

    .news-date {
        font-size: 14px;
        width: 100%;
    }

    .news-text {
        width: 100%;
        flex: none;
    }

    .news-section {
        padding: 80px 0 20px;
    }

    .news-grad-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .news-btn {
        order: 3;
        margin: 30px auto 0;
    }

    /* お問い合わせ */
    .contact-section {
        padding: 60px 0 0;
    }

    .contact-inner {
        height: 250px;
        padding: 0 20px;
    }

    .contact-banner {
        height: 250px;
        margin: 0;
        background: url('https://www.omik.co.jp/wp/wp-content/themes/solaris_tcd088-child/img/renewal/top/banner_inqury_375x320_sp.png') no-repeat center center;
        background-size: 100%, cover;
        background-position: bottom;
    }

    .contact-content {
        flex-direction: column;
        text-align: left;
        gap: 40px;
        height: 250px;
        padding: 35px 0;
        display: block;
    }

    .contact-grad-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-arrow-circle {
        width: 40px;
        height: 40px;
        position: absolute;
        bottom: 40px;
        right: 20px;
    }
}