@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}


:root {
    --navy: #2c4c93;
    --gold: #d6ad16;
    --deep-navy:#00276a;
    --header-top-margin: 32px;
}


.container {
    max-width: 1320px;
    /* 中身が1290pxになる */
}

.wrapper {
    overflow: hidden;
}

@media (max-width: 1500px) {
    .container {
        padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
        padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
    }
}

/* ===============================
共通要素
=============================== */
.sec-ttl-box .sub-en {
    font-size: 50px;
    font-weight: 700;
    color: #d4b04a;
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: 0 !important;
    font-family: "Oswald", sans-serif;
}

.sec-ttl-box .section-title {
    font-size: 42px;
    position: relative;
    color: #fff;
    font-weight: 700;
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.sec-ttl-box .section-title::after {
    content: '';
    background-color: #fff;
    height: 5px;
    width: 120px;
    left: 0;
    bottom: 0;
    position: absolute;
}

.sec-ttl-box.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* テキスト */
.section-text {
    color: #fff;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px;
}

a.more-btn {
    margin: 40px 0 0;
    display: table;
    font-size: 24px;
    font-weight: 700;
    max-width: 320px;
    width: 100%;
    color: var(--navy);
    text-align: center;
    position: relative;
    transition: 0.7s;
    padding: 15px 60px;
    cursor: pointer;
    background-color: #fff;
}

a.more-btn:hover {
    color:#fff;
    background-color: var(--navy);
}

a.more-btn::after {
    position: absolute;
    bottom: -5px;
    height: 5px;
    content: '';
    width: 100%;
    left: 0;
    background-color: #00276a;
}

.arrow-icon {
    display: inline-block;
    border-radius: 50% 50%;
    background-color: var(--navy);
}

a.more-btn:hover .arrow-icon {
    display: inline-block;
    border-radius: 50% 50%;
    background-color: var(--deep-navy);
}

.arrow-icon {
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    position: absolute;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    font-size: 18px;
    color: #fff;
}

/* 見出し */
.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .sec-ttl-box .sub-en {
        font-size: 40px;
        font-weight: 700;
    }

    .sec-ttl-box .section-title {
        font-size: 32px;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .sec-ttl-box .section-title::after {
        height: 4px;
        width: 100px;
    }

    a.more-btn {
        margin: 30px auto 0;
        display: table;
        font-size: 20px;
        font-weight: 700;
        max-width: 280px;
        width: 100%;
        color: var(--navy);
        text-align: center;
        position: relative;
        padding: 15px 60px;
        background-color: #fff;
    }

    a.more-btn::after {
        position: absolute;
        bottom: -5px;
        height: 4px;
        content: '';
        width: 100%;
        left: 0;
        background-color: #00276a;
    }

    .arrow-icon {
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
        position: absolute;
        margin-left: 10px;
        width: 25px;
        height: 25px;
        font-size: 16px;
        color: #fff;
    }
}

@media (max-width: 768px) {
    .sec-ttl-box .sub-en {
        font-size: 36px;
        font-weight: 700;
    }

    .sec-ttl-box .section-title {
        font-size: 28px;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .sec-ttl-box .section-title::after {
        height: 3px;
        width: 80px;
    }

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

    .sp-order-1 {
        order: 1;
    }

    .sp-order-2 {
        order: 2
    }
}

@media (max-width: 480px) {
    .sec-ttl-box .sub-en {
        font-size: 32px;
        font-weight: 700;
    }

    .sec-ttl-box .section-title {
        font-size: 22px;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .sec-ttl-box .section-title::after {
        height: 3px;
        width: 80px;
    }

    .section-text {
        font-size: 14px;
    }

    a.more-btn {
        margin: 30px auto 0;
        display: table;
        font-size: 18px;
        font-weight: 700;
        max-width: 260px;
        width: 100%;
        color: var(--navy);
        text-align: center;
        position: relative;
        padding: 12px 15px;
        background-color: #fff;
    }
}


/* ===============================
ヘッダー
=============================== */

.header {
    margin-top: 32px;
    margin-top: var(--header-top-margin);
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    transition: transform 0.3s ease;
    transform: translateY(0);
}

#header .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
}

.header.hide {
  transform: translateY(calc(-100% - var(--header-top-margin)));
}

.logo a {
    gap: 0 23px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 55px;
    transition: 0.7s;
    min-width: fit-content;
    background-color: rgba(255, 255, 255, 0.3);
}

.logo a:hover {
    opacity: 0.6;
}

.logo-mark {
    max-width: 90px;
    width: 100%;
    padding: 8px 0;
    flex-shrink: 0; /* ← これで画像が消えなくなる！ */
}

.logo-mark img {
    display: block;
  max-width: inherit;
  width: 100%;
}

.logo-text {
    color: #fff;
    font-size: 43px;
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
    display: block;
    letter-spacing: 0.01em;
}

.logo-text {
    white-space: nowrap;
}

/* 白背景のとき → 黒文字 */
/* 白背景のときだけロゴ色を濃くする */
.header.header-white .logo-text {
  color: var(--navy);
}

.row-head {
    display: flex;
    justify-content: space-between;
}

.head_contents {
    display: flex;
    gap: 0 40px;
    justify-content: space-between;
    align-items: center;
}

#gNavi ul {
    display: flex;
    gap: 0 40px;
}

#gNavi ul a {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    transition: 0.7s;
    font-family: "Shippori Mincho", serif;
}


