@charset "UTF-8";

/*-----------------------------------------------------------

    このファイルにはTOPページ専用のスタイルのみを記述します。

------------------------------------------------------------*/
/*--------------- 
全体設定 
------------------*/

/* 表示領域制御 */
.home #content {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: none;
    background-color: #fff;
}

.home #main_content {
    margin: 0;
    width: 100%;
    max-width: none;
}

/*------------------ 
セクションタイトル 
------------------*/

/* 金グラデーション（英語） */
.section__en-head {
    font-family: "Cormorant Garamond";
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #D6C19A 0%, #8D6628 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* Safari対策 */
}

/* 日本語見出し */
.section__head {
    font-family: "Zen Old Mincho";
    font-weight: 700;
    font-size: 36px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    padding-bottom: 36px;
    position: relative;
    width: max-content;
}

/* 見出し下線 */
.section__head::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #DDD5C8;
}

/* 中央寄せレイアウト */
.section__title--center {
    margin-bottom: 60px;
}

.section__title--center .section__en-head {
    text-align: center;
    display: block;
    margin-bottom: 0;
}

.section__title--center .section__head {
    font-size: 32px;
    text-align: center;
    color: #14213D;
    margin: 0 auto;
    padding-bottom: 20px;
}

.section__title--center .section__head::before {
    left: 50%;
    translate: -50%;
}

@media(max-width:959px) {
    .section__en-head {
        font-size: clamp(20px, 9.98px + 3.13vw, 40px);
    }

    .section__head {
        font-size: clamp(24px, 17.99px + 1.88vw, 36px);
        padding-bottom: 28px;
    }

    .section__title--center .section__head {
        font-size: clamp(24px, 17.99px + 1.88vw, 32px);
    }
}

/*------------------ 
リンクボタン 
------------------*/
.link-btn {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.03em;
    color: #14213D;
    border-bottom: 1px solid #14213D;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.3s;
}

.link-btn:hover {
    opacity: 0.7;
}

/* 矢印アニメーション */
.link-btn__arrow {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.link-btn__arrow svg {
    display: block;
}

.link-btn:hover .link-btn__arrow svg {
    animation: arrowAnime 0.4s;
}

@keyframes arrowAnime {
    0% {
        translate: 0 0;
    }

    50% {
        translate: 100% 0;
    }

    50.1% {
        translate: -100% 0;
    }

    100% {
        translate: 0 0;
    }
}

.page-link-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(180deg, #D6C19A 0%, #8D6628 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

/* SVGのサイズぴったりのラッパーにoverflow: hiddenを当てる */
.page-link-icon__inner {
    width: 11px;
    height: 8px;
    overflow: hidden;
    display: flex;
}

.page-link-icon__inner svg {
    display: block;
    flex-shrink: 0;
}

.service__link:hover .page-link-icon__inner svg,
.focus__link:hover .page-link-icon__inner svg,
.lawyer__link:hover .page-link-icon__inner svg,
.page-link__card:hover .page-link-icon__inner svg {
    animation: arrowAnime 0.4s;
}

.service__link,
.focus__link,
.page-link__card {
    transition: opacity 0.3s;
}

.service__link:hover,
.focus__link:hover,
.page-link__card:hover {
    opacity: 0.7;
}

/*--------------- 
MV 
-----------------*/
.mv {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100svh;
}

.mv__wrapper {
    height: 100%;
}

.mv__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv__content {
    position: absolute;
    top: 50%;
    left: 5%;
    padding-right: 20px;
}

.mv__head {
    font-family: "Zen Old Mincho";
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin-bottom: 28px;
    text-shadow: 0px 0px 50px #0B132080;
}

.mv__sub-head {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    text-shadow: 0px 0px 50px #0B132080;
}

@media (min-width:1800px) {
    .mv__content {
        left: 10%;
    }
}

@media (max-width:650px) {
    .mv__content {
        translate: 0 -50%;
    }

    .mv__head {
        font-size: 28px;
        line-height: 1.6;
    }

    .mv__sub-head {
        font-weight: 500;
        font-size: 18px;
    }
}

/*--------------- 
concept
-----------------*/
.concept {
    width: 100%;
    position: relative;
    z-index: 5;
}

.concept::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(20, 33, 61, 0.95) 0%, #14213D 100%);
}

/* 背景画像 */
.concept__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
}

