@charset "utf-8";


/************************************************
font not sans
************************************************/
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap");

/************************************************
contact
************************************************/

.contact #contents {padding-bottom: 20px;}

/* pc sp
--------------------------------- */
.v2contact .pc {
  display: inline-block;
}
.v2contact .sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .v2contact .pc {
    display: none;
  }
  .v2contact .sp {
    display: inline-block;
  }
}

/* .v2contact__form
---------------------------------------------- */

.v2contact {
  color: #444;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 30px 0;
}
.v2contact__inner {
  overflow: hidden;
  padding: 45px 35px;
/*  border: solid 1px #EEE;
  border-radius: 5px;*/
}

.v2contact p {
  margin: 0;
  padding: 0;
}

.v2contact .notes {
  font-size: 0.9em;
  color: #eb5e59;
}

.v2contact__section-header {
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
  border-bottom: solid 1px #acacac;
  margin: 0 0 1em;
  padding: 0 0 0.5em 0;
}

.v2contact__form-box-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap:         wrap;
}
.v2contact__form-box {
  width: 46%;
  margin: 1% 2%;
}
.v2contact__form-box a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  background: #e1d7d7;
  border-radius: 20px;
}
.v2contact__form-box-inner {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content:         center;
  -webkit-align-items: center;
  align-items:         center;
}
.v2contact__form-box-title {
  color: #e65550;
  font-size: 24px;
  text-align: center;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}
.v2contact__form-box-text {
  color: #444;
  margin: 20px 0 0;
}
.v2contact__form-box-text p {
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.05em;
}


/* .v2contact__book
---------------------------------------------- */
.v2contact__book-block-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap:         wrap;
}
.v2contact__book-block {
  width: 48%;
}
.v2contact__book-block-02 {
  margin-left: 4%;
}
.v2contact__book-block-title {
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 30px;
  padding: 12px 10px;
  border-radius: 10px;
  background: #e1d7d7;
  min-height: 80px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content:         center;
  -webkit-align-items: center;
  align-items:         center;
}
.v2contact__book-block-01 .v2contact__book-block-title {
  background: #fdb5b5;
}
.v2contact__book-block-img {
  border: 1px solid #eee;
  padding: 20px;
}
.v2contact__book-block-img img {
  display: block;
  width: 90%;
  margin: auto;
}
.v2contact__book-block-img-anno {
  font-size: 84%;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 10px 0 0;
  padding: 0;
}
.v2contact__book-block-dl {
  margin-top: 20px;
}
.v2contact__book-block-dt {
  font-weight: 500;
  font-size: 110%;
  margin-bottom: 5px;
}
.v2contact__book-block-anno {
  color: #e65550;
  margin-top: 30px;
}
.v2contact__book-block-anno-title {
  font-size: 110%;
  margin: 0 0 5px;
  padding: 0;
}
.v2contact__book-block-anno-text p {
  font-size: 100%;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-left: 1em;
  text-indent: -1em;
}

.v2contact__book-btn {
  font-size: 16px;
  margin: 40px auto 0;
  padding: 40px 0 0;
  border-top: 1px solid #eee;
  text-align: center;
}
.v2contact__book-btn a {
  display: block;
  max-width: 400px;
  margin: 0 auto;
  padding: 15px 10px;
  border-radius: 10px;
  background: #e65550;
  background: -webkit-gradient(linear,83% 0%,83% 100%,color-stop(0, rgb(235 130 124)),color-stop(1, rgb(235,85,80)));
  background: -webkit-linear-gradient(-90deg,rgb(235 130 124) 0%,rgb(235,85,80) 100%);
  background: linear-gradient(180deg,rgb(235 130 124 / 1) 0%,rgb(235,85,80) 100%);
}
.v2contact__book-btn-text {
  color: #fff;
}


/* modal
---------------------------------------------- */
.modal__body {
  display: none;
  width: 100%;
  height: calc(100vh - 120px);
  background: rgba(255,255,255,0.98);
  overflow-y: scroll;
  position: fixed;
  left: 0;
  right: 0;
  top: 100px;
  z-index: 1010;
  overscroll-behavior-y: contain;
}
.modal__body::after {
    content: '';
    width: 1px;
    height: calc(100vh - 120px);
    display: block;
    background: transparent;
}
.modal__cont {
  max-width: 962px;
  margin: auto;
  padding: 5% 20px;
}
.modal__cont .modal__btn-close {
  display: block;
  color: inherit;
  font-size: 60px;
  line-height: 1;
  font-weight: 300;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}


