@charset "UTF-8";
/*  共通 -------------------- */
:root {
  --color-brown: #553600;
  --color-white: #fff;
  --color-ivory: #f6f5f1;
  --color-main: rgba(45, 29, 1, 0.69);
}
body {
  font-family: "Noto Serif JP","Helvetica Neue",Arial, "Hiragino Kaku Gothic ProN","Hiragino Sans",
    Meiryo, sans-serif;
  color: var(--color-brown);
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  overflow-x: hidden;
}
h1 {
  color: var(--color-white);
  font-size: 30px;
  text-align: right;
}
h2 {
  font-size: 40px;
  font-weight: 500;
}
.optima {
  font-family: "optima-lt-pro", serif;
}
.italic {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.br {
  display: block;
}

/*  コンポーネント -------------------- */

/*  button */
.button-container a {
  color: var(--color-white);
  display: inline-block;
  width: 250px;
  height: 60px;
  padding-left: 20px;
  line-height: 60px;
  border: 1px solid var(--color-white);
  position: relative;
  transition: all 0.3s;
}
.button-container a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.button-container a::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.button-container a::after {
  content: "";
  width: 11px;
  height: 8px;
  background-color: var(--color-white);
  clip-path: polygon(0 43%, 0 100%, 100% 100%);
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
}
.button-right {
  text-align: right;
}
.button-right a {
  text-align: left;
}
/* nav */
.fixed-nav {
  width: 100%;
  height: 60px;
  padding: 0 60px;
  background-color: rgba(45, 29, 1, 0.71);
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: -60px;
  left: 0;
  z-index: 100;
}
.nav-logo {
  color: var(--color-white);
  font-size: 20px;
  line-height: 60px;
}
/* ハンバーガーメニュー */
.nav-icon {
  display: block;
  width: 36px;
  height: 2px;
  padding: 14px 0;
  cursor: pointer;
  transition: all 0.3s;
  /* z-index: 100; */
}
.nav-icon:hover {
  opacity: 0.7;
}
.nav-border,
.nav-border::before,
.nav-border::after {
  display: block;
  width: 35px;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-in;
}
.nav-border {
  position: relative;
}
.nav-border::before {
  content: "";
  top: 13px;
}
.nav-border::after {
  content: "";
  top: -13px;
}
.nav-icon.js-icon-open span {
  background-color: transparent;
}
.nav-icon.js-icon-open span::before {
  transform: rotate(-45deg);
  top: 0;
}
.nav-icon.js-icon-open span::after {
  transform: rotate(45deg);
  top: 0;
}
/* スライドメニュー */
.slide-menu-bg {
  width: 100%;
  height: 100vh;
  background-color: var(--color-main);
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: none;
}
.nav-slide {
  color: var(--color-white);
  width: 300px;
  height: 100vh;
  background-color: #2d1d01;
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  position: fixed;
  top: 0;
  right: -300px;
  transition: right 0.3s ease-in;
  z-index: 90;
}
.menu-h2 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.menu-h2::after {
  content: "";
  display: block;
  width: 205px;
  height: 1px;
  background-color: var(--color-white);
  margin: 16px auto 24px;
}
.slide-menu ul li {
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}
.slide-menu ul li:hover {
  opacity: 0.7;
}
.nav-slide .button-container a {
  text-align: left;
}
.sns-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 32px;
}
.sns-container img {
  width: 30px;
  height: auto;
}
.click-button {
  color: var(--color-white);
  display: block;
  width: 180px;
  height: 130px;
  border: 1px solid var(--color-white);
  text-align: center;
  padding: 8px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.bg-main {
  background-color: var(--color-main);
}
.bg-white {
  background-color: rgba(255, 255, 255, 0.2);
}
.click-button span:nth-child(3) {
  font-size: 14px;
}
.click-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
  margin: 0 auto;
}
.click-button:hover {
  transform: translateX(-50%) translateY(10px);
}
/*  フェードインアニメーション-------------------- */
.fadein {
  transform: translate3d(0, 30px, 0);
  opacity: 0;
  transition: all 0.5s ease-in;
}
.fadein.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
/*  header -------------------- */
.fv-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 40px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 60%);
}
.fv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}
/* ビデオのフィルター */
.fv-container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(rgba(45, 29, 1, 0.1) 30%, transparent 31%),
    radial-gradient(#111 30%, transparent 31%);
  background-size: 3px 3px;
  background-position: 0 0, 6px 6px;
  z-index: -10;
}
/* フォールバックスライドショー（初期は非表示）*/
.fallback-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -20;
  display: none;
}
.slide-img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  opacity: 0;
  animation: slideshow 12s infinite;
}
.slide-img:nth-child(1) {
  animation-delay: 0s;
}
.slide-img:nth-child(2) {
  animation-delay: 3s;
}
.slide-img:nth-child(3) {
  animation-delay: 6s;
}
.slide-img:nth-child(4) {
  animation-delay: 9s;
}
.slide-img:nth-child(5) {
  animation-delay: 12s;
}
.slide-img:nth-child(6) {
  animation-delay: 15s;
}
.slide-img:nth-child(7) {
  animation-delay: 18s;
}
.slide-img:nth-child(8) {
  animation-delay: 21s;
}
@keyframes slideshow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.header-copy {
  color: var(--color-white);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.7;
  margin-bottom: 40px;
}
.header-text {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.25em;
  line-height: 1.8;
  margin-bottom: 24px;
}
.logo1 {
  letter-spacing: 0.25em;
}
.logo2 {
  letter-spacing: 0.32em;
}
/*  reason -------------------- */
.reason,
.reason,
.reason {
  width: 100%;
  height: 100vh;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.reason-img1 {
  background-image: url(../img/reason1-bg.jpg);
}
.reason-img2 {
  background-image: url(../img/reason2-bg.jpg);
}
.reason-img3 {
  background-image: url(../img/reason3-bg.jpg);
}
.reason-container {
  color: var(--color-white);
  width: 548px;
  height: 100vh;
  background-color: var(--color-main);
  padding: 100px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
}
.sentence1 {
  font-size: 32px;
  letter-spacing: 0.19em;
}
.sentence2 {
  font-size: 32px;
  letter-spacing: 0.32em;
}
.sentence3 {
  font-size: 56px;
  letter-spacing: 0.27em;
}
.reason-list {
  margin-top: 32px;
}
.reason1-active,
.reason2-active,
.reason3-active {
  position: relative;
}
.reason1-active::before,
.reason2-active::before,
.reason3-active::before {
  content: "";
  display: block;
  width: 5px;
  height: 40px;
  background-color: var(--color-white);
  position: absolute;
  left: -2px;
}
.reason1-active::before {
  top: 0;
}
.reason2-active::before {
  top: 40px;
}
.reason3-active::before {
  top: 84px;
}
.reason-list li {
  padding-left: 16px;
  border-left: 1px solid var(--color-white);
}
.reason-list li p {
  font-size: 16px;
  letter-spacing: 0.16em;
  line-height: 40px;
}
.reason-list li span {
  padding-right: 16px;
}
.reason-h3 {
  font-size: 26px;
  letter-spacing: 0.15em;
}
.reason-line {
  display: block;
  width: 422px;
  height: 1px;
  background-color: var(--color-white);
  margin: 16px 0;
}
/*  gallery -------------------- */
.gallery {
  background: url(../img/gallery-bg.jpg) no-repeat top/cover fixed;
  width: 100%;
  height: 1682px;
  position: relative;
  z-index: -40;
}
.gallery::before {
  content: attr(data-gallery);
  display: block;
  font-family: "optima-lt-pro", serif;
  color: rgba(45, 29, 1, 0.3);
  font-size: 110px;
  letter-spacing: 0.18em;
  line-height: 1;
  position: absolute;
  top: 40px;
  left: 40px;
}
.gallery h2 {
  padding-top: 120px;
  padding-left: 280px;
}
.gallery-container {
}

.gallery-copy {
  color: var(--color-white);
  font-size: 51px;
  width: 690px;
  height: 300px;
  background-color: var(--color-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 100px;
  margin: 500px auto 0;
  position: relative;
}
.vertical-border1,
.vertical-border2,
.vertical-border3 {
  width: 1px;
  height: 300px;
  background-color: var(--color-white);
  position: absolute;
  top: 0;
}
.vertical-border1 {
  left: 20px;
}
.vertical-border2 {
  left: 40px;
}
.vertical-border3 {
  right: 20px;
}
.horizontal-border1,
.horizontal-border2,
.horizontal-border3 {
  width: 690px;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
}
.horizontal-border1 {
  top: 20px;
}
.horizontal-border2 {
  top: 40px;
}
.horizontal-border3 {
  bottom: 20px;
}
.img1 {
  position: absolute;
  top: 300px;
  left: 79%;
  z-index: -20;
}
.img2 {
  position: absolute;
  top: 675px;
  left: 40%;
  z-index: -10;
}
.img3 {
  position: absolute;
  top: 500px;
  left: 7%;
  z-index: -30;
}
.img4 {
  position: absolute;
  top: 1069px;
  left: 16%;
  z-index: -20;
}
.img5 {
  position: absolute;
  top: 1020px;
  left: 79%;
  z-index: -30;
}
.img6 {
  position: absolute;
  top: 1602px;
  left: 50%;
  z-index: -20;
}
/*  process -------------------- */
.process {
  background: url(../img/process-bg.jpg) no-repeat center/cover;
  width: 100%;
  position: relative;
  z-index: -20;
}
.process-blur {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.18);
  position: absolute;
  z-index: -10;
}
.process-wrapper {
  padding: 120px 60px;
}
.process h2 {
  text-align: center;
}
.process::before,
.process::after {
  width: 100%;
  height: 100%;
  display: inline-block;
  font-family: "optima-lt-pro", serif;
  font-size: 110px;
  letter-spacing: 0.13em;
  background: inherit; /* 親の背景を継承する */
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  position: absolute;
  left: 40px;
  z-index: -5;
}
.process::before {
  content: attr(data-process1);
  top: 0px;
}
.process::after {
  content: attr(data-process2);
  top: 110px;
}
.process-container {
  width: 1220px;
  margin: 125px auto 0;
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.step-icon {
  color: var(--color-white);
  font-size: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background-color: rgba(45, 29, 1, 0.8);
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}
.step-container {
  height: 340px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 77px 30px 30px;
  position: relative;
}
.step-text {
  display: grid;
  grid-template-rows: 66px 1fr;
  align-items: center;
  gap: 16px;
}
.step-h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}
.step-text p {
  text-align: justify;
}
/*  voice -------------------- */
.voice {
  position: relative;
  padding: 120px 0 0;
}
.voice::before,
.voice::after {
  display: inline-block;
  font-family: "optima-lt-pro", serif;
  font-size: 110px;
  letter-spacing: 0.13em;
  line-height: 1;
  position: absolute;
  right: 40px;
  z-index: -5;
  background-color: var(--color-white);
}
.voice::before {
  content: attr(data-voice1);
  color: rgba(45, 29, 1, 0.09);
  top: 40px;
}
.voice::after {
  content: attr(data-voice2);
  color: rgba(45, 29, 1, 0.3);
  top: 150px;
}
.voice h2 {
  text-align: center;
  margin-bottom: 103px;
}
.voice-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  margin: 0 auto 72px;
  position: relative;
}
.voice-container::before,
.voice-container::after {
  content: "";
  display: block;
  width: 1px;
  height: 775px;
  background-color: var(--color-brown);
  position: absolute;
  top: -287px;
  z-index: -10;
}
.voice-container::before {
  left: 32px;
}
.voice-container::after {
  right: 32px;
}
.voice-container.reverse {
  flex-direction: row-reverse;
}
.voice-img {
  width: 50%;
  height: 487px;
  overflow: hidden;
}
.voice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.voice-img img:hover {
  transform: scale(1.05);
}
.voice-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.voice-h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 0 32px 24px;
}
.voice1-text-padding {
  padding: 24px 64px 24px 32px;
  text-align: justify;
}
.voice2-text-right {
  text-align: right;
}
.voice2-text-padding {
  padding: 24px 32px 24px 64px;
  text-align: justify;
}
.voice-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-brown);
}
/*  price -------------------- */
.price {
  padding: 120px 0;
  position: relative;
}
.price::before,
.price::after {
  display: inline-block;
  font-family: "optima-lt-pro", serif;
  font-size: 110px;
  letter-spacing: 0.13em;
  line-height: 1;
  position: absolute;
  left: 40px;
  z-index: -5;
}
.price::before {
  content: attr(data-price1);
  color: rgba(45, 29, 1, 0.3);
  top: 40px;
}
.price::after {
  content: attr(data-price2);
  color: rgba(45, 29, 1, 0.09);
  top: 150px;
}
.price h2 {
  text-align: center;
}
.tab-container {
  width: 736px;
  display: flex;
  justify-content: space-between;
  margin: 72px auto 80px;
}
.tab-container li a {
  color: var(--color-white);
  display: block;
  width: 160px;
  height: 60px;
  line-height: 60px;
  background-color: var(--color-main);
  text-align: center;
  cursor: pointer;
  transition: opacity 0.8s ease;
}
.tab-container li a:hover {
  opacity: 0.7;
}
.tab-container li .js-tab-current {
  color: var(--color-brown);
  border: 1px solid var(--color-brown);
  background-color: var(--color-white);
}
.tab-container li .js-tab-current::after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background-color: var(--color-brown);
  margin: 0 auto;
}
.price-contents {
  width: 100%;

  position: relative;
}
.price-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.price-text {
  color: var(--color-white);
  width: 500px;
  height: 600px;
  background-color: var(--color-main);
  padding: 64px 50px;
  position: absolute;
  top: 0;
  right: 0;
}
.price-h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}
.price-line {
  display: block;
  width: 400px;
  height: 1px;
  background-color: var(--color-white);
  margin: 16px auto;
}
.price-detail {
  width: 365px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0 auto 32px;
}
.price-grid {
  width: 365px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  row-gap: 16px;
}
.unit {
  font-size: 12px;
}
.price-caution {
  font-size: 16px;
  width: 365px;
  margin: 24px auto 64px;
}
.price-text .button-container {
  text-align: center;
}
.price-text .button-container a {
  text-align: left;
  background-color: var(--color-main);
}
.price-text .button-container a:hover {
  background-color: rgba(255, 255, 255, 0.18);
}
/*  faq -------------------- */
.faq {
  padding: 120px 60px;
}
.faq h2 {
  text-align: center;
}
.faq-container {
  max-width: 1000px;
  margin: 72px auto 0;
  border-bottom: 1px solid var(--color-brown);
  position: relative;
  z-index: 0;
}
.faq-container::before,
.faq-container::after {
  content: attr(data-faq);
  display: inline-block;
  font-family: "optima-lt-pro", serif;
  font-size: 230px;
  letter-spacing: 0.24em;
  line-height: 1;
  position: absolute;
  z-index: -1;
}
.faq-container::before {
  color: rgba(45, 29, 1, 0.24);
  top: 0;
  left: -400px;
  transform: rotate(-90deg);
}
.faq-container::after {
  color: rgba(45, 29, 1, 0.08);
  top: 150px;
  right: -400px;
  transform: rotate(90deg);
}
.faq p {
  width: 800px;
}
.faq-Qrow,
.faq-Arow {
  display: flex;
  padding: 24px;
}
.faq-Qrow {
  align-items: center;
  border-top: 1px solid var(--color-brown);
  background-color: var(--color-ivory);
  cursor: pointer;
}
.faq-Arow {
  border-top: 1px solid var(--color-brown);
}
.faq-Qicon,
.faq-Aicon {
  font-size: 26px;
  font-weight: 700;
  min-width: 45px;
  width: 45px;
  height: 45px;
  display: block;
  text-align: center;
  line-height: 45px;
  margin-right: 24px;
}
.faq-Qicon {
  color: var(--color-white);
  background-color: var(--color-main);
}
.faq-Aicon {
  border: 1px solid var(--color-brown);
}
.faq-arrow1,
.faq-arrow2,
.faq-arrow3 {
  display: inline-block;
  min-width: 15px;
  width: 15px;
  height: 15px;
  border-right: 2px solid var(--color-brown);
  border-bottom: 2px solid var(--color-brown);
  transform: rotate(45deg);
  cursor: pointer;
  margin-left: 58px;
  transition: all 0.3s ease;
}
.faq-arrow1.faq-open,
.faq-arrow2.faq-open,
.faq-arrow3.faq-open {
  transform: rotate(-135deg);
}
/*  contact -------------------- */
.contact {
  position: relative;
  padding-top: 195px;
}
.contact::before {
  content: attr(data-contact);
  display: block;
  font-family: "optima-lt-pro", serif;
  color: rgba(45, 29, 1, 0.57);
  font-size: 150px;
  letter-spacing: 0.18em;
  line-height: 1;
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.contact-container {
  background-color: var(--color-ivory);
  display: flex;
  justify-content: center;
  gap: 40px;
}
.contact-text {
  width: 660px;
  padding: 120px 0 120px 60px;
  position: relative;
  z-index: 10;
}
.contact-text::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--color-brown);
  position: absolute;
  top: 0;
  left: 98px;
}
.contact-margin {
  margin-left: 100px;
  margin-bottom: 24px;
}
.contact-text h2 {
  line-height: 1;
  margin-bottom: 40px;
}
.contactStep-row {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.contactStep-icon {
  color: var(--color-white);
  line-height: 1.2;
  width: 75px;
  height: 75px;
  background-color: var(--color-brown);
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.contact-form {
  width: 660px;
  padding: 120px 60px 120px 0;
}
.js-alert {
  color: #9e0b1f;
  margin-left: 24px;
}
.required,
.optional {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  width: 45px;
  height: 29px;
  text-align: center;
  line-height: 29px;
  margin-right: 16px;
}
.required {
  color: var(--color-white);
  background-color: var(--color-brown);
}
.optional {
  border: 1px solid var(--color-brown);
}
.contact-name,
.contact-tel,
.contact-mail,
.contact-message,
.contact-checkbox {
  margin-bottom: 32px;
}
input[type="text"],
input[type="tel"] {
  width: 400px;
  border: 1px solid var(--color-brown);
  background-color: var(--color-white);
  padding: 4px 16px;
  margin-top: 8px;
}
input[type="email"],
textarea {
  width: 600px;
  border: 1px solid var(--color-brown);
  background-color: var(--color-white);
  padding: 4px 16px;
  margin-top: 8px;
}
input[type="checkbox"] {
  border: 1px solid var(--color-brown);
  background-color: var(--color-white);
  width: 20px;
  height: 20px;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus,
input[type="checkbox"]:focus {
  outline: 2px solid rgba(45, 29, 1, 0.3);
}

textarea {
  height: 227px;
}
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: #ac9774;
  letter-spacing: 0.12em;
}
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.privacy {
  text-decoration: underline;
}
.submit-button {
  color: var(--color-white);
  width: 250px;
  height: 60px;
  padding-left: 20px;
  line-height: 60px;
  background-color: var(--color-brown);
  border: 1px solid var(--color-brown);
  transition: all 0.3s ease;
}
.submit-button:hover {
  background-color: rgba(85, 54, 0, 0.8);
}
.submit-container {
  width: 250px;
  margin: 48px auto 0;
  position: relative;
}
.submit-container::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.submit-container::after {
  content: "";
  width: 11px;
  height: 8px;
  background-color: var(--color-white);
  clip-path: polygon(0 43%, 0 100%, 100% 100%);
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
}
.button-right {
  text-align: right;
}
.button-right a {
  text-align: left;
}

/*  footer -------------------- */
footer {
  background: url(../img/footer-bg.jpg) no-repeat center/cover;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  padding: 40px 60px;
}
.footer-logo {
  font-size: 72px;
  line-height: 1;
  text-shadow: -17px 3px 10px rgba(54, 32, 0, 0.31);
  transform: skew(0, -5deg);
  margin-bottom: 64px;
}
.footer-address {
  font-weight: 600;
  transform: skew(0, -5deg);
}
.footer-filter {
  width: 575px;
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(45, 29, 1, 0.75) 30%
  );
}
.footer-nav {
  color: var(--color-white);
  font-weight: 400;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-nav nav ul li {
  border-left: 1px solid var(--color-white);
  line-height: 32px;
  margin-right: 32px;
}
.footer-nav nav ul li:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.footer-nav nav ul li a {
  margin-left: 24px;
}
.footer-sns {
  width: 255px;
  margin: 32px 0 32px;
  padding-left: 24px;
}
.footer-sns img {
  width: 30px;
  height: auto;
  margin-right: 16px;
}
.copyright {
  letter-spacing: 0.25em;
}
