@charset "UTF-8";
.global-banner {
    background: url(../../img/usage-fees/main-banner.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 620px;
    display: flex
;
    justify-content: center;
    align-items: center;
}

.global-banner h1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-weight: bold;
}
.global-banner h1 .title-en {
   font-size: 2.2rem;
   letter-spacing: 6px;
   display: inline-block;
}
.global-banner h1 .title-ja {
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
    .global-banner {
        height: 260px;
    }

    .global-banner h1 .title-en  {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .global-banner h1 .title-ja {
        font-size: 1.4rem;
    }
}

.detail-box {
    margin: 100px 0;
}

.content-box {
    margin-bottom: 90px;
}

.title-box .date-time{
font-size: 14px;
line-height: 1;
display: inline-block;
}

.single-title {
    margin-top: 10px;
    padding-bottom: 18px;
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 40px;
    border-bottom: 1px solid #d9d9d9;
}

.inner960 {
    width: 92%;
    max-width: 960px;
    margin: 0 auto;
}

.button01 {
    display: flex;
    justify-content: center;
}

.button01 a {
    text-align: center;
    position: relative;
    display: block;
    width: 320px;
    height: 80px;
    border-radius: 80px;
    background: #007031;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 80px;
    color: #fff;
    transition: 0.3s all;
}
.button01 a:hover,
.button01 a:focus {
background: #a48840;
}
.button01 a:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    right: 40px;
    margin: auto;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}