@charset "UTF-8";

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

.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;
	
}

.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;
	display: flex;
	text-decoration: none;
	list-style: none;
}

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

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

.nav_menu {
		margin-left: 40px;
	}

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



}

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


#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);
  }
}

a {
	transition: .5s;
}
a:hover {
	transition: .5s;
}

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

header a:hover {
	color: #25b7c0;

}

.ccdc {
	color: #fff;
	font-size: 2rem;
	margin-top: 20px;
	margin-left: 15px;
}

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

h1 {
	text-align: center;
}

.maru {
	text-align: center;
}

.maru img{
	border-radius: 50%;
}

.profile {
           text-align: center;	
}

.bun {
	width: 800px;
	margin: 150px auto 100px auto;
}

.copyright {
	text-align: center;
}

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

@media (max-width : 767px){
	.bun {
		width: 300px;
		
	}

.maru img {
		width: 300px;
		height: auto;
	}

.profile {
                margin-left: 40px;
		margin-right: 40px;
		text-align: center;
	}


	
}

/* CSS Document */