/* ラッパー要素 */
.concept__wrapper {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 20px;
    display: flex;
    align-items: flex-start;
    gap: 10%;
    min-height: 665px;
}

/* メインコンテンツ */
.concept__content {
    align-self: flex-end;
}

/* メインテキスト */
.concept__text {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin-bottom: 28px;
}

.concept__text span {
    font-size: 20px;
    display: inline-block;
}

/* サイトアイコン */
.concept .site-icon__bg {
    position: absolute;
    right: 0;
    top: 5%;
}

@media (max-width:1200px) {
    .concept__wrapper {
        gap: 5%;
    }
}

@media (max-width:959px) {
    .concept__wrapper {
        max-width: 600px;
        margin: 0 auto;
        flex-direction: column;
        gap: 48px;
        padding: 80px 20px;
    }

    .concept .site-icon__bg svg {
        width: 250px;
    }
}

/*--------------- 
feature
-----------------*/
.feature {
    width: 100%;
    position: relative;
    background-color: #fff;
}

/* 背景画像 */
.feature__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* ラッパー要素 */
.feature__wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 20px;
    position: relative;
}

/* メインコンテンツ */
.feature__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* カード */
.feature__card {
    background-color: #FFFFFF80;
    padding: 32px 48px 40px;
    border-left: 6px solid;
    border-image-source: linear-gradient(180deg, #D6C19A 0%, #8D6628 100%);
    border-image-slice: 1;
    box-shadow: 2px 2px 20px 0px #DDD5C880;

}

/* カード見出し */
.feature__card-head {
    font-family: "Zen Old Mincho";
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #14213D;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #DDD5C8;
}

.feature__card-num {
    display: inline-block;
    font-weight: 500;
    margin-right: 16px;
}

/* カードテキスト */
.feature__card-text {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #333333;
}

@media (max-width:959px) {
    .feature__wrapper {
        max-width: 600px;
        padding: 80px 20px;
    }

    .feature__content {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 40px;
        margin-bottom: 60px;
    }

    .feature__card {
        padding: 16px 28px 28px;
    }

    .feature__card-head {
        font-size: clamp(20px, 18px + 0.63vw, 24px);
    }

    .feature__card-num {
        display: block;
        font-size: clamp(22px, 18px + 0.63vw, 24px);
    }
}


/*--------------- 
focus
-----------------*/
.focus {
    width: 100%;
    position: relative;
}

.focus::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 19, 32, 0.5), rgba(11, 19, 32, 0.5));
}

/* 背景画像 */
.focus__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* ラッパー要素 */
.focus__wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 20px;
    position: relative;
}

/* セクションタイトル */
.focus .section__title--center .section__head {
    color: #fff;
}

.focus .section__head::after {
    content: "Focus Area";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -90%;
    font-family: "Cormorant Garamond";
    font-weight: 700;
    font-size: 100px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    opacity: 0.3;
    white-space: nowrap;
}

/* メインコンテンツ */
.focus__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 40px;
}

/* リンクコンテンツ */
.focus__link {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    padding: 40px 48px;
    box-shadow: 2px 2px 4px 0px #DDD5C880;
}

.focus__outer {
    flex: 1;
}

/* リンク見出し */
.focus__link-head {
    font-family: "Zen Old Mincho";
    font-weight: 700;
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #14213D;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #DDD5C8;
}

