@charset "utf-8";

/******
フォント

Montserrat
font-family: "montserrat", sans-serif;

Ryo Gothic PlusN
font-family: "ryo-gothic-plusn", sans-serif;

Inter
font-family: "Inter", sans-serif;

*******/

body {
  color: #553a1f;
  font-weight: 500;
  font-style: normal;
  font-family: "ryo-gothic-plusn", sans-serif;
  overflow-wrap: break-word;
}
.main {
  opacity: 0;
}
body.home .main {
  opacity: 1;
}

.font01 {
  font-family: "montserrat", sans-serif;
}

.font02 {
  font-family: "Inter", sans-serif;
}

.img {
  width: 100%;
  height: auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}
.hover--opacity {
  transition: opacity 0.3s;
}
.hover--opacity:hover {
  opacity: 0.7;
}

.inner-1280 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.inner-1150 {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.inner-890 {
  width: 92%;
  max-width: 890px;
  margin: 0 auto;
}
.inner-880 {
  width: 92%;
  max-width: 880px;
  margin: 0 auto;
}
.inner-878 {
  width: 92%;
  max-width: 878px;
  margin: 0 auto;
}
.inner-837 {
  width: 92%;
  max-width: 837px;
  margin: 0 auto;
}

.inner-820 {
  width: 87%;
  max-width: 820px;
  margin: 0 auto;
}
.inner-780 {
  width: 87%;
  max-width: 780px;
  margin: 0 auto;
}
.inner-760 {
  width: 87%;
  max-width: 760px;
  margin: 0 auto;
}
.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #553a1f;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* オーバーレイのスライドとフェード用 */
  transition: all 0.8s cubic-bezier(0.8, 0, 0.2, 1);
  /* transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; */
}
/* ローディング画面の終わりの動き↓============== */
/* オーバーレイ（loading）がスライドアウト */
.loading.slide-out {
  transform: translateX(-100%);
  /* opacity: 0; */
}

/* dot-falling の下フェードアウト */
.loading.hide .dot-falling {
  opacity: 0;
  transform: translateY(30px);
}

/* dot-falling の下フェードアウト */
.loading.hide .dot-falling__wrap {
  animation: none; /* dot-fall を停止 */
  opacity: 0; /* 透明にする */
  transform: translateY(30px); /* 下に移動 */
  transition: transform 0.6s ease-in-out, opacity 0.35s ease-in-out; /* トランジション追加 */
}

/* .loading.hide .dot-falling,
.loading.hide .dot-falling::before,
.loading.hide .dot-falling::after {
  animation: none;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
} */
/* ローディング画面の終わりの動き↑============== */

/* ローディングのドットのスタイル上書き↓============= */
.dot-falling__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dot-falling,
.dot-falling::before,
.dot-falling::after {
  width: 16px;
  height: 16px;
  background: url("../imgs/common/dot.png") no-repeat center/contain;
}

.dot-falling {
  left: -24px; /* 2つ目 */

  animation: dot-fall 1s infinite linear;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.dot-falling::before {
  content: "";
  left: 24px;
  animation: dot-fall 1s infinite linear 0.2s;
}

.dot-falling::after {
  content: "";
  left: 48px; /* 3つ目 */
  animation: dot-fall 1s infinite linear 0.3s;
}

@keyframes dot-fall {
  0% {
    top: -20px;
    opacity: 0;
  }
  25%,
  50%,
  75% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}
/* ローディングのドットのスタイル上書き↑============= */

/* ページ遷移検証↓ */
/* 下から上にページを覆う */
/* .animsition-fade-up-in {
  transform: translateY(100%);
  opacity: 0;
}
.animsition-fade-up-in.animsition-in {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.8s ease-in-out;
} */

/* 上から下にページが表示される */
/* .animsition-fade-up-out {
  transform: translateY(0);
  opacity: 1;
}
.animsition-fade-up-out.animsition-out {
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.8s ease-in-out;
} */

/* ページ遷移検証↑ */
/* ページ遷移 */
.overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  min-width: 900px;
  height: 100vh;
  pointer-events: none;
  fill: #553a1f;
}

.info-insta {
  width: fit-content;
  position: fixed;
  right: 13px;
  bottom: 16px;
  z-index: 1;
  opacity: 0;
}
/* body.home .info-insta {
  opacity: 1;
} */

.info-insta__txt {
  margin-bottom: 9px;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
}
.info-insta__txt {
  animation: nfo-insta__txt 8s cubic-bezier(0.23, 1, 0.32, 1) 2.6s infinite;
}

@keyframes nfo-insta__txt {
  15%,
  to {
    transform: rotateY(1turn);
  }
}
.info-insta__pic {
  width: 50px;
  margin: 0 auto;
}
.info-insta__link {
  display: block;
  width: 100%;
}
.fade-in {
  opacity: 0;
}
/* 404ページ↓ */
.not-found div {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 180px 0;
  min-height: 60vh;
}
.not-foun__en {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "montserrat", sans-serif;
}
.not-foun__ja {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 2.2;
}
.not-foun__ja strong {
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
}
.not-found a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  display: inline;
}
/* 404ページ↑ */
@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1260px) {
}

@media screen and (max-width: 1240px) {
}

@media screen and (max-width: 820px) {
}

@media screen and (max-width: 700px) {
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
  /* 404ページ↓ */
  .not-found div {
    padding: 120px 0 70px;
  }
  .not-foun__en {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .not-foun__ja {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .not-foun__ja strong {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .not-found a {
    font-size: 14px;
  }
  /* 404ページ↑ */
}

@media screen and (max-width: 480px) {
}

@media screen and (max-width: 360px) {
  .inner-820 {
    width: 91%;
  }
}
