@charset "UTF-8";
/*タイトル背景画像*/
.container_basic .title_wrap{
    background-image: url(../images/foundation_bg.png);
}

@media (max-width: 767px) {
    .container_basic .title_wrap{
        background-image: url(../images/foundation_bg.png);
        background-position: bottom; 
    }
    .container_basic .title_wrap .title{
        height: 110px;
    }
    .container_basic .title_wrap .sub2{
        font-size: 1.2rem;
        margin: 0.5em 0;
    }
    .container_basic .title_wrap .title.is-fixed{
        height: 110px;
        color: #000;
    }
    .container_basic .title_wrap .overline{
        display: inline-block;
        position: relative;
        font-size: 1.2rem;
        padding: 10px 0;
        margin-top: 10px;
    }
    .container_basic .title_wrap .title.is-fixed .overline{
        padding: 8px 0;
        margin-top: 0;
    }
    .container_basic .title_wrap .overline::before{
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        content: "";
        width: 100%;
        height: 1px;
        background: #BFBFBF;
    }
}
@media (min-width: 768px) {
    .container_basic .title_wrap .sub1{
        font-size: 1rem;
        margin: 2em 0 0;
    }
    .container_basic .title_wrap .sub2{
        font-size: 1.5rem;
        margin: 0.5em 0;
    }
    .container_basic .title_wrap .overline{
        position: relative;
        font-size: 1.2rem;
        padding: 15px 0;
        margin-top: 30px;
    }
    .container_basic .title_wrap .overline::before{
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 18px;
        height: 1px;
        background: #B2B2B2;
    }
}


/*contents*/

.contents_wrap .inner .news-content-wrap{
    display: none;
    position: relative;
    padding: 10px 0 100px;
}
.contents_wrap .inner .news-content-wrap .news_body{
    padding: 0 10%;
    box-sizing: border-box;
}
.contents_wrap .inner .news-content-wrap .news_body p{
    text-align: center;
}
.contents_wrap .inner .news-content-wrap .news_body img{
    display: block;
    margin: 10px auto;
    max-width: 100%;
}
/* 閉じるボタン */
.close {
    display: inline-block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.close span::before,
.close span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84%;
  height: 1px;
  margin: -8% 0 0 -42%;
  background: #707070;
}
.close span::before {
  transform: rotate(-45deg);
}
.close span::after {
  transform: rotate(45deg);
}

/* sp */
@media (max-width: 767px) {
    
    .container_basic > div{
        padding-top: 0;
    }
    .contents_wrap .inner .news{
        border-bottom: 1px solid #BFBFBF;
        padding: 26.5px 20px;
        transition: 0.3s;
    }
    .contents_wrap .inner .news.open{
        border-bottom: 1px solid #FFF;
    }
    .contents_wrap .inner .news .news-title dt{
        text-align: center;
        font-size: 1.5rem;
    }
    .contents_wrap .inner .news .news-title dd{
        text-align: center;
        font-size: 1.4rem;
        margin-top: 1em;
    }
    .contents_wrap .inner .news-content-wrap{
        border-bottom: 1px solid #BFBFBF;
    }
    /* arrow */
    .contents_wrap .inner .news .news-title{
        position: relative;
    }
    .contents_wrap .inner .news .news-title::after{
        content: "";
        width: 6px;
        height: 6px;
        border-left: 2px solid #505659;
        border-bottom: 2px solid #505659;
        position: absolute;
        top: 50%;
        right: 0;
        transform: rotate(-45deg) translateY(-50%);
        transition: 0.3s;
    }
    .contents_wrap .inner .news.open .news-title::after{
        transform: rotate(135deg) translateX(50%);
    }
    
}

/* pc */
@media (min-width: 768px) {
    
    .contents_wrap .inner{
        padding: 5% 10%;
    }
    .contents_wrap .inner .news{
        border-bottom: 1px solid #BFBFBF;
        padding: 10px;
        margin-bottom: 2em;
    }
    .contents_wrap .inner .news .news-title {
        cursor: pointer;
        transition: 0.4s;
    }
    .contents_wrap .inner .news .news-title:hover{
        opacity: 0.6;
    }
    .contents_wrap .inner .news .news-title dt{
        float: left;
        width: 110px;
        margin-left: calc(40% - 110px)
    }
    .contents_wrap .inner .news .news-title dd{
        margin-left: 100px;
    }
}