/* contact
---------------------------------------------- */
.v2contact__select-block-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap:         wrap;
}
.v2contact__select-block {
  width: 31%;
  margin-left: 3.5%;
}
.v2contact__select-block:first-child {
  margin-left: 0;
}
.v2contact__select-block-btn {
  padding: 8px 10px 10px;
  background: #e1d7d7;
  border: 2px solid #e1d7d7;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
}
.v2contact__select-block-btn.is-active {
  color: #e65550;
}
.v2contact__select-block-check-list {
  display: none;
  padding: 20px 5px;
}

.v2contact__select-btn {
  font-size: 16px;
  margin: 40px auto 0;
  padding: 40px 0 0;
  border-top: 1px solid #eee;
  text-align: center;
}
.v2contact__form-submit-btn {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  color: #fff;
  display: block;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  margin: 0 auto;
  padding: 15px 10px;
  border-radius: 10px;
  background: #e65550;
  background: -webkit-gradient(linear,83% 0%,83% 100%,color-stop(0, rgb(235 130 124)),color-stop(1, rgb(235,85,80)));
  background: -webkit-linear-gradient(-90deg,rgb(235 130 124) 0%,rgb(235,85,80) 100%);
  background: linear-gradient(180deg,rgb(235 130 124 / 1) 0%,rgb(235,85,80) 100%);
}
.linkbtn.v2contact__form-submit-btn[disabled],
.linkbtn.v2contact__form-submit-btn[disabled]:hover {
  cursor: default;
  background: #eee;
  opacity: 1;
}
.linkbtn.v2contact__form-submit-btn:hover {
  opacity: 0.7;
}

.v2contact__select-btn-text {
  color: #fff;
}
.v2contact__form-submit-btn.btn-2 {
    max-width: 200px;
}

.btn-2 .v2contact__form-submit-btn {
    max-width: 200px;
    display: inline-block;
    margin: 0 10px;
}

.v2contact__form-submit-btn.cancel-btn {
    background: #ccc;
    color: #444;
}

/* form-table
---------------------------------------------- */
.form-type {
  display: none;
}
.v2contact .form-table {
  width: 100%;
  border: solid 10px #F3F1ED;
  border-radius: 5px;
}
.v2contact .form-table_fixed {
  table-layout: fixed;
}
.v2contact .form-table th {
  width: 30%;
  padding: 12px 15px;
  background: #F5F5F1;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.v2contact .form-table td {
  padding: 15px;
  vertical-align: middle;
}
.v2contact .form-table tr + tr th,
.v2contact .form-table tr + tr td {
  border-top: solid 1px #E3DFD5;
}
.v2contact .form-table th .font-sm {
  font-size: 90%;
  display: block;
}
.v2contact .form-table td .font-sm {
  font-size: 90%;
}
.v2contact .form-table td .form-row {
  margin: 5px 0;
}
.v2contact .form-table td .form-row-title {
  margin: 0 0 10px;
  border-bottom: 1px dashed #E3DFD5;
  padding-bottom: 4px;
}
.v2contact .form-table hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #E3DFD5;
  margin: 15px 0;
  padding: 0;
}
.v2contact .form-table textarea {
  border-radius: 3px;
  border: 1px solid #ccc;
  padding: 7px;
  width: 100%;
  height: 120px;
  resize: vertical;
  font: inherit;
  line-height: 1.6;
}
.v2contact .form-table .input-list li {
  display: inline-block;
  margin-right: 10px;
}
.v2contact .form-table .checkbox-list li {
  display: inline-block;
  margin: 0 10px 5px 0;
}
.v2contact .form-table .input-name,
.v2contact .form-table .input-furigana,
.v2contact .form-table .input-address,
.v2contact .form-table .input-tel,
.v2contact .form-table .input-zip {
  width: 230px;
}
.v2contact .form-table td .form-row .form-row-cell.-aleft {
    display: inline-block;
    width: 72%;
    text-align: left;
}

.v2contact .form-table td .form-row .form-row-cell.-aright {
    display: inline-block;
    width: 20%;
    text-align: right;
}
.v2contact .beforesubmit {
  text-align: center;
/*  margin: 3em auto;*/
}
.v2contact .agreement {
  width: 100%;
  height: 260px;
  padding: 10px;
  font-family: inherit;
  color: #555;
  border-radius: 3px;
  border: 1px solid #ccc;
  overflow: auto;
}


.v2contact__form .caution {
  margin: 10px 0;
  padding: 20px 10px;
  border: solid 3px #FDC1C2;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
}
.v2contact__form .validate {
  color: #FF4D4D;
  font-weight: normal;
}
.v2contact__form .alert {
  color: #FF4D4D;
  font-weight: normal;
  white-space: nowrap;
}

.v2contact__form .alert-required {
  display: inline-block;
  margin: 4px;
  padding: 2px 4px;
  border-radius: 4px;
  background: #FE6D71;
  color: #fff;
}

.v2contact__send {
  text-align: center;
}

/* form
---------------------------------------------- */

