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

body {
  background-color: rgb(124, 185, 249);
}

header {
  width: 100%;
  max-width: 1200px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
} 
h1 { 
  line-height: 50px;
  /*background-color: aqua;*/
  margin-bottom: 10px;
  margin-left: 15px;
}
.img_h {
  /*background-color: #fe0303;*/
  margin-left: 3%;
  margin-bottom: 10px;
}
.h_p {
  /*background-color: antiquewhite;*/
  font-size: 1rem;
  font-family: serif;
  text-shadow: 1px 1px 2px rgb(152, 151, 151);
  margin-right: 3%;
  margin-left: auto;
  margin-bottom: 10px;
}
.gazou {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.gazou img{
  width: 100%;
  /*width: 1200px;*/
  height: 700px;
  /*margin: 0 auto;*/
  border-radius: 20px;
}
.h_catch {
  position: absolute;
  top: 62%;
  left:10%;
  font-size: 65px;
  font-weight: bold;
  font-family:"Yu Mincho";
  text-shadow: 3px 3px 3px burlywood;
  color: floralwhite;
}
.h_catch2 {
  position: absolute;
  position: absolute;
  top: 78%;
  left: 20%;
  font-size: 68px;
  font-weight: bold;
  font-family: 'Georgia';
  text-shadow: 3px 3px 7px burlywood;
  color: floralwhite;
}


.content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  width: 95%;
  margin-top: 30px;
  /*margin-bottom: 30px;*/
  margin-left: auto;
  margin-right: auto;
  /*background-color: blueviolet;*/
}
.main {
  /*width: 70%;*/
  width: 800px;
  /*background-color: bisque;*/
}
.main_1 {
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: center;
  margin: 0 auto;
}
.main_1 div {
  width: 320px;
  height: 300px;
  margin: 1rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid black;
  background-color: #ffff;
}
.main_1 img {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  width: 320px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  background-color: darkgray;
}
.side {
  /*width: 25%;*/
  width: 300px;
  margin-top: 1rem;
}

.side1 {
  width: 300px;
  border: 1px solid #ccc;
  outline: 2px solid #ccc;
  outline-offset: 4px;
  border-radius: 6px;
  background-color: #ffff;
}
.side2 {
  width: 300px;
  height: 200px;
  border: 1px solid black;
  margin-top: 20px;
  background-color: #ffff;
}
h3 {
  text-align: center;
}
ul {
  padding: 3px;
}
.s_li {
  list-style-position: inside;
  margin: 10px;
  margin-left: 25%;
  color: blue;
}  
.li_c {
  color: black;
} 
.li_c {
  position: relative;
  display: inline-block; 
  margin-left: 20px;
  font-size: 1.2rem;
  cursor: pointer;
}
.li_c::before,
.li_c::after {
  position: absolute;
  content: '';
  width: 0;
  height: 2px;
  background-color: #fe0303;
  transition: .3s;
}
.li_c:hover::before,
.li_c:hover::after {
  width: 100%;
}
.li_c::before {
  top: 0;
  left: 0;
}
.li_c::after {
  bottom: 0;
  right: 0;
}
.li_c:hover::before,
.li_c:hover::after {
  width: 100%;
}


footer {
  width: 100%;
  height: 350px;
  margin-top: 50px;
  background-color: rgb(149, 254, 149);
 animation: c_color 10s infinite;
  position: relative;
}

@keyframes c_color {
  0% {
    background-color: rgb(168, 248, 168);
     }
  33% {
     background-color: rgb(149, 254, 149);
     }
  67% {
    background-color: rgb(75, 250, 75);
  }   
  100% {
    background-color: rgb(149, 254, 149);
    }
}
.items {
  display: flex;
  width: 100%;
  height: 300px;
  max-width: 1200px;
  margin: 0 auto;
}
.item1 {
    width: 20%;
    min-width: 150px;
    height: 100%;
    padding-top: 30px;
    font-size: 1.2rem;
    font-family: monospace;
    color: black;
    text-align: center;
  }
.items2 {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  height: 100%;
  padding-top: 30px;
  text-align: center;
}
.item {
  width: 25%;
  min-width: 200px;
  height: 15px;
  font-size: 1.2rem;
  font-family: monospace;
  color: black;
}
.item1 span:hover {
  color: red;
  cursor: pointer;
}
.item span:hover {
  color: red;
  cursor: pointer;
}

.f_d {
  display: flex;
  position: absolute;
 bottom: 5px; 
 left: 50%;
 transform: translateX(-50%);
  /*background-color: #fe0303;*/
}
#flog {
  width: 50px;
  height: 50px;
  margin-left: 10px;
}
small {
 line-height: 50px;
}


    /*#f_li {
      margin: 0 auto;
    }*/
  
