@charset "UTF-8";
/* ===================================
   🌟 初期設定のCSS (style.css)
   =================================== */


/* Google Fonts 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

/* 共通フォント設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    /* 16px × 62.5% = 10px */
    scroll-behavior: smooth;
}

/* 全要素のボックスモデルを統一 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 画像の最大幅を制御 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* リンクのデフォルトスタイルを統一 */
a {
    text-decoration: none;
    color: inherit;
}

/* ヘッディングのマージン調整 */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: bold;
}

/* リストのデフォルト調整 */
ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* ボタンの初期スタイル */
button {
    font: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

/*  トップに戻るボタン   */
#scroll-top {
    position: fixed;
    right: 5%;
    bottom: 8%;
    width: 40px;
    /* ボタンのサイズ */
    height: 40px;
    cursor: pointer;
    display: none;
    /* 初期状態では非表示 */
    z-index: 1000;
    /* 他の要素より上に表示 */
}

#scroll-top img {
    width: 100%;
    height: auto;
    opacity: 0.7;
    /* 透明度を少し下げる */
    transition: opacity 0.3s ease-in-out;
}

#scroll-top:hover img {
    opacity: 1;
    /* ホバー時に明るくする */
}

.show-scroll {
    display: block !important;
}


/* ヘッダーが読み込み中のときはハンバーガー無効＋半透明 */
body.loading #hamburger {
    pointer-events: none;
    opacity: 0.5;
}


/* ヘッダーの基本スタイル */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.header-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.35);
    /* 75% 透過 */
}

/* 通常時のヘッダー（薄い背景） */
.header-top {
    background-color: rgba(51, 51, 51, 0.35);
    transition: background-color 0.3s ease-in-out;
}

/* スクロール時のヘッダー（濃い背景） */
.header-top.scrolled {
    background-color: rgba(51, 51, 51, 0.85);
    /* 濃くする */
}

/* ロゴ設定 */
.logo img {
    max-width: 340px;
}

/* ロゴ設定 */
.logo:hover img {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px #000;
}

.nav ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav ul li {
    margin: 0 15px;

}

.nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

.nav ul li a.link_recruit_w {
    padding-right: 38px;
}

.submenu_ttl_wrp {
    font-size: 2rem;
    width: 70%;
    margin-inline: auto;
}

.submenu_ttl {
    font-weight: bold;
    display: inline-block;
    color: #fff;
    margin: 0;
    transition: transform 0.3s ease;
    transform-origin: center；
}

.submenu_ttl:hover {
    transform: scale(1.05);
}

/* 矢印（`>`）を `.submenu li a` に適用 */
.submenu li a::before {
    content: "＞";
    /* 矢印を追加 */
    display: inline-block;
    margin-right: 10px;
    font-size: 1.4rem;
    color: white;
    transition: transform 0.3s ease;
}

.submenu li a:hover::before {
    transform: translateX(5px);
    /* 右に少し動かす */
}



/* サブメニューの初期設定（非表示） */
.submenu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    /* 画面いっぱいに黒背景 */
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 0;
    z-index: 999;

    /* スライドダウンの初期状態 */
    transform: translateY(-10px);
}

/* `.submenu-wrapper` をホバーしたら表示 */
.menu-item:hover>.submenu-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* メニューがホバーされたときに `a` の背景色を変更 */
.menu-item:hover>a {
    background-color: #000;
    /* 好きな色に変更 */
    color: white;
}

/* `.submenu` を横並びにする */
.header-container .submenu {
    display: flex;
    gap: 10px 25px;
    list-style: none;
    justify-content: left;
    flex-wrap: wrap;
    max-width: 1300px;
    /* 最大幅 */
}

/* 通常のスタイル（width: 180px が適用される） */
.submenu-wrapper .submenu li:not(.exclude) {
    position: relative;
    color: white;
    padding: 12px 20px;
    font-size: 1.6rem;
    display: block;
    transition: color 0.3s;
    white-space: nowrap;
    width: 180px;
    /* 180px を上書き */

}

/* `.exclude` クラスがついたものには width を適用しない */
.submenu-wrapper .submenu li.exclude {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}



/*
.submenu-wrapper .submenu li a {
    position: relative;
    color: white;
    padding: 12px 20px;
    font-size: 1.6rem;
    display: block;
    transition: color 0.3s;
    white-space: nowrap;
    width: 180px;
} */



/* `.submenu` のホバー時 */
.submenu li a:hover {
    font-weight: bold;
}

/* メニューアイテム */
.menu-item {
    font-size: 1.8rem;
}


/* `.submenu-wrapper` に `mouseleave` しても消えないようにする */
.submenu-wrapper:hover {
    opacity: 1;
    visibility: visible;
}