.header-white #gNavi ul a {
    color:var(--navy);
}
#gNavi ul a:hover {
    color: var(--gold);
}
.header-white #gNavi ul a:hover {
    color: var(--gold);
}

.header-white .head_contents {
   background-color: rgba(255, 255, 255, 0.3);
   padding: 0 20px;
}

#gNavi ul li {
    text-align: center;
}

#gNavi ul a .en {
    text-align: center;
    display: block;
    padding-top: 7px;
    line-height: 1;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
}

#gNavi ul .active a {
    color: var(--gold);
}

.tel-box {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 0 22px;
}

.tel-box .flex-box {
    align-items: center;
    display: flex;
    gap: 0 8px;
}

.btn-box {
    gap: 0 20px;
    display: flex;
}

.tel-text {
    color: var(--navy);
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
}

.tel-text a span {
    font-size: 30px;
    color: var(--navy);
    font-weight: 700;
    font-family: "Oswald", sans-serif;
}

.tel-icon {
    color: var(--navy);
    font-size: 32px;
}

.mail-btn {
    display: table;
    height: 70px;
}

.mail-btn a {
    cursor: pointer;
    transition: 0.7s;
    background-color: var(--navy);
    display: flex;
    gap: 0 13px;
    height: 100%;
    padding: 0 26px;
    align-items: center;
}

.mail-btn a:hover {
    background-color: var(--deep-navy);
}

.mail-btn .mail-icon {
    font-size: 36px;
    color: #fff;
}

.mail-btn a .mail-text {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
}

@media (max-width: 1800px) {
    .logo a {
        gap: 0 18px;
        padding-left: 15px;
        padding-right: 40px;
    }

    .tel-text {
        color: var(--navy);
        font-weight: 700;
        font-family: "Oswald", sans-serif;
        font-size: min(calc(20px + (30 - 20) * (100vw - 1280px) / (1800 - 1280)),
                30px);
    }
    .tel-text a span {
        font-size: min(calc(20px + (30 - 20) * (100vw - 1280px) / (1800 - 1280)),
                30px);
    }
    .mail-btn a .mail-text {
        font-size: min(calc(17px + (22 - 17) * (100vw - 1280px) / (1800 - 1280)),
                22px);
    }

    #gNavi ul {
        display: flex;
        gap: 0 min(calc(20px + (40 - 20) * (100vw - 991px) / (1800 - 991)),
                40px);
    }

    #gNavi ul a {
        text-align: center;
        font-size: min(calc(13px + (22 - 13) * (100vw - 991px) / (1800 - 991)),
                22px);
        font-weight: 700;
        line-height: 1;
        font-family: "Shippori Mincho", serif;
    }

    #gNavi ul a .en {
        text-align: center;
        display: block;
        padding-top: 7px;
        line-height: 1;
        font-weight: 500;
        font-family: "Noto Serif JP", serif;
    }

    #header .mail-btn a {
        display: flex;
        gap: 0 10px;
        height: 100%;
        padding: 0 min(calc(10px + (26 - 10) * (100vw - 991px) / (1800 - 991)),
                26px);
        align-items: center;
    }
}

