@charset "utf-8";

/*----------------------------------------------------------------------------------------------------------------------------

reset & root set

----------------------------------------------------------------------------------------------------------------------------*/

/* reset
--------------------------------------------------------------*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
    font-size: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header,
footer,
main,
aside,
picture {
    display: block;
}

/* iOS Safari tap reset */
body {
    -webkit-tap-highlight-color: transparent;
}

/* print set
--------------------------------------------------------------*/
@media print {
    html {
        width: 1280px;
    }

    .header {
        position: relative !important;
    }

    /* fixheader clear */
}

/* root set
--------------------------------------------------------------*/

/* color */
:root {
    --cl-key01: #489320;
    --cl-key02: #6db33b;
    --cl-key03: #437a26;
    --cl-orange: #ec7300;
    --cl-txt: #333;
    --cl-wh: #fff;
    --cl-bg: #fff;
}

/* fixheader height */
:root {
    --header-height: 6rem;
    --container-width: calc(100vw - 4rem);
}

@media print,
screen and (min-width: 640px) {
    :root {
        --header-height: 0;
        --container-width: 91rem;
    }
}

/* font set */
:root {
    /* font: style weight size / line-height family */
    --ff-base: normal 400 1.4rem / 1.6 "Noto Sans JP", sans-serif;
    --ff01w: 700;
}

/*----------------------------------------------------------------------------------------------------------------------------

base set

----------------------------------------------------------------------------------------------------------------------------*/
html {
    font-size: calc(100vw / 37.5);
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    color: var(--cl-txt);
    background-color: var(--cl-bg);
    font: var(--ff-base);
}

a {
    color: var(--cl-txt);
    outline: none;
    text-decoration: none;
}

.page-wrapper {
    overflow: hidden;
}

@media print,
screen and (min-width: 640px) {
    html {
        font-size: calc(100vw / 128);
    }

    body {
        font-size: 1.6rem;
    }
}

@media print,
screen and (min-width: 1280px) {
    html {
        font-size: 62.5%;
    }

    body {
        font-size: 1.6rem;
    }

    a {
        transition: 0.5s;
    }

    a:hover {
        opacity: 0.7;
    }

    button:hover {
        opacity: 0.7;
    }
}

/*----------------------------------------------------------------------------------------------------------------------------

utility & inview set

----------------------------------------------------------------------------------------------------------------------------*/

/* utility - base
---------------------------------------------------- */

/* utility - base responsive */
.u-inner {
    max-width: 110rem;
    margin: 0 auto;
    width: 90%;
}

.u-only-pc {
    display: none;
}

@media print,
screen and (min-width: 640px) {
    .u-only-sp {
        display: none !important;
    }

    .u-only-pc {
        display: inherit;
    }
}

/* utility - base */
.u-base-font {
    font-family: var(--ff-base);
    font-weight: var(--ff01w);
}

.u-cl-txt {
    color: var(--cl-txt);
}

.u-cl-wh {
    color: var(--cl-wh);
}

.u-cl-key01 {
    color: var(--cl-key01);
}

.u-cl-key02 {
    color: var(--cl-key02);
}