/* 言語切り替えボタン */
.lang-switch {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
    gap: 10px;
    position: relative;
    padding-left: 15px;
    line-height: 1.2;
    transition: transform 0.3s ease-in-out;
    ;
}

/* 擬似要素で左側に白の縦線を追加 */
.lang-switch::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    /* 縦方向中央揃え */
    width: 2px;
    /* 縦線の太さ */
    height: 40px;
    /* 縦線の長さ */
    background-color: white;
    /* 縦線の色 */
}

.lang-switch:hover {
    font-weight: 700;
    transform: scale(1.005);
}

/* `.header-buttons` のレイアウト調整 */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
    padding-right: 30px;
    margin-bottom: 2rem;
}

.contact-button {
    display: flex;
    align-items: center;
    background: white;
    color: #d01e28;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 8px 15px;
    border-radius: 0 0px 25px 25px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, color 0.3s ease;
    /* 変更をスムーズに */
    max-width: 370px;
}

.contact-button span {
    display: block;
    font-size: 1.5rem;
}

.contact-button:hover {
    background: #d01e28;
    color: white;
}

.contact-button img {
    transition: -webkit-filter 0.3s ease;
    transition: filter 0.3s ease;
    transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

/* アイコンの色が影響する場合 */
.contact-button:hover img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}

.contact-button img {
    margin-right: 8px;
    width: 40px;
    height: 40px;
}


/* リンクボタン */
/* MOREボタンのスタイル */
.more-button {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 35px 0 10px;
    background: black;
    color: white;
    font-size: 1.9rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    z-index: 10;
    transition: all 0.3s ease;
    /* スムーズなアニメーション */
}

.more-button::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    background: #d01e28;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.more-button .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.0rem;
    right: 10px;
    /* 初期位置 */
    transition: right 0.3s ease;
    /* 右方向のアニメーション */
}

/* ホバー時に矢印を 5px 右に動かす */
.more-button:hover .arrow {
    right: 2px;
    /* 5px 右へ */
}

/* タイトル */
.service-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-bar {
    width: 5px;
    height: 50px;
    background-color: #D70C18;
}

.service-title h2 {
    font-size: 1.5rem;
    color: #D70C18;
    line-height: 1.4;
    font-weight: normal;
}

.tx_red {
    color: #E61F19;
}

.tx_b {
    color: #231815;
}

.tx_w {
    color: #ffffff;
}

.link_recruit {
    width: 90px;
    position: relative;
}