.focus__link-sub-head {
    display: block;
    font-family: "Cormorant Garamond";
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    background: linear-gradient(180deg, #D6C19A 0%, #8D6628 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* Safari対策 */
}

/* リンクテキスト */
.focus__link-text {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #333333;
}

/* リンク矢印アイコン */
.focus__link-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(180deg, #D6C19A 0%, #8D6628 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* カード */
.focus__card {
    padding: 40px 48px;
    background-color: #051F32CC;
    box-shadow: 2px 4px 4px 0px #DDD5C880;
}

/* カード見出し */
.focus__card-head {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 16px;
}

.focus__card-head::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 22px;
    height: 1px;
    background-color: #DDD5C8;
}

/* カードテキスト */
.focus__card-text {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    padding-left: .5em;
}

.focus__card-text:last-of-type {
    margin-bottom: 0;
}

@media(max-width:959px) {

    /* ラッパー要素 */
    .focus__wrapper {
        max-width: 600px;
        padding: 80px 20px;
    }

    /* セクションタイトル */
    .focus .section__title--center .section__head {
        margin-left: 0;
        text-align: left;
        padding-left: 1em;
        padding-bottom: 0;
    }

    .focus .section__head::before {
        width: 2px;
        height: 30px;
        left: 0;
        bottom: initial;
        top: 50%;
        translate: 0 -50%;
        background-color: #fff;
    }

    .focus .section__head::after {
        left: 100%;
        translate: -8% -50%;
        font-size: 48px;
    }

    /* メインコンテンツ */
    .focus__content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }

    .focus__link {
        padding: 24px 28px;
    }

    /* リンク見出し */
    .focus__link-head {
        font-size: 28px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .focus__link-head--sp {
        flex: 1;
    }

    .focus__link-head.sp-only {
        display: flex !important;
        justify-content: space-between;
        gap: 12px;
        font-size: clamp(18px, 12.99px + 1.56vw, 28px);
    }

    .focus__link-head .focus__link-icon {
        align-self: flex-end;
    }

    .focus__link-sub-head {
        font-size: 16px;
    }

    /* リンクテキスト */
    .focus__link-text {
        font-size: 16px;
    }

    .focus__card {
        padding: 24px 28px;
    }
}

@media(max-width:375px) {
    .focus .section__head::after {
        font-size: 35px;
    }
}

/*--------------- 
service
-----------------*/
.service {
    width: 100%;
    position: relative;
    z-index: 5;
}

.service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #14213D;
}

/* 背景画像 */
.service__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
}

/* ラッパー要素 */
.service__wrapper {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 40px;
}

.service .section__head {
    font-size: 32px;
    padding-bottom: 20px;
}

/* リンクコンテンツ */
.service__link {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    padding: 40px 48px;
    box-shadow: 2px 2px 4px 0px #DDD5C880;
}


.service__outer {
    flex: 1;
}

/* リンク見出し */
.service__link-head {
    font-family: "Zen Old Mincho";
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #14213D;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #DDD5C8;
}

.service__link-sub-head {
    display: block;
    font-family: "Cormorant Garamond";
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    background: linear-gradient(180deg, #D6C19A 0%, #8D6628 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* Safari対策 */
}

/* リンクテキスト */
.service__link-text {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #333333;
}

/* リンク矢印アイコン */
/* .service__link-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(180deg, #D6C19A 0%, #8D6628 100%);
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* .service__link:hover .page-link-icon {
    opacity: 0.7;
    transition: opacity 0.3s;
} */

/* .service__link:hover .page-link-icon svg {
    animation: arrowAnime 0.4s;
} */

@media(max-width:959px) {
    .service .section__title {
        margin-bottom: 20px;
    }

    /* ラッパー要素 */
    .service__wrapper {
        max-width: 600px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 24px;
        padding: 80px 20px;
    }

    .service .section__head {
        font-size: clamp(24px, 17.99px + 1.88vw, 32px);
        width: auto;
    }

    .service__link {
        padding: 24px 28px;
    }

    /* リンク見出し */
    .service__link-head {
        font-size: 28px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .service__link-head--sp {
        flex: 1;
    }

    .service__link-head.sp-only {
        display: flex !important;
        justify-content: space-between;
        gap: 12px;
        font-size: clamp(18px, 12.99px + 1.56vw, 28px);
    }

    .service__link-head .service__link-icon {
        align-self: flex-end;
    }

    .service__link-sub-head {
        font-size: 16px;
    }
}

/*--------------- 
lawyer
-----------------*/
.lawyer {
    width: 100%;
    position: relative;
    background-color: #fff;
}

/* ラッパー要素 */
.lawyer__wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 20px;
    display: flex;
    align-items: flex-start;
    gap: 20%;
}

/* 見出し */
.lawyer .section__head {
    color: #14213D;
    padding-bottom: 20px;
}

/* メインコンテンツ */
.lawyer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6%;
}

