@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

.notoJP {
    font-family: "Noto Sans JP", sans-serif;
}

.noto {
    font-family: "Noto Sans", sans-serif;
}

body {
    background: url(../images/common/background.png) repeat top -176px left /cover;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
}

body.fixed {
    overflow: hidden;
}

.inner {
    max-width: 990px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

/*VALIDATE CONTACT*/
.error {
    display: block;
    font-size: 12px;
    color: red;
}

/* HEADER */
#header {
    width: 100%;
    padding: 21px 0 18px;
}

#header .inner {
    display: flex;
    justify-content: space-between;
    max-width: 970px;
}

#header .logo {
    width: 241px;
    margin-left: -1px;
}

#header .hdContact {
    padding-top: 24px;
}

#header .hdContact .contactTxt {
    color: #191970;
    font-size: 16px;
    padding-right: 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
    letter-spacing: 0.1px;
    margin-left: -1px;
}

#header .hdContact .contactTxt span {
    letter-spacing: -0.3px;
    margin-right: -8px;
}

#header .hdContact .contactPhone {}

#header .hdContact .contactPhone a {
    color: #191970;
    font-size: 26px;
    line-height: 1.1;
}

#header .mainMenu {
    max-width: 708px;
    margin: 27px auto 0;
}

#header .mainMenu .menu {
    display: flex;
}

#header .mainMenu .menu li+li {
    margin-left: 51px;
}

#header .mainMenu .menu li a {
    position: relative;
    font-size: 18px;
    font-weight: bold;
}

/* CONTENT */
#content {
    width: 100%;
}

/* FOOTER */
#footer {
    width: 100%;
}

#footer .ftMain {}

#footer .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 99px 30px 130px;
}

#footer .ftLogo {
    width: 241px;
    margin-top: -10px;
}

#footer .ftInfo {
    width: 44.2%;
    min-width: 250px;
}

#footer .ftInfo li {
    display: flex;
    font-size: 12px;
}

#footer .ftInfo li+li {
    margin-top: 5.1px;
}

#footer .ftInfo li .infoName {
    font-weight: bold;
    width: 50px;
    margin-right: 48px;
    margin-top: -1px;
}

#footer .ftInfo li .infoTxt {
    width: calc(100% - 98px);
    line-height: 1.3;
}

/* LIST TAB */

.listTab {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.listTab li {
    width: calc(100% / 4 - 32px);
    margin: 8px 5.1px;
}

.listTab li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #707070;
    font-weight: 400;
    padding: 8px 5px 9px;
    height: 100%;
}

.listTab li.active a {
    background: #191970;
    color: #fff;
    border-color: #191970;
}

.areaBtn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.areaBtn a {
    display: block;
    text-align: center;
    color: #fff;
    background-color: #191970;
    padding: 8px 0 9px;
    border: 1px solid #191970;
}

.areaTitle {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 1.3px;
}

.areaTitle span {
    display: block;
    font-size: 20px;
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: 0;
}


@media (min-width: 769px) {
    .sp {
        display: none;
    }

    .tel {
        pointer-events: none;
    }

    #header .mainMenu .menu li a::before {
        content: "";
        position: absolute;
        bottom: -1px;
        right: 0;
        width: 0;
        height: 2px;
        background-color: #000;
        transition: all .3s;
    }

    #header .mainMenu .menu li a:hover::before {
        width: 100%;
        right: auto;
        left: 0;
    }

    #footer .ftInfo li .infoTxt a:hover {
        text-decoration: underline;
    }

    .listTab li a:hover {
        background: #191970;
        color: #fff;
        border-color: #191970;
    }

    .areaBtn a:hover {
        background-color: #fff;
        color: #191970;
    }
}

/* STYLE MOBILE */
@media (max-width: 900px) and (min-width:769px) {
    .areaRental .listRental li a .viewDetails::before {
        height: 7px !important;
    }
}

@media (max-width: 768px) {
    .pc {
        display: none;
    }

    .inner {
        width: 100%;
        padding: 0 4%;
    }

    /* MENU */
    .hamburger {
        width: 30px;
        height: 30px;
        z-index: 9;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background: #000;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        margin-bottom: 10px;
    }

    .hamburger span:nth-child(2) {
        opacity: 1
    }

    .hamburger span:nth-child(3) {
        margin-top: 10px;
    }

    .hamburger.open span:nth-child(1) {
        margin-bottom: -2px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        margin-top: -2px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #header {
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        padding: 10px 0;
        z-index: 9;
    }

    #fixH {
        height: 69px;
    }

    #header .inner {
        align-items: center;
    }

    #header .logo {
        position: relative;
        max-width: 240px;
        margin-left: 0;
        width: 169px;
        z-index: 9;
    }

    #header .mainMenu {
        position: absolute;
        top: 68px;
        left: 0;
        display: none;
        margin: 0;
        background-color: #fff;
        padding: 9vw 0;
        max-width: 100%;
        width: 100%;
        height: calc(100vh - 68px);
        overflow-y: auto;
        z-index: 8;
    }

    #header .mainMenu .menu {
        flex-direction: column;
        align-items: center;
    }

    #header .mainMenu .menu li+li {
        margin: 25px 0 0;
    }

    #header .hdContact {
        text-align: center;
        padding-top: 35px;
    }

    #header .hdContact .contactTxt {
        padding-right: 0;
        margin-bottom: 10px;
    }

    #main .mainPhoto img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        aspect-ratio: 375 / 159;
    }

    #footer .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 60px 4% 50px;
    }

    #footer .ftMain img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        aspect-ratio: 375 / 160;
    }

    .listTab li {
        width: calc(100% / 4 - 15px);
    }

    .areaTitle {
        margin-bottom: 25px;
    }

    .areaTitle span {
        margin-top: -3px;
    }
}

@media(max-width:430px) {

    #header .mainMenu .menu li a {
        font-size: 16px;
    }

    #header .hdContact .contactTxt {
        font-size: 14px;
    }

    #header .hdContact .contactPhone a {
        font-size: 24px;
    }

    #footer .inner {
        padding: 40px 4%;
        flex-direction: column;
    }

    #footer .ftInfo {
        width: 100%;
    }

    #footer .ftLogo {
        width: 220px;
        margin: 0 0 30px;
    }

    .listTab {
        justify-content: space-between;
    }

    .listTab li {
        width: 49%;
        margin: 0 0 8px;
    }

    .listTab li a {
        font-size: 3.4vw;
    }

    .areaTitle {
        font-size: 20px;
    }

    .areaTitle span {
        font-size: 16px;
    }
}