@media (max-width: 1500px) {
    #header .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo a {
        gap: 0 16px;
        display: flex;
        align-items: center;
        padding-left: 15px;
        padding-right: 25px;
        background-color: rgba(255, 255, 255, 0.3);
    }
}

.splide {
    position: relative;
    overflow: hidden;
    /* 線のアニメーション */
}

.splide .scroll {
    position: absolute;
    right: 30px;
    bottom: 400px;
    writing-mode: vertical-rl;
    z-index: 2;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 12px;
}

@media (max-width: 1280px) {
    :root {
        --header-top-margin: 22px;
    }

    #header .mail-btn {
        height: 55px;
    }

    .tel-box {
        height: 55px;
    }

    .header {
        margin-top: var(--header-top-margin)
    }

    .head_contents {
        gap: 0 20px;
    }
}

@media (max-width: 1140px) {
    .head_contents {
        display: none;
    }
}




@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}


/* ===============================
お問い合わせ
=============================== */

.top-contact-area {
    position: relative;
    padding: 80px 16px 180px;
    color: #fff;
    /* 背景画像は任意で差し替え */
    position: relative;
    background-color: var(--navy);
    background-image: url("../images/top/contact-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* 青いボックスを中央に */
.top-contact-area .container {
    margin: 0 auto;
    margin-top: -200px;
}

.top-contact-box {
    position: relative;
    padding: 56px 56px 64px;
    background: linear-gradient(to right, #2c4c93, #00276a);
    text-align: center;
}

/* 右側のロゴ透かし（必要なければ削除） */
.top-contact-box::after {
    content: "";
    position: absolute;
    right: -295px;
    top: 50%;
    transform: translateY(-50%);
    width: 548px;
    aspect-ratio: 1 / 1;
    background: url("../images/common/contact-big-logo.svg") no-repeat center/contain;
    pointer-events: none;
}

/* 見出し */
.top-contact-en {
    font-size: 20px;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    color: #f9d24c;
    margin-bottom: 6px;
}

.top-contact-jp {
    font-size: 28px;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
}

p.top-contact-lead {
    margin-bottom: 40px;
}

/* 下の白いボックス */
.top-contact-bottom {
    position: relative;
    z-index: 1;
    background-color: #fff;
    display: flex;
    padding: 30px 70px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    max-width: 840px;
    margin: 0 auto;
    width: 100%;
}

/* 電話 */
.top-contact-tel {
    flex: 1 1 auto;
    display: flex;
    gap: 0 10px;
}

.top-contact-area .tel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--navy);
    color: #fff;
    font-size: 30px;
    flex-shrink: 0;
}

.tel-main {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.tel-label {
    font-size: 12px;
}

.tel-number {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0;
    color: #2c4c93;
}

.tel-time {
    margin-top: 10px;
    font-size: 18px;
    color: #000;
}

/* メール */
.top-contact-mail {
    flex: 0 0 220px;
    border-left: 1px solid #e0e0e0;
}

.top-contact-mail-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: 18px 24px;
    background-color: #e8536a;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.top-contact-mail-link:hover {
    opacity: 0.9;
}

.mail-icon {
    font-size: 20px;
}

.mail-text {
    letter-spacing: 0.08em;
}

@media (max-width: 1800px) {

    .top-contact-box::after {
        content: "";
        position: absolute;
        right: max(calc(-200px + (-295 - -200) * (100vw - 1200px) / (1800 - 1200)),
                -295px);
        top: 50%;
        transform: translateY(-50%);
        width: min(calc(380px + (548 - 380) * (100vw - 1200px) / (1800 - 1200)),
                548px);
        aspect-ratio: 1 / 1;
        background: url("../images/common/contact-big-logo.svg") no-repeat center/contain;
        pointer-events: none;
    }
}


@media (max-width: 1200px) {
    .top-contact-box::after {
        content: "";
        position: absolute;
        right: -80px;
        transform: translateY(-50%);
        width: 320px;
    }

    .top-contact-area {
        position: relative;
        padding: 80px 0 100px;
        color: #fff;
        /* 背景画像は任意で差し替え */
    }

    /* 青いボックスを中央に */
    .top-contact-area .container {
        max-width: 100%;
        margin: 0 auto;
        margin-top: -160px;
    }
}

@media (max-width: 991px) {
    .top-contact-bottom {
        position: relative;
        z-index: 1;
        background-color: #fff;
        display: block;
        padding: 30px 70px;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        max-width: 840px;
        margin: 0 auto;
        width: 100%;
    }

    .top-contact-tel {
        justify-content: center;
        flex: 1 1 auto;
        display: flex;
        gap: 0 10px;
    }

    .top-contact-bottom .mail-btn {
        display: table;
        margin: 20px auto 0;
        height: 70px;
        background-color: var(--navy);
    }

    .tel-time {
        margin-top: 8px;
        text-align: left;
        font-size: 16px;
        color: #000;
    }
}

@media (max-width: 768px) {
    .top-contact-area {
        padding: 60px 0;
    }

    .top-contact-box {
        padding: 40px 20px 44px;
    }

    .top-contact-box::after {
        right: -40px;
        width: 200px;
    }

    .top-contact-jp {
        font-size: 22px;
    }

    .top-contact-lead {
        font-size: 13px;
    }

    .top-contact-bottom {
        flex-direction: column;
    }

    .top-contact-tel-link {
        flex-direction: column;
        text-align: center;
        padding: 18px 20px;
    }

    .tel-main {
        text-align: center;
    }

    .top-contact-mail {
        flex-basis: auto;
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }

    .top-contact-tel {
        justify-content: center;
        flex: 1 1 auto;
        display: flex;
        gap: 0 5px;
    }

    .tel-number {
        font-size: 40px;
        font-weight: 700;
        line-height: 1;
        font-family: "Oswald", sans-serif;
        letter-spacing: 0;
        color: #2c4c93;
    }

    .top-contact-area .tel-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--navy);
        color: #fff;
        font-size: 24px;
        flex-shrink: 0;
    }

    .tel-time {
        margin-top: 8px;
        text-align: left;
        font-size: 16px;
        color: #000;
    }

    .top-contact-bottom {
        position: relative;
        z-index: 1;
        background-color: #fff;
        display: block;
        padding: 30px 30px;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        max-width: 840px;
        margin: 0 auto;
        width: 100%;
    }

    .top-contact-bottom .mail-btn {
        display: table;
        margin: 20px auto 0;
        height: 60px;
        background-color: var(--navy);
    }

    .mail-btn a .mail-text {
        color: #fff;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 700;
        font-size: 18px;
        display: flex;
    }

    .mail-btn .mail-icon {
        font-size: 30px;
        color: #fff;
    }
}