.u-iframebox {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.u-iframebox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.u-w30 {
    width: 30% !important;
}

.u-w50 {
    width: 50% !important;
}

.u-mt01 {
    margin-top: 1rem !important;
}

.u-mt02 {
    margin-top: 2rem !important;
}

.u-mt03 {
    margin-top: 3rem !important;
}

.u-mb01 {
    margin-bottom: 1rem !important;
}

.u-mb02 {
    margin-bottom: 2rem !important;
}

.u-mb03 {
    margin-bottom: 3rem !important;
}

.u-center {
    text-align: center;
}

/* iv-animation
---------------------------------------------------- */
.iv-fade {
    opacity: 0;
    transition: 0.8s;
}

.iv-fade._view {
    opacity: 1;
}

.iv-up_fade {
    opacity: 0;
    transform: translate(0, 6rem);
    transition: 0.8s;
}

.iv-delay{
    transition-delay: 0.5s;
}


.iv-up_fade._view {
    opacity: 1;
    transform: translate(0, 0);
}

.iv-down_fade {
    opacity: 0;
    transform: translate(0, -6rem);
    transition: 0.8s;
}

.iv-down_fade._view {
    opacity: 1;
    transform: translate(0, 0);
}

.iv-left_fade {
    opacity: 0;
    transform: translate(-6rem, 0);
    transition: 0.8s;
}

.iv-left_fade._view {
    opacity: 1;
    transform: translate(0, 0);
}

.iv-right_fade {
    opacity: 0;
    transform: translate(6rem, 0);
    transition: 0.8s;
}

.iv-right_fade._view {
    opacity: 1;
    transform: translate(0, 0);
}

/*----------------------------------------------------------------------------------------------------------------------------

base layout

----------------------------------------------------------------------------------------------------------------------------*/

/* header
--------------------------------------------------------------*/

/* header */
.header {
    width: 100vw;
    height: 5rem;
    padding: 0.8rem 2rem;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: white;
    top: 0;
    left: 0;
}

.header-logo {
    width: 13rem;
}

.header-mobile-icon {
    width: 3.7rem;
}

@media print,
screen and (min-width: 640px) {
    .header {
        position: relative;
        height: 10rem;
        padding: 1.8rem 3rem;
    }
    .header-logo {
        width: 18.8rem;
    }

    .header-right-tips{
        font-size: 1.2rem;
        margin-bottom: .6rem;
    }

    .header-right a{
        display: flex;
        gap: 1.2rem;
        align-items: center;
    }

    .header-right a span{
        font-size: 3.2rem;
        line-height: 4rem;
        font-weight: 700;
        color: var(--cl-key01);
    }
}

/* footer
--------------------------------------------------------------*/

/* footer */
.footer {
    background-color: #595757;
    padding: 5.7rem 0 3rem 0;
    position: relative;
    color: white;
}

.page-top {
    position: absolute;
    color: white;
    background-color: #595757;
    padding: 0.6rem 1.3rem 1rem 1.3rem;
    border-radius: 0.6rem;
    right: 2rem;
    top: -3rem;
}

.page-top a {
    color: white;
    font-size: 1rem;
}

.footer-tip {
    font-size: 1.2rem;
    color: white;
    font-weight: 400;
}

.footer h2 {
    font-size: 4rem;
    line-height: 5.6rem;
    padding: 0.7rem 0 1.2rem 0;
}

.footer .line {
    font-size: 1.4rem;
    font-weight: 400;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid white;
    margin-bottom: 0.8rem;
}

.footer .company-info {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.6rem;
}

.footer-logo img {
    width: 100%;
}

.copyright {
    text-align: left;
    font-size: 1rem;
    color: #fff;
    margin-top: 2.6rem;
}

@media print,
screen and (min-width: 640px) {

    .footer {
        padding: 3rem 0 1rem 0;
        position: relative;
    }
    

    .footer .u-inner{
        
        position: relative;
    
    }
    .page-top {
        padding: 1.4rem 5rem 2rem 5rem;
        border-radius: 0.6rem;
        right: 3rem;
        top: -5rem;
    }
    
    .page-top a {
        font-size: 1.8rem;
    }
    
    .footer-tip {
        font-size: 1.4rem;
    }
    
    .footer h2 {
        font-size: 4.6rem;
        line-height: 7rem;
        padding: 0;
    }
    
    .footer .line {
        font-size: 1.8rem;
        font-weight: 400;
        padding-bottom: .8rem;
        margin-bottom: .8rem;
        max-width: 48.4rem;
    }
    
    .footer .company-info {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
    
    .footer-logo img {
        width: 32rem;
        position: absolute;
        top: 0;
        right: 0;
    }
    
    .copyright {
        text-align: center;
        font-size: 1.4rem;
        color: #fff;
        margin-top: 0;
    }

}

.section-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.section-title-icon {
    width: 5rem;
    position: absolute;
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cl-txt);
    text-align: center;
    line-height: 3.8rem;
}

.english-title {
    color: var(--cl-key01);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0.6rem;
}

@media print,
screen and (min-width: 640px) {
    .section-title-icon {
        width: 7.8rem;
        top: -12rem;
    }

    .section-title h2 {
        font-size: 3.8rem;
        line-height: 5.8rem;
    }

    .english-title {
        font-size: 1.4rem;
        margin-top: 0.6rem;
    }
}

/* kv
--------------------------------------------------------------*/

.kv {
    width: 100vw;
    height: 106vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.kv .kv-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 4.5rem;
    text-align: center;
}

.kv-subtitle {
    font-size: 1.6rem;
    color: #fff;
    margin-top: 2rem;
    text-align: center;
    font-weight: 700;
}

.kv .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.kv .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media print,
screen and (min-width: 640px) {
    .kv {
        height: 50rem;
        margin-top: 0;
    }

    .kv .kv-title {
        font-size: 4.6rem;
        line-height: 7rem;
    }

    .kv-subtitle {
        font-size: 3.2rem;
        margin-top: 3.2rem;
    }

    .kv .background img {
        height: 50rem;
    }
}

/* promote
--------------------------------------------------------------*/

.promote {
    position: relative;
    width: 100%;
    height: 146px;
    background-color: #6db33b;
    margin-bottom: 10rem;
}

.promote img {
    width: 13rem;
    height: 13rem;
    position: absolute;
    max-width: 130px;
}

.promote-icon-one {
    left: 50%;
    top: -3rem;
    transform: translateX(-50%);
}

.promote-icon-two {
    left: 3rem;
    bottom: -6rem;
}

.promote-icon-three {
    right: 3rem;
    bottom: -6rem;
}

@media print,
screen and (min-width: 640px) {
    .promote {
        height: 29.4rem;
        background-image: linear-gradient(to bottom, #6db33b 60%, white 60.1%);
        margin-bottom: 8rem;
        display: flex;
        justify-content: center;
        gap: 6.5rem;
        padding-top: 3rem;
    }

    .promote img {
        width: 26rem;
        height: 26rem;
        position: relative;
        max-width: initial;
    }

    .promote-icon-one {
        left: 0;
        top: 0;
        transform: translateX(0);
    }

    .promote-icon-two {
        left: 0;
        bottom: 0;
    }

    .promote-icon-three {
        right: 0;
        bottom: 0;
    }
}

/* anchor-group
--------------------------------------------------------------*/

.anchor-group {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.anchor {
    border: 2px solid var(--cl-key01);
    position: relative;
    padding: 2.3rem 2rem 1rem 2.7rem;
    font-size: 1.1rem;
    text-align: center;
}

.anchor-icon {
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
    width: 4.2rem;
    background-color: white;
    padding: 0.6rem;
}

.anchor-arrow {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    margin-top: 0.8rem;
}

@media print,
screen and (min-width: 640px) {
    .anchor-group {
        gap: 4rem;
    }

    .anchor {
        padding: 2rem 11rem;
        font-size: 2.4rem;
        text-align: left;
    }

    .anchor-icon {
        position: absolute;
        left: 3rem;
        width: 5.2rem;
        padding: 0;
    }

    .anchor-arrow {
        position: absolute;
        left: auto;
        right: 3rem;
        top: 50%;
        transform: translate(0 -50%);
        width: 2rem;
        margin-top: 0;
    }
}




/* top image group
--------------------------------------------------------------*/

.top-image-group{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.top-image-group .image-item .item-title{
    font-size: 2.6rem;
    margin-bottom: 1.6rem;
    font-weight: 700;
    color: var(--cl-key01);
    text-align: center;
}

.top-image-group .image-item .left-image{
    width: 25rem;
}

.top-image-group .image-item .right-image{
    width: 25rem;
}

@media print,
screen and (min-width: 640px) {

        
    .top-image-group{
        gap: 8rem;
        margin-bottom: 8rem;
        flex-direction: row;
    }

    .second-item{
        padding: 0 2rem;
    }

    .top-image-group .image-item{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .top-image-group .image-item .item-title{
        font-size: 3.2rem;
    }

    .top-image-group .image-item .left-image{
        width: 43.5rem;
    }


    .top-image-group .image-item .right-image{
        width: 35rem;
    }

}


/* parking
--------------------------------------------------------------*/

.parking {
    margin-top: 9.6rem;
    padding-top: 2.3rem;
    background-color: #f1f6ee;
    padding-bottom: 6rem;
}

.parking .outer-box {
    background-color: white;
}

.underline-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 4.6rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    line-height: 3.4rem;
}

.underline-title::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 2px;
    background-color: var(--cl-key01);
}

@media print,
screen and (min-width: 640px) {
    .parking {
        margin-top: 11rem;
        padding-top: 8rem;
    }

    .underline-title {
        font-size: 3.2rem;
        line-height: 5.8rem;
        padding-bottom: 3rem;
        margin-bottom: 4rem;
    }

    .underline-title::before {
        width: 4rem;
    }
}

/* advantage
--------------------------------------------------------------*/

.advantage {
    margin-top: 2.3rem;
}

.advantage-img {
    width: 100%;
}

.advantage-tags-list {
    display: flex;
    justify-content: center;
    column-gap: 1.3rem;
    row-gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    top: -5rem;
}

.advantage-tags-list img {
    width: 9rem;
}

.advantage-intro-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
}

.advantage-intro-list .intro-content {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 2rem 1.5rem 2rem;
    background-color: #f5faf2;
    gap: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.advantage-intro-list .intro-content img {
    width: 1.8rem;
    margin-top: 0.5rem;
}

.advantage-tips {
    padding: 4rem 2rem 3rem 2rem;
    font-size: 1.6rem;
    line-height: 2.8rem;
}

@media print,
screen and (min-width: 640px) {
    .advantage {
        margin-top: 4rem;
    }

    .advantage-tags-list {
        column-gap: 4rem;
        top: -5rem;
        margin-bottom: 4rem;
    }

    .advantage-tags-list img {
        width: 15rem;
    }

    .advantage-intro-list {
        padding: 0;
        max-width: 91rem;
        margin: 2rem auto 0 auto;
    }

    .advantage-intro-list .intro-content {
        padding: 1.6rem 2rem;
        gap: 1.4rem;
        font-size: 1.8rem;
    }

    .advantage-intro-list .intro-content img {
        width: 2.6rem;
        margin-top: 0.5rem;
    }

    .advantage-tips {
        font-size: 1.8rem;
        line-height: 3.2rem;
        max-width: 91rem;
        margin: 0 auto;
        padding: 4rem 0 3.5rem 0;
    }
}

/* location
--------------------------------------------------------------*/

.location {
    margin: 0 2rem;
    padding: 2rem;
    border: 4px solid var(--cl-key01);
    margin-bottom: 4.6rem;
}

.location p {
    padding: 2rem 0 1rem 0;
    font-size: 1.6rem;
}

@media print,
screen and (min-width: 640px) {
    .location {
        padding: 2.5rem 4rem;
        max-width: 91rem;
        margin: 0 auto 8rem auto;
        display: flex;
        gap: 6rem;
        position: relative;
        height: 31rem;
    }

    .location p {
        padding: 2rem 0 1rem 0;
        font-size: 1.6rem;
        max-width: 24rem;
    }

    .location .location-img {
        width: 95rem;
        position: absolute;
        right: 0;
        top: 0;
    }
}

/* fee-box
--------------------------------------------------------------*/

.fee-box .fee-title {
    font-size: 3rem;
    line-height: 4.6rem;
    color: var(--cl-key01);
    text-align: center;
    position: relative;
    padding-top: 1.6rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.fee-box .fee-title::before {
    position: absolute;
    content: "";
    top: 0;
    left: 4rem;
    transform: skew(25deg);
    width: 3px;
    height: 5.5rem;
    background-color: var(--cl-key01);
}

.fee-box .fee-title::after {
    position: absolute;
    content: "";
    top: 0;
    right: 4rem;
    transform: skew(-25deg);
    width: 3px;
    height: 5.5rem;
    background-color: var(--cl-key01);
}

.fee-box-inner {
    margin: 4rem 2rem 0 2rem;
    padding: 8rem 2rem .6rem 2rem;
    background-color: var(--cl-key01);
    position: relative;
}

.per-price-box {
    background-color: var(--cl-key02);
    color: white;
    text-align: center;
    font-size: 2.6rem;
    line-height: 3rem;
    width: 19rem;
    height: 9rem;
    padding-top: 1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -2rem;
}

.per-price-box span {
    font-size: 1.6rem;
}

.fee-list {
    border: 2px solid var(--cl-key01);
    padding: 2rem 2rem 0 2rem;
    margin: 0 2rem;
}

.list-title {
    color: var(--cl-key01);
    font-size: 1.4rem;
    font-weight: 700;
}

.fee-list-item {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    width: 20rem;
    border-bottom: 1px solid var(--cl-key01);
    margin: 0 auto;
}

.fee-list-item:last-child {
    border-bottom: none;
}

.fee-tips-list {
    padding: 1rem 2rem;
}

.fee-tips-title {
    font-size: 1.6rem;
    font-weight: 700;
}

.fee-tips-title span {
    color: var(--cl-key01);
}

.fee-tips-box {
    padding: 1.6rem 2rem;
    background-color: #f2f7f0;
    margin: 0.8rem 0 0 0;
    font-size: 1.6rem;
    font-weight: 400;
}


.fee-1, .fee-2{
    margin: 0 auto;
}

.fee-tips-box span {
    font-size: 1.2rem;
}

@media print,
screen and (min-width: 640px) {
    .fee-box {
        width: 91rem;
        margin: 0 auto;
    }

    .fee-box .fee-title {
        font-size: 3.8rem;
        line-height: 5.8rem;
        padding-top: 1.6rem;
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .fee-box .fee-title::before {
        left: 50%;
        transform: skew(25deg) translateX(-18rem);
        height: 6.5rem;
    }

    .fee-box .fee-title::after {
        right: 50%;
        transform: skew(-25deg) translateX(18rem);
        height: 6.5rem;
    }

    .fee-box-inner {
        margin: 4rem 0 0 0;
        padding: 0.5rem 5rem 0.5rem 2rem;
        display: flex;
        gap: 2rem;
        justify-content: flex-end;
        height: 15rem;
    }


    .per-price-box {
        font-size: 3.2rem;
        line-height: 3.8rem;
        padding-top: 2.8rem;
        width: 20rem;
        height: 15rem;
        position: absolute;
        left: 2rem;
        transform: translateX(0);
        top: auto;
        bottom: 1.7rem;
        font-weight: 700;
    }

    .fee-2 {
        position: relative;
        top: -3.5rem;
        height: 18rem;
    }

    .per-price-box span {
        font-size: 1.8rem;
    }

    .fee-box-inner img {
        width: 28.2rem;
    }

    .fee-list {
        padding: 1.5rem 2rem 1.5rem 2rem;
        width: 91rem;
        margin: 0 auto;
    }

    .list-title {
        font-size: 1.6rem;
    }

    .fee-list-outer {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.6rem;
    }

    .fee-list-item {
        padding: 0 2.6rem;
        margin: 0;
        width: 22rem;
        border-bottom: none;
        border-right: 1px solid var(--cl-key01);
    }

    .fee-list-item:last-child {
        border-right: none;
    }

    .fee-tips-outer {
        width: 91rem;
        margin: 3rem auto;
        display: flex;
        justify-content: space-between;
    }

    .fee-tips-list {
        padding: 1rem 0;
        width: 43rem;
    }

    .fee-tips-title {
        font-size: 2rem;
        line-height: 3.2rem;
    }

    .fee-tips-box {
        margin: 1.4rem 0 0 0;
        font-size: 1.8rem;
    }

    .fee-tips-box span {
        font-size: 1.4rem;
    }

    
    .fee-1, .fee-2{
        margin: initial;
    }
}

/* parkingBox
--------------------------------------------------------------*/

.parkingBox {
    margin-top: 3rem;
    padding: 0 2rem 4rem 2rem;
}

.guideH3 {
    display: flex;
    font-size: 1.6rem;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #cccccc;
    font-weight: 700;
}

.guideH3 span {
    color: var(--cl-key01);
}

.guideList {
    display: flex;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px dotted #cccccc;
}

.guideList img {
    width: 12rem;
    min-width: 12rem;
}

.guideList h5 {
    font-size: 1.4rem;
}

.guideList .boxR p {
    font-size: 1.2rem;
}

.guide-tips {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

@media print,
screen and (min-width: 640px) {
    .parking {
        padding-bottom: 14.5rem;
    }

    .parking .outer-box {
        padding-bottom: 4.6rem;
    }

    .parkingBox {
        width: 91rem;
        margin: 8rem auto 0 auto;
        padding: 0;
    }

    .guideH3 {
        font-size: 2rem;
        padding-bottom: 0.8rem;
        margin-bottom: 0;
    }

    .service {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .guideList {
        display: flex;
        gap: 1rem;
        padding: 1.2rem 0;
        width: 43.5rem;
    }

    .guideList h4 {
        font-size: 1.6rem;
    }

    .guideList .boxR p {
        font-size: 1.4rem;
    }

    .guide-tips {
        margin-top: .5rem;
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }
}

/* CTA
--------------------------------------------------------------*/

.cta {
    height: 62vw;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: .9;
}

.cta-title {
    color: white;
    font-size: 2.6rem;
    font-weight: 700;
}

.cta-content {
    text-align: center;
    font-size: 1.4rem;
    color: white;
    font-weight: 400;
    gap: 1rem;
}

.cta-phone {
    display: flex;
    align-items: center;
    font-size: 3.6rem;
    line-height: 4rem;
    font-weight: 700;
    color: white;
    gap: 1rem;
}

.cta-phone a {
    color: white;
}

.cta-phone img {
    width: 4.5rem;
    height: 4.5rem;
}

@media print,
screen and (min-width: 640px) {
    .cta {
        height: 44rem;
        gap: 2rem;
    }

    .cta-title {
        font-size: 3.2rem;
        margin-bottom: 2rem;
    }

    .cta-content {
        font-size: 1.6rem;
    }

    .cta-phone {
        font-size: 4.6rem;
        line-height: 5rem;
        gap: 2rem;
    }

    .cta-phone img {
        width: 6rem;
        height: 6rem;
    }
}

/* monthly-parking
--------------------------------------------------------------*/

.month-fee-box {
    margin: 4rem 2rem 0 2rem;
    background-color: var(--cl-key01);
    padding: 1.7rem 4rem;
    font-size: 1.8rem;
    color: white;
}

.month-fee-box .month-fee {
    text-align: right;
    color: white;
    font-size: 1.8rem;
}

.month-fee-box .month-fee span {
    line-height: 5rem;
    font-size: 4.7rem;
}

.month-fee-box .tax-tips {
    text-align: right;
    color: white;
    font-size: 1.6rem;
}

.month-fee-intro {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

@media print,
screen and (min-width: 640px) {
    .month-fee-box {
        margin: 9rem auto 0 auto;
        padding: 1.7rem 0;
        font-size: 3.8rem;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        width: 91rem;
    }

    .month-fee-box .month-fee {
        font-size: 2.8rem;
    }

    .month-fee-box .month-fee span {
        line-height: 5rem;
        font-size: 4.7rem;
    }

    .month-fee-box .tax-tips {
        font-size: 2.6rem;
    }

    .month-fee-intro {
        font-size: 1.8rem;
        font-weight: 400;
        margin-bottom: 0;
    }
}

/* ev-charge
--------------------------------------------------------------*/

.ev-charge-icon {
    margin: 4.7rem auto 2rem auto;
    width: 10.5rem;
}

.charge-title {
    font-size: 2.6rem;
    line-height: 3.9rem;
    font-weight: 700;
    text-align: center;
}

.charge-title span {
    color: var(--cl-key01);
}

.ev-charge-intro {
    background-color: #f3f8f0;
    font-size: 1.6rem;
    padding: 1.6rem 2rem;
    margin: 2rem;
}

.ev-charge-tips-content{
    padding-top: 1rem;
}

.ev-charge-intro span {
    font-size: 1.2rem;
    line-height: 2.2rem;
}

.ev-charge-logo-qrcode {
    display: flex;
    gap: 4rem;
    justify-content: flex-end;
    margin: 1.6rem 0;
}

.ev-charge-logo-qrcode img {
    width: 12rem;
}

.wecharge-link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cl-key01);
    font-size: 1.4rem;
    height: 6rem;
    margin: 1rem 2rem 6rem 2rem;
    border: 2px solid var(--cl-key01);
    position: relative;
}

.underline-link {
    text-decoration: underline;
}

.wecharge-link-btn img {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

@media print,
screen and (min-width: 640px) {

    .ev-charge-icon {
        margin: 10rem auto 1.5rem auto;
        width: 15rem;
    }

    .charge-title {
        font-size: 3.2rem;
        line-height: 5.9rem;
    }


    .ev-charge-intro {
        font-size: 1.8rem;
        padding: 2rem 0;
        margin: 3rem auto 3rem auto;
        width: 91rem;
        text-align: center;
    }

    .ev-charge-intro span {
        font-size: 1.4rem;
        line-height: 2.6rem;
    }

    .ev-charge-tips-list {
        width: 91rem;
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .ev-charge-logo-qrcode {
        gap: 4rem;
        justify-content: flex-start;
        margin: 4rem 0;
        align-items: center;
    }

    .ev-charge-logo-qrcode img {
        width: 12rem;
    }

    .wecharge-link-btn {
        font-size: 1.6rem;
        height: 7.7rem;
        width: 34rem;
        margin: 3rem auto 8rem auto;
    }

    .ev-charge-tips-image {
        width: 43.5rem;
    }

    .wecharge-link-btn img {
        right: 3rem;
        width: 1.6rem;
    }

}

/* safe
--------------------------------------------------------------*/

.safe {
    padding: 0 2rem;
}

.safe-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.safe-item img {
    max-width: 25rem;
}

.safe-title {
    padding: 1rem 0 0 0;
    text-align: center;
    font-size: 1.6rem;
}

.safe-content {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 2rem;
}

.monthly-parking {
    padding-bottom: 6rem;
}

.monthly-parking .outer-box {
    padding-bottom: 5rem;
}

@media print,
screen and (min-width: 640px) {

    .safe {
        padding: 0;
        width: 91rem;
        margin: 4rem auto 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 2.3rem;
    }

    .safe-item {
        max-width: 27rem;
        align-items: flex-start;
    }

    .safe-item img {
        max-width: 27rem;
    }

    .safe-title {
        padding: 1rem 0 0 0;
        text-align: left;
        font-size: 1.8rem;
    }

    .safe-content {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .monthly-parking {
        padding-bottom: 13rem;
        margin-top: 12rem;
    }

    .monthly-parking .outer-box {
        padding-bottom: 7rem;
    }
}

/* access
--------------------------------------------------------------*/
.access {
    padding-top: 3.5rem;
    padding-bottom: 6rem;
}

.access .outer-box {
    padding-bottom: 5rem;
    margin-top: 2.6rem;
}

.access .section-title .section-title-icon {
    width: 6.5rem;
    top: -6rem;
}

.access-banner {
    margin-bottom: 4.8rem;
}

.access-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.access-tips-content {
    font-size: 1.6rem;
    padding-top: 1.4rem;
}

.svg-map-title {
    text-align: center;
    font-size: 1.6rem;
    color: var(--cl-key01);
    margin-bottom: 0.7rem;
}

.map-iframe {
    width: calc(100vw - 8rem);
    height: 27rem;
    margin: 0 2rem;
}

.map-link {
    color: var(--cl-key01);
    text-decoration: underline;
    font-size: 1.4rem;
    padding-left: 2rem;
}


.fixed-bottom{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: var(--cl-key01);
    color: white;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
    padding: 1.8rem 0;
    z-index: 5;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@media print,
screen and (min-width: 640px) {
    .access {
        padding-top: 6rem;
        padding-bottom: 12rem;
        margin-top: 13rem;
    }

    .access .outer-box {
        padding-bottom: 9rem;
        margin-top: 4rem;
    }

    .access .section-title .section-title-icon {
        width: 11rem;
        top: -11rem;
    }

    .access-banner {
        margin-bottom: 8rem;
    }

    .access .fee-tips-list{
        width: 91rem;
        margin: 0 auto;
    }

    .access-map-outer{
        max-width: 91rem;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 6rem;
    }

    .access-map {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
    }
    .access-map img{
        width: 35rem;

    }
    .access-tips-content {
        font-size: 2rem;
        padding-top: 1.4rem;
    }

    .svg-map-title {
        text-align: center;
        font-size: 1.6rem;
        color: var(--cl-key01);
        margin-bottom: 0.7rem;
    }

    .google-map{
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .map-iframe {
        width:  43.5rem;
        height: 40rem;
        margin: 0 2rem;
    }

    .map-link {
        color: var(--cl-key01);
        text-decoration: underline;
        font-size: 1.4rem;
        padding-left: 2rem;
    }


}


