@charset "Shift_JIS";

/*----------------------------------------
	modal
-----------------------------------------*/
body * {
    box-sizing: border-box;
}
/*iphone font-size ΍*/
html {
 -webkit-text-size-adjust: 100%;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(76,73,72,0.9);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
    transition: all .75s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 200;
}
.popup__inner {
    width: 100%;
    height: 100%;
    padding: 80px 0;
    overflow-y: scroll;
}
.popup__content {
    max-width: 990px;
    margin: 0 auto;
    position: relative;
    padding: 50px 0 80px;
}
.popup__close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
.popup__close svg {
    width: 30px;
    height: 30px;
}
.popup__honbun .ttl {
    font-size: 24px;
    /*font-size: 1.8rem;*/
    line-height: 1.61111;
    font-weight: 400;
    display: block;
    padding: 0 0 10px;
    margin-top: 0px;
}
.popup__honbun {
    background-color: #fff;
    text-align: center;
    font-size: 16px;
    /*font-size: 1.6rem;*/
    line-height: 1.8125;
    letter-spacing: 0.1em;
    font-family: "arno-pro-display","A1 Mincho","shippori",serif;
    font-weight: 400;
    padding: 128px 100px 100px;
}
.br-sp {
    display: none;
}
.br-pc {
    display: block;
}
.popup__honbun a {
    color: #2f2725;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .popup {
      padding: 0 20px;
  }
  .popup__inner {
      max-width: 100%;
      padding: 35px 0;
  }
  .popup__content {
      padding: 30px 0 30px;
  }
  .popup__close svg {
      width: 20px;
      height: 20px;
  }
  .popup__honbun {
      padding: 58px 30px 50px;
      font-size: 12px;
      /*font-size: 1.2rem;*/
      line-height: 1.66667;
  }
  .popup__honbun .ttl {
      font-size: 18px;
      /*font-size: 1.8rem;*/
      line-height: 1.42857;
      padding: 0 0 3px;
  }
  .br-sp {
      display: block;
  }
  .br-pc {
      display: none;
  }
}
