@charset "UTF-8";
/*
====================================================================
 Fonts
====================================================================
*/
/* Noto Serif Bold */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/noto-serif-jp-bold.woff2") format("woff2");
}
/* Noto Serif Medium */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/noto-serif-jp-medium.woff2") format("woff2");
}
/* Cormorant Bold */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Cormorant Medium */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Bodoni Regular */
@font-face {
  font-display: swap;
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("./fonts/bodoni-moda-regular.woff2") format("woff2");
}
/*
====================================================================
 Colors
====================================================================
*/
/*
====================================================================
 Mixins
====================================================================
*/
.section__body {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

.in-viewport .section__body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/*
====================================================================
 PRIVACY POLICY
====================================================================
*/
.page-section.privacy h2 .jp {
  padding: 0 80px;
}
.page-section.privacy h3 {
  margin-top: 1.75em;
  font-weight: 600;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.page-section.privacy h3::before {
  content: "";
  display: block;
  position: static;
  width: 7px;
  height: 14px;
  background-color: #c9a412;
}

/*
====================================================================
 CONTACT
====================================================================
*/
.contact h2 {
  margin-bottom: 50px;
}

.instruction {
  text-align: center;
  margin-bottom: 20px;
}

.form {
  border: 1px solid #ccc;
}
.form th {
  background-color: #c7b299;
  color: white;
  padding: 30px 20px;
  vertical-align: top;
  border-bottom: 1px solid white;
  width: 240px;
}
.form th span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form th span::after {
  content: "必須";
  display: block;
  position: static;
  width: auto;
  height: auto;
  background-color: #ed1c24;
  line-height: 1;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 5px;
}
.form td {
  padding: 20px 40px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.form tr:last-child th, .form tr:last-child td {
  border-bottom: none;
}

input,
textarea {
  border: none;
  outline: none;
  background-color: #f2f2f2;
  width: 100%;
  font-size: 16px;
  padding: 15px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  text-rendering: optimizeLegibility;
  vertical-align: baseline;
}

textarea {
  height: 170px;
}

::-moz-placeholder {
  color: #999;
}

::placeholder {
  color: #999;
}

.concent {
  width: 690px;
  margin: 40px auto;
  border: 1px solid #333;
}
.concent dt {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: white;
  background-color: #333;
}
.concent dd {
  height: 85px;
  overflow-y: scroll;
  padding: 10px;
  font-size: 12px;
}

.button__block {
  margin: 60px 0 40px 0;
  text-align: center;
}
.button__block button {
  width: 400px;
  height: 97px;
  background: url(../images/contact/bg_btn_submit.svg) center center/cover no-repeat;
  border-radius: 10px;
  color: white;
  font-size: 24px;
  font-weight: 600;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.3));
  position: relative;
  letter-spacing: 0.1em;
}
.button__block button::after {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 100%;
  background: url(../images/contact/icon_arrow_form.svg) center center/contain no-repeat;
  top: 0;
}
.button__block button[type=submit]::after {
  right: 20px;
}
.button__block button.button--back::after {
  left: 20px;
  transform: scale(-1, 1);
}
.button__block button span {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.error {
  font-size: 14px;
  color: #ed1c24;
}

.form--finish {
  text-align: center;
}
.form--finish h2 {
  margin-bottom: 130px;
}
.form--finish h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 60px;
}

/*----------------------------------------------------------------*/
@media (max-width: 767px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / PRIVACY POLICY
  ====================================================================
  */
  .page-section.privacy h2 {
    width: 100%;
    margin-bottom: 50px;
  }
  .page-section.privacy h2 .en img {
    height: 34px;
  }
  .page-section.privacy h2 .jp {
    padding: 0;
  }
  /*
  ====================================================================
   SP / CONTACT
  ====================================================================
  */
  .contact h2 {
    margin-bottom: 30px;
  }
  .contact h2 .en img {
    height: 32px;
  }
  .form th {
    display: block;
    padding: 10px 15px;
    width: 100%;
  }
  .form td {
    display: block;
    padding: 20px 15px;
  }
  textarea {
    height: 125px;
  }
  .concent {
    width: 100%;
  }
  .button__block {
    margin: 40px 0;
  }
  .button__block button {
    width: 100%;
    border-radius: 5px;
    font-size: 25px;
  }
  .form--confirm .button__block button {
    padding-right: 1em;
  }
  .form--finish h2 {
    margin-bottom: 30px;
  }
  .form--finish h3 {
    font-size: 25px;
    margin-bottom: 30px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1119px) {
  /*----------------------------------------------------------------*/
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=contact.css.map */