@charset "UTF-8";
/* ==============================
  base
============================== */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
/* ==============================
	modal

  modal共通

  modal-form only
  modal-news only
============================== */
.modal {
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  height: 100%;
  padding-top: 5%;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
}

.modal_trigger {
  cursor: pointer;
}

.modal_wapper {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  margin: 0 auto;
  height: 100%;
  width: 95%;
  border-radius: 10px 10px 0 0;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .modal_wapper {
    width: 750px;
  }
}

.modal_inner {
  position: relative;
  padding: 0 20px 20px;
  overflow-y: scroll;
  height: 100%;
}

.modal_header {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #867b65;
  font-family: 'Bodoni Moda', serif;
}

.modal_header--en {
  font-size: 2.6rem;
}

.modal_header--jp {
  text-align: left;
  font-size: 1.4rem;
}

.modal_content {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.modal_close {
  position: absolute;
  right: 0px;
  top: 0;
  width: 50px;
  height: 50px;
  width: 50px;
  height: 50px;
  font-size: 0;
}

.modal_close::before, .modal_close::after,
.modal_close > span {
  display: block;
  position: absolute;
  top: 25px;
  left: 10px;
  width: 30px;
  height: 2px;
  background: -webkit-linear-gradient(45deg, #dfc698, #fae5ce, #dfc698);
  background: linear-gradient(45deg, #dfc698, #fae5ce, #dfc698);
  content: "";
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.modal_close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal_close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal.modal_on {
  -webkit-transform: translate(0, 0%);
  transform: translate(0, 0%);
}

.modal.modal_on .modal_wapper {
  overflow-y: auto;
  overflow-x: hidden;
}

.contact_hidden {
  display: none;
}

.contact_fakeform .fakeform_section {
  margin-bottom: 20px;
}

.contact_fakeform .fakeform_section .required,
.contact_fakeform .fakeform_section .no_required {
  padding: 0px 5px 1px;
  display: inline-block;
  font-size: 1.1rem;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
}

.contact_fakeform .fakeform_section .required {
  background: #da6565;
}

.contact_fakeform .fakeform_section .no_required {
  background: #659dda;
}

.contact_fakeform .fakeform_section--label {
  display: block;
  margin-bottom: 5px;
}

.contact_fakeform .fakeform_section--input {
  border-bottom: dotted 1px #000;
  width: 100%;
}

.contact_fakeform .fakeform_section--textarea {
  border: dotted 1px #000;
  width: 100%;
  height: 200px;
  border-radius: 3px;
}

.contact_fakeform .fakeform_section--submit {
  display: block;
  width: 150px;
  margin: auto;
  font-size: 2rem;
  text-align: center;
  padding: 3px 0;
  background: #ab9d83;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
}

.contact_checkform {
  background: #efede9;
  padding: 20px;
}

.contact_checkform__header {
  margin-bottom: 20px;
  font-size: 2.6rem;
  text-align: center;
}

.contact_checkform .checkform_section {
  margin-bottom: 20px;
}

.contact_checkform .checkform_section--submit {
  display: block;
  width: 150px;
  margin: auto;
  font-size: 2rem;
  text-align: center;
  padding: 3px 0;
  background: #fff;
  color: #ab9d83;
  font-weight: bold;
  border-radius: 3px;
}

.mtg_video {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #000;
}

@media screen and (min-width: 769px) {
  .mtg_video {
    padding: 0 100px;
  }
}

.mtg_video__inner {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.mtg_video__link {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 180px;
  display: block;
  background: #fff;
  font-size: 2rem;
  color: #867b65;
  padding: 5px 14px;
  border-radius: 3px;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  text-align: center;
}

.mtg_video__item {
  width: 100%;
}