@media (max-width: 480px) {
    .tel-number {
        font-size: 30px;
        font-weight: 700;
        line-height: 1;
        font-family: "Oswald", sans-serif;
        letter-spacing: 0;
        color: #2c4c93;
    }

    .top-contact-area .tel-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background-color: var(--navy);
        color: #fff;
        font-size: 24px;
        flex-shrink: 0;
    }

    .top-contact-bottom {
        position: relative;
        z-index: 1;
        background-color: #fff;
        display: block;
        padding: 20px;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        max-width: 840px;
        margin: 0 auto;
        width: 100%;
    }

    .tel-time {
        margin-top: 8px;
        text-align: left;
        font-size: 14px;
        color: #000;
    }

    .mail-btn a .mail-text {
        color: #fff;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 700;
        font-size: 16px;
        display: flex;
    }
}


/* ===============================
フッター
=============================== */
#footer {
    overflow: hidden;
    padding: 62px 0 133px;
    position: relative;
    background: linear-gradient(to right, #2c4c93, #00276a);
}

#footer::after {
    font-family: "Oswald", sans-serif;
    font-size: 280px;
    left: 50px;
    bottom: 20px;
    position: absolute;
    z-index: 2;
    content: 'AK';
    color: #fff;
    opacity: 0.2;
    font-weight: 700;
    line-height: 1;
}

.ft-logo {
    display: table;
    margin-bottom: 40px;
}