/* 弁護士画像 */
.lawyer__img {
    display: block;
    width: 100%;
    aspect-ratio: 350/240;
    object-fit: cover;
    margin-bottom: 28px;
}

/* ページリンク */
.lawyer__link {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 28px;
}

/* リンク余白調整 */
.lawyer__info {
    flex: 1;
}

/* 所属先 */
.lawyer__affiliation {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.03em;
    color: #666666;
    display: block;
    margin-bottom: 8px;
}

/* 名前 */
.lawyer__name {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 12px;
    row-gap: 4px;
    flex-wrap: wrap;
}

/* 職種 */
.lawyer__job {
    font-size: 14px;
    line-height: 1.3;
    color: #333333;
}

/* 英語名前 */
.lawyer__en-name {
    font-family: "Cormorant Garamond";
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, #D6C19A 0%, #8D6628 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* Safari対策 */
}

/* コメント */
.lawyer__coment {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #14213D;
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 1px solid #DDD5C8;
}

/* 経歴 */
.lawyer__career {
    list-style: none;

}

.lawyer__career li {
    display: flex;
    gap: 12px;
}

/* 日付 */
.lawyer__career-day {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #666666;
    display: inline-block;
    min-width: 75px;
}

/* 詳細 */
.lawyer__career-detail {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #666666;
    display: inline-block;
}

@media(max-width:959px) {

    .lawyer__wrapper {
        max-width: 600px;
        flex-direction: column;
        padding: 80px 20px;
    }

    .lawyer .section__head {
        margin-bottom: 48px;
    }

    .lawyer__content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lawyer__link {
        gap: 12px;
    }
}

/*--------------- 
page-link
-----------------*/
.page-link {
    width: 100%;
    position: relative;
}

.page-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #14213D;
}

/* 背景画像 */
.page-link__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-link__wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 40px;
}

.page-link__card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px 48px;
    background-color: #14213D;
    box-shadow: 2px 2px 4px 0px #FFFFFF4D;
}

.page-link__img {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 20px;
}

.page-link__outer {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}

.page-link__head {
    font-family: "Zen Old Mincho";
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    white-space: nowrap;
}

.page-link__sub-head {
    font-family: "Cormorant Garamond";
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, #D6C19A 0%, #8D6628 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* Safari対策 */
    text-align: center;
    display: block;
}

.page-link__div {
    width: 1px;
    height: 76px;
    background-color: #FFFFFF80;
}

.page-link__text {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #FFFFFF;
}

@media(max-width:959px) {
    .page-link__wrapper {
        max-width: 600px;
        flex-direction: column;
        gap: 24px;
    }

    .page-link__card {
        padding: 20px;
    }

    .page-link__outer {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .page-link__head {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 18px;
    }

    .page-link__sub-head {
        display: inline-block;
        font-size: 16px;
    }
}

/*--------------- 
column 
-----------------*/

/* 見出し(.section__title--center)とボタン(.link-btn)は既存スタイルを流用するため
   ここではカード/スライダー部分のみ定義 */

.column {
    width: 100%;
    background-color: #fff;
    overflow-x: hidden;
    /* 100vwブレイクアウト時の横スクロール防止 */
}

.column__wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.column__slider {
    overflow: hidden;
    margin-bottom: 60px;
}

.column__card {
    height: auto;
}

.column__card-link {
    display: block;
    text-align: left;
    color: inherit;
    text-decoration: none;
}

.column__card-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 380 / 213.75;
}

