@charset 'UTF-8';

/*
主たるブレイクポイント
750px
*/

/*=====================
全サイズ共通 & 汎用クラス
=====================*/

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  background-color: #e6e3df;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;

  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8;
  color: #000;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  position: relative;
  top: 0 !important;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 0 !important;
  width: 100%;
  height: 100vh; /* 古いブラウザ用バックアップ */
  height: 100dvh;
  z-index: -1;
  background-image: url("../../img/bg02.jpg");
  background-size: cover;
  background-position: center;
}

* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  line-height: 0;
}

main {
  z-index: 100;
  margin: auto;
  position: relative;
}

.inner {
  max-width: 1100px;
  padding: 0 30px;
  margin: auto;
}

.bg01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  clip-path: inset(0);
}

.bg01::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("../../img/bg01.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
}

.mb01 {
  margin-bottom: 18%;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .br_sp {
    display: none;
  }
}
/*min-width:600px*/

@media screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
  }

  .inner {
    padding: 0 5%;
  }

  .br_pc {
    display: none;
  }

  .mb01 {
    margin-bottom: 30%;
  }
}

li {
  list-style: none;
  letter-spacing: 0.04em;
}

.title {
  text-align: center;
  margin-bottom: 50px;
}

.title img {
  text-align: center;
  margin: auto;
  max-height: 126px;
}

a.text_link {
  text-decoration: underline;
  color: #7e6150;
  font-weight: bold;
}

/*scroll_up ｜下から上へ出現*/
.scroll_up {
  transition: 0.5s ease-in-out;
  transform: translateY(30px);
  scale: 0.8;
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  scale: 1;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .title {
    margin-bottom: 40px;
  }

  .title img {
    max-height: 80px;
  }
} /*max-width:750px*/

@media screen and (max-width: 750px) {
  .title img {
    max-height: 65px;
  }
} /*max-width:750px*/

/*===================
フッター
=====================*/

footer {
  position: relative;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 20px;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../../img/bg03.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}

footer .share {
  padding: 180px 0;
  text-align: center;
}

footer .share img {
  margin: auto;
  max-width: 500px;
}

footer a {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

footer a:hover {
  opacity: 0.65;
  transition: 0.3s all;
}

footer .sns {
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
}

footer .sns h2 {
  margin-bottom: 30px;
}

footer .sns h2 img {
  margin: auto;
}

footer .sns a.sns_x {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: auto;
  padding: 6px 25px;
  background-color: #000;
  color: #fff;
  font-size: 4rem;
  border-radius: 8px;
}

footer .sns a.sns_x img {
  width: 50px;
  margin-right: 20px;
}

footer .copy {
  width: 100%;
  font-size: 1.4rem;
  margin-top: 90px;
}

@media screen and (max-width: 900px) {
  footer {
    padding-top: 40px;
  }

  footer::before {
    background-size: contain;
  }

  footer .share {
    padding: 25% 0 14%;
    text-align: center;
  }

  footer .share img {
    margin: auto;
    max-width: 40%;
  }

  footer .sns {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
  }

  footer .sns h2 {
    margin: 0 auto 30px;
    width: 70%;
  }

  footer .sns a.sns_x {
    padding: 6px 23px;
    font-size: 2.4rem;
    border-radius: 5px;
  }

  footer .sns a.sns_x img {
    width: 32px;
    margin-right: 10px;
  }

  footer .copy {
    font-size: 1rem;
    margin-top: 40px;
  }
}

/*max-width:750px*/

/*=====================
ローディング画面
=====================*/

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* 古いブラウザ用バックアップ */
  height: 100dvh;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  transition: opacity 0.5s, visibility 0.5s;
  /* background-color: aqua; */
  background-color: #e6e3df;
  overflow: hidden; /* はみ出し防止 */
}

.loader-container::before {
  content: "";
  position: absolute;
  /* 上下左右にわざと少しはみ出させる */
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: url(../../img/bg02.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1; /* コンテンツ（どんぐり）より後ろに配置 */
}

.loader-container.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader_donguri {
  width: 128px;
  animation-name: bounce1;
  animation-duration: 1.25s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center bottom;
}

.loader_ld {
  width: 300px;
}

@media screen and (max-width: 900px) {
  .loader_donguri {
    width: 90px;
    animation-name: bounce1;
    animation-duration: 1.25s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: center bottom;
  }

  .loader_ld {
    width: 150px;
  }
}
