@charset "utf-8";


/* --------ヘッダー全体-------- */
.lp_atelier_header {
  width: fit-content;
  height: 7rem;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 .3rem .6rem #00000029;
  position: fixed;
  left: 14rem;
  top: 2rem;
  overflow: hidden;
  z-index: 100;
}

.scrolling {
  width: 0;
  height: 0;
}

.scrolled {
  animation: slide_down .3s ease;
}

@keyframes slide_down {
  0% {
    transform: translateY(-7rem);
  }

  100% {
    transform: translateY(0);
  }
}

/* ----ロゴ画像---- */
.header_logo_wrapper {
  height: 100%;
  width: fit-content;
  padding: 0 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
}

.header_logo_image {
  width: 8.5rem;
  height: auto;
  object-fit: cover;
}

/* ----ハンバーガーボタン(pcでは非表示) */
.hamburger_wrapper {
  display: none;
}

/* ----PC版のナビゲーションメニュー---- */
.header_navigation {
  width: 85.5rem;
  height: 100%;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.header_navigation_lists {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.header_navigation_lists li {
  width: fit-content;
  height: 100%;
}

.header_navigation_links {
  width: fit-content;
  height: 100%;
  padding: 0 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.5em;
  color: #000000;
  font-family: var(--NotoSans);
  font-weight: 500;
}

.header_navigation_links:hover {
  color: #F38200;
}

.white_links_last{
  padding-right: 5rem;
}

.header_navigation_contact {
  width: 12.5rem;
  height: 100%;
  background-color: #F38200;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5em;
  font-family: var(--NotoSans);
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  border-radius: 0 1rem 1rem 0;
}

.header_navigation_contact:hover {
  color: #000000;
}

.header_navigation_sp {
  display: none;
}



/* ----------メディアクエリ---------- */

@media screen and (max-width:699.98px) {

  /* --------ヘッダー全体-------- */
  .lp_atelier_header {
    width: 100%;
    height: 9rem;
    border-radius: none;
    display: flex;
    justify-content: space-between;
    box-shadow: none;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0;
    overflow: auto;
    z-index: 101;
  }

  .scrolling {
    width: 100%;
    height: 9rem;
  }

  .scrolled {
    width: 100%;
    height: 9rem;
    animation: none;
  }


  /* ----ロゴ画像---- */
  .header_logo_wrapper {
    width: 12rem;
    height: 6rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 1.1rem;
    box-shadow: 0 .3rem .6rem #00000029;
    position: relative;
    top: 1rem;
    left: 1rem;
    z-index: 105;
  }

  .header_logo_image {
    width: 6.6rem;
    height: auto;
    object-fit: cover;
  }


  /* ----ハンバーガーボタン(PCでは非表示)---- */
  .hamburger_wrapper {
    display: flex;
    width: 5.5rem;
    height: 5.5rem;
    background-color: #F38200;
    border-radius: .9rem;
    box-shadow: 0 .3rem .6rem #00000029;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .4rem;
    transition-duration: .5s;
    position: relative;
    top: 1rem;
    right: 1rem;
    z-index: 150;
  }

  .active {
    background-color: #FFFFFF;
  }

  .hamburger_line_wrapper {
    width: 2.7rem;
    height: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger_line {
    width: 2.7rem;
    height: .2rem;
    background-color: #000000;
    transition: transform .5s ease;
  }

  .active .hamburger_line1 {
    transform: translateY(.7rem) rotate(30deg) ;
  }

  .active .hamburger_line2 {
    display: none;
  }

  .active .hamburger_line3 {
    transform: translateY(-0.7rem) rotate(-30deg);
  }

  .hamburger_text {
    color: #000000;
    font-size: 1rem;
    line-height: 1em;
    text-align: center;
    font-family: var(--NotoSans);
    font-weight: bold;
  }

  .active .hamburger_text {
    display: none;
  }

  .hamburger_text2 {
    display: none;
  }

  .active .hamburger_text2 {
    display: block;
  }


  /* ----SP版のナビゲーションメニュー---- */
  .header_navigation {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -100vh;
    background-color: #F38200;
    transition-duration: .7s;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: start;
  }

  .opened .header_navigation {
    top: 0;
  }

  .header_navigation_lists {
    width: 25.5rem;
    height: calc(446 / 667 * 100vh);
    background-color: #FFFFFF;
    border-radius: 1.7rem 1.7rem 1.5rem 1.5rem;
    position: relative;
    top: 12.5rem;
    box-shadow: 0 .3rem 1rem #00000029;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: auto;
    z-index: 90;
  }

  .header_navigation_lists li {
    width: 100%;
    height: calc(77 / 667 * 100vh);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header_navigation_lists li:last-of-type {
    height: calc(61 / 667 * 100vh);
  }

  .header_navigation_links {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    line-height: 1.5em;
    color: #000000;
    font-family: var(--NotoSans);
    font-weight: 500;
  }

  .header_navigation_links:hover {
    color: #F38200;
  }

  .header_navigation_contact {
    width: 100%;
    height: calc(61 / 667 * 100vh);
    background-color: #F3CE00;
    color: #000000;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5em;
    font-family: var(--NotoSans);
    justify-self: end;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .header_navigation_contact:hover {
    color: #FFFFFF;
  }
}