@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
}

/* チェックボックスを非表示にする */

.drawer_hidden {
	display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open{
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 100;
	cursor: pointer;
	top: 10px;
	right: 10px;
}

/* ハンバーガーメニューのアイコン */

.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background: #ffffff;
	transition: 0.5s;
	position: absolute;
}

/* 三本線の一番上の棒の位置調整 */

.drawer_open span:before {
	
	bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */

.drawer_open span:after {
	
	top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */

#drawer_input:checked ~ .drawer_open span {
	background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
	bottom: 0;
	transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* メニューのデザイン*/

.nav_content{
	width: 100%;
	height: 100%;
	font-size: 2rem;
	margin: auto;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 99;
	background: #25b7c0;
	transition: .5s;
	
}

.nav_list{
	color: #ffffff;
	list-style: none;
	margin-left: 40px;
}

.nav_list a{
	font-size: 2rem;
	color: #ffffff;
	text-decoration: none;
	transition: .5s;
	
}

.nav_list a:hover{
	color: #4F3A25;
	transition: .5s;
}

.nav_item {
	padding-bottom: 20px;
}

.nav_menu{
	color: #ffffff;
	margin: 40px auto 40px 80px;
}

/* アイコンがクリックされたらメニューを表示 */

#drawer_input:checked ~ .nav_content {
	left: 80%;
}

.sns {
	margin-top: 50px;
	margin-left: 40px;
	display: flex;
	text-decoration: none;
	list-style: none;
}


/* 幅767px以下の場合 */

@media (max-width : 767px ){
	
	#drawer_input:checked ~ .nav_content {
		left: 0%;
	}

.nav_menu {
		margin-left: 40px;
	}

.sns {
		margin-left: 40px;
	}
}



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


#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #25b7c0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -webkit-animation: rotation 1.5s linear infinite;
  animation: rotation 1.5s linear infinite;
}

.spinner:after {
	content: "";
  position: absolute;
  left: 23px;
  top: 37px;
  border: 14px solid transparent;
  border-right-color: #fff;
  transform: rotate(-40deg);
}

.matte {
	margin-top: 10px;
	left: 50%;
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


body {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: white;
	background-color: #C0BDD2;

}

.toppage {
	position: relative;
	width: 100vw;
	height: 100vh;
}

.toppage img {
	width: 100%;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	object-fit: cover;
	top: 50;
	left: 50;
	display: block;
	
}

.topbun {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-top: 250px;
	
}

.hatena {
	font-size: 4rem;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	top: 50;
	left: 50;
}

.hatena a {
	color: #fff;
	text-decoration: none;
}

.setsumei {
	text-align: center;
	width: 800px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;	
}
/* モバイルサイズ */
@media (max-width : 767px ){
	
	.topbun {
		margin-top: 100px;
	}
	
	.setsumei {
		
		width: 300px;
		
	}
}

.copyright {
	text-align: center;
}

/* CSS Document */