@charset "UTF-8";
/* modal */
body.scroll-stop{
    Overflow: hidden;
}
/* モーダルを開くボタン */
.modal-open{
  /*font-size: 16px;
  width: 300px;
  height: 60px;
  color: #fff;*/
  font-weight: bold;
  border: none;
  cursor: pointer;
  /*margin:100px auto;*/
}

/* モーダルと背景の指定 */
.modal{
  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:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 124rem;
  width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 0;
  border-radius: 2rem;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p{
  margin: 1em 0;
}

@media (max-width: 768px) {
  .modal{
    padding: 40px 10px;
  }
  .modal-container{
    max-width: 95%;
    width: 95%;
  }
  .modal-close{
    right: -10px;
  }
  .modal-content{
    padding: 10px;
    border-radius: 1rem;
  }
}

.modal-content

/* モダールとは無関係　電話番号 追加 */
.contact-block{
  background: #f2f2f2;
  border-radius: 2rem;
  width: 38rem;
  padding:1.5rem 2.4rem 1rem;
  margin-top: 5rem;
  margin-left: 2rem;
}
.contact-tel dt{
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: #000 solid 1px;
  padding:1rem;
}
.contact-tel dd{
  font-size: 3.6rem;
  font-weight: 700;
  margin:0 0 .8rem 0;
}
.contact-tel dd a{
  color:#000;
  text-decoration: none;
}
.contact-time{
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 1220px) {
  .contact-block {
    margin-top: 2rem;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .contact-block {
    width: 100%;
    padding:1rem 1.8rem 1rem;
  }
  .contact-tel dt{
    font-size: 1.2rem;
  }
  .contact-tel dd{
    font-size: 2.6rem;
    margin:0 0 .5rem 0;
  }
  .contact-time{
    font-size: 1.2rem;
  }
}
@media (min-width: 769px) {
a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}
}