@charset "utf-8";
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: 'Noto Sans JP', sans-serif;
  padding-top: 60px;
  line-height: 2.8rem;
}
a{
  text-decoration: none;
  color: #000000;
}
/* ----- footer----- */
footer{
  text-align: center;
  margin-top: 100px;
}
.footer_box{
  display: flex;
  justify-content: space-between;
  margin-left: 10%;
  margin-right: 10%;
}
.footerlogo_box{
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerlogo img{
  height: 100%;
}
.f_add{
  text-align: left;
  margin-left: 15px;
  width: 350px;
}
.category{
  text-align: left;
}
.category ul{
  list-style: none;
}
.iconbox{
  display: flex;
  align-items: center;
  justify-content: center;
}
.iconbox img{
  padding: 10px;
  width: 50%;
}
.Copyright{
  border-top: 1px solid burlywood;
  padding-top: 20px;
  margin-bottom: 30px;
  color: burlywood;
}

/* ----- footer了----- */

/* ----- ハンバーガーmenu ----- */
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  border: #000000;
}
.menu-btn:hover {
  cursor: pointer;
}
/* 三本線 */
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #FFF;
  position: absolute;
  border-radius: 2em;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  -ms-border-radius: 2em;
  -o-border-radius: 2em;
}

.menu-btn span:after {
  transform: translateY(-50%) rotate(-90deg);
  top: 2px;
}
/* チェックボックスを非表示にする */
#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
/* メニューを開いている時はハンバーガーボタンが×になる */
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.menu-content {
  width: 80%;
  height: 100%;
  position: fixed;
  top: 0;
  /* メニューを外に出しておく */
  left: 100%;
  z-index: 80;
  background-color: #676767;
  opacity:80%; 
  transition: all 0.5s;
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 8px;
  position: relative;
}
#menu-btn-check:checked ~ .menu-content {
  left: 30%; /*メニューを画面内へ動かす*/
}
/* ----- ハンバーガーmenu end ----- */



wrapper{
  text-align: center;
}

h1{
  margin: 50px;
  padding-top: 75px;
}
h2{
  margin-bottom: 10px;
}
p{
  font-size: 1.4rem;
}


.kv{
  position: relative;
}
.toploop{
  height: 300px;
  width: 100%;
  overflow: hidden;
}
.toploop_item{
  width: 100%;
  height: 632px;
  position: absolute;
  inset:0;
  opacity: 0;
  background-size: cover;
  animation: slideAnime 15s infinite;
}
.toploop_item:nth-of-type(1) { background-image: url('/img/24780543_s.jpg'); animation-delay: 0s; }
.toploop_item:nth-of-type(2) { background-image: url('/img/26348080_s.jpg'); animation-delay: 3s; }
.toploop_item:nth-of-type(3) { background-image: url('/img/27185473_s.jpg'); animation-delay: 6s; }
.toploop_item:nth-of-type(4) { background-image: url('/img/31597364_s.jpg'); animation-delay: 9s; }
.toploop_item:nth-of-type(5) { background-image: url('/img/27840862_s.jpg'); animation-delay: 12s; }

/*タイミング設定*/
@keyframes slideAnime {
	0%, 30%, 100% { opacity: 0; } /* 非表示のタイミング */
	10%, 20% { opacity: 1; } /* 表示されるタイミング */
}
.toploop_item img{
  width: 100%;
}
.toplogo{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
}
.toplogo img{
  width: 80%;
}

.main{
  margin-top: 50px;
}

/*サイドバナー*/
.sidebanner{
  float: right;
}
.banner_blog{
  background-color: cadetblue;
}
/*サイドバナー了*/





/*メイン*/
.main{
  display: flex;
  align-items: center;
}
.main_l img{
  clip-path: circle(150px at 55% 50%);
}
.main_r img{
  clip-path: circle(130px at 50% 50%);
}



/*ブログ*/
.blog{
  margin-left: 10%;
  margin-right:10% ;
}
.blog ul a{
  font-size: 150%;
  margin: 7px;
}