* {
  margin: 0 ;
  padding: 0 ;
}

body{
  display: block;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: bold;
  background-color: #000;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
main{
  width: 70%;
  margin: 0 auto;
  display: block;
  color: #fff;
}
/*ヘッダー*/
#header{
  background-color: #fff;
  box-shadow:0 30px 40px #561b24;
}
.site-top{
  text-align: center;
}
.site-top>a{
  color: #000;
  text-decoration: none;
}
.site-top h1{
  width: 60%;
  display: block;
  margin: 0 auto;
  font-size: 30px;
  padding: 50px;
}
h1 {
  border-left: 3px double #000;
  border-right: 3px double #000;
}
/*始終此遥について*/
.top-wrapper{
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}
.top-wrapper div {
  flex: 0 1 30%;
  margin: 100px 5px 60px 5px;
  border: 1px solid #fff;
  height: 150px;
  display: block;
  position: relative;
}
.top-wrapper div a{
  display: flex;
  position: absolute;
  width: 99%;
  height: 98%;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border:1px solid #fff;
}
.top-wrapper div a:hover{
  color: #561b24;
  background-color: #fff;
  transition: all .4s;
}

.middle-wrapper{
  display: block;
  margin: 0 auto;
  color: #fff;
  text-align: left;
  width: 50vw;
 
}
.middle-wrapper p{
  color: #fff;
  margin: 10px 0;
  line-height: 35px;
}
.about {
  margin: 100px 0;
}
.coharu {
  margin-bottom: 100px;
}
h2{
  box-shadow: -2px 5px 4px #561b24;
  margin-bottom: 40px;
}

.end {
  display: flex;
  flex-wrap: wrap;
}
.end-1{
  flex: 0 1 40%;
}
.end-1 img{
  width: 60%;
}
.end-2{
  flex: 0 1 60%;
  margin-bottom: 30px;
}
/*フッター*/
#footer{
  background-color: #561b24;
  width: 100vw;
  border-top: 1px double #fff;
}
.border-r{
  width: 445px;
  position: relative;
  top: 120px;
  border-bottom:3px solid #000 ;
  rotate: 35deg;
  left: 70vw;
}
.border-l{
  width: 400px;
  position: relative;
  top: 125px;
  border-bottom:3px solid #000 ;
  rotate: 140deg;
}
.border-r2{
  width: 400px;
  position: relative;
  top: 118px;
  border-bottom:3px solid #000 ;
  rotate: 140deg;
  left: 70vw;
}
.border-l2{
  width: 445px;
  position: relative;
  top: 120px;
  border-bottom:3px solid #000 ;
  rotate: 35deg;
}
.footer-border{
  width: 100%;
  text-align: center;
}
.menu-link{
  text-align: center;
}
.menu-link>ul{
  list-style: none;
  padding: 50px 0;
  list-style: none;
}
.menu-link>ul>li{
  display: inline-block;
  padding: 0 20px;
}
.menu-link>ul>li>a{
  color: #000;
  font-weight: bold;
  font-size: 23px;
  text-decoration: none;
  position: relative;
  display: block;
  padding:10px 30px;
}
.menu-link>ul>li>a:hover{
  color: #fff;
}
.menu-link>ul>li>a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background:#fff;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: center top;/*上部中央基点*/
}
.menu-link>ul>li>a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}
.copyright{
  text-align: center;
  padding: 30px;
}
/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#000;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:30vw;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes fadeUpAnime{
  from {
  opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width:1080px){
  .middle-wrapper {
    width: 100%;
  }
  .menu-link>ul>li>a {
    color: #fff;
  }
  .border-r,.border-r2{
    overflow-x: hidden;
  }
  .copyright{
    color: #fff;
  }
}
@media screen and (max-width:700px){
  main {
    width: 90%;
  }
  .middle-wrapper {
    font-size: smaller;
  }
  .site-top h1 {
    font-size: 16px;
  }
  .end{
    display: block;
  }

  iframe{
    height: 350px;
  }
  .border-r,.border-l,.border-r2,.border-l2{
    display: none;
  }
  .menu-link>ul>li>a {
    color: #fff;
    border-bottom: 1px solid #000;
  }
  .copyright{
    color: #fff;
  }
}
@media screen and (max-width:450px){
  .top-wrapper {
    margin-top: 60px;
  }
  .top-wrapper div {
    flex: 0 1 100%;
    margin: 5px;
  }
  .middle-wrapper {
    width: 65vw;
  }
  .middle-wrapper p {
    font-size: smaller;
  }
  .middle-wrapper h2{
    font-size: 18px;
  }
}