@charset "UTF-8";
header.global-header {
  padding: 24px 32px 16px;
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.7;
  color: #333;
  border-bottom: 4px solid #14b8a6;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
header.global-header #h1-link {
  display: block;
  width: 160px;
  height: 32px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: no-repeat center url(img/logo_synapse.svg);
  cursor: pointer;
}
header.global-header #menu-button {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 0 0 #119b8b;
  transition: 0.4s;
  background: #14b8a6 no-repeat center/40px 2px url(img/icon_menu_button.svg);
  position: relative;
  margin-bottom: 28px;
}
header.global-header #menu-button:before,
header.global-header #menu-button:after {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 1.5px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
header.global-header #menu-button:before {
  top: 12px;
}
header.global-header #menu-button:after {
  bottom: 12px;
}
header.global-header #menu-button:hover {
  background: #00c6af no-repeat center/40px 2px url(img/icon_menu_button.svg);
}
header.global-header #menu-button.active {
  box-shadow: none;
  transition: 0.4s;
  transform: translateY(4px);
}
header.global-header .menu-button__text {
  display: inline-block;
  position: relative;
  margin-top: 44px;
  margin-left: -4px;
  font-size: 0.8125rem;
  color: #14b8a6;
  white-space: nowrap;
  font-weight: 600;
}
header.global-header .header-content {
  flex-direction: column;
}
header.global-header .top-area {
  margin-top: -40px;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
}
header.global-header .action-area {
  display: flex;
}
header.global-header .search-box {
  transition: 0.4s;
  display: flex;
  min-width: 244px;
  height: 40px;
  border: solid 1px #cdcdcd;
  border-radius: 20px;
  position: relative;
  margin-right: 24px;
}
header.global-header .search-box__text {
  display: block;
  border: none;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 100%;
  padding-left: 8px;
  box-sizing: border-box;
  transition: 0.4s;
}
header.global-header .search-box__button {
  width: 44px;
  border: none;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #fcdf47 url(img/icon_loupe.svg) no-repeat center;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.4s;
}
header.global-header #login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 208px;
  height: 40px;
  background-color: #fcdf47;
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 0 0 #d3b64c;
  transition: 0.4s, text-indent 0s;
  font-weight: 600;
  color: #333;
}
header.global-header #login-button:before {
  content: "";
  width: 24px;
  height: 24px;
  background: no-repeat center url(img/icon_login.svg);
  display: inline-block;
  margin-right: 8px;
}
header.global-header #login-button:hover {
  background: #f6d013;
  transition: 0.2s;
}
header.global-header #login-button.active {
  box-shadow: none;
  transition: 0.2s;
  transform: translateY(4px);
}
header.global-header .login-area-cover {
  position: absolute;
  overflow: hidden;
  height: 0;
  display: none;
  right: 0px;
  top: 64px;
  width: 100%;
  z-index: 10;
  transition: height 0.4s ease;
}
header.global-header .login-area {
  width: 100%;
  padding: 40px 12px 32px;
  box-sizing: border-box;
  background: linear-gradient(
    to bottom,
    #fff 0px,
    #fff 16px,
    #eff9f9 16px,
    #eff9f9 100%
  );
  z-index: 10;
}
header.global-header .login-area:before {
  content: "";
  width: 32px;
  height: 16px;
  background: no-repeat center url(img/icon_arrow_top.svg);
  position: absolute;
  top: 0px;
  right: 120px;
}
header.global-header .login-ul {
  display: flex;
  justify-content: space-between;
  max-width: 1040px;
  margin: auto;
}
header.global-header .login-ul__menu {
  max-width: 296px;
  width: 100%;
}
header.global-header .login-ul__explain {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}
header.global-header .login-ul__link {
  background-color: #fff;
  text-decoration: none;
  color: #14b8a6;
  font-weight: 600;
  display: block;
  padding: 12px 24px;
  position: relative;
  border: 1px solid #cdcdcd;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 0 0 #14b8a6;
  transition: 0.4s;
}
header.global-header .login-ul__link:before {
  content: "";
  width: 72px;
  height: 72px;
  display: block;
  margin: auto;
}
header.global-header .login-ul__link-mail::before {
  background: no-repeat center url(img/icon_mail.svg);
}
header.global-header .login-ul__link-blog::before {
  background: no-repeat center url(img/icon_blog.svg);
}
header.global-header .login-ul__link-sc::before {
  background: no-repeat center url(img/icon_service_counter.svg);
}
header.global-header .login-ul__link:after {
  content: "";
  width: 24px;
  height: 24px;
  background: no-repeat center url(img/icon_arrow_right_green_new.svg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 16px;
}
header.global-header .login-ul__link:hover {
  background-color: #ebfffd;
  transition: 0.4s;
}
header.global-header .login-ul__link:active {
  box-shadow: none;
  transition: 0.2s;
  transform: translateY(4px);
}
header.global-header .login-area.visibility-hidden {
  visibility: hidden;
}
header.global-header .nv-global {
  flex-grow: 1;
  margin-top: 32px;
}
header.global-header .nv-global__ul {
  display: flex;
  justify-content: center;
}
header.global-header .nv-global__menu {
  position: relative;
  white-space: nowrap;
}
header.global-header .nv-global__menu:hover > .nv-global__link {
  background-color: #f0fafa;
}
header.global-header .nv-global__menu:last-child a:after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #98d9d2;
  position: absolute;
  right: -1px;
  top: 0;
}
header.global-header .nv-global__link {
  padding: 16px 24px;
  color: #14b8a6;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
header.global-header .nv-global__link:before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #98d9d2;
  position: absolute;
  left: -1px;
  top: 0;
}
header.global-header .has-child:after {
  content: "";
  width: calc(100% - 1.5px);
  height: 24px;
  background-color: #f0fafa;
  display: none;
  position: absolute;
  left: 1px;
}
header.global-header .has-child:hover::after {
  display: block;
}
header.global-header .has-child:hover > #nv-global__service:after {
  transform: rotate(90deg);
  bottom: -8px;
  transition: 0.3s;
}
header.global-header #nv-global__service:after {
  content: "";
  width: 20px;
  height: 20px;
  background: no-repeat center url(img/icon_arrow_right_green_new.svg);
  display: inline-block;
  position: absolute;
  transform: rotate(-90deg);
  bottom: -14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.3s;
  z-index: 2;
}
header.global-header .child-ul {
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 43px;
  left: 1px;
  z-index: 2;
  width: 480px;
  transition: all 0.4s;
}
header.global-header .child-ul__menu:not(:last-child) {
  border-bottom: 1px solid #98d9d2;
}
header.global-header .child-ul__link {
  display: block;
  padding: 16px;
  background-color: #f0fafa;
  text-decoration: none;
  position: relative;
}
header.global-header .child-ul__link:hover {
  background-color: #c3ede9;
}
header.global-header .child-ul__link:after {
  content: "";
  width: 24px;
  height: 24px;
  background: no-repeat center url(img/icon_arrow_right_green_new.svg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 16px;
}
header.global-header .child-ul__title {
  font-weight: 600;
  color: #14b8a6;
}
header.global-header .child-ul__explain {
  font-size: 0.875rem;
  color: #333;
}
header.global-header .child-ul.pc {
  height: 0;
}
header.global-header .has-child:hover .child-ul.pc {
  height: 253px;
}

header.global-header.scroll .has-child:hover .child-ul.pc {
  height: 240px;
}

@media (min-width: 1041px) {
  header.global-header.scroll {
    padding: 14px 32px;
  }
  header.global-header.scroll .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header.global-header.scroll .header-inner #h1-link {
    min-width: 160px;
    order: 0;
    flex-grow: 1;
  }
  header.global-header.scroll .header-inner .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    flex-grow: 1;
  }
  header.global-header.scroll .header-inner .header-content .top-area {
    order: 2;
    margin-top: -4px;
  }
  header.global-header.scroll
    .header-inner
    .header-content
    .top-area
    #login-button {
    text-indent: -9999px;
    overflow: hidden;
    min-width: 40px;
    width: 40px;
    border-radius: 50%;
  }
  header.global-header.scroll
    .header-inner
    .header-content
    .top-area
    #login-button:before {
    min-width: 24px;
    display: inline-block;
    margin-right: 0px;
  }
  header.global-header.scroll
    .header-inner
    .header-content
    .top-area
    .login-area-cover {
    top: 56px;
  }
  header.global-header.scroll
    .header-inner
    .header-content
    .top-area
    .login-area-cover
    .login-area:before {
    right: 38px;
  }
  header.global-header.scroll .header-inner .header-content .nv-global {
    flex-grow: 1;
    order: 1;
    margin-top: 0;
    font-size: 0.875rem;
  }
  header.global-header.scroll #nv-global__service::after {
    bottom: -22px;
  }
  header.global-header.scroll .header-inner .header-content .nv-global__link {
    padding: 12px 16px;
  }
  header.global-header.scroll .header-inner .header-content .child-ul {
    top: 44px;
  }

  header.global-header .search-box.scroll {
    min-width: initial;
    min-width: auto;
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 50%;
    margin-right: 24px;
  }

  header.global-header .search-box.scroll .search-box__text {
    display: none;
  }

  header.global-header .search-box.scroll .search-box__button {
    width: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 0 0 #d3b64c;
    transition: 0.4s;
  }
  header.global-header .search-box.scroll .search-box__button:hover {
    background: #f6d013 url(img/icon_loupe.svg) no-repeat center;
    transition: 0.2s;
  }
  header.global-header .search-box.scroll .search-box__button.active {
    box-shadow: none;
    transition: 0.2s;
    transform: translateY(4px);
  }

  header.global-header .child-ul {
    border-left: solid 2px #14b8a6;
    border-right: solid 2px #14b8a6;
    border-bottom: solid 2px #14b8a6;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  header.global-header .login-area-cover {
    border-bottom: 2px solid #14b8a6;
  }
}
@media (max-width: 1040px) {
  header.global-header {
    padding: 16px 24px 0;
  }
  header.global-header #h1-link {
    margin-top: -12px;
  }
  header.global-header .responsive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header.global-header .header-content {
    display: none;
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
  }
  header.global-header #menu-button {
    display: block;
  }
  header.global-header .top-area {
    width: 100%;
    margin: auto;
    margin-top: 16px;
  }
  header.global-header .action-area {
    justify-content: center;
  }
  header.global-header .login-area-cover {
    position: relative;
    top: 20px;
  }
  header.global-header .login-area {
    padding: 8px 8px 4px;
    max-width: 488px;
    margin: auto;
  }
  header.global-header .login-area:before {
    left: 50%;
    margin-left: 120px;
  }
  header.global-header .login-ul {
    display: block;
    padding: 12px;
    position: static;
    margin-top: 16px;
  }
  header.global-header .login-ul__menu {
    max-width: 400px;
    margin: auto;
    margin-bottom: 20px;
  }
  header.global-header .login-ul__link {
    padding: 12px;
  }
  header.global-header .login-ul__link:before {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 8px;
  }
  header.global-header .login-ul__link:after {
    width: 16px;
    height: 16px;
  }
  header.global-header .nv-global {
    margin-top: 16px;
  }
  header.global-header .nv-global__ul {
    display: block;
  }
  header.global-header .nv-global__menu {
    border-bottom: 1px solid #14b8a6;
  }
  header.global-header .nv-global__menu:last-child {
    border-bottom: none;
  }
  header.global-header .nv-global__menu:last-child a:after {
    content: none;
  }
  header.global-header .nv-global__link {
    display: block;
    padding: 16px 24px;
  }
  header.global-header .nv-global__link:before {
    content: none;
  }
  header.global-header #nv-global__service:after {
    content: none;
  }
  header.global-header .has-child:after {
    content: "";
    width: 24px;
    height: 24px;
    background: no-repeat center url(img/icon_plus.svg);
    display: block;
    top: 18px;
    right: 16px;
    left: auto;
    transition: 0.4s ease transform;
    pointer-events: none;
  }
  header.global-header .has-child.open::after {
    transform: rotate(45deg);
  }
  header.global-header .child-ul {
    height: 0;
    overflow: hidden;
    position: static;
    width: 100%;
    transition: all 0.4s;
  }
  header.global-header .child-ul__link {
    display: block;
    padding: 16px;
    padding-right: 32px;
    padding-left: 24px;
  }
  header.global-header .child-ul__title {
    font-size: 0.875rem;
  }
  header.global-header .child-ul__explain {
    white-space: wrap;
    font-size: 0.8125rem;
  }
  header.global-header .child-ul.sp {
    height: 280px;
    transition: all 0.4s;
  }
  header.global-header.scroll {
    padding: 8px 24px;
  }
  header.global-header.scroll #h1-link {
    margin-top: -4px;
  }
  header.global-header.scroll #menu-button {
    width: 32px;
    height: 32px;
    background: #14b8a6 no-repeat center/22px 2px url(img/icon_menu_button.svg);
    margin-bottom: 16px;
  }
  header.global-header.scroll #menu-button:before,
  header.global-header.scroll #menu-button:after {
    width: 22px;
    height: 2px;
  }
  header.global-header.scroll #menu-button:before {
    top: 8px;
  }
  header.global-header.scroll #menu-button:after {
    bottom: 8px;
  }
  header.global-header.scroll #menu-button:hover {
    background: #00c6af no-repeat center/22px 2px url(img/icon_menu_button.svg);
  }
  header.global-header.scroll .menu-button__text {
    margin-top: 34px;
    margin-left: -6px;
  }
  header.global-header.open {
    height: 100%;
    overflow: auto;
  }
}
@media (max-width: 640px) {
  header.global-header {
    padding: 8px 16px;
  }
  header.global-header #h1-link {
    flex-grow: auto;
    margin-top: -4px;
  }
  header.global-header #menu-button {
    width: 32px;
    height: 32px;
    background: #14b8a6 no-repeat center/22px 2px url(img/icon_menu_button.svg);
    margin-bottom: 16px;
  }
  header.global-header #menu-button:before,
  header.global-header #menu-button:after {
    width: 22px;
    height: 2px;
  }
  header.global-header #menu-button:before {
    top: 8px;
  }
  header.global-header #menu-button:after {
    bottom: 8px;
  }
  header.global-header #menu-button:hover {
    background: #14b8a6 no-repeat center/40px 2px url(img/icon_menu_button.svg);
  }
  header.global-header .menu-button__text {
    margin-top: 34px;
    margin-left: -6px;
  }
  header.global-header .top-area {
    margin-bottom: 16px;
  }
  header.global-header .action-area {
    display: block;
  }
  header.global-header form {
    max-width: 320px;
    margin: auto;
    margin-bottom: 8px;
  }
  header.global-header .search-box {
    margin-right: 0px;
  }
  header.global-header #login-button {
    max-width: 320px;
    width: 100%;
    margin: auto;
  }
  header.global-header #login-button:hover {
    background: #fcdf47;
  }
  header.global-header .login-area {
    max-width: 320px;
  }
  header.global-header .login-area:before {
    right: 0;
    left: 0;
    margin: auto;
  }
  header.global-header .login-ul {
    width: 100%;
    padding: 12px 0 4px;
  }
  header.global-header .login-ul__menu {
    max-width: 280px;
  }
  header.global-header .login-ul__explain {
    font-size: 0.8125rem;
  }
  header.global-header .login-ul__link {
    font-size: 0.875rem;
  }
  header.global-header .login-ul__link:before {
    width: 32px;
    height: 32px;
  }
}
