@charset "UTF-8";
/*----------------------------------------
	variables
----------------------------------------*/
:root {
  --c_main: #1e1800;
  --c_white: #FFFFFF;
  --c_bage: #d1c0a5;
  --c_gray: #BDB9B9;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1.92px;
  color: var(--c_main);
  line-height: 1;
}

a {
  text-decoration: none;
  color: var(--c_main);
  transition: all 0.3s;
  cursor: pointer;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/*----------------------------------------
	container
----------------------------------------*/
.container {
  display: flex;
}

.container--top {
  position: relative;
  width: 100%;
  height: 100vh;
}

.container--top::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url(../img/bird.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.container--about-us {
  background-image: url(../img/arita_back.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.container--bage {
  background: var(--c_bage);
  height: 100%;
}

.container--thanks {
  height: 100vh;
}

@media screen and (max-width: 767px) {
  .container {
    flex-direction: column;
  }
}
/*----------------------------------------
	gnav
----------------------------------------*/
/*PC*/
.gnav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.gnav__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-left: 20px;
}

.gnav__item {
  position: relative;
}

.gnav__link {
  color: var(--c_white);
  font-family: "EB Garamond", serif;
  font-size: 22px;
  letter-spacing: 8.4px;
}

.gnav__item.coming-soon span {
  display: none;
  font-size: 22px;
  letter-spacing: 8.4px;
  color: var(--c_white);
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gnav__item.coming-soon:hover .gnav__link {
  opacity: 0;
}

.gnav__item.coming-soon:hover span {
  display: block;
  opacity: 1;
}

/*スマホ*/
.gnav-sp {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--c_gray);
  padding: 150px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}

.gnav-sp.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0s linear 0s;
}

.gnav-sp__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gnav-sp__item {
  position: relative;
}

.gnav-sp__link {
  color: var(--c_white);
  font-family: "EB Garamond", serif;
  font-size: 14px;
  letter-spacing: 8.4px;
}

.gnav-sp__item.coming-soon span {
  display: none;
  font-size: 14px;
  letter-spacing: 8.4px;
  color: var(--c_white);
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gnav-sp__item.coming-soon:hover .gnav-sp__link {
  opacity: 0;
}

.gnav-sp__item.coming-soon:hover span {
  display: block;
  opacity: 1;
}

.gnav-sp img {
  margin-top: 60px;
  margin-left: 40px;
}

/*----------------------------------------
	sidebar
----------------------------------------*/
.sidebar {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar__sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 50px;
  left: 20px;
}

.sidebar .logo-site-ttl a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.sidebar .logo-site-ttl span {
  color: var(--c_white);
  font-family: "EB Garamond", serif;
  font-size: 20px;
  letter-spacing: 2.9px;
}

.sns {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .sidebar {
    display: none;
  }
}
/*----------------------------------------
	header
----------------------------------------*/
.header {
  display: none;
  width: 100%;
  height: 100px;
}

@media screen and (max-width: 767px) {
  .header {
    display: block;
    width: 100%;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    left: 0;
  }
  .header .logo-site-ttl {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
  }
  .header .logo-site-ttl a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .header .logo-site-ttl span {
    color: var(--c_white);
    font-family: "EB Garamond", serif;
    font-size: 12px;
    letter-spacing: 2.9px;
  }
}
/*----------------------------------------
	hamburger
----------------------------------------*/
.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    width: 70px;
    height: 70px;
    position: fixed;
    top: 20px;
    right: -15px;
    display: block;
    z-index: 2;
  }
}

.hamburger__line {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 20px;
}

.hamburger__line::before,
.hamburger__line::after {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--c_white);
  position: absolute;
  transition: transform 0.6s;
}

.hamburger__line::before {
  top: -5px;
}

.hamburger__line::after {
  top: 5px;
}

/*OPEN時スタイル*/
.hamburger[aria-expanded=true] .hamburger__line::before {
  top: 0;
  transform: rotate(135deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
  top: 0;
  transform: rotate(-135deg);
}

/*----------------------------------------
	main
----------------------------------------*/
.main {
  width: 75%;
  padding: 100px 50px;
}

@media screen and (max-width: 767px) {
  .main {
    width: 100%;
    padding: 80px 20px;
  }
}
/*----------------------------------------
    section
----------------------------------------*/
.section {
  padding: 130px 0;
}

.section + .section {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 80px 0;
  }
}
/*----------------------------------------
    span
----------------------------------------*/
.spacing {
  display: block;
  margin-bottom: 2em;
}

