/*モーダルを開くボタン*/
.modal-open{
    margin-left: 20px;
    margin-bottom: 60px;
    cursor: pointer;
    text-decoration: underline;
  }
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  .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;
    z-index: 10;
  }
  /*モーダル本体の擬似要素の指定*/
  .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;
  }

  /*モーダルテキスト*/
  .text{
    margin-bottom: 14px;
  }

  .p-btn-left{
    font-size: larger;
    font-weight: 900;
  }

  .p-btn-right{
    font-size: larger;
    font-weight: 900;
  }

  @media only screen and (min-width: 768px){
    .p-btn-left {
      margin-left: 315px;
    }
    .p-btn-right {
      margin-left: 79px;
    }
    .btn_left {
      margin-left: 315px;
    }
    .btn_right {
      margin-left: 60px;
    }
  }

  @media only screen and (max-width: 767px){
    .text{
      margin-top: -10px;
    }
    .p-btn-left {
      text-align: center;
    }
    .p-btn-right {
      text-align: center;
    }
    .btn_left {
      width: 50%;
      margin: 0 auto;
    }
    .btn_right {
      width: 50%;
      margin: 0 auto;
    }
  }

    /*お知らせBOX*/
    .info-list{
      margin-bottom: 8rem;
      padding: 2rem;
      background-color: #fff2ee;
    }

    .info-list p{
      color: #dc441b;
      text-align: left;
      margin: -2rem 3rem -2rem 1rem;
    }

    .info_fvBox {
      display: flex;
      justify-content: center;
      margin-bottom: 2em;
  }
  
  .info_fvBox a{
      display: flex;
      align-items: center;
      position: relative;
      padding: 0.5em 0 0.5em 3em;
      color: #dc441b;
      font-weight: 500;
      list-style: none;
  }
  
  .info_fvBox a::before{
      display: block;
      position: absolute;
      top: 50%;
      left: 5%;
      width: 20px;
      height: 20px;
      background: url(/app-files/img/sprite/icon.svg#exclamation-usage) no-repeat 0 0;
      content: "";
      background-size: 20px;
      transform: translateY(-50%);
  }
  




  