@charset "UTF-8";
/*----------------------------------------------------
	Theaters
----------------------------------------------------*/
.page-theaters {
    background-color: #8ccfcf;
}

/*---main_visual---*/
#mv_theaters .main_visual img{
    width: 100%;
}
#mv_theaters .logo{
    text-align: center;
    margin-top: -10%;
    margin-bottom: 5rem;
}
@media screen and (max-width:767px) {
    #mv_theaters .logo{
        margin-bottom: 3rem;
    }
}
#mv_theaters .logo img{
    width: 90%;
}
#theaters {
    margin-bottom: 4rem;
}
@media screen and (max-width:767px) {
    #theaters {
        margin-bottom: 1rem;
    }
}
/*---nav---*/
.area_nav ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 4rem;
}
.area_nav ul li{
    width: 13%;
}
.area_nav ul li a{
    display: block;
    background-color: #e40048;
    color: #fff;
    text-align: center;
    padding: 1rem 0.4rem 0.4rem;
}
.area_nav ul li a:hover{
    text-decoration: none;
}
.area_nav ul li a::after{
    content: url(../images/theaters/nav_arrow.svg);
    display: block;
    margin: 0 auto;
    width: 20px;
    transition: .2s;
}
.area_nav ul li a:hover::after{
    transform: translateY(5px);
}

@media screen and (min-width:768px) and (max-width:991px) {
    .area_nav ul li a{
        font-size: 12px;
    }
    .area_nav ul li a::after{
        width: 14px;
    }
}
@media screen and (max-width:767px) {
    .area_nav ul{
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    .area_nav ul li{
        width: 45%;
        margin: 0 2.5% 1rem;
    }
    .area_nav ul li a{
        padding: 0.6rem 0.4rem 0.2rem;
    }
    .area_nav ul li a::after{
        width: 16px;
    }
}

/*---title---*/
.area_ttl {
    text-align: center;
}
.area_list {
    margin-bottom: 4rem;
}
.area_list h3 {
    color: #e40048;
    font-size: 26px;
    margin: 0 auto 2rem;
    position: relative;
    padding: 0 1em;
    display: block;
    width: 10em;
    text-align: center;
}
.area_list h3::before {
    content:"";
    display:inline-block;
    width: 2px;
    height: 100%;
    background-color: #e40048;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
}
.area_list h3::after {
    content:"";
    display:inline-block;
    width: 2px;
    height: 100%;
    background-color: #e40048;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
}
@media screen and (max-width:767px) {
    .area_list:last-child {
    }
    .area_list h3 {
        font-size: 20px;
        margin: 0 auto 1.2rem;
        padding: 0 1em;
        width: 10em;
    }
}

/*---table---*/
.area_list table{
    width: 100%;
}
.area_list table th,
.area_list table td{
    padding: 0.7rem 1rem;
}
.area_list table th{
    background-color: #145878;
    color: #fff;
}
.area_list table td{
    border-bottom: 1px solid #145878;
}
.area_list table a{
    color: #e40048;
}
.area_list table a[href^="tel:"] {
    color: #212529;
    font-size: 90%;
}
@media screen and (min-width:768px) and (max-width:991px) {
    .area_list table th,
    .area_list table td{
        font-size: 14px;
    }
}
@media screen and (max-width:767px) {
    .area_list table th{
        font-size: 10px;
        padding: 0.5rem 0.4rem;
    }
    .area_list table td{
        font-size: 11px;
        padding: 0.7rem 0.4rem;
    }
}
/*---footer---*/
@media screen and (max-width:767px) {
    .page-theaters #footer{
        padding: 0 0 1.6rem;
    }
}