/* Breakpoint
------------------------------------- */
/* Mobile First */
/* Desktop First */
/* Text Style
------------------------------------- */
/* Font Family */
/* Font Size for Paragraph (Area Text) */
/* Font Size for Title and Word (Point Text) */
/* Line Height */
/* Letter Spacing */
/* Color Palette
------------------------------------- */
/* Mixins
------------------------------------- */
/* mixin Text Crop
------------------------------------- */
/* Spacing
------------------------------------- */
.f_site__header {
  background-color: #ffffff;
  min-height: 90px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.p_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p_header__logo {
  width: 100%;
  max-width: 280px;
}
.p_header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*----------------------------------------------
	.p_header__nav
---------------------------------------------*/
nav.p_header__navlist .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
nav.p_header__navlist .menu a {
  font-size: 16px;
  color: #000000;
  display: block;
  text-align: center;
  padding: 0 20px;
  letter-spacing: 0.1em;
}
nav.p_header__navlist .menu li.current a {
  color: #F03189;
}

@media screen and (max-width: 1300px) {
  .f_site__header {
    padding: 0 10px 0 20px;
  }
  .p_header__logo {
    max-width: 250px;
  }
  nav.p_header__navlist .menu a {
    font-size: 1.2vw;
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .f_site__header {
    min-height: 60px;
    padding: 0 15px;
  }
  .p_header {
    background-color: white !important;
    height: 60px;
    padding: 10px 20px;
    min-height: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    z-index: 9999;
  }
  .p_header:before {
    content: "";
    background: #ffffff;
    width: 100%;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  .p_header__logo {
    max-width: 168px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
  }
  nav.p_header__navlist {
    overflow-y: scroll;
    position: fixed;
    left: 0;
    right: 0;
    top: -100%;
    background: #ffffff;
    border-top: 1px solid #F7F5F6;
    width: 100%;
    height: 100%;
    z-index: 9998;
    padding: 20px 20px 90px;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  nav.p_header__navlist.open:before {
    z-index: 5;
    width: 100%;
  }
  nav.p_header__navlist ul.menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    text-align: left;
    z-index: 4;
    position: relative;
  }
  nav.p_header__navlist ul.menu > li {
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
  }
  nav.p_header__navlist ul.menu > li:last-child {
    margin-bottom: 0;
  }
  nav.p_header__navlist ul.menu > li .sp-only {
    display: block;
  }
  nav.p_header__navlist ul.menu > li > a {
    font-size: 16px;
    line-height: 1.2;
    display: block;
    text-align: center;
    color: #F03189;
    padding: 10px;
    opacity: 1;
  }
  nav.p_header__navlist ul.menu > li > a:hover {
    opacity: 0.8;
  }
  nav.p_header__navlist ul.menu > li > a:after {
    display: none;
  }
  nav.p_header__navlist ul.menu > li > a.open {
    opacity: 0.6;
  }
}
/*----------------------------------------------
	Menu Toggle
---------------------------------------------*/
.p_header__menu-toggle {
  display: none;
  color: #F7F5F6;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 6px 0 0 0;
  padding-top: 15px;
  z-index: 9999;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  width: 26px;
  text-align: center;
  position: relative;
}

.p_header__menu-toggle span {
  display: block;
  position: absolute;
  height: 1px;
  width: 24px;
  border-radius: 5px;
  background: #F03189;
  opacity: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p_header__menu-toggle.navSpClose span {
  height: 1.5px;
}

.p_header__menu-toggle span:nth-child(1) {
  top: 0;
}

.p_header__menu-toggle span:nth-child(2) {
  top: 6px;
}

.p_header__menu-toggle span:nth-child(3) {
  top: 12px;
}

.p_header__menu-toggle small.op {
  color: #212121;
  font-size: 10px;
  line-height: 1.2;
}

.p_header__menu-toggle.navSpClose span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.p_header__menu-toggle.navSpClose span:nth-child(2) {
  top: 6px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.navSpOpen.active {
  display: none;
}

.navSpClose {
  display: none;
}

@media screen and (max-width: 991px) {
  .p_header__menu-toggle {
    min-width: 26px;
  }
  .p_header__menu-toggle:hover {
    opacity: 0.7;
  }
  .navSpOpen {
    display: block;
  }
  .navSpClose.active {
    opacity: 1;
    display: block;
    padding-top: 17px;
  }
  nav.open {
    top: 60px;
  }
}
/*----------------------------------------------
	.p_header__social
---------------------------------------------*/
.p_header__social {
  margin-top: 30px;
  text-align: center;
}
.p_header__social li {
  display: inline-block;
  vertical-align: top;
  margin: 0 15px;
}
.p_header__social li:first-child {
  margin-left: 0;
}
.p_header__social li:last-child {
  margin-right: 0;
}
.p_header__social a {
  display: block;
}
.p_header__social img {
  width: 100%;
  max-width: 40px;
}