.column__card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.column__card-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    background-color: #14213D80;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.column__card-link:hover .column__card-hover {
    opacity: 1;
}

.column__card-link:hover .column__card-thumb img {
    transform: scale(1.05);
}

.column__card-body {
    display: block;
    padding-top: 20px;
}

.column__card-cat {
    display: inline-block;
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    background-color: #14213D;
    padding: 4px 8px;
    margin-bottom: 14px;
}

.column__card-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #14213D;
    margin-bottom: 10px;
}

.column__card-date {
    display: block;
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.03em;
    color: #666666;
}

/* PC（960px以上）：Swiperを使わず3カラム表示 */
@media (min-width:960px) {
    .column__slider .swiper-wrapper {
        display: flex;
        flex-wrap: nowrap;
        gap: 40px;
    }

    .column__slider .swiper-slide {
        width: calc((100% - 40px * 2) / 3);
        flex-shrink: 0;
    }
}

/* SP（959px以下）：Swiperでスライダー表示 */
@media (max-width:959px) {
    .column__wrapper {
        max-width: 600px;
        padding: 80px 20px;
    }

    .column__slider {
        /* .column__wrapperのpaddingに関係なく画面幅いっぱいに広げる */
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        margin-bottom: 40px;
    }

    .column__slider .swiper-slide {
        width: 84%;
        /* JS初期化前の保険スタイル。初期化後はSwiperの値が優先される */
    }

    .column__card-text {
        -webkit-line-clamp: 2;
    }

    .swiper-button-next,
    .swiper-button-prev {
        background: none;
        color: #14213D;
        cursor: pointer;
        height: calc(var(--swiper-nav-size) * 1.2);
        padding: calc(var(--swiper-nav-size) * .4) calc(var(--swiper-nav-size) * .3);
        position: absolute;
        top: initial;
        bottom: 50px;
        translate: initial;
        width: var(--swiper-nav-size);
        z-index: 10;
    }

    .swiper-button-prev {
        left: 15%;
    }

    .swiper-button-next {
        right: 15%;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        width: 10px;
        height: 10px;
    }

    .swiper-button-next:after {
        right: -5px;
    }
}

/*--------------- 
office
-----------------*/
.office {
    width: 100%;
    position: relative;
}

.office__wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 20px;
    position: relative;
}

.office__content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.office__info {
    flex: 1;
}

.office__name {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #14213D;
    margin-bottom: 40px;
}

.office__list {
    list-style: none;
    padding-left: 28px;
    margin-bottom: 60px;
    border-left: 1px solid;
    border-image-source: linear-gradient(180deg, #D6C19A 0%, #8D6628 100%);
    border-image-slice: 1;
}

.office__list li {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.office__item {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #14213D;
    min-width: 95px;
}

.office__detail {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #666666;
}

.office .link-btn {
    margin-left: 0;
}

.office__map {
    width: 50%;
    max-width: 560px;
}

.office__map iframe {
    width: 100%;
    height: 100%;
}

.office__site-icon {
    position: absolute;
    top: -70px;
    left: 0;
}

@media (max-width:959px) {
    .office__wrapper {
        max-width: 600px;
        padding: 50px 20px 80px;
    }

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

    .office__list {
        list-style: none;
        padding-left: 16px;
        margin-bottom: 40px;
    }

    .office__item {
        min-width: 85px;
    }

    .office__map {
        width: 100%;
        max-width: none;
        aspect-ratio: 335/280;
    }

    .office .link-btn {
        margin: 0 auto;
    }

    .office__site-icon {
        top: 25%;
        left: initial;
        right: 0;
    }
}

/*--------------- 
サイトリンク
-----------------*/
.site-link {
    width: 100%;
    background-color: #FAFAFA;
}

.site-link__wrapper {
    padding: 80px 20px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.site-link a {
    display: block;
    width: 100%;
    transition: 0.3s;
}

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

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

@media (max-width:959px) {
    .site-link__wrapper {
        padding: 40px 20px;
        max-width: 360px;
    }
}