@charset "utf-8";
/* 初期設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
  font-family: ten-mincho, serif;
  font-style: normal;
  font-weight: 400;
}

img {
  width: 100%;
  height: auto;
  vertical-align: baseline;
}

/* ロゴ */

h1 img {
  position: relative;
  top: -40px;
  left: -20px;
  z-index: 999;
  margin: 0 20px;
  width: 250px;
}

body {
  width: 100%;
}

main {
  padding-top: 50vh;
  margin-top: -50vh;
}
/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/* スクロールダウン */
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10vh;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

@media screen and (min-width: 700px) {
  .scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    bottom: 30vh;
  }
}

@media screen and (min-width: 1280px) {
  .scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    bottom: 20vh;
  }
}

/* hero video */
#video-area {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background-color: rgb(52, 80, 131);
}

/* 背景video */

#video-sp {
  /*天地中央配置*/
  position: fixed;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 100%; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: auto; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
  clip-path: circle(50% at 64% 72%);
  background-position: center;
  background-size: 100% auto; /* 幅を100% */
}

#video-pc {
  position: fixed;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: auto; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 100vh; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100vh;
  min-width: 100%;
  clip-path: circle(43.2% at 55% 72%);
  background-position: center;
  background-size: 100% auto; /* 幅を100% */
  display: none;
}

@media screen and (min-width: 700px) {
  #video-pc {
    display: none;
  }
  #video-sp {
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  #video-pc {
    display: block;
    width: 100%;
    z-index: -1;
  }

  #video-sp {
    display: none;
  }
}

/* hero p */

.main-tx {
  display: flex;
  flex-direction: column;
}

.about-box p {
  margin-top: -1.5em;
  letter-spacing: 0.5em;
  text-align: center;
}

.about-box {
  margin-bottom: 3em;
}

.main-h2 {
  font-size: 2em;
  color: #fff;
  width: fit-content;
  text-align: left;
  margin: 1em auto;
}

.main-p-tx {
  line-height: 3;
  text-align: center;
  font-size: 0.9em;
}

.about-tx {
  text-align: center;
}

.about-tx-h2 {
  font-size: 1.3em;
  margin: 30vh 0 10vh 0;
}

.about-tx-p {
  font-size: 0.9em;
  line-height: 4;
  margin-bottom: 20vh;
}

/* タブレットサイズ */
@media screen and (min-width: 700px) {
  .main-tx {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: baseline;
    width: 90%;
    margin: 0 auto;
  }

  .about-box p {
    margin-left: 1em;
    letter-spacing: 1.2em;
  }
  .main-h2 {
    font-size: 3em;
  }
}

@media screen and (min-width: 1280px) {
  .main-tx {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: baseline;
    width: 80%;
    margin: 0 auto;
  }

  .about-box p {
    margin-top: -3em;
    letter-spacing: 1.5em;
  }

  .main-h2 {
    font-size: 4em;
    color: #fff;
    text-align: left;
    margin: 1em auto;
  }

  .main-p-tx {
    line-height: 3;
    text-align: left;
    font-size: 1.2em;
  }

  .about-tx {
    text-align: center;
  }

  .about-tx-h2 {
    font-size: 1.7em;
    margin: 30vh 0 10vh 0;
  }
}

/* video上にかかる色 */

.back-color {
  display: flex;
  flex-direction: column;
  clip-path: circle(90.1% at 46% 100%);
  height: 140vh;
  width: 100%;
  background-color: rgb(203, 201, 89);
}

@media screen and (min-width: 702px) {
  .back-color {
    height: 130vh;
  }
}

@media screen and (min-width: 1280px) {
  .back-color {
    clip-path: circle(75.1% at 46% 100%);
    height: 150vh;
  }
}

/* schedule btn img */

.schedule_btn {
  margin: 0 auto;
  position: relative;
  margin-top: 50vh;
  overflow: hidden;
  width: 300px;
  min-width: 300px;
  border-radius: 10px;
}

.btn-img {
  display: block;
  max-width: 300px;
  opacity: 1;
  margin: 0 auto;
  transition: 0.3s all;
  border-radius: 10px;
}

.schedule_btn p {
  position: absolute;
  top: 0;
  left: 1vw;
  font-size: 1.2em;
  width: fit-content;
  height: auto;
  font-weight: bold;
}