.ft-logo a {
    gap: 0 23px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 55px;
    background-color: rgba(255, 255, 255, 0.3);
}

.logo-mark {
    max-width: 90px;
    width: 100%;
    padding: 8px 0;
}

.logo-text {
    color: #fff;
    font-size: 43px;
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
}

.address {
    font-size: 18px;
    line-height: 2;
}

.address p {
    color: #fff;
    font-size: 18px;
    line-height: 2.2;
}

.address dl div {
    display: flex;
}

.address dl dt,
.address dl dd {
    font-size: 18px;
    line-height: 2.2;
    color: #fff;
    font-weight: 400;
}


.address dl dt {
    width: 100%;
    max-width: 145px;
}

.map {
    margin-left: auto;
    width: 100%;
    max-width: 500px;
}

.map iframe {
    height: 300px;
    width: 100%;
}

.ft-nav {
    margin-top: 20px;
}

.ft-nav ul {
    justify-content: flex-end;
    display: flex;
    gap: 0 30px;
}

.ft-nav ul a {
    font-size: 18px;
    color: #fff;
    transition: 0.7s;
    cursor: pointer;
}

.ft-nav ul a:hover {
    color: #d4b04a;
}

.copy {
    margin-top: 100px;
    padding: 20px 0;
    background-color: var(--navy);
}

.copy p {
    line-height: 1;
    font-size: 18px;
    text-align: center;
    color: #fff;
}


#pagetop {
  cursor: pointer;
  position: fixed;
  bottom: 9px;
  right: 9px;
  z-index: 9999;
  width: 55px;
}

@media (max-width: 1800px) {

    .ft-logo a {
        gap: 0 18px;
        padding-left: 15px;
        padding-right: 40px;
    }

    .logo-mark {
        max-width: min(calc(60px + (90 - 60) * (100vw - 991px) / (1800 - 991)),
                90px);
        width: 100%;
        padding: 8px 0;
    }

    .logo-text {
        font-size: min(calc(33px + (43 - 24) * (100vw - 991px) / (1800 - 991)),
                43px);
    }
}

@media (max-width: 1500px) {

    #footer .container {
        padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
        padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
    }

    #footer::after {
        font-family: "Oswald", sans-serif;
        font-size: min(calc(200px + (280 - 200) * (100vw - 992px) / (1500 - 992)),
                280px);
        left: 50px;
        bottom: 20px;
        position: absolute;
        z-index: 2;
        content: 'AK';
        color: #fff;
        opacity: 0.2;
        font-weight: 700;
        line-height: 1;
    }


}

@media (max-width: 1200px) {
    .ft-logo {
        margin: 0 auto 30px;
        text-align: center;
    }

    .map {
        margin-left: auto;
        width: 100%;
        max-width: 500px;
        margin: 30px auto;
    }

    .address p {
        color: #fff;
        text-align: center;
        font-size: 18px;
        line-height: 2.2;
    }

    .address dl div {
        justify-content: center;
    }

    .ft-nav ul {
        justify-content: center;
        display: flex;
        gap: 0 30px;
    }
}

@media (max-width: 768px) {
    .logo-mark {
        max-width: 55px;
        width: 100%;
        padding: 8px 0;
    }

    .logo-text {
        font-size: 30px;
    }

    .address p {
        color: #fff;
        text-align: center;
        font-size: 16px;
        line-height: 2;
    }

    .address dl div {
        font-size: 16px;
        line-height: 2;
    }

    .address dl dt,
    .address dl dd {
        font-size: 16px;
        line-height: 2;
    }

    .address dl dt {
        width: 120%;
        max-width: 120px;
    }

    .ft-nav ul {
        font-size: 16px;
        gap: 0 20px;
    }

    .ft-nav ul li a {
        font-size: 16px;
        justify-content: center;
    }

    #footer::after {
        left: calc(15px + 50 * (100vw - 320px) / 1180);
        line-height: 1;
    }

    .copy {
        margin-top: 80px;
    }

    .copy p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .address p {
        color: #fff;
        text-align: center;
        font-size: 14px;
        line-height: 1.8;
    }

    .address dl div {
        font-size: 14px;
        line-height: 2;
    }

    .address dl dt,
    .address dl dd {
        font-size: 12px;
        line-height: 2;
    }
    .address dl dd a,
    .address dl dd a span {
        font-size: 12px;
        line-height: 2;
    }

    .address dl dt {
        width: 100%;
        max-width: 100px;
    }

    .map iframe {
        height: 260px;
    }

    .ft-nav ul {
        margin: 0 auto;
        max-width: 270px;
        flex-wrap: wrap;
    }

    .ft-nav ul li a {
        line-height: 2;
        font-size: 14px;
        justify-content: center;
    }

    .copy {
        margin-top: 40px;
        padding: 15px 0;
    }

    .copy p {
        font-size: 13px;
    }
    #pagetop {
        position: fixed;
        z-index: 9999;
        width: 45px;
    }
}

