@charset"UTF-8";

/*↓はGoogle fontsだヨ*/
@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Yomogi&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&display=swap');

body{ color: darkcyan;
	  background-image: url(illust/b116.jpg);
	  font-family: 'Yomogi', cursive; }
#big{ width: 95%;
	  max-width: 700px;
      margin: auto;
      background-color: rgba(256,256,256,0.5);}
	  
h1,h2{ font-family: 'Caveat', cursive;
	   font-size: 3em; }

h2{ text-align: center;
	border-bottom: dashed 3px #7accb1; }
.point{ color: black;
		background-color: lightblue;
		text-align: center; }
p{ text-align: center; }
a{ color: steelblue;}
a:visited{ color: gray; }

img{max-width: 100%;}

/*ボタンのCSS*/
.button10 {
  display: inline-block;
  background: linear-gradient(to right, #00bfff 0%, #7fffd4 45%, #fffacd 100%);
  background-size: 200% auto;  
  color: #fff;
  border-radius: 20px;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1em;
  transition: .5s;
}
.button10:hover {
  color: #fff;
  background-position: right center;
  }
.button05 {
  display: inline-block;
  background-image: linear-gradient(45deg, #008B8B 0%, #A0DDBA 100%);
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
  font-size: 1em;
  text-decoration: none;
}
.button05:hover {
  color: #fff;
  opacity: 0.6;
}


.susumu{ width: 70%;
		 height: 70%;
		 margin: 50px auto;
		 position: relative;
		 overflow: hidden; }
img:nth-child(2){ cursor: pointer;
				  position: absolute;
				  top: 50%;
				  left: 50%;
				  transform: translate(-50%, -50%); }
.susumu:hover img:nth-child(2)
	{ opacity: 0;
	  transition: opacity 0.3s; }

#newone{background: darkcyan;
		padding: 5px;}
		
/*各種外部アカウントへ飛ぶカードのCSS*/
#link{ max-width: 600px;
	   margin: auto;
	   display: flex; 
	   flex-wrap: wrap;}
.link-min{ margin-top: 5px;
		   margin-bottom: 5px;
		   max-width: 50%;
		   margin-right: 5px;
		   margin-left: 5px;
		   background-color: whitesmoke;
		   box-shadow: 2px 2px 4px -2px gray;
		   transition: transform 0.3s ease;}
.link-min:img{max-width: 25%;}
.sheet{margin-top: auto;
	   margin-bottom: auto;
	   max-width: 275px;}
.sheet a,a:visited{color: steelblue;
	   max-width: 180px;}
.sheet p{font-family: 'Mochiy Pop P One' , cursive;}
.sheet img{width: 85%;
		   margin-right: 5px;
		   margin-left: 5px;}
.link-min:hover{transform: scale(1.05);}
	
/**/
.Honnbunn{ max-width: 700px;
			 margin-left: auto;
			 margin-right: auto; 
			 border: dashed 3px #7accb1; }
.Honnbunn img{ display: flexbox;
			   flexwrap: wrap;
			   max-width: 47.5%;
/*↓額縁もどき*/
			   border-top :solid 3px cadetblue;
			   border-left: solid 3px cadetblue;
			   border-bottom: solid 3px cadetblue;
			   border-right: solid 3px cadetblue; }

/*この下流るるバナーのCSS*/
.bana-{ display: block;
		height: 25px;
		width: 100%;
		background-color: teal;
		overflow: hidden; }
.news{ display: inline-block;
	   color: white;
	   line-height: 1px;
	   padding-left: 100%;
	   white-space: nowrap;
	   animation: animate-banner 20s linear infinite; }
/* バナー内の要素をすべて選択 */
.news-banner__content > * { display: inline-block; }
/* 横にスクロールさせるアニメーション */
@keyframes animate-banner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); } }

/* ハンバーガーメニュー */
#humMenu {
  padding: 12px;
}

#humCheck, #humClose { display:none; }
#humOpen {
  display: block;
  width: 58px;
  cursor: pointer;
}
#humOpen:hover {
  opacity: 0.5;
}
#humOpen img { display: block; }
#humClose, nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
}
#humClose {
  z-index: 2;
  width: 100%;
  background: gray;
  opacity: 0.8;
  transition: 0.5s;
}
nav {
  z-index: 3;
  width: 330px;
  background: white;
  transition: 0.5s;
  transform: translateX(-100%);
}
#humCheck:checked ~ #humClose { display: block; }
#humCheck:checked ~ nav {
  transform: translateX(0);
}
nav ul{
overflow: hidden;
list-style: none;
}
nav li{
  padding: 15px 0;
  margin: 10px 0;
}
nav li:hover{
  opacity: 0.5;
}
nav li a{
  font-size: 20px;
  font-family: 'Yomogi', cursive; 
  font-size: 20px;
  color: darkcyan;
}
