@charset "UFT-8";

/* 全デバイス共通 */

* {
    margin: 0;
    padding: 0;
    font-family: Noto serif JP;
    list-style: none;
    text-decoration: none;

}

img {
  display: block;      
  max-width: 100%;     
  height: auto;        
  border: none;        
}

#container {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;

}

body {
  line-height: 1.6;
  color: #333;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flood-color: #707070;

}

#header-logo {
    width: 150px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: 4%;
    margin-bottom: 38px;

}

.header nav {
    display: inline-block;
    margin-top: 59px;
    margin-right: 4%;
    margin-left: auto;
    margin-bottom: 38px;

}


nav ul {
  display: flex;
  gap: 20px;
  
}

nav ul li a {
  color: #707070;
  font-size: 16px;
  font-weight: 500;
}


.hamburger, .menu-slide-right {
  display: none;

}

.green {
    width: 100%;
    height: 25px;
    background-color: #A6EA93;

}

.pink {
    width: 100%;
    height: 25px;
    background-color:#FAC0E9 ;
    margin-bottom: 50px;

}

h2 {
  color: #4E4E4E;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;

}


.h2-bg {
  color: #fff;
  background-color: #4E4E4E;

}

.bg-img {
    width: 100%;
    height: auto;
    background-image: url(main.png);
    background-size: cover;
    background-repeat: no-repeat;

}

.sheet {
  background-color: rgba(255,255,255,0);
  padding-top: 30px;
    padding-bottom: 30px;
}

.contact-form {
  text-align: center;
  border: none;
  width: 100%;
  background-color: rgba(87, 61, 61, 0.5);
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  
  
}

.contact label {
  font-size: 18px;
  font-weight: 500;
}
 

input {
    appearance: none;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    
}


#fullname, #mail {
    width: 250px;
    font-size: 18px;
}


#msg {
  width: 250px;
  height: 100px;
  font-size: 18px;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;

}

#button {
    background: #3B5E8B;
  color: #fff;
  font-size: 18px;
  width: 80px;

}

#footer {
  text-align: center;

}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 110px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    gap: 80px;

}

.footer-logo {
    width: 170px;
    height: auto;

} 

.instagram {
    width: 78px;
    height: auto;

}

#footer nav ul {
  display: flex;
  justify-content: center;
  
  
}

#footer nav ul li a {
  font-size: 16px;
  font-weight: normal;
  color: #707070;

}



#copy {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  display: block;
  background-color:#604E5C;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;


}

/* デバイス幅　1199px〜768px */
@media screen and (max-width:1199px)  {

  #header-logo {
    width: 122px;
    margin-top: 24px;
    margin-right: auto;
    margin-left: 4%;
    margin-bottom: 16px;

  }

  .header nav {
    display: none;

}

  .hamburger, .menu-slide-right {
  display: block;
  
}
    .hamburger {
      position: fixed;
      right: 2px;
      top: 20px;
      width: 40px;
      height: 30px;
      cursor: pointer;
      z-index: 9999;
      background-color: #5f4d59;
      padding: 5px;
      

    }
    
    .hamburger-line {
      position: absolute;
      width: 30px;
      height: 2px;
      background-color: #fff;
      border-radius: 0px;
      transition: all 200ms ease;
      transform: rotate(0deg);
      margin-top: 10px;
      margin-left: 5px;
    }
    
    /* 線の位置（通常） */
    .hamburger-line:nth-child(1) { top: 0px; }
