:root {
    --biz-red: #E60012;
    --biz-purple: #A50082;
    --black: #333;
    --pale-pink: #FFF7F7;
    --light-gray: #F2F2F2;
}

html {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

body {
    /* 右の余白対策 */
    overflow-x: hidden;
    max-width: 100%;

    font-family:"Noto Sans JP", "ヒラギノ角ゴシック", "メイリオ", sans-serif;
}

.page {
    /* html, body の hidden を打ち消す */
    overflow: auto;
}

.biz-btn {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: var(--Hi-Fi-Background---Primary, #FFF);
}

/* 60%透過 */
.btn-hover-60:hover {
    opacity: 0.6;
    text-decoration: none;
}

.btn-hover-red {
    color: var(--Hi-Fi-Tetx---Body, #1A1A1C);
}
/* 赤 */
.btn-hover-red:hover {
    color: var(--Hi-Fi-MUFG-Red, #E60000);
    text-decoration: none;
}

.text-normal {
    color: var(--Hi-Fi-Tetx---Body, #1A1A1C);
}

.text-red {
    color: var(--Hi-Fi-MUFG-Red, #E60000);
}

.text-white {
    color: var(--Hi-Fi-Text---On-Fill, #FFF);
}

/*トップへ戻るのフローティングボタン*/
.back-top{
    position: fixed;
    z-index: 9999;
    bottom: 5vh;
    background: var(--Hi-Fi-Biz-LENDING---Gradation, linear-gradient(90deg, #A50082 0%, #E60000 100.01%));
    width: 48px;
    height: 48px;
    right: 16px;
    border-radius: 50%;
}

.back-top::before{
    content:"";
    border-right: 8px solid transparent;
    border-bottom: 8px solid #FFF;
    border-left: 8px solid transparent;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    position: absolute;
}

.back-top:hover{
    opacity: .6;
}

/***** 改行 *****/
.br-sp{
    display: none;
}

@media screen and (max-width: 599px){
    .br-sp{
        display: block;
    }
}

/***** header1 下にスクロールで隠れる *****/
.biz-top-header1 {
    border-bottom: 5px solid var(--Hi-Fi-MUFG-Red, #E60000);
    padding-top: 8px;
    padding-bottom: 8px;
}
/* MUFG、三菱ＵＦＪ銀行のロゴ　*/
.biz-top-header1 img {
    max-height: 37px;
    max-width: 200px;
}

/***** header 常に表示 *****/
.biz-top-header {
    background-color: #fff;
    border-bottom: 1px solid var(--light-gray);
}

.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.biz-top-header-inner {
    display: flex;
    flex-direction: row;
    gap: 16px;

    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0px;
    padding-right: 0px;
}

.nav-logo {
    width: 200px;
}

.nav-toggler {
    height: 32px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-nav a {
    color: var(--Hi-Fi-Tetx---Body, #1A1A1C);
    text-align: center;

    /* Hi-Fi/本文L - Regular */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 27.2px */
}

.signup {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;

    border-radius: 8px;
    background: var(--Hi-Fi-Biz-LENDING---Gradation, linear-gradient(90deg, #E60000 0%, #A50082 100.01%));
}

.signup>a {
    color: var(--Hi-Fi-Text---On-Fill, #FFF);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
}

.login {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;

    border-radius: 8px;
    border: 1px solid var(--Hi-Fi-MUFG-Gray, #5A5A5A);
    background: var(--Hi-Fi-Background---Primary, #FFF);
}

/* SPだけ表示する */
#menu {

}

.menu-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--light-gray);
}


/***************** articles *************************/
.articles {
    padding-top: 80px;

    background-color: var(--Hi-Fi-Background---Primary, #FFF);

    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;

    max-width: 1200px;
}

.articles-top-img {

}
.img-container {
    position: relative;
    text-align: center;
}
.img-container img {
    width: 100%;
    height: auto;
}
.img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7); /* 白の半透明 */
    padding: 64px;
    border-radius: 5px;

    width: 85%; /* 幅を画像の70％に設定 */
}

.img-overlay p {
    margin: 0;
    color: black; /* テキストの色 */
    line-height: 1.2; /* 行間を広げる */

    font-size: 48px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .img-overlay {
        padding: 32px;
    }
    .img-overlay p {
        font-size: 18px;
    }
}

/* .articles-top-img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
} */
.articles-content {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;

    padding-left: 16px;
    padding-right: 16px;
}
.articles-introduction {
    margin-top: 48px;
}
.articles-section {
    margin-top: 32px;

}
.articles-content {
    margin-top: 24px;
}
.articles-content div {
    margin-top: 16px;
}
.articles-content-feature {
    font-weight: bold; /* 太字 */
    text-decoration: underline; /* 下線 */
}

.top-section-title {
    border-left: 5px solid var(--Hi-Fi-MUFG-Red, #E60000); /* 左側に太くて赤のボーダー */
    border-bottom: 2px solid var(--Hi-Fi-MUFG-Gray, #dee2e6); /* 下側に細い灰色のボーダー */
    padding-left: 10px; /* テキストとボーダーの間にスペースを追加 */
}
.articles-sub-section {
    padding-left: 16px;
    padding-right: 16px;
}
.articles-sub-section ul {
    padding-left: 16px;
    margin-bottom: 0;
}

.articles-sub-section-title {
    font-weight: bold; /* 太字 */
    border-bottom: 2px solid var(--Hi-Fi-MUFG-Gray, #dee2e6); /* 下側に細い灰色のボーダー */
    padding-left: 10px; /* テキストとボーダーの間にスペースを追加 */

    margin-bottom: 8px;
}
.articles-conclusion {
    padding-top: 48px;

}
.articles-end {
    padding-top: 48px;

}
.articles-end-img {
    padding-top: 48px;
}
.articles-end-img a:hover {
    opacity: 0.6; /* 透明度を60%に設定 */
}
.articles-end-img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/***************** フッター *************************/
.biz-top-footer {
    margin-top: 64px;
    font-size: 1.4rem;
}

.biz-top-footer .footerNav {
    margin-bottom: 10px;
}

.biz-top-footer .footerNav li {
    display: inline-block;
    margin-right: 40px;
}

.biz-top-footer .footerNav li:nth-last-child(1),
.biz-top-footer .footerNav li:nth-last-child(2) {
    margin-right: 0;
}

.biz-top-footer .footerNav li a {
    color: #333;
    text-decoration: none;
}

.biz-top-footer .footerNav li a:hover {
    text-decoration: underline;
}

.biz-top-footer .footerNav li a.footerBlank {
    position: relative;
    padding-right: 18px;
}

.biz-top-footer .footerNav li a.footerBlank:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -6px;
    background: url(img/top/window.png) no-repeat 0 0;
    background-size: 100%;
}

@media screen and (max-width: 599px) {
    .biz-top-footer {
        font-size: 1.2rem;
        text-align: center;
    }

    .biz-top-footer .footerNav {
        margin-bottom: 0;
    }

    .biz-top-footer .footerNav li {
        display: block;
        float: none;
        margin-right: 0;
    }

    .biz-top-footer .footerNav li a {
        display: block;
        position: relative;
        padding: 3% 4%;
        border-bottom: 1px solid #ccc;
        font-size: 14px;
    }

    .biz-top-footer .footerNav li a:before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        position: absolute;
        top: 50%;
        right: 6%;
        margin-top: -4px;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .biz-top-footer .footerNav li a.footerBlank:before {
        right: 5.38462%;
        border: none;
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .biz-top-footer .footerNav li:last-child a {
        border: none;
    }
}

.red-hr {
    border-top: 4px solid #E60012;
    margin: 0;
}

.biz-top-company-content {
    padding: 40px 0;
    max-width: 880px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    line-height: 2.5;
    font-size: 12px;
}

@media screen and (max-width: 599px) {
    .biz-top-company-content {
        text-align: left;
    }
}

.biz-top-footer-links {
    padding: 40px 0;
    max-width: 880px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    line-height: 2;
    font-size: 12px;
}

@media screen and (max-width: 599px) {
    .biz-top-footer-links {
        padding-top: 0;
        width: 100%;
        text-align: left;
    }
}

.biz-top-footer-content {
    /* padding: 40px 0; */
    margin: 0;
    display: flex;
    justify-content: space-between;
    max-width: 880px;
    width: 90%;
    margin: 0 auto;
}

/* @media screen and (max-width: 599px) {
    .biz-top-footer-content {
      flex-flow: column; }
      .biz-top-footer-content-service .biz-top-footer-content-inner {
        max-width: 375px;
        margin: 0 auto; } } */

.biz-top-footer-title {
    font-weight: bold;
    margin-bottom: 16px;
}

.biz-top-footer-sub-title {
    color: var(--Hi-Fi-Tetx---Body, #1A1A1C);

    /* Hi-Fi/見出し5 */
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 30px */
}

.biz-top-footer-description {
    color: var(--Hi-Fi-Tetx---Body, #1A1A1C);

    /* Hi-Fi/本文L - Regular */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 27.2px */
}

@media screen and (max-width: 599px) {
    .biz-top-footer-description {
        text-align: left;
    }
}

.biz-top-footer-link {
    margin-bottom: 16px;
    position: relative;
    padding-right: 18px;
}

.biz-top-footer-link a>img {
    width: 12px;
    height: 12px;
    vertical-align: middle;
}

@media screen and (max-width: 599px) {
    .biz-top-footer-link {
        text-align: left;
    }
}

@media screen and (max-width: 599px) {
    .biz-top-footer-list {
        display: flex;
        flex-wrap: wrap;
        font-size: 1.1rem;
        justify-content: space-around;
    }
}

.biz-top-footer-list {
    padding-left: 0;
    list-style: none;
    color: var(--Hi-Fi-Tetx---Body, #1A1A1C);

    /* Hi-Fi/本文L - Regular */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 27.2px */
}

.biz-top-footer-list-item {
    margin-bottom: 8px;
}

/*フッターのリンク*/
.biz-top-footer-content-inner a {
    color: inherit;
    text-decoration: none;
}

/*フッターのリンクホバー*/
.biz-top-footer-list a:hover {
    color: #E60012;
}

/***** ufjポータル *****/
.ufj-portal {
    /* margin-top: 48px; */
    align-items: center;
    width: 260px;
}

@media screen and (max-width: 599px) {
    .ufj-portal {
        margin-top: 3px;
    }
}

.ufj-portal:hover {
    opacity: .6;
}

.ufj-portal img {
    width: 200px;
    border: 1px solid #F2F2F2;
    padding: 4px 16px;
}

.biz-top-footer-list .logo-ufj {
    margin-bottom: 24px;
}

/***** mileon *****/
.mileon {
    margin-top: 16px;
    align-items: center;
    width: 260px;
}

.mileon:hover {
    opacity: .6;
}

.mileon>img {
    width: 200px;
}

@media screen and (max-width: 599px) {
    .mileon {
        margin-top: 3px;
    }
}

/*コピーライト*/
.copyright {
    color: var(--Hi-Fi-Tetx---Body, #1A1A1C);
    text-align: center;

    /* Hi-Fi/本文M - Regular */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 23.8px */
}