@charset "UTF-8";
/* CSS Document */
.page-contents__page-header {
  margin: 0;
}
.article__header {
  margin-bottom: 22px;
}
.article__header-title {
  font-family:"Noto Serif JP", serif;
  background: #272727;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  font-weight: 600;
  padding: 4px 0 18px 0;
}
.article__header-date {
  font-family: "Noto Serif JP", serif;
  color: #272727;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #272727;
}
@media screen and (max-width: 768px) {
.article__header-title {
  font-size: 30px;
}
}

/*main*/
.elevnSeconds-list{
    width: 100%;
    padding-top: 30px;
}
.elevnSeconds-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.elevnSeconds-item:nth-child(even) {
    flex-direction: row-reverse;
}
.elevnSeconds-item-text{
    width: 370px;
    font-family: "Noto Serif JP", serif;
}
.elevnSeconds-item-title{
    color: #272727;
    font-weight: bold;
    font-weight: 700;
    padding-bottom: 15px;
}
.elevnSeconds-item-title span {
    display: block;
    font-size: 28px;
    padding-bottom: 15px;
}

.elevnSeconds-item-title small {
    display: block;
    font-size: 20px;
    line-height: 1.3;
}

.elevnSeconds-item-text p{
    font-size: 14px;
    line-height: 2.14;
}

.elevnSeconds-item-video{
}

.elevnSeconds-item-video a{
    display: block;
    position: relative;
    width: 410px;
    height: 254px;
}

.elevnSeconds-item-video img{
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.videoThum01{
    z-index: 2;
}

.videoThum02{
    z-index: 1;
}

@media (hover: hover) {
    .elevnSeconds-item-video a:hover .videoThum02{
        z-index: 3;
    }    
}

@media screen and (max-width: 768px) {
    .elevnSeconds-list {
        padding-top: 0;
    }
    .elevnSeconds-item,
    .elevnSeconds-item:nth-child(even) {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .elevnSeconds-item-text{
        width: 100%;
    }
    .elevnSeconds-item-title {
        padding-bottom: 10px;
    }
    .elevnSeconds-item-video{
        width: 100%;
        margin-bottom: 18px;
    }
    .elevnSeconds-item-video a{
        width: 100%;
        height: auto;
    }
    .elevnSeconds-item-video img{
        position: static;
    }
    .videoThum02{
        display: none;
    }
    
}

/*modal*/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}
.modal__bg{
    background: rgba(0,0,0,0.80);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 55%;
    padding-bottom: 31%;
    height: 0;
}

.modal__content iframe {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.js-modal-closeBtn{
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    right: -40px;
    top: -15px;
}
 
.js-modal-closeBtn::before, .js-modal-closeBtn::after { /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 30px;
    background: #fff;
}
 
.js-modal-closeBtn::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
 
.js-modal-closeBtn::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .modal__content{
        width: 90%;
        padding-bottom: 51%;
    }
    .js-modal-closeBtn {
        right: 0;
        top: -40px;
    }
}