.hamburger-line:nth-child(2) { top: 8px; }
.hamburger-line:nth-child(3) { top: 16px; }
    
    /* ×変形（2本） */
    
    
    /* ×変形（3本） */
    
    .hamburger.open .hamburger-line:nth-child(1) {
      top: 8px;
      transform: rotate(45deg);
    }
    .hamburger.open .hamburger-line:nth-child(2) {
      opacity: 0;
    }
    .hamburger.open .hamburger-line:nth-child(3) {
      top: 8px;
      transform: rotate(-45deg);
    }
    
    /* メニュー本体 */
    #hamburger-menu {
      flex-direction: column;
      display: flex;
      opacity: 0;
      visibility: hidden;
      transform: translateX(20px);
      transition: all 200ms ease;
      width: 60px;
      height: 100px;
      background-color: #5f4d59;
      color: #ffffff;
      padding-top: 40px;
      gap: 5px;
      margin-top: 20px;
    }
    
    #hamburger-menu.open {
      opacity: 1;
      transform: translateX(0);
      visibility: visible;
    }
    
    .menu-item {
      display: flex;
      align-items: center;
      gap: 5px;
      text-decoration: none;
      color: inherit;
      padding-bottom: 10px;
      border-bottom: none;
    }

    .text {
      font-size: 16px;
      font-weight: 500;
    }

    .menu-item:last-child {
      border-bottom: none;
    }
    
    .icon img {
      width: 20px;
      height: 20px;
      object-fit: contain;
    }
    
    /* アニメーション */
    
    /* 右から左 */
    .slide-right-enter-active,
    .slide-right-leave-active {
      
          transition: all 200ms ease;
        
    }
    .slide-right-enter-from,
    .slide-right-leave-to {
      opacity: 0;
      transform: translateX(20px);
    }
    .slide-right-enter-to,
    .slide-right-leave-from {
      opacity: 1;
      transform: translateX(0);
    }

    .menu-slide-right {
  position: fixed;
  top: 0;
  right: -200px; /* 初期は画面外 */
  width: 200px;
  height: 100%;
  background-color: #6e5d6a;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 20px;
  transition: right 0.3s ease; /* アニメーション */
  z-index: 9998;
}

.menu-slide-right.open {
  right: 0; /* 開いた状態 */
}

.menu-item {
  color: #fff;
  text-decoration: none;
  font-size: 12px;


}

.pink {
  margin-bottom:30px ;
}

h2 {
  margin-bottom: 20px;

  }


#footer {
  margin-top: 120px;
}

.footer-content {
  margin-bottom: 15px;
  
}


.footer-logo {
    width: 111px;
    height: auto;

} 

#footer nav ul li a {
  font-size: 14px;

}

.instagram {
    width: 53px;
    height: auto;

}

#copy {
  font-size: 12px;
  padding-top: 12px;

}

}



/* デバイス幅　767px以下 */
@media screen and (max-width:767px)  {

#header-logo {
    width: 150px;
    margin-top: 16px;
    margin-right: auto;
    margin-bottom: 16px;

}
 
    .hamburger {
      top: 16px;
      width: 25px;
      height: 20px;
      

    }
    
    .hamburger-line {
      width: 20px;
      height: 2px;
      margin-top: 6px;
      margin-left: 2px;
    }
    
    /* 線の位置（通常） */
    .hamburger-line:nth-child(1) { top: 0px; }
.hamburger-line:nth-child(2) { top: 8px; }
.hamburger-line:nth-child(3) { top: 16px; }
    
    /* ×変形（2本） */
    
    
    /* ×変形（3本） */
    
    .hamburger.open .hamburger-line:nth-child(1) {
      top: 8px;
      transform: rotate(45deg);
    }
    .hamburger.open .hamburger-line:nth-child(2) {
      opacity: 0;
    }
    .hamburger.open .hamburger-line:nth-child(3) {
      top: 8px;
      transform: rotate(-45deg);
    }
    
    /* メニュー本体 */
    #hamburger-menu {
      height: 130px;
      padding: 30px 5px 5px 8px;
      gap: 2px;
      margin-top: 8px;
    }
    
    
.menu-item {
  font-size: 8px;

}

.pink {
  margin-bottom: 20px;
}

h2 {
  font-size: 18px;

}

.sheet {
  background-color: rgba(255,255,255,0);
  padding-top: 30px;
    padding-bottom: 30px;
}

.contact-form {
  text-align: center;
  border: none;
  width: 100%;
  background-color: rgba(87, 61, 61, 0.5);
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  
  
}

#button {
    background: #3B5E8B;
  color: #fff;

}


input {
    appearance: none;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    
}


#fullname {
    width: 250px;
}

#mail {
  width: 250px;
}


#msg {
  width: 250px;
  height: 100px;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;

}



.footer-content {
  gap: 5px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.footer-logo {
    width: 100px;
    height: auto;

} 

.footer-nav {
  display: none;
}

#footer nav ul li a {
  font-size: 14px;

}

.instagram {
    width: 50px;
    height: auto;
    

}

#copy {
  font-size: 14px;
  padding-top: 5px;
  padding-bottom: 5px;
  

}

}
