@charset "UTF-8";

/* ヘッダー
***************************************************************/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px 0;
  z-index: 100;
}

.logo_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_content a.logo img {
  width: 155px;
}

.logo_content .link_wrap {
  display: flex;
  gap: 50px;
  align-items: center;
}

.logo_content .link_wrap ul {
  display: flex;
  gap: 67px;
}

.logo_content .link_wrap ul li a {
  display: flex;
  gap: 5px;
}

.logo_content .link_wrap ul li a img {
  width: 14px;
}

.logo_content .link_wrap ul li a p {
  font-size: 14px;
  font-weight: bold;
}

/* ハンバーガーメニュー */
.toggle-menu {
  display: inline-block;
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 999;
  border: 1px solid #e887a5;
  background-color: #e887a5;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.toggle-menu .toggle-line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  text-indent: -9999px;
  width: 28px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.toggle-menu .toggle-line::before,
.toggle-menu .toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.toggle-menu .toggle-line::before {
  top: -8px;
  -webkit-animation: menu-barTop 0.6s forwards;
  animation: menu-barTop 0.6s forwards;
}

.toggle-menu .toggle-line::after {
  top: 8px;
  -webkit-animation: menu-barBottom 0.6s forwards;
  animation: menu-barBottom 0.6s forwards;
}

.header_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to top, #fbeef3, #fdf9ed);
  z-index: 90;
  transition: 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
}

.open .toggle-menu .toggle-line {
  height: 0;
  background-color: #fff;
}

.open .toggle-menu .toggle-line::before {
  background-color: #fff;
  transform: rotate(-45deg);
  top: 0;
}

.open .toggle-menu .toggle-line::after {
  background-color: #fff;
  transform: rotate(45deg);
  top: 0;
}

.open .header_nav {
  overflow: auto;
  opacity: 1;
  visibility: unset;
}

.global_nav ul li a {
  color: #665c5c;
}

/* ハンバーガーメニューコンテンツ */

.global_nav {
  display: flex;
}

.global_nav .img_pc {
  height: 100vh;
}

.global_nav img {
  width: 34.72vw;
}

.global_nav .text_box {
  flex: 1;
  padding: 100px 200px 100px 92px;
}

.global_nav .text_box .logo {
  width: 320px;
}

.global_nav .text_box ul.link1 {
  margin-top: 80px;
  width: 380px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.global_nav .text_box ul.link1 li {
  padding-right: 20px;
  border-right: 1px solid #665c5c;
}

.global_nav .text_box ul.link1 li a {
  font-weight: bold;
}

.global_nav .text_box ul.link2 {
  margin-top: 80px;
  display: flex;
  gap: 30px;
}

.global_nav .text_box ul.link2 .box1 a {
  font-weight: bold;
  line-height: 23px;
  padding: 8px 50px 9px 16px;
  display: flex;
  gap: 16px;
  border: 1px solid #665c5c;
  border-radius: 21px;
  width: 160px;
}

.global_nav .text_box ul.link2 .box1 img {
  width: 19px;
  object-fit: contain;
}

.global_nav .text_box ul.link2 .box2 a {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  padding: 9px 39px 11px 12px;
  display: flex;
  gap: 8px;
  border: 1px solid #665c5c;
  border-radius: 21px;
  width: 160px;
}

.global_nav .text_box ul.link2 .box2 img {
  width: 21px;
  object-fit: contain;
}

.global_nav .text_box .link3 {
  padding: 20px 20px 0 10px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #665c5c;
  margin-top: 167px;
  align-items: flex-end;
  position: relative;
}

.global_nav .text_box .link3::after {
  content: "";
  display: inline-block;
  top: -261px;
  right: 0;
  width: 147px;
  height: 248px;
  position: absolute;
  background-image: url(../../images/flower.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(20deg);
}

.global_nav .text_box .link3 .sns {
  display: flex;
  gap: 20px;
  align-items: center;
}

.global_nav .text_box .link3 .sns .img1 {
  width: 25px;
}

.global_nav .text_box .link3 .sns .img2 {
  width: 27px;
}

.global_nav .text_box .link3 .sns .img3 {
  width: 26px;
}

.global_nav .text_box .link3 .privacy {
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .toggle-menu:hover {
    background-color: #fff;
  }

  .toggle-menu:hover .toggle-line {
    background-color: #e887a5;
  }

  .toggle-menu:hover .toggle-line::before,
  .toggle-menu:hover .toggle-line::after {
    background-color: #e887a5;
  }
}

@media screen and (max-width: 1280px) {
  .global_nav .text_box .link3::after {
    top: -208px;
    background-size: 83px;
  }
}

@media screen and (max-width: 1080px) {
  header {
    padding: 10px 0;
  }

  .header_inner {
    display: block;
    margin: 0 10px;
  }

  .logo_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  /* ヘッダー
***************************************************************/

  header {
    padding: 10px 10px 0;
  }

  .header_inner {
    display: unset;
    margin: 0;
  }

  .logo_content .link_wrap ul {
    display: none;
  }

  /* ハンバーガーメニュー */
  .toggle-menu {
    width: 50px;
    height: 50px;
  }

  .toggle-menu .toggle-line {
    width: 23px;
  }

  .toggle-menu .toggle-line::before,
  .toggle-menu .toggle-line::after {
    width: 23px;
  }

  .toggle-menu .toggle-line::before {
    top: -7px;
  }

  .toggle-menu .toggle-line::after {
    top: 7px;
  }

  /* ハンバーガーメニューコンテンツ */

  .global_nav {
    display: flex;
  }

  .global_nav .img_pc {
    display: none;
  }

  .global_nav .text_box {
    padding: 10px 10px 70px;
  }

  .global_nav .text_box .logo {
    width: 155px;
    position: relative;
    top: 7px;
  }

  .global_nav .text_box ul.link1 {
    margin-top: 40px;
    width: auto;
    flex-flow: column;
    gap: 20px;
    text-align: center;
  }

  .global_nav .text_box ul.link1 li {
    padding-right: 0;
    border-right: none;
  }

  .global_nav .text_box ul.link1 li a {
    font-size: 15px;
    line-height: 22px;
  }

  .global_nav .text_box ul.link2 {
    margin-top: 40px;
    flex-flow: column;
    gap: 20px;
    align-items: center;
  }

  .global_nav .text_box ul.link2 {
    flex-flow: column;
    gap: 20px;
  }

  .global_nav .text_box .link3 {
    padding: 20px 5px 0;
    margin-top: 80px;
    align-items: flex-start;
  }

  .global_nav .text_box .link3::after {
    display: none;
  }

  .global_nav .text_box .link3 .sns {
    gap: 15px;
  }
}