.v2contact ::placeholder {
  color: #ccc;
}
.v2contact ::-webkit-input-placeholder {
  color: #ccc;
}
.v2contact :-ms-input-placeholder {
  color: #ccc!important;
}
.v2contact ::-ms-input-placeholder {
  color: #ccc;
}
.v2contact :-moz-placeholder {
  color: #ccc;
}
.v2contact ::-moz-placeholder {
  color: #ccc;
}

.v2contact input[type="text"],
.v2contact input[type="email"],
.v2contact input[type="tel"],
.v2contact input[type="number"],
.v2contact select {
  font: inherit;
  line-height: 1.5;
  border: 1px solid #ccc;
  width: 100%;
  padding: 5px 7px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.v2contact .form-table .select-book-num,
.v2contact .form-table .input-book-num {
  width: 60px;
}

.v2contact label {
  margin: 0;
  font-weight: normal;
  cursor: pointer;
}

.v2contact .form-label {
  display: inline-block;
  padding: 5px 0;
  margin-right: 20px;
}

.v2contact .input-checkbox {
  cursor: pointer;
  border: 1px solid #ccc;
  vertical-align: -6px;
  -webkit-appearance: none;
  position: relative;
  margin: 0 4px 0 0;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  width: 22px;
  height: 22px;
  background: #fff;
}

.v2contact .input-checkbox:checked {
  background: #fff;
  border: 1px solid #ccc;
}

.v2contact .input-checkbox:checked:before {
  position: absolute;
  left: 0px;
  top: 15px;
  display: block;
  content: "";
  width: 10px;
  height: 3px;
  border-radius: 5px;
  background: #e65550;
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: right center;
}

.v2contact .input-checkbox:checked:after {
  display: block;
  position: absolute;
  left: 8px;
  top: 15px;
  content: "";
  width: 16px;
  height: 3px;
  border-radius: 5px;
  background: #e65550;
  -webkit-transform: rotate(-53deg);
  -webkit-transform-origin: left center;
}

.v2contact .input-radio {
  cursor: pointer;
  border: 1px solid #ccc;
  vertical-align: -6px;
  -webkit-appearance: none;
  position: relative;
  margin: 0 4px 0 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  width: 22px;
  height: 22px;
  background: #fff;
}

.v2contact .input-radio:checked {
  background: #fff;
  border: 1px solid #ccc;
}

.v2contact .input-radio:checked:before {
  position: absolute;
  left: 20%;
  top: 20%;
  display: block;
  content: "";
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: #e65550;
}

/* inherit btn style from /jp */
.v2contact .btnwrap {
    text-align: center;
    font-size: 1rem;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.v2contact .btnwrap .linkbtn {
    display: block;
    text-align: center;
    width: 90%;
    max-width: 400px;
}
.btnwrap .linkbtn.-small {
    width: 60%;
    max-width: 240px;
    margin-bottom: 20px;
}

/* media query
---------------------------------------------- */
@media screen and (max-width: 739px) {
  .v2contact p {
    padding: 0 2%;
  }
  .v2contact__inner {
    padding: 25px 10px;
  }
  .v2contact__section-header {
    font-size: 16px;
  }
  .v2contact__form-box {
    width: 100%;
    margin: 10px 0;
  }
  .v2contact__form-box a {
    padding: 25px 10px;
    border-radius: 20px;
  }

  .v2contact__book-block {
    width: 100%;
    margin: 0 auto 40px;
  }

  .v2contact__select-block {
    width: 100%;
    margin: 0 auto 20px;
  }

  .modal__cont {
    padding: 40px 20px 20px;
  }
  .modal__cont .modal__btn-close {
    font-size: 40px;
    right: 10px;
    top: 10px;
  }
  .v2contact__select-btn {
    margin: 20px auto 0;
    padding: 30px 0 0;
  }


  .v2contact .form-table th,
  .v2contact .form-table td {
    display: block;
    width: 100%;
  }
  .v2contact .form-table th {
    text-align: left;
    font-weight: 500;
  }
  .v2contact .form-table .input-list li {
    width: 100%;
    margin: 5px 0;
  }
  .v2contact .form-table .input-name, .v2contact .form-table .input-furigana, .v2contact .form-table .input-address, .v2contact .form-table .input-tel, .v2contact .form-table .input-zip {
    width: 85%;
  }
  .v2contact .form-table td .form-row .form-row-cell.-aleft {
      display: block;
      width: 100%;
  }

  .v2contact .form-table td .form-row .form-row-cell.-aright {
      display: block;
      width: 100%;
  }

  .v2contact .beforesubmit {
    text-align: left;
  }
  .v2contact__send {
    text-align: left;
  }

}
/* sync styles */
#contents .regist-form p {
    padding: 16px 10px;
}
@media screen and (max-width: 739px) {
  #contents .regist-form p {
      padding: 0 2%;
  }
}

