@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scrollbar-width: none;
}
body {
  box-sizing: border-box;
  color: #583700; /* RGB */
  font-family: "Yuji Syuku", "serif";
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定 */
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align: center;
  color: #fff;
  z-index: 99999;
}

/* Loading画像中央配置 */
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  color: #333;
  width: 100%;
}

/*割れる画面のアニメーション*/
.loader_cover {
  width: 100%;
  height: 50%;
  /* background-color: bisque; */
  background-image: url("../images/top/background.webp");
  background-size: cover;
  background-position: center;
  transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transform: scaleY(1);
}
/*上の画面*/
.loader_cover-up {
  transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
  position: absolute;
  bottom: 0;
  transform-origin: center bottom;
}
/*クラス名がついたらY軸方向に0*/
.coveranime {
  transform: scaleY(0);
}

/*========= ここまでLoadingのためのCSS ========*/

section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
.text_red {
  color: #a50005;
}
.trigger {
  opacity: 0;
}
/* header */
.header {
  height: 30vh;
  width: 12.75vh;
  position: fixed;
  right: 0;
  z-index: 100;
  background-image: url("../images/top/kinshi.webp");
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
}
@media (min-width: 885px) {
  .header {
    height: 45vh;
    width: 19.125vh;
  }
}

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 90%;
  max-width: 600px;
  margin: 10px auto 0;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #583700;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 2% 2% 2% 50px;
  transition: all 0.5s ease;
}
/* アイコンの＋と× */
.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #583700;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/* closeというクラスがついたら形状変化 */
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  font-size: 1.4rem;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.4);

  margin: 0 3% 3% 3%;
  padding: 3%;
}
@media (min-width: 600px) {
  .accordion-area {
    margin-top: 35px;
  }
  .title {
    font-size: 2rem;
  }
}

/* fotter */
.footer {
  z-index: 20;
  height: 200px;
  color: #cad0d2;
  background-color: #583700;
  padding-top: 30px;
  padding-bottom: 40px;
  font-weight: 600;
}
.footer_container h2 {
  font-size: 2rem;
  color: #dcc077;
  margin-bottom: 10px;
}
.footer_site-map {
  margin-bottom: 30px;
}
.footer_site-map li {
  margin: 0 10px;
  display: inline-block;
}
.footer_site-map li a {
  text-decoration: none;
  color: #cad0d2;
}
.footer_site-map li a:visited {
  color: #cad0d2;
}
.footer small {
  font-size: 1.3rem;
  color: #fff;
  padding-bottom: 20px;
}
@media (min-width: 885px) {
  .footer {
    margin: 0;
  }
  .footer_container {
    max-width: 1040px;
    margin: 0 auto;
    text-align: left;
  }
  .footer_container h2 {
    font-size: 2.5rem;
    display: block;
    text-align: center;
  }
  .footer_site-map ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer_site-map li:first-child {
    margin-left: 0;
  }
  .footer small {
    font-size: 1.5rem;
    clear: both;
    text-align: center;
  }
}
