@charset "UTF-8";
.headline-banner {
    width: calc(100% - 40px);
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    margin-bottom: 15px;
}

.headline-banner .text-banner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
}
.headline-banner .text-banner .pc_hidden {
    display: none;
}
.headline-banner .text-banner p .news {
    color: #FF5A5C;
    font-weight: 600;
}
.headline-banner .text-banner p {
    width: 100%;
    max-width: 100%;
    margin: 15px auto 0;
    font-size: 16px;
    font-weight: 500;
}
.headline-banner .text-banner p .under_line {
    border-bottom: 1px solid #000000;
}
.headline-banner a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.headline-banner img {
    objact-fit: contain;
    max-height: 136px;
    width: 100%;
}
.headline-banner p {
    margin-left: 10px;
}
.headline-banner .sp_hide{
    display: block;
    width: 100%;
}
.headline-banner .pc_hide{
    display: none;
}

/*タイアップスライダー*/
.top_banner_slider {
    display: none;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    max-height: 155px;
}
/*slick-initialized*/
.top_banner_slider.slick-initialized {
    display: block; 
}
.headline-banner .reflection {
    height      :100%;
    width       :50px;
    position    :absolute;
    top         :-180px;
    left        :0;
    background-color: #fff;
    opacity     :0;
    transform: rotate(45deg);
    animation: reflection 4s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 4s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 4s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 4s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 4s ease-in-out infinite;
}

@keyframes reflection {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
    0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
    0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}
@media (min-width: 0) and (max-width: 767px) {
    .headline-banner {
        width: 100%;
        max-width: 100%;
        max-width: calc(100% - 20px);
        padding: 0;
        margin-top: 1px;
        margin-bottom: 5px;
    }
    .headline-banner .text-banner {
        width: 100%;
        max-width: calc(100% - 16px);
        margin: 0 auto;
    }
    .headline-banner .text-banner .pc_hidden {
        display: block;
    }
    .headline-banner .text-banner p {
        width: 100%;
        max-width: calc(100% - 16px);
        font-size: 14px;
    }
    .headline-banner a {
        align-items: center;
        justify-content: center;
    }
    .headline-banner p {
        margin: 2px 0 0 10px;
    }
    .headline-banner img{
        width: 100%;
        margin: 8px auto 2px;
        padding-bottom: 1px;
    }
}