.link_recruit::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(/asset/img/icon_link_box.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.link_recruit_w {
    position: relative;
}

.link_recruit_w::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(/asset/img/icon_link_box.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}

/* フッター全体 */
.footer {
    background: #D8E1EB;
    padding: 40px 30px;
    font-size: 0.9rem;
}

/* 上部のナビ部分 */
.footer-top {
    max-width: 1700px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-bottom: 20px;

}

.footer_wrp {
    max-width: 1700px;
    width: 100%;
    border-bottom: 1px solid #aaa;
    margin-inline: auto;
}

/* 各カテゴリ */
.footer-column {
    min-width: 150px;
}

.footer-column h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column h3:hover {
    opacity: 0.8;
}

/* リンクリスト */
.footer-column ul {
    list-style: none;
    padding: 0;
    font-size: 2rem
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    text-decoration: none;
    color: black;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #d01e28;
}

/* フッター下部 */
.footer-bottom {
    max-width: 1700px;
    margin: auto;
    display: flex;
    text-align: center;
    padding-top: 20px;
    justify-content: space-between;
}

/* フッター下部のリンク */
.footer-links {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    list-style: none;
    padding: 0;
    font-size: 1.7rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links li a {
    text-decoration: none;
    color: black;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #d01e28;
}

.footer-links li:not(:last-child)::after {
    content: "｜";
    /* 区切り線 */
    margin-left: 8px;
    /* 縦線と文字の間隔 */
}

/* 著作権表示 */
.copyright {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    color: #333;
    font-size: 1.2rem;
    align-self: end;
    margin-bottom: 0;
}

@media (max-width: 1700px) {


    .footer-column h3 {
        font-size: 1.5rem;
    }

    .footer-column ul {
        font-size: 1.2rem;
    }

    .footer-top {
        max-width: 1160px;
    }

    .footer-column {
        min-width: 60px;
    }

    .footer {
        padding: 30px 60px;
    }

    .footer-links {
        font-size: 1.2rem;
    }

    .footer-bottom {
        max-width: 1160px;
    }

}

@media (max-width: 1175px) {

    .footer {
        padding: 30px 20px;
    }


}

@media (max-width: 1145px) {

    .nav ul li a {
        padding: 5px 5px;
    }
}

@media (max-width: 1100px) {
    .footer-links li:not(:last-child)::after {
        content: "｜";
        margin-left: 2px;
    }

    .footer {
        padding: 30px 10px;
    }
}

@media (max-width: 960px) {

    .footer-links li:not(:last-child)::after {
        content: "｜";
        margin-left: 8px;
    }

    .footer {
        padding: 30px 60px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: left;
    }

    .footer-column ul {
        padding-left: 2rem;
    }

    .footer-column ul li {
        padding-bottom: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* SP用の設定 (表示) */
@media screen and (max-width: 767px) {
    .footer_wrp {
        width: 100%;
        border-bottom: none;
    }
}


@media (max-width: 1024px) {
    .logo img {
        max-width: 145px;
    }

    /* ==============================
   🟢 ヘッダーのデザイン変更（固定赤背景）
================================= */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: transparent;
        /* 初期は透明 */
        transition: background 0.3s ease;
        z-index: 1000;

    }

    /* メニューが開いたらヘッダーを赤に */
    .header.open {
        background: #D70C18 !important;
    }

    /* ==============================
   🟢 ナビゲーションメニュー（下からスライドイン）
================================= */
    /* ナビゲーションメニュー（右からスライドイン & ヘッダー分下げる） */
    .sp-nav {
        position: fixed;
        top: 59px;
        right: -100%;
        /* 右に隠しておく */
        width: 90%;
        height: calc(100% - 60px);
        /* ヘッダーの高さ分を引いた高さ */
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        display: flex;
        flex-direction: column;
        transition: right 0.3s ease, top 0.3s ease;
        /* 右からスライドイン & 上下の移動 */
        z-index: 999;
        /* スクロール可能にするための追加 */
        overflow-y: auto;
    }

    /* メニューを開いたとき */
    .sp-nav.open {
        right: 0;
        /* 右からスライドイン */
        top: 59px;
        /* ヘッダー分下げる */
    }


    /* ヘッダーの背景色変更（スライドインと同時に） */
    .header {
        transition: background 0.3s ease;
        /* 背景色変更をスムーズに */
    }

    .header.open {
        background: #D70C18 !important;
        /* メニューが開いたときに赤に */
    }

    /* ==============================
   🟢 ハンバーガーメニューのデザイン
================================= */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        /* 横方向の中央揃え */
        width: 50px;
        /* 40px → 50px に拡大して調整 */
        height: 40px;
        cursor: pointer;
        z-index: 1001;
        background: #D70C18;
        padding: 10px;
        transition: background 0.3s ease;
        position: absolute;
        top: 10px;
        /* 位置を調整 */
        right: 20px;
    }

    .hamburger.open {
        background: #fff;
    }

    /* 3本線 */
    .hamburger span {
        display: block;
        height: 4px;
        width: 30px;
        background: white;
        transition: all 0.3s ease;
    }

    /* 「×」に変化するアニメーション */
    .hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: #D70C18;
        /* バツの色を赤に */
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: #D70C18;
        /* バツの色を赤に */
    }

    /* ヘッダーコンテナ（初期状態） */
    .header-container {
        transition: background 0.3s ease;
    }

    /* メニューが開いたときに背景を赤に */
    .header.open .header-container {
        background: #D70C18;
    }


    /* ==============================
   🟢 メニュー項目のデザイン
================================= */
    .sp-nav ul {
        list-style: none;
        padding: 0;
    }

    .sp-nav .menu-item {
        padding: 10px 20px;
    }

    .sp-nav .menu-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        color: white;
        text-decoration: none;
        cursor: pointer;
    }


    .menu-link:last-child::before {
        display: none;
        /* 最後の要素の::beforeを非表示にする */
    }

    /* サブメニュー */
    .submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        display: none;
    }

    .submenu li {
        padding: 8px 0;
        padding-left: 65px;
        width: 100%;

    }

    .submenu a {
        color: white;
        text-decoration: none;
        font-size: 16px;
    }

    /* サブメニュー開いたときの表示 */
    .menu-item.open .submenu {
        display: block;
    }

    .submenu li a {
        padding: 0;
    }

    .menu-link-wrp {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .menu-link {
        flex: 1;
        font-size: 18px;
        color: white;
        text-decoration: none;
        padding: 10px 20px;
        display: block;
    }

    /* アコーディオンの矢印ボタン */
    .accordion-toggle {
        font-size: 18px;
        color: white;
        background: none;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        min-width: 44px;
        min-height: 44px;
    }

    /* 矢印左ver */

    .accordion-toggle {
        font-size: 18px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }

    .menu-link-wrp {
        display: flex;
        align-items: center;
        min-height: 44px;
    }

    .menu-link {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }

    .menu-link-wrp.no-toggle::before {
        content: "";
        /* 擬似要素で空の表示 */
        display: inline-block;
        width: 44px;
        /* ▶ボタンと同じ幅 */
        height: 1px;
        /* 高さは不要 */
    }


}