/* =======================================
SPMENU
======================================== */
.openbtn {
    position: fixed;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 1px;
    display: none;
    border: 2px solid #fff;
    transform: translate3d(0, 0, 0);
    z-index: 9999;
}
.openbtn-white.openbtn {
    border: 2px solid var(--navy);
}
.active.openbtn-white.openbtn {
    border: 2px solid #fff;
}
.openbtn {
    cursor: pointer;
    margin-left: 0;
}

.openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 1.4rem;
    height: 2px;
    background-color: #fff;
}

.openbtn-white.openbtn span {
    background-color: var(--navy);
}
.active.openbtn-white.openbtn span {
    background-color: #fff;
}
.openbtn span:nth-of-type(1) {
    top: 6px;
    left: 5px;
    width: 35px;
}

.openbtn span:nth-of-type(2) {
    top: 15px;
    left: 5px;
    width: 35px;
}

.openbtn span:nth-of-type(3) {
    top: 24px;
    left: 5px;
    width: 35px;
}

.openbtn.active span:nth-of-type(1) {
    top: 12px;
    width: 35px;
    left: 5px;
    background-color: #fff;
    transform: translateY(5px) rotate(-160deg);
}

.openbtn.active span:nth-of-type(3) {
    top: 22px;
    left: 5px;
    width: 35px;
    background-color: #fff;
    transform: translateY(-5px) rotate(160deg);
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active p {
    color: #fff;
}

.overlay-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    width: 300px;
    color: #fff;
    text-align: left;
    padding-top: 50px;
    background: linear-gradient(to right, #2c4c93, #00276a);
    transition: transform 0.5s ease;
    overflow-y: auto;
    z-index: 9900;
    padding-bottom: 50px;
}

.overlay-menu.active {
    transform: translate3d(-100%, 0, 0);
}

.overlay-menu-inner {
    position: relative;
    height: 100%;
    padding: 100px 30px 20px;
}

.spNav-top-01 ul li {
    line-height: 1.5;
    padding-bottom: 18px;
    border-bottom: 1px solid #fff;
}

.spNav-top-01 ul li {
  width: 100%;
  list-style: none;
}

.spNav-top-01 ul li a {
    display: inline-block;
    align-items: center;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
}

.spNav-top-01 ul li a .fa-angle-right {
    padding-top: 5px;
    padding-right: 5px;
}

.spNav-top-01 ul {
    width: 100%;
}

.spNav-top-01 ul li:nth-child(n+2) {
    margin-top: 18px;
}

.sp-nav-copy {
    margin-top: 60px;
    padding-bottom: 80px;
    color: #fff;
    font-size: 12px;
}

.overlay-menu .tel {
    font-size: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 0 10px;
    align-items: center;
    margin-top: 30px;
}

.overlay-menu .tel-text {
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: #fff;
}

.overlay-menu .tel-icon {
    color: #fff;
    display: block;
}

.overlay-menu .fa-arrow-right {
    padding-top: 2px;
    padding-right: 7px;
}

@media (max-width: 1140px) {
    .openbtn {
        top: 30px;
        right: 20px;
        display: block;
    }

    .openbtn p {
        font-size: 11px;
        line-height: 1;
        text-align: center;
        color: #fff;
        font-weight: 700;
        margin-top: 30px;
    }

    .openbtn-white.openbtn p {
        color: var(--navy);
    }
    .openbtn-white.openbtn.active p {
        color: #fff;
    }

}