@charset "utf-8";
/* CSS Document */

.mt40 {margin-top: 40px;}

header {
  display: block;
}

#header {
  position: fixed;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  height: 65px;
  z-index: 1000;
  padding: 0 6%;
  /* アニメーションの変化時間 */
  transition: background-color 0.3s ease;
  background-color: rgba(137, 172, 178, 0.7);
  background-blend-mode: multiply;
  backdrop-filter: blur(12px);
  opacity: 1;
}

#header.is-scroll {
  background-image:none;
  /* スクロール時の色 */
  background-color: rgba(137, 172, 178, 0.75);
  background-blend-mode: multiply;
  backdrop-filter: blur(12px);
  opacity: 1;
}


.head_logo {
  min-width: 130px;
  width: 150px;
  margin-right: 6%;
}

.sns_icon {
  height: 25px;
}


.nav {margin-right: 1rem;}
.nav ul {
  list-style-type: none;
  padding-left: 0;
}

.list__item a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 16px;/* clamp(14px, 2vw, 16px) */
  color: #fff;
  filter: drop-shadow(0px 0px 8px rgba(0, 14, 8, 0.2));
}

.list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 10px;
  transition: color .15s;
  /* アニメーションの変化時間 */
  transition: 0.5s;
}

.link:hover,
.link:focus-within,
.sp__link:hover,
.sp__link:focus-within,
.sp__link__sns:hover,
.sp__link__sns:focus-within {
  opacity: 0.5;
  /* アニメーションの変化時間 */
  transition: 0.5s;
}
.inst:hover,
.line:hover {
  opacity: 0.5;
  /* アニメーションの変化時間 */
  transition: 0.5s;
}



#header .btn-gNav {
  position: fixed;
  /*top: 20px;*/
  right: 20px;
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

#header .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

#header .btn-gNav span:nth-child(1) {
  top: 0;
}

#header .btn-gNav span:nth-child(2) {
  top: 10px;
}

#header .btn-gNav span:nth-child(3) {
  top: 20px;
}

#header .btn-gNav.open span:nth-child(1) {
  background: #ffffff;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#header .btn-gNav.open span:nth-child(2),
#header .btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}


.btn-gNav {
  display: none;
}

.pc_menu {display: block;}
.sp_menu {display: none;}

/*----レスポンシブ----*/
@media screen and (max-width: 1000px) {

  #header {
    position: fixed;
    justify-content: left;
    align-items: unset;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    padding-top: 1.2rem;
  }

  .head_logo {
    min-width: 100px; 
    width: 130px;
    margin-left: 0;
    z-index: 9;
  }

  .nav {width: 85%;}
  
  .list {
    width: 100%;
    height: 100vh;
    margin-left: auto;
    /* メニューを縦に */
    display: flex;
    flex-direction: column;
    color: #efefef;
    transition: .3s;
  }

  .btn-gNav {
    display: block;
  }


  .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 1;
    transition: .3s;
  }

  .gNav.open {
      right: 0;
  }

  .gNav .gNav-menu {
    padding: 0;
    width: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
    background-color: rgba(137, 172, 178, 0.85);/* rgba(255, 255, 255, 0.9) */
    padding: 6rem 8%;
  }

  .gNav .gNav-menu li {
    width: 100%;
    padding: 15px;
    border-bottom: #c5d0dc 1px solid;
  }


/* スマホのみ表示 メニュー */

  .sp__link {
    position: relative;
    display: inline-block;
    align-items: center;
    gap: 5px;
    padding-left: 30px;
    transition: color .15s;
    /* アニメーションの変化時間 */
    transition: 0.5s;
    margin-bottom: 1.5rem;
  }

  .sp__link__sns {
    position: relative;
    display: inline-block;
    align-items: center;
    gap: 5px;
    padding-left: 15px;
    transition: color .15s;
    /* アニメーションの変化時間 */
    transition: 0.5s;
  }

  .sp__list {
    width: 100%;
    height: 100vh;
    margin-left: auto;
    /* メニューを縦に */
    display: flex;
    flex-direction: column;
    color: #efefef;
    transition: .3s;
  }

  .sp__list__item {
    text-align: left;
    border-bottom: none !important;
  }
  .sp__list__item a {
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 14px;/* clamp(12px, 2vw, 14px) */
    color: #fff;
  }

  .pc_menu {display: none;}
  .sp_menu {display: block;}
}

@media screen and (max-width: 540px) {

  .gNav .gNav-menu {
    padding: 4rem 6%;
  }

  .sp__link__sns {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 15px;
    margin-bottom: 1.5rem;
    transition: color .15s;
    /* アニメーションの変化時間 */
    transition: 0.5s;
  }

}

/*----レスポンシブ　ここまで----*/