@charset "UTF-8";

/* =====================
  変数
===================== */
:root {
  --inner-width: 1120px;
  --header-height: 100px;
}

/* =====================
  共通
===================== */
.inner {
  width: var(--inner-width);
  margin-inline: auto;
}

.tecs .title-wrapper span::before {
  background: var(--white);
}
/* =====================
  mv
===================== */
.main .mv {
  background: var(--black);
  padding-top: 310px;
  position: relative;
}
.main .mv .mv-bg {
  background-image: url('/assets/image/contact/contact_bg.png');
  height: 32.61538461538461vw;
  min-height: 424px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}
.main .mv h1 {
  font-family: var(--mincho);
  font-size: 80px;
  color: var(--white);
  margin-top: 22px;
  padding-inline: 50px;
  position: relative;
  z-index: 2;
  line-height: 1;
}
.main .about {
  width: 1200px;
  margin-top: 79px;
  color: var(--white);
  margin-inline: auto;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}
.main .about::after {
  content: '';
  background-image: url('/assets/image/contact/book.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 198px;
  height: 183px;
  display: block;
  position: absolute;
  right: 70px;
  opacity: 0.5;
}
/* =====================
  お問い合わせフォーム
===================== */

/* ==== 背景 ==== */
.contact {
  background: var(--black);
  color: var(--white);
  padding-bottom: 256px;
}
.contact .contact-wrapper {
  min-width: 1200px;
  position: relative;
  margin-inline: auto;
}
.contact .contact-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100% - 1200px) / 2 + 1200px);
  height: 100%;
  background-image: url('/assets/image/common/bg.png');
  background-repeat: repeat;
  background-position: 0 0;
  margin-top: 90px;
}
.contact .contact-wrapper .contact-inner {
  position: relative;
  width: 1200px;
  margin-inline: auto;
  padding-top: 110px;
  padding-inline: 41px;
  color: #fff;
}
.contact .contact-wrapper .contact-inner *::selection {
  background: #0d0602;
}
/* ==== タイトル ==== */
.contact .contact-wrapper .contact-inner .title-wrapper {
  margin-top: 76px;
}
/* ==== フォーム ==== */
.contact .contact-wrapper .contact-inner .form-inner {
  padding-right: 78px;
}
.contact .contact-wrapper .contact-inner .form-table {
  width: 1040px;
  border-collapse: separate;
  border-spacing: 0 26px;
  margin-top: 30px;
}
.contact .contact-wrapper .contact-inner .form-table tr.must th label::after {
  content: '*';
  display: inline-block;
  margin-left: 4px;
}
.contact .contact-wrapper .contact-inner .form-table th {
  font-family: var(--mincho);
  font-size: 17px;
  width: 294px;
  padding-left: 80px;
  padding-block: 25px;
  vertical-align: top;
}
.contact .contact-wrapper .contact-inner .form-table td {
  color: var(--black);
}
.contact .contact-wrapper .contact-inner .form-table td input,
.contact .contact-wrapper .contact-inner .form-table td textarea {
  width: 100%;
  padding-inline: 66px;
  padding-block: 25px;
  background-color: var(--white);
  border-radius: 2px;
}
/* ==== 郵便番号 ==== */
.contact .contact-wrapper .contact-inner .post .u-form-unit {
  display: flex;
  align-items: center;
  gap: 28px;
}
.contact .contact-wrapper .contact-inner .post .u-form-unit .post-1 {
  width: 157px;
}
.contact .contact-wrapper .contact-inner .post .u-form-unit .post-2 {
  width: 166px;
}
.contact .contact-wrapper .contact-inner .post .u-form-unit span {
  color: var(--white);
}
/* ==== テキストエリア ==== */

.u-form-unit textarea {
  min-height: 330px;
}
/* ==== プライバシーポリシー ==== */
.contact .contact-wrapper .contact-inner .check {
  text-align: center;
  margin-top: 34px;
}
.contact .contact-wrapper .contact-inner .check input[type='checkbox'] {
  appearance: none;
  outline: 2px solid #fff;
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.contact .contact-wrapper .contact-inner .check input[type='checkbox']:hover {
  opacity: 0.7;
}
.contact .contact-wrapper .contact-inner .check input[type='checkbox']:checked {
  appearance: checkbox;
  accent-color: var(--coffee);
}
.contact .contact-wrapper .contact-inner .check label {
  padding: 0.5em 4px;
  font-family: var(--mincho);
  cursor: pointer;
}
.contact .contact-wrapper .contact-inner .check a {
  text-decoration: underline;
}
/* ==== 送信ボタン ==== */
.contact .contact-wrapper .contact-inner button {
  font-family: var(--mincho);
  width: 360px;
  background-color: var(--red);
  padding-block: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-top: 48px;
  gap: 28px;
}