/*----------------------------------------
    br
----------------------------------------*/
.br--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .br--pc {
    display: none;
  }
  .br--sp {
    display: block;
  }
}
/*----------------------------------------
    page-ttl
----------------------------------------*/
.page-ttl {
  font-family: "EB Garamond", serif;
  font-size: 29px;
  letter-spacing: 1.3px;
  position: relative;
  padding-left: 1.5em;
  display: inline-block;
}

.page-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1em;
  height: 1px;
  background: var(--c_main);
}

.page-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.5em;
  transform: translateY(-50%);
  width: 1em;
  height: 1px;
  background: var(--c_main);
}

.page-ttl--white {
  color: var(--c_white);
}

.page-ttl--white::before {
  background: var(--c_white);
}

.page-ttl--white::after {
  background: var(--c_white);
}

/*----------------------------------------
    heading
----------------------------------------*/
/*大見出し*/
.heading-lv2 {
  color: var(--c_white);
  font-family: "EB Garamond", serif;
  font-size: 22px;
  line-height: 1.66;
  letter-spacing: 8.7px;
  position: relative;
  margin-bottom: 50px;
}

.heading-lv2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 155px;
  height: 1px;
  background: var(--c_white);
}

/*----------------------------------------
    button
----------------------------------------*/
/*ボタンベース
-----------------------------------*/
.btn {
  display: inline-block;
  width: 100%;
  font-family: inherit;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s;
  cursor: pointer;
}

/*----------------------------------------
	トップページ専用
----------------------------------------*/
.top__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  cursor: pointer;
}

.top__txt {
  display: none;
}

.top__txt p {
  color: var(--c_white);
  font-size: 20px;
  line-height: 1.89;
  letter-spacing: 3.8px;
}

@media screen and (max-width: 767px) {
  .top__txt {
    margin-top: 50px;
  }
  .top__txt p {
    font-size: 16px;
  }
}
/*----------------------------------------
	About usページ専用
----------------------------------------*/
.about-us p {
  line-height: 2;
  letter-spacing: 7.2px;
  color: var(--c_white);
}

/*----------------------------------------
	Privacy policyページ専用
----------------------------------------*/
.privacy-policy p {
  line-height: 2.25;
  letter-spacing: 1.92px;
}

@media screen and (max-width: 767px) {
  .privacy-policy p {
    line-height: 1.8;
  }
}
/*----------------------------------------
	Contactページ専用
----------------------------------------*/
.contact {
  margin-top: -80px;
}

.contact p {
  line-height: 2;
  letter-spacing: 2.16px;
}

@media screen and (max-width: 767px) {
  .contact {
    margin-top: -30px;
  }
  .contact p {
    line-height: 1.8;
  }
}
/* Form Parts
----------------------------------------*/
/* 各フォーム部品の基本スタイルを上書き */
input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  appearance: none; /*ブラウザ標準スタイルを無効にする*/
  width: 100%;
  padding: 10px 20px;
  border-bottom: 1px solid var(--c_main);
  font-family: inherit;
}

/* フォーカス時 */
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus,
button:focus {
  outline: none;
}

/* textarea
----------------------------------------*/
textarea {
  border: 1px solid var(--c_main);
  line-height: 1.5;
}

/* 全体レイアウト
----------------------------------------*/
.form {
  margin-top: 50px;
}

.form__item {
  display: grid;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px dotted var(--c_gray);
  max-width: 416px;
  width: 100%;
}

/* パーツレイアウト
----------------------------------------*/
.form__label {
  line-height: 2;
  letter-spacing: 2.16px;
}

.form__field {
  padding: 0;
}

/* 送信ボタン
----------------------------------------*/
.submit-btn {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin: 0;
  padding: 20px;
  width: 150px;
  color: var(--c_main);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid var(--c_main);
  margin-top: 50px;
}

.submit-btn:hover {
  color: var(--c_white);
  background: var(--c_main);
}

/*----------------------------------------
	Thanksページ専用
----------------------------------------*/
.thanks {
  text-align: center;
  margin-top: 100px;
}

.thanks h1 {
  font-size: 26px;
  color: var(--c_white);
  line-height: 1.8;
}

.thanks a {
  border: 1px solid var(--c_white);
  color: var(--c_white);
  display: inline-block;
  width: 250px;
  padding: 20px 0;
  margin-top: 50px;
  font-size: 20px;
}/*# sourceMappingURL=style.css.map */