.inner{
    max-width: 1000px;
    margin: 0 auto;
    padding:0 40px;
}

.header{
    /* background: #EFA358; */
    padding-top: 20px;
    padding-bottom: 20px;
}

.flex{
    display: flex;
    align-items: center;
}

.right{
    margin-left: auto;
}

.right ul{
    display: flex;
}

a{
    color: #000;
}
.logo{
    color: #000;
    font-size: 28px;
    font-weight: 700;
}
.ul{
    display: flex;
    align-items: center;
}
.header li{
    margin-right: 40px;
    /* font-size: 20px;
    padding-left: 40px; */
}
.mv img{
    width: 100%;
    height: auto;
}
.mv{
    position: relative;
}

/* 以下、ハンバーガーボタン */
.burger-btn {
    display: block;
    height: 39px;
    position: relative;
    width: 39px;
    z-index: 3;
    /* codepenの挙動のため */
    background-color: transparent;
    border: none;
  }
  
  .bar {
    background-color: blue;
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 20px;
  }
  .bar_top {
    top: 10px;
  }
  .bar_mid {
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .bar_bottom {
    bottom: 10px;
  }
  .burger-btn.close .bar_top {
    transform: translate(-50%,10px) rotate(45deg);
    transition: transform .3s;
  }
  .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity .3s;
  }
  .burger-btn.close .bar_bottom {
    transform: translate(-50%,-8px) rotate(-45deg);
    transition: transform .3s;
  }
  /* スクロール制御 */
  .noscroll{
    overflow: hidden;
  }
  
  /* 以下、ハンバーガーメニュー */
  .nav-wrapper {
    visibility: hidden;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    opacity: 0;
    transition: opacity .5s;
    z-index: 2;/*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
  }
  
  .header-nav {
    background-color: #1b1310;
    height: 100%;
    width: 100%;
    z-index: 2;
  }
  .nav-list {
    display: block;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .nav-item {
    margin-bottom: 40px;
    margin-right: 0;
  }
  
  /* メニューオープン時 */
  .nav-wrapper.fade {
    opacity: 1;
    visibility: visible;
  }

/* モーダルを開くボタン
.modal-open{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 50px;
    font-weight: bold;
    color: #fff;
    background: #000;
    margin: auto;
    cursor: pointer;
    transform: translate(-50%,-50%);
  }
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  .modal-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0,0,0,50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
  }
  /*モーダル本体の擬似要素の指定*/
  .modal-container:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  .modal-container.active{
    opacity: 1;
    visibility: visible;
  }
  /*モーダル枠の指定*/
  .modal-body{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 500px;
    width: 90%;
  }
  /*モーダルを閉じるボタンの指定*/
  .modal-close{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
  }
  /*モーダル内のコンテンツの指定*/
  .modal-content{
    background: #fff;
    text-align: left;
    padding: 30px;
  } */

  .secTitle{
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #666666;
  }
  .secTitle span{
    font-size: 28px;
    color: #f08080;
    font-family: "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" ,serif;
  }
  .keyVisual{
    position: relative;
    height: 450px;
    background: url() no-repeat;
    background-size: cover;
  }
  .keyVisualUnder{
    height: 260px;
    margin-bottom: 50px;
  }
  .keyCatch{
    position: absolute;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }
  .newsLink{
    overflow: hidden;
    display: flex;
    margin-bottom: 5px;
  }
  .newsLinkCap{
    width: 150px;
    height: 150px;
  }
  .newsLinkCap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .newsLinkInfo{
    position: relative;
    float: left;
    width: calc(100% - 150px);
    background-color: #F5F5F5;
  }
  .newsLinkInner{
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .newsLinkTitle{
    display: block;
  }