@charset "utf-8";
/* CSS Document */

/* ==========================================================================
media_page
========================================================================== */

body {
    background: rgb(161,214,219);
    background: -moz-linear-gradient(left, rgba(161,214,219,1) 0%, rgba(216,236,224,1) 58%, rgba(255,252,228,1) 100%);
    background: -webkit-linear-gradient(left, rgba(161,214,219,1) 0%,rgba(216,236,224,1) 58%,rgba(255,252,228,1) 100%);
    background: linear-gradient(to right, rgba(161,214,219,1) 0%,rgba(216,236,224,1) 58%,rgba(255,252,228,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a1d6db', endColorstr='#fffce4',GradientType=1 );
    min-width: 100%;
    width: 100%;
}

body a{
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;}
	  
body a:hover{
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
	  text-decoration:none
}

footer {
    overflow: hidden;
}

footer .corpnavi li a {
    text-decoration: none;
}

.media-page {
    font-family: YakuHanMP,'Noto Serif JP','游明朝','Yu Mincho','游明朝体','YuMincho','ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HiraMinProN-W3','HGS明朝E','ＭＳ Ｐ明朝','MS PMincho',serif;
}

.wrapper {
    max-width: 1000px;
    margin: auto;
}

.hero {
    position: relative;
    height: 0;
    padding-top: 35.50%;
    background-image: url(../img/hero.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.media-page .hero-ttl {
    position: absolute;
    right: 12%;
    top: 25%;
    width: 45%;
}

.menu-list {
    margin: 0 2%;
    padding: 8% 0 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px dashed;
    list-style: none;
}

.menu-list-item {
    position: relative;
    display: inline-block;
    width: 23%;
    margin: 0 4%;
    padding: 0 0 2%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.menu-list-item.active:after {
    background-color: #ee7da6;
    bottom: 0;
    content: '';
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%;
}

.menu-list-item:after {
    background-color: #ee7da6;
    bottom: 0;
    content: '';
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
    transition: .5s all;
    width: 0;
}

.menu-list-item:hover:after {
    width: 100%;
}

.update-txt {
    margin: 4% 0;
    font-size: 10px;
    text-align: center;
}

.list-detail {
    width: 100%;
}

.list-detail,
.list-detail td,
.list-detail th {
    border: 1px solid #FFFFFF;
    border-collapse: collapse;
}

.list-detail-day {
    width: 20%;
    padding: 1%;
}

.list-detail-name {
    width: 35%;
    padding: 1%;
}

.list-detail-contents {
    width: 45%;
    padding: 1%;
}

.list-detail.tv .list-detail-day {
    width: 15%;
    padding: 1%;
}

.list-detail.tv .list-detail-time {
    width: 10%;
    padding: 1%;
}

.list-detail.tv .list-detail-name {
    width: 30%;
    padding: 1%;
}

.list-detail.tv .list-detail-contents {
    width: 45%;
    padding: 1%;
}

.bg-pink {
    background-color: #EA6898;
    color: #FFFFFF;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
}

.list-detail td {
    padding: 2%;
    text-align: center;
    font-size: 15px;
}

.tab-contents {
    margin: 0 2%;
    padding: 0;
}

.tab-contents-item {
    display: none;
}

.tab-contents-item.current {
    display: block;
}

.note-txt {
    margin-top: 35px;
    font-size: 12px;
    line-height: 1.7;
}

.top-btn {
    display: block;
    width: 180px;
    height: 50px;
    margin: 6% auto;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    background-color: #EA6898;
    text-decoration: none;
    color: #FFFFFF;
    border-radius: 4px;
}

.top-btn:hover {
    opacity: .7;
}

.media-page .billing-list {
    text-align: center;
}

.media-page .billing-list-img {
    width: 75%;
    margin: 0;
    padding: 2% 0;
}

.select-none {
    cursor: none;
    pointer-events: none;
    color: #949494;
}




@media screen and (max-width: 768px){
    
    .bg-pink {
        font-size: 12px;
    }

    .list-detail td {
        font-size: 12px;
    }
    
    .menu-list-item {
        font-size: 16px;
    }
}

@media screen and (max-width: 414px){
    
    .menu-list {
        display: block;
        border-bottom: none;
    }
    
    .menu-list-item {
        display: block;
        width: 96%;
        margin: auto;
        padding: 2% 0;
        border-bottom: 1px dashed #000;
    }
    
    .menu-list-item.active {
        color: #EA6898;
    }
    
    .menu-list-item.active:after {
        display: none;
    }
    
    .menu-list-item:hover:after {
        width: 0;
    }
    
    .tab-contents {
        padding: 0 2%;
        box-sizing: border-box;
    }
    
    .media-page .billing-list-img {
        width: 100%;
        padding: 2%;
        box-sizing: border-box;
    }
    
    .top-btn {
        font-size: 16px;
    }
}

