@charset "UTF-8";
/*モーダルを開くボタン*/
.modal-open, .modal-open02 {
  cursor: pointer; }

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container, .modal-container02 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(249, 246, 243, 0.9);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 9999; }

/*モーダル本体の擬似要素の指定*/
.modal-container:before, .modal-container02:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%; }

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active, .modal-container02.active {
  opacity: 1;
  visibility: visible; }

.modal-container, .modal-container02 {
  min-width: 320px; }

/*モーダル枠の指定*/
.modal-body, .modal-body02 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
  margin-bottom: 30px; }

/*モーダルを閉じるボタンの指定*/
.modal-close, .modal-close02 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: 0px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  background: #676967;
  border-radius: 50%;
  padding-bottom: 3px;
  opacity: 0.5; }

/*モーダル内のコンテンツの指定*/
.modal-content .modal_contact_in {
  background: url("../img/common/gnav_contact_back.jpg") no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 20px 0;
  margin-top: 30px; }
  .modal-content .modal_contact_in dl {
    text-align: center;
    width: 230px;
    margin: 0 auto; }
    .modal-content .modal_contact_in dl dt {
      font-size: 1.8rem;
      font-weight: bold;
      position: relative;
      padding-bottom: 5px;
      margin-bottom: 5px;
      text-align: center;
      color: #676967; }
      .modal-content .modal_contact_in dl dt::after {
        content: '';
        display: block;
        background: url("../img/common/gnav_contact_line.svg") no-repeat;
        width: 227px;
        height: 10px;
        background-size: 227px 10px;
        position: absolute;
        bottom: 0;
        left: 0; }
    .modal-content .modal_contact_in dl dd {
      font-size: 1.4rem; }
      .modal-content .modal_contact_in dl dd.denwa {
        line-height: 1;
        margin-bottom: 5px; }
        .modal-content .modal_contact_in dl dd.denwa span, .modal-content .modal_contact_in dl dd.denwa a {
          font-size: 2.3rem;
          color: #626868; }
        .modal-content .modal_contact_in dl dd.denwa img {
          position: relative;
          top: 4px;
          margin-right: 5px; }

@media screen and (min-width: 640px) {
  .modal-close02 {
    top: 0px;
    right: -40px; } }

/*# sourceMappingURL=modalwindow.css.map */