.schedule a:hover img {
  display: block;
  transform: scale(1.1);
  opacity: 0.8;
}

.schedule a:hover {
  margin: 0 auto;
  min-width: 300px;
  width: 300px;
  display: block;
  background-color: #fff;
  border-radius: 10px;
}
/* スマホサイト */
@media screen and (min-width: 702px) {
  .schedule {
    width: fit-content;
    margin: 0 auto;
  }

  .schedule_btn {
    min-width: 400px;
  }

  .btn-img {
    max-width: 400px;
  }

  .schedule a:hover {
    min-width: 400px;
    width: 400px;
  }
}

@media screen and (min-width: 900px) {
  .schedule {
    width: fit-content;
    margin: 0 auto;
  }

  .schedule_btn {
    min-width: 400px;
  }

  .btn-img {
    max-width: 400px;
  }

  .schedule a:hover {
    min-width: 400px;
    width: 400px;
  }
}

/* google map */

.access {
  margin: 0 auto;
  width: 80%;
  height: 50vh;
  margin-top: 5vh;
}

.access p {
  margin-bottom: 1em;
  color: black;
  font-size: 0.9em;
}

.googlemap {
  display: block;
  width: 100%;
  height: 40vh;
  margin: 0 auto;
}

@media screen and (min-width: 702px) {
  .access {
    margin: 10em auto 0;
    display: flex;
    align-items: center;
    width: 95%;
  }

  .access p {
    font-size: 0.8em;
    width: 100%;
    margin: 0 0 10px 0;
  }

  .googlemap {
    display: block;
    width: 50%;
    height: 25vh;
    margin: 0 1em 0 15%;
  }
}
@media screen and (min-width: 900px) {
  .access {
    width: 80%;
    height: 50vh;
    margin: 5em auto 5em;
    display: flex;
    align-items: center;
  }

  .access p {
    font-size: 1.2em;
    width: 100%;
    margin: 0 6em 10px 10em;
  }

  .googlemap {
    display: block;
    width: 50%;
    height: 40vh;
    margin: 0 1em 0 10%;
  }
}

/* view */

.view-tx {
  position: relative;
  color: #ffffff;
  bottom: 24px;
  left: 20px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: 80%;
  padding: 16px 20px;
  transform: rotate(0deg);
}

.arrow3 {
  width: 48px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  top: 70%;
  right: 62px;
}

.arrow4 {
  width: 1px;
  height: 12px;
  background: #ffffff;
  position: absolute;
  top: calc(80% + 3px);
  right: 70px;
  transform: rotate(-130deg);
  transform-origin: top left;
}

@media screen and (min-width: 702px) {
  .view {
    margin-top: -2em;
  }

  .view-tx {
    left: 30%;
    width: 90%;
  }

  .arrow3 {
    right: calc(55% + 62px);
  }

  .arrow4 {
    right: calc(55% + 70px);
  }
}

@media screen and (min-width: 1280px) {
  .view-tx {
    left: 12%;
    width: 45%;
  }

  .arrow3 {
    right: calc(50% + 62px);
  }

  .arrow4 {
    right: calc(50% + 70px);
  }
}

/* top btn */

.top-go {
  color: #ffffff;
  position: fixed;
  bottom: 24px;
  right: 80px;
  text-decoration: none;
  display: block;
  width: 100px;
  padding: 16px 20px;
  text-align: right;
  transform: rotate(90deg);
  transform-origin: bottom right;
  z-index: 999;
}

.top-go p {
  text-shadow: rgb(0, 0, 0) 0 0 12px 0;
}

.arrow1 {
  width: 48px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: 62px;
  z-index: 999;
}

.arrow2 {
  width: 1px;
  height: 12px;
  background: #ffffff;
  position: absolute;
  top: calc(50% + 1px);
  right: 109px;
  transform: rotate(-130deg);
  transform-origin: top left;
  z-index: 999;
}

/* footer */

footer {
  color: black;
  text-align: center;
  margin-top: -5px;
  padding-top: 8vh;
  background-color: rgb(203, 201, 89);
}

/* Fade in */

.fadeInUpTriggerOnce {
  opacity: 0;
}

.wrapper {
  overflow: hidden;
}