@media (max-width: 768px) {
    .nav ul li a {
        padding: 0;
    }
}

/* PC専用（PCで表示、SPでは非表示） */
.pc_only {
    display: block;
    /* デフォルトで表示 */
}

@media (max-width: 1024px) {
    .pc_only {
        display: none !important;
        /* SP（1024px以下）では非表示 */
    }
}

/* SP専用（SPで表示、PCでは非表示） */
.sp_only {
    display: none;
    /* デフォルトで非表示 */
}

@media screen and (max-width: 1024px) {
    .sp_only {
        display: block !important;
        /* SP（1024px以下）では表示 */
    }
}

/* 下層ページ */

/* ヘッダーサブ */
.header-sub {
    background: #D70C18;
}

.header-sub .header-container {
    background: #D70C18;
}


/* ページタイトル部分 */
.page-title {
    background-image: url(/asset/img/page_ttl.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 60px 20px 20px;
    color: #333;
    font-size: 3.0rem;
    font-weight: bold;
    max-height: 340px;
}

.page-title p {
    font-size: 1.8rem;
    font-weight: normal;
}

/* pがない場合の .page-title のパディングを調整 */
.page-title:not(:has(p)) {
    padding: 60px 20px;
    /* pがない場合にパディングを増やす */
}


/* コンテンツエリア */
.content-wrapper {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-sub {
    padding-top: 80px;
    /* ヘッダーの高さ分余白を確保 */
}

@media (max-width: 1024px) {
    .page-sub {
        padding-top: 55px;
        /* ヘッダーの高さ分余白を確保 */
    }

    .page-title {
        background-image: url(/asset/img/page_ttl_sp.jpg) !important;
    }
}

/* 下層ページボタン */
.page-btn-wrapper {
    display: flex;
    justify-content: center;
    /* 中央揃え */
    gap: 100px;
    /* ボタン間の間隔 */
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #D80C18;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 6px 36px 8px;
    text-decoration: none;
    transition: 0.3s;
}

/* 擬似要素で矢印を追加 */
.page-btn::after {
    content: "";
    width: 10px;
    height: 10px;
    border-width: 2px 2px 0 0;
    position: absolute;
}

/* 下の黒い線 */
.page-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    transition: 0.3s;
}

/* ホバーで黒い線を消す */
.page-btn:hover::after {
    opacity: 0;


}

/* 左矢印（←） */
.page-btn--prev::before {
    content: "←";
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

/* 右矢印（→） */
.page-btn--next::before {
    content: "→";
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {

    .page-title {
        padding: 30px;

    }

    .page-title h1 {
        font-size: 2rem;
        margin: 0;
    }

    .page-title p {
        font-size: 1.0rem;
        margin: 0;
    }

    /* ページボタン */
    .page-btn-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 80px 0;
    }

    .page-btn {
        display: flex;
        align-items: center;
        position: relative;
        padding: 0 35px 0 10px;
        background: black;
        color: white;
        font-size: 1.8rem;
        font-weight: bold;
        text-decoration: none;
        overflow: hidden;
        z-index: 10;
        transition: all 0.3s ease;
        justify-content: flex-start;
        max-width: 240px;
        width: 100%;
        min-height: 36px;
    }

    .page-btn--prev::before {
        content: "→";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2.0rem;
        right: auto;
        left: 13rem;
    }

    .page-btn--next::before {
        content: "→";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2.0rem;
        right: auto;
        left: 9rem;
    }

    /* ボタンの装飾 (背景の赤い部分) */
    .page-btn::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        width: 20%;
        height: 100%;
        background: #d01e28;
        -webkit-clip-path: polygon(100% 0, 100% 100%, 0% 100%);
                clip-path: polygon(100% 0, 100% 100%, 0% 100%);
        z-index: -1;
    }

}

.button_top {
    background-color: #D70C18;
    color: white;
    font-size: 16px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: .3s;
    margin: 0 60px 30px auto;
    border: 2px solid #D70C18;
}

.button_top:hover {
    background-color: white;
    color: #D70C18;
}

.button_top::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(-45deg);
    transition: .3s;
}

.button_top:hover::before {
    border-top: 2px solid #D70C18;
    border-right: 2px solid #D70C18;
}

/* 202603 Added customer harassment policy */
@media (max-width: 960px) {
    .footer {
        padding: 30px 50px;
    }
}

/* 20260401 Corporate purpose update */
@media (max-width: 1400px) {
    .nav ul li {
        margin:0 10px;
    }
}
@media (max-width: 1200px) {
    .nav ul li {
        margin:0 5px;
    }
}