@charset "UTF-8";

/*==============================================
	Reset
==============================================*/
*{box-sizing:border-box}html{font-size:10px}blockquote,body,dd,div,dl,dt,embed,fieldset,figure,form,h1,h2,h3,h4,h5,h6,input,li,object,ol,option,p,pre,select,table,td,textarea,th,ul{margin:0;padding:0;text-align:justify;-webkit-text-size-adjust:100%}main,section{display:block}table{border-spacing:0;border-collapse:collapse}img,table,td,th{border:0}img,input{vertical-align:top}img{max-width:100%}li{list-style:none}a{outline:0}em{font-style:normal}article,aside,figucaption,figure,footer,header,main,nav,section,small{display:block}input[type=button],input[type=submit]{background:0;border:0;-webkit-appearance:none}input[type=checkbox],input[type=radio]{vertical-align:middle}



body {
    max-width: 860px;
}
.main_area {
    padding: 4%;
    background-color: #fff;
    border: 2px solid #000000;
    border-radius: 5px;
}
.main_area {
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 400;
    font-style: normal;
}
.main_area h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.box_area {
    display: flex;
    justify-content: space-between;
}
.box_area > .box {
    width: 48%;
}
.box_area > .box .card {
    background-color: #EDEDED;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 25px;
}
.box_area > .box .card h2 {
    text-align: center;
    color: #fff;
    font-size: 2.2rem;
    background-color: #5A5A5A;
    padding: 10px 10px;
    letter-spacing: 1px;
    font-weight: 400;
    white-space: nowrap;
}

.box_area > .box .num_area {
    text-align: center;
}
.box_area > .box .num_area .num {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 6rem;
}
.box_area > .box .num_area .nin {
    font-size: 1.1rem;
    margin-left: 4px;
}
.box_area > .box .btn {
    text-align: center;
}
.box_area > .box .btn a {
    font-size: 1.5rem;
    color: #5A5A5A;
    border: 3px solid;
    padding: 6px 20px 7px;
    border-radius: 30px;
    background-color: #fff;
    display: inline-block;
    text-decoration: none;
    padding-right: 70px;
    font-weight: 500;
    background-image: url(../image/common/arrow.svg);
    background-repeat: no-repeat;
    background-size: 7px;
    background-position: calc(100% - 20px) center;
}
.box_area > .box .hidden {
    font-size: 1.5rem;
    color: #fff;
    border: 3px solid #5A5A5A;
    padding: 6px 10px 7px;
    border-radius: 30px;
    background-color: #5A5A5A;
    display: block;
    font-weight: 500;
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.box_area > .box .note {
    text-align: center;
    margin-top: 10px;
    font-size: 1.2rem;
}

.lessee_list {
    display: flex;
    flex-wrap: wrap;
}
.lessee_list > li {
    width: 48%;
    margin-right: 4%;
}
.lessee_list > li:nth-child(2n) {
    margin-right: 0;
}
.lessee_box {
    margin-top: 40px;
}
.lessee_box > h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}
.lessee_list > li a {
    display: block;
    text-decoration: none;
    transition: opacity .3s;
}
.lessee_list > li a:hover {
    opacity: .6;
}
.lessee_list > li a img {
    transition: all .3s;
}
.lessee_list > li a:hover img {
    transform: scale(1.05);
}
.lessee_list > li a * {
    color: #000000;
    text-decoration: none;
}
.lessee_list > li .img picture {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eee;
    background-image:url(../image/common/logo.svg);
    background-repeat: no-repeat;
    background-size: 220px;
    background-position: center center;
    overflow: hidden;
}
.lessee_list > li .img picture img {
    width: 100%;
    height: auto;
    width: auto;
    aspect-ratio: 350 / 220;
    object-fit: cover;
    width: 100%;
}
.lessee_list > li .sub {
    font-size: 1.2rem;
    margin-top: 10px;
}
.lessee_list > li .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    flex-wrap: wrap;
}
.lessee_list > li .meta .name {
    font-size: 2.7rem;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 5px;
}
.lessee_list > li .meta .area {
    font-size: clamp(1.1rem, calc(1.7vw + 1.2rem), 1.5rem);
    border: 1px solid;
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 5px;
}
.lessee_list > li .title {
    font-size: 1.9rem;
    font-weight: 700;
}

@media screen and (max-width: 736px) {
    .main_area {
        padding: 20px 20px;
    }
    .box_area {
        display: block;
    }
    .box_area > .box {
        width: 100%;
        margin: 0 auto 30px;
    }

    .lessee_list li {
        width: 100%;
        margin: 0 auto 30px;
    }
    .main_area h1 {
        font-size: 1.8rem;
    }
    .lessee_box > h2 {
        font-size: 1.8rem;
    }
    .box_area > .box .card h2 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .lessee_list > li .meta .name {
        font-size: 2rem;
    }
    .lessee_list > li .meta .area {
        font-size: 1.2rem;
    }
    .box_area > .box .num_area .num {
        font-size: 5rem;
    }
}

