@charset "UTF-8";
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #FDFCF4;
}
* {
  margin: 0;
  padding: 0;
}
.br{
	display: none;
}
@media (max-width: 900px){
	.br{
		display: block;
	}
}
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #FDFCF4;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash-logo img{
	width: 40%;
	height: 40%;
}
/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #71BDD0;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}



/*メニュー*/
#logo {
  max-width: 50%;
  display: block;
  margin: 0 auto;
}
nav {
  width: 100%;
  height: 70px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
  padding: 0 1em;
}
/*ナビゲーション部分*/
.menu ul li a {
  display: block;
  line-height: 1rem;
  padding: 2em;
  border-bottom: 1px dotted #CCC;
  color: #333;
  text-decoration: none;
  list-style: none;
  font-size: 1rem;
}
.menu ul {
  list-style: none;
  margin-right: 30px;

}
.menu p {
  font-size: 0.8rem;
}
.menu ul li a:hover {
  color: orange;
}
.menu {
	height: 0vh;
  text-align: center;
  background-color: rgba(255, 255, 255, 1);
  transition: .5s ease; /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%); /*左に隠しておく*/
}
@media screen and (max-width: 1100px){
	.menu {
		height: 100vh;}
}
/*OPEN時の動き*/
.menu.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%); /*中身を表示（右へスライド）*/
}
/*トグルボタンのスタイルを指定*/
.Toggle {
  display: block;
  position: fixed; /* bodyに対しての絶対位置指定 */
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 3;
  right: 15px;
  margin: 0 30px
}
.Toggle span {
  display: block;
  position: absolute;
  width: 50px;
  border-bottom: solid 4px #333;
  -webkit-transition: .35s ease-in-out; /*変化の速度を指定*/
  -moz-transition: .35s ease-in-out; /*変化の速度を指定*/
  transition: .35s ease-in-out; /*変化の速度を指定*/
}
.Toggle span:nth-child(1) {
  top: 5px;
}
.Toggle span:nth-child(2) {
  top: 18px;
}
.Toggle span:nth-child(3) {
  top: 32px;
}
.Toggle.active span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2), .Toggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 1100px) {
  header::after {
    display: none;
  }
  nav {
    display: flex;
  }
  .Toggle {
    display: none;
  }
  .menu {
    width: 100%;
    background-color: transparent;
    margin-top: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu ul {
    height: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
  .menu ul li a {
    padding: 0 1em;
    border-bottom: none;
  }
  .menu ul li a:hover {
    background-color: transparent;
  }
}
footer {
  background-color: #71BDD0;
  padding-top: 30px;
	text-align: left;
}

.privacy_policy_button {
  background-color: #71BDD0;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 5px 30px;
  font-size: 1rem;
  margin-bottom: 20px;
	margin-left: 15%;
	line-height: 4rem;

}
.privacy_policy_button:hover {
  color: #E9F534;
}
footer {
  padding-bottom: 40px;
}
.footer-ul {
  padding-left: 15%;
  display: flex;
  list-style: none;
}
.footer-ul a {
  text-align: center;
  margin: 0 10px;
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  color: #fff;
  display: inline-block;
}
.footer-ul p {
  padding-top: 5px;
  font-size: 0.8rem;
  line-height: 0.7rem;
}

.footer-access {
  padding-left: 15%;
  font-size: 1rem;
  text-align: left;
  line-height: 1.5rem;
  color: #fff;
}
.footer-access a{
	font-size: 1rem;
}
.footer-access span{
	font-size: 0.7rem;
}
@media screen and (max-width: 1100px) {
	.footer-ul{
		display: none;
	}
	.footer-access{
		padding-left: 5%;
	}
	.privacy_policy_button{
		margin-left: 5%;
	}
}