body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;  
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: black;
}

.manu{
    width: 100vw;
    height: 20vh;
    background-color: #ececec;
}
.manu img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.manu-in{
    width: 80%;
    position: absolute ;
    top: 0;
    left: 40%;
    transform: translateX(-40%);
    -webkit-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
}
.name{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.name h3{
    font-size: 30px;
}

.manu ul{
    position: relative;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin: 0 auto;
}
.manu ul li a{
    
    border-left: 1px solid #ffffff;
    padding: 5px 15px;
    transition: 0.6s;
}
ul li a:hover{
    opacity: 0.6;
}




.header {
    background-color: white;
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  
  .header__inner {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
  }
  
  
  /* ヘッダーのロゴ部分 */
  .header__title {
    width: 80px;
  }
  @media screen and (min-width: 960px) {
    .header__title {
      width: 120px;
    }
  }
  
  .header__title img {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  /* ヘッダーのナビ部分 */
  
  .header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
  }
  @media(width < 960px){
    .manu-in{
        display: none;
    }
  }
  @media(width > 960px){
    .container{
        display: none;
    }
  }
  @media screen and (min-width: 960px) {
    
    .header__nav {
      position: static;
      transform: initial;
      background-color: inherit;
      height: inherit;
      display: flex;
      justify-content: end;
      width: 50%;
    }
  }
  
  
  @media screen and (min-width: 960px) {
    .nav__items {
      width: 100%;
      display: flex;
      align-items: center;
      height: initial;
      justify-content: space-between;
    }
  }
  
  .nav-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  @media screen and (min-width: 960px) {
    .nav-items {
      position: inherit;
      top: 0;
      left: 0;
      transform: translate(0, 0);
  
    }
  }
  
  /* ナビのリンク */
  .nav-items__item a {
    color: black;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 24px;
    color: black;
  }
  
  .nav-items__item:last-child a {
    margin-bottom: 0;
  }
  
  @media screen and (min-width: 960px) {
    .nav-items__item a {
      margin-bottom: 0;
    }
  }
  
  
  /* ハンバーガーメニュー */
  
  .header__hamburger {
    width: 48px;
    height: 100%;
  
  }
  
  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }
  
  @media screen and (min-width: 960px) {
    .hamburger {
      display: none;
    }
  }
  
  /* ハンバーガーメニューの線 */
  .hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    display: block;
  }
  
  .hamburger span:nth-child(1) {
    top: 0;
  }
  
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  
  .hamburger span:nth-child(3) {
    top: 0;
  }
  
  
  /* ハンバーガーメニュークリック後のスタイル */
  .header__nav.active {
    transform: translateX(0);
  }
  
  .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  
  }
  
  .hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
  }



.kouzi{
    width: 100vw;
    height: auto;
    background-color: beige;
}
.kouzi-title{
    width: 80%;
    margin: 0 auto;
    padding: 10px;
}



.wrapper{
    width:80% ;
    height: auto;
    margin: 0 auto;
}
.kouzi-con{
    margin-top: 100px;
 }
 .kouzi-con h2{
     border-bottom: 1px solid rgb(155, 186, 193);
     font-size: 25px;
 }
.kouzi-img{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: space-around;
}
.kouzi-img img{
    width: 100%;
    object-fit: cover;
}
.kouzi-img p{
    padding-left: 20px;
}

@media(width < 960px){
    .kouzi-img{
        display: block;
        height: auto;
    }
}













footer{
    display: block;
    width: 100%;
    border-top: 2px solid #CCCCCC;
    padding-top: 20px;
    margin-top: 100px;
}
.footer_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 1000px;
    padding: 0px;
    margin: 0px;
    margin-left: auto;
    margin-right: auto;
}
.f_renrakusaki {
    max-width: 310px;
    font-size: 80%;
    line-height: 110%;
}
.f_renrakusaki img {
    width: 100%;
    margin-bottom: 10px;
}
.footer_menu {
    max-width: 700px;
    font-size: 90%;
}
.footer_menu ul {
    margin: 0px;
    margin-bottom: 20px;
    padding: 0px;
}
.footer_area ul li {
    display: inline;
}
.footer_area ul li a{
    position: relative;
    padding: 0 0 0 20px;
    
}
.footer_area ul li a::before{
    position: absolute;
    content: "∴";
    top: 0;
    left: 0;
}
.copy {
    display: block;
    font-size: 75%;
    padding-bottom: 10px;
    line-height: 145%;
    text-align: center;
}

@media(width < 692px){
    .footer_menu{
        display: none;
    }
}

.slide-in{
  animation-name:slide-in;
  animation-duration:4s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes slide-in{
    from {
      opacity: 0;
      transform: translateX(-100px);
    
    }
  
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }



  .body{
    position: absolute;
     width: 100vw;
     height: 100vh;
     background: black;
     z-index: 9999;
   }
     .atom-spinner, .atom-spinner * {
       box-sizing: border-box;
     }
   
     .atom-spinner {
       height: 200px;
       width: 200px;
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       -webkit-transform: translate(-50%, -50%);
       -ms-transform: translate(-50%, -50%);
     }
   
     .atom-spinner .spinner-inner {
       position: relative;
       display: block;
       height: 100%;
       width: 100%;
     }
   
     .atom-spinner .spinner-circle {
       display: block;
       position: absolute;
       color: #ff1d5e;
       font-size: calc(60px * 0.24);
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
     }
   
     .atom-spinner .spinner-line {
       position: absolute;
       width: 100%;
       height: 100%;
       border-radius: 50%;
       animation-duration: 1s;
       border-left-width: calc(60px / 25);
       border-top-width: calc(60px / 25);
       border-left-color: #ff1d5e;
       border-left-style: solid;
       border-top-style: solid;
       border-top-color: transparent;
     }
   
     .atom-spinner .spinner-line:nth-child(1) {
       animation: atom-spinner-animation-1 1s linear infinite;
       transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
     }
   
     .atom-spinner .spinner-line:nth-child(2) {
       animation: atom-spinner-animation-2 1s linear infinite;
       transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
     }
   
     .atom-spinner .spinner-line:nth-child(3) {
       animation: atom-spinner-animation-3 1s linear infinite;
       transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
     }
   
     @keyframes atom-spinner-animation-1 {
       100% {
         transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
       }
     }
   
     @keyframes atom-spinner-animation-2 {
       100% {
         transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
       }
     }
   
     @keyframes atom-spinner-animation-3 {
       100% {
         transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
       }
     }