@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}
body {
  color: #333;
  /* RGB */
  /*左のフォントが優先*/
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6em;
  line-height: 2.4rem;
  background-color: #F5F3ED;
}
.main {
  display: block;
  background-color: #f5f0d6;
  padding-bottom: 80px;
}
h1 {
  font-size: 5rem;
  line-height: 4.5rem;
  font-weight: 800;
  color: #333;
  text-align: left;
}
h2 {
  display: block;
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3.5rem;
  letter-spacing: .4rem;;
  text-align: left;
}
a {
  color: #FFF;
  text-decoration: none;
}
.btn a {
  display: block;
  width: 30vw;
  max-width: 200px;
  margin: 0 auto;
  background-color: #30AF4C;
  padding: 20px 50px;
  border-radius: 40px;
  text-align: center;
}
p {
  text-align: left;
  line-height: 2.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.map iframe{
  width: 100%;
  height: 50vw;
}
.sp-none {
  display: none;
}
@media(min-width: 960px){
  h1 {
    font-size: 4vw;
    line-height: 4.5rem;
    font-weight: 800;
    color: #333;
    text-align: left;
  }
  .pc-none {
    display: none;
  }
  .sp-none {
    display: block;
  }
  .map iframe{
    width: 100%;
    height: 500px;
  }
}
/*-------------------------menu--------------------------------------------*/
.header {
  display: flex;
  position: relative;
  justify-content: right;
  align-items: center;
  padding: 0 20px;
  z-index: 9999;
}
.header img {
  position: absolute;
  z-index: 9999;
  top: 50px;
  left: 5vw;
  width: 50px;
}
.drawer {
  position: fixed;
  z-index: 999;
  top: 40px;
  right: 10px;
}
header .drawer-list img {
  width: 13vw;
  top: 15vh;
  left: 30%;
}
.drawer-hidden {
  display: none;
}
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
}
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}
.drawer-open span:before {
  bottom: 8px;
}
.drawer-open span:after {
  top: 8px;
}
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
.drawer-content {
  width: 60%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
  padding: 200px 40px;
}
#drawer-check:checked ~ .drawer-content {
  left: 20vw;
}
.drawer-content li {
  margin-bottom: 40px;
  text-align: left;
}
.drawer-content li:nth-child(3) {
  margin-bottom: 20px;
}
.drawer-content a {
  color: #333;
}
.drawer-content a span {
  font-size: 3rem;
  font-weight: 800;
}
.footer {
  position: relative;
}
.footer img {
  display: block;
  width: 30vw;
  margin: 0 auto;
}
.footer p {
  text-align: center;
  color : #333;
}
@media(min-width: 400px){
  #drawer-check:checked ~ .drawer-content {
    left: 27vw;
  }
  .drawer-content {
    width: 70vw;
  }
}
@media(min-width: 600px){
  #drawer-check:checked ~ .drawer-content {
    left: 54vw;
  }
  .drawer {
    position: fixed;
    z-index: 999;
    top: 40px;
  }
  .drawer-content {
    width: 40vw;
  }
  header .drawer-list img {
    width: 13vw;
    top: 10vh;
    left: 35%;
  }
}
@media(min-width: 960px){
  .header img {
    position: fixed;
    top: 30px;
    left: 5vw;
    width: 6vw;
  }
  .footer img {
    display: block;
    width: 5vw;
    margin: 0 auto 30px;
  }
  .drawer {
    top: -20px;
    right: 10px;
  }
  #drawer-check:checked ~ .drawer-content {
    left: 70vw;
  }
  .drawer-content {
    width: 40vw;
  }
  header .drawer-list img {
    position: absolute;
    width: 10vw;
    top: 6vh;
    left: 22%;
  }
.drawer-open {
  display: flex;
  height: 150px;
  width: 150px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
}
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 3vw;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
} 
.drawer-open span:before {
  bottom: 1vw;
}
.drawer-open span:after {
  top: 1vw;
}
.drawer-content {
  padding: 200px 40px;
}
.drawer-content li {
font-size: 2rem;
margin-bottom: 5vw;
}
.drawer-content li:nth-child(2) {
  margin-bottom: 60px;
}
.drawer-content li span {
  font-size: 4rem;
  font-weight: 800;
}
}
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*--------------------------フェードアップCSS--------------------------------------------*
//* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
a.btn_04:hover {
  background: #9122FF;
  border: 2px solid #9122FF;
  transition: 0.5s;
}
/*下からフェードイン*/
.fade-in-bottom {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 7s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

