.header {
  width: 100%;
  height: 80px;
  display: grid;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  backdrop-filter: blur(30px) brightness(115%);
  -webkit-backdrop-filter: blur(30px) brightness(115%);
}

.header__inner {
  padding: 15px 0;
  display: grid;
  grid-template-columns: minmax(auto, 262px) auto auto;
  align-items: center;
  justify-content: space-between;
}

.header__logo a {
  display: block;
  width: 262px;
 
}

.header__navi {
  display: flex;
  align-items: center;
}

.header__navi-list {
  display: inherit;
  gap: clamp(1.25rem, -0.003rem + 2.61vw, 3.125rem);
}

.header__navi-el a {
  font-size: 16px;
  font-weight: 600;
}

.header__navi-el--drop {
  position: relative;
  cursor: pointer;
}

.header__navi-el--drop:hover .header__drop {
  display: block;
}

.header__navi-el--drop p {
  font-size: 16px;
  font-weight: 600;
}

.header__navi-el--drop a {
  position: relative;
  z-index: 1;
}

.header__menu-button {
  display: none;
}

.header__drop {
  display: none;
  width: 124px;
  padding: 22px 0;
  position: absolute;
  top: 40px;
  left: 50%;
  translate: -50% 0;
  background: #fff;
  border-radius: 8px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  -moz-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
}

.header__drop::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 3.5px 7px 3.5px;
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  -moz-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
}

.header__drop::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: 100%;
  left: 0;
}

.header__drop-el {
  text-align: center;
}

.header__drop-el a {
  font-size: 14px;
  font-weight: 600;
}

.header__drop-el:not(:last-child) {
  margin-bottom: 20px;
}

.header__buttons {
  display: flex;
  gap: 20px;
}

.header__buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C6006F;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  width: 184px;
  height: 40px;
  border-radius: 25px;
  box-shadow: 3px 3px 1px rgba(0, 0, 0, 0.16);
  transition: translate 0.4s ease, box-shadow 0.4s ease;
}

.header__buttons a:hover {
  box-shadow: unset;
  translate: 3px 3px;
}

.header__buttons--contact::before {
  content: "";
  background: url(../images/Icon\ ion-mail.png) no-repeat center/contain;
  width: 20px;
  height: 16px;
  margin-right: 4px;
}

.header__buttons--tel::before {
  content: "";
  background: url(../images/Icon\ fa-solid-phone.png) no-repeat center/contain;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.header__modal {
  display: none;
}

.sns__btn {
  display: none;
}

.fixed__sns__btn{
  width: 40px;
  position: fixed;
  left: auto;
  right: 0;
  top: calc(100vh*0.5 - 45px);
  z-index: 1;
  display: block;

}

.fixed__sns__btn>a{
  width: 100%;
  display: block;
}
.fixed__sns__btn>a>img{
  width: 100%;
}

.fixed__sns__btn>a:nth-child(1){
  margin-bottom: 10px;
}

@media (max-width: 965px){
    .fixed__sns__btn{
      display: none;
    }
  }


@media (max-width: 965px) {
  .header {
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
    background: #fff;
  }

  .header__inner {
    padding: 10px 0;
    /* grid-template-columns: minmax(auto, 189px) 90px minmax(auto, clamp(1.688rem, 0.615rem + 4.58vw, 3.375rem)); */
    grid-template-columns:
      minmax(auto, 189px)
      /* 1列目: 左端に配置 */
      1fr
      /* 2列目: 自動で広がるスペーサー */

      clamp(1.688rem, 0.615rem + 4.58vw, 3.375rem);
    /* 4列目: レスポンシブ */
    justify-content: normal;
  }


  .header__navi, .header__buttons {
    display: none;
  }

  .header__menu-button {
    display: flex;
    flex-direction: column;
    gap: clamp(0.281rem, 0.102rem + 0.76vw, 0.563rem);
  }

  .header__menu-line {
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 25px;
  }

  .header__modal {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 1;
    transition: left 0.4s ease;
  }

  .header__modal.modal-hidden {
    left: 100%;
  }

  .header__modal-contents {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    gap: 20px;
  }

  .header__modal-close {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 33px;
    right: 26px;
  }

  .header__modal-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
  }

  .header__modal-line:nth-child(1) {
    rotate: 45deg;
    translate: 0 1px;
  }

  .header__modal-line:nth-child(2) {
    rotate: -45deg;
    translate: 0 -1px;
  }

  .header__modal-lead {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .header__modal-el {
    margin-left: 40px;
  }

  .header__modal-el:not(:last-child) {
    margin-bottom: 20px;
  }

  .header__modal-el a {
    font-size: 14px;
    font-weight: 600;
  }

  .header.is-active .header__modal {
    left: 0;
  }

  .sns__btn {
    display: flex;
    justify-content: end;
    margin-right: 20px;
  }

  .sns__btn>a {
    min-width: 36px;
    max-width: 36px;
  }

  .sns__btn>a:first-child {
    margin-right: 10px;
  }

  .sns__btn>a>img {
    width: 100%;
  }

  .header__logo a {
      display: block;
      width: 189px;

    }

    

  @media (min-width: 580px) {
    .header__logo a {
      display: block;
      width: 262px;

    }

    .sns__btn {
     
      margin-right: 40px;
    }
  }

  @media (max-width: 374px){
    .header__logo a {
      display: block;
      width: 170px;

    }

    .sns__btn {
     
      margin-right: 14px;
    }
  }
}

/*# sourceMappingURL=header.css.map */