#js-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: opacity 0.3s;
}
@media screen and (max-width: 749px) {
  #js-header {
    position: relative;
  }
}

.header {
  position: relative;
  width: 100%;
  height: 100px;
  background: #fff;
  box-shadow: 0 16px 24px rgba(76, 81, 81, 0.08);
}
@media screen and (max-width: 749px) {
  .header {
    height: 112px;
    background: #f8f9f9;
    box-shadow: none;
  }
}

.headerWrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 1280px;
  max-width: 1280px;
  height: 100%;
  padding: 0 24px 0 56px;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  .headerWrap {
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    padding: 0 0 0 17px;
  }
}

.header__logo img {
  width: 240px;
  height: auto;
}
@media screen and (max-width: 749px) {
  .header__logo img {
    width: 170px;
  }
}

.header__logo.is-hidden {
  display: none;
}

.header__logo--sp {
  display: none;
}
@media screen and (max-width: 749px) {
  .header__logo--sp {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 112px;
    padding-left: 17px;
  }
}
.header__logo--sp img {
  width: 170px;
  height: auto;
}

@media screen and (max-width: 749px) {
  .header__nav {
    position: fixed;
    top: 55px;
    display: block;
    width: 0%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    margin-right: auto;
    margin-left: auto;
    overflow-x: visible;
    overflow-y: scroll;
    overflow: visible scroll;
    background-color: #fff;
  }
}
.header__nav.is-active {
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 104px;
  background-color: #fff;
}

.header__listWrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  .header__listWrap {
    position: static;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 164%;
    text-align: left;
    padding-bottom: 80px;
    margin-right: 0;
  }
}

.header__list {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 36px;
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  .header__list {
    position: static;
    display: block;
    height: auto;
    padding: 16px;
    margin: 4px 16px;
    background-color: #f6f7f7;
    border-radius: 5px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

@media (hover: hover) {
  .header__list:hover > .header__textWrap > .header__text {
    color: #087aab;
  }
}

.header__list:hover > .globalNav {
  top: 148px;
  pointer-events: auto;
  opacity: 1;
}

.header__textWrap {
  display: flex;
  gap: 4px;
  align-items: center;
}

.header__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.75px;
  text-align: left;
  display: inline;
  padding: 8px 0;
  font-weight: 500;
  color: #55cbe1;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s;
}
@media screen and (max-width: 749px) {
  .header__text {
    width: 100%;
    padding: 0;
    color: #4c5151;
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.75px;
    text-align: left;
  }
}
@media (hover: hover) {
  .header__textWrap:hover .header__text {
    color: #087aab;
  }
}

.header__externalIcon svg {
  display: block;
  fill: #55cbe1;
  transition: fill 0.2s;
}
@media screen and (max-width: 749px) {
  .header__externalIcon svg {
    fill: #4c5151;
  }
}
@media (hover: hover) {
  .header__textWrap:hover .header__externalIcon svg {
    fill: #087aab;
  }
}

.header__bannerWrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-left: 4px;
}
@media screen and (max-width: 749px) {
  .header__bannerWrap {
    padding: 0 16px;
    margin-top: 20px;
    margin-left: 0;
  }
}

.header__banner {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 24px;
  color: #fff;
  background: #55cbe1;
  border: 1px solid #55cbe1;
  border-radius: 8px;
  transition: all 0.2s;
}
@media (hover: hover) {
  .header__banner:hover {
    color: #55cbe1;
    background: #fff;
  }
}
@media screen and (max-width: 749px) {
  .header__banner {
    justify-content: center;
    width: 100%;
    padding: 14px 8px;
  }
}

.header__bannerCatch {
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.75px;
  text-align: left;
  line-height: 130%;
}
@media screen and (max-width: 749px) {
  .header__bannerCatch {
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.75px;
    text-align: center;
  }
}

.header__bannerIcon svg {
  display: block;
}
@media screen and (max-width: 749px) {
  .header__bannerIcon svg {
    margin-left: -16px;
  }
}

.header__bannerIcon svg path {
  transition: fill 0.3s;
}
@media (hover: hover) {
  .header__banner:hover .header__bannerIcon svg path {
    fill: #55cbe1;
  }
}

.header__externalIcon {
  margin-top: 4px;
}

.header__arrowIcon {
  display: inline;
  width: 10px;
  height: 6px;
  margin-right: 4px;
  vertical-align: 2px;
  transition: transform 0.2s;
}
@media screen and (max-width: 749px) {
  .header__arrowIcon {
    display: none;
  }
}

.header__toggleSp {
  display: none;
}
@media screen and (max-width: 749px) {
  .header__toggleSp {
    z-index: 10;
    display: block;
    width: 24px;
    height: 24px;
  }
}

.js-header__toggleSp.is-active > .header__toggleSp {
  transform: rotate(180deg);
}

.js-header__toggleSp.is-active > .header__textWrap > .header__toggleSp {
  transform: rotate(180deg);
}

.globalNav {
  position: fixed;
  top: 96px;
  left: 50%;
  z-index: 1;
  flex-direction: column;
  width: 740px;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease;
  transform: translateX(-50%);
}
.globalNav--wiu {
  width: 800px;
}
@media screen and (max-width: 749px) {
  .globalNav {
    position: static;
    width: 100%;
    height: 0;
    min-height: 0;
    overflow: hidden;
    pointer-events: auto;
    opacity: 0;
    transition-duration: 0.3s;
    transform: none;
  }
  .globalNav.is-open {
    display: block;
    height: auto;
    min-height: 100px;
    opacity: 1;
  }
}
.globalNav::after {
  position: absolute;
  top: -45px;
  width: 100%;
  height: 56px;
  content: "";
}
@media screen and (max-width: 749px) {
  .globalNav::after {
    content: none;
  }
}

@media screen and (max-width: 749px) {
  .globalNav--blog .globalNav__linkColumnTitle {
    margin-top: 0;
  }
}

.header__hamberger,
.header__hamberger span {
  display: inline-block;
  transition: all 0.4s;
}

.header__hamberger {
  position: absolute;
  top: 48px;
  right: 30px;
  z-index: 10000;
  display: none;
  width: 25px;
  height: 17px;
  transition: transform 0.4s;
}
@media screen and (max-width: 749px) {
  .header__hamberger {
    display: block;
    opacity: 1;
  }
}
@media screen and (max-width: 749px) {
  .header__hamberger::before {
    position: absolute;
    top: -20px;
    left: -16px;
    width: 56px;
    height: 56px;
    content: "";
    background-color: #fff;
    border-radius: 64px;
    box-shadow: 0 16px 24px rgba(76, 81, 81, 0.08);
  }
}
.header__hamberger > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #55cbe1;
  border-radius: 3px;
}
.header__hamberger > span.header__hambergerLineTopSp {
  top: 0;
}
.header__hamberger > span.header__hambergerLineMiddleSp {
  top: 7px;
}
.header__hamberger > span.header__hambergerLineBottomSp {
  top: 14px;
}
.header__hamberger.is-hidden {
  left: -40px;
  opacity: 0;
}
.header__hamberger.is-hidden .header__hambergerLineTopSp {
  transform: translateY(7px) rotate(-45deg);
}
.header__hamberger.is-hidden .header__hambergerLineMiddleSp {
  opacity: 0;
}
.header__hamberger.is-hidden .header__hambergerLineBottomSp {
  transform: translateY(-7px) rotate(45deg);
}

.header__hamberger--scroll {
  position: fixed;
  top: -80px;
  right: 30px;
  z-index: 10000;
  display: none;
  width: 25px;
  height: 17px;
  transition: transform 0.4s, top 0.3s ease-out;
}
@media screen and (max-width: 749px) {
  .header__hamberger--scroll {
    display: block;
    opacity: 1;
  }
}
@media screen and (max-width: 749px) {
  .header__hamberger--scroll::before {
    position: absolute;
    top: -20px;
    left: -16px;
    width: 56px;
    height: 56px;
    content: "";
    background-color: #fff;
    border-radius: 64px;
    box-shadow: 0 16px 24px rgba(76, 81, 81, 0.08);
  }
}
.header__hamberger--scroll.header__hamberger--scroll span {
  display: inline-block;
  transition: all 0.3s;
}
.header__hamberger--scroll > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #55cbe1;
  border-radius: 3px;
}
.header__hamberger--scroll > span.header__hambergerLineTopSp--scroll {
  top: 0;
}
.header__hamberger--scroll > span.header__hambergerLineMiddleSp--scroll {
  top: 7px;
}
.header__hamberger--scroll > span.header__hambergerLineBottomSp--scroll {
  top: 14px;
}
.header__hamberger--scroll.is-active {
  top: 48px;
}
.header__hamberger--scroll.is-hidden {
  left: -40px;
  opacity: 0;
}
.header__hamberger--scroll.is-hidden .header__hambergerLineTopSp--scroll {
  transform: translateY(7px) rotate(-45deg);
}
.header__hamberger--scroll.is-hidden .header__hambergerLineMiddleSp--scroll {
  opacity: 0;
}
.header__hamberger--scroll.is-hidden .header__hambergerLineBottomSp--scroll {
  transform: translateY(-7px) rotate(45deg);
}

.header__hamberger--opened {
  position: fixed;
  top: 48px;
  right: 30px;
  z-index: 10000;
  display: none;
  width: 25px;
  height: 17px;
  transition: transform 0.4s;
}
@media screen and (max-width: 749px) {
  .header__hamberger--opened {
    display: inline-block;
    opacity: 0;
  }
}
@media screen and (max-width: 749px) {
  .header__hamberger--opened::before {
    position: absolute;
    top: -20px;
    left: -16px;
    width: 56px;
    height: 56px;
    content: "";
    background-color: #fff;
    border-radius: 64px;
    box-shadow: 0 16px 24px rgba(76, 81, 81, 0.08);
  }
}
.header__hamberger--opened.header__hamberger--opened span {
  transition: all 0.4s;
}
.header__hamberger--opened > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #55cbe1;
  border-radius: 3px;
}
.header__hamberger--opened > span.header__hambergerLineTopSp--opened {
  top: 0;
}
.header__hamberger--opened > span.header__hambergerLineMiddleSp--opened {
  top: 7px;
}
.header__hamberger--opened > span.header__hambergerLineBottomSp--opened {
  top: 14px;
}
.header__hamberger--opened.is-active {
  opacity: 1;
}
.header__hamberger--opened.is-active .header__hambergerLineTopSp--opened {
  transform: translateY(7px) rotate(-45deg);
}
.header__hamberger--opened.is-active .header__hambergerLineMiddleSp--opened {
  opacity: 0;
}
.header__hamberger--opened.is-active .header__hambergerLineBottomSp--opened {
  transform: translateY(-7px) rotate(45deg);
}

.bottomCard__ctaBtnList li {
  list-style: none;
}

.bottomCard__ctaWiu img {
  display: block;
}

.globalNav__inner {
  width: 100%;
  padding: 30px 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 24px rgba(76, 81, 81, 0.08);
}
@media screen and (max-width: 749px) {
  .globalNav__inner {
    flex-direction: column;
    padding: 20px 16px 0;
    background: #f6f7f7;
    box-shadow: none;
  }
}
@media screen and (max-width: 749px) {
  .globalNav--blog .globalNav__inner {
    padding: 20px 0 0 16px;
  }
}
@media screen and (max-width: 749px) {
  .globalNav--wiu .globalNav__inner {
    padding-right: 0;
  }
}

.globalNav__innerColumn {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 749px) {
  .globalNav__innerColumn {
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin-top: 0;
  }
}
.globalNav--blog .globalNav__innerColumn {
  flex-direction: row;
  gap: 12px 24px;
  margin-top: 10px;
}
@media screen and (max-width: 749px) {
  .globalNav--blog .globalNav__innerColumn {
    gap: 12px 16px;
    margin-top: 12px;
  }
}
.globalNav--wiu .globalNav__innerColumn {
  gap: 16px 20px;
}
@media screen and (max-width: 749px) {
  .globalNav--wiu .globalNav__innerColumn {
    gap: 16px;
    padding-left: 16px;
  }
}

.globalNav__inner--twoCol {
  display: flex;
  gap: 0 40px;
}
@media screen and (max-width: 749px) {
  .globalNav__inner--twoCol {
    flex-direction: column;
    gap: 20px;
  }
}

.globalNav__col {
  width: calc(50% - 20px);
}
@media screen and (max-width: 749px) {
  .globalNav__col {
    width: 100%;
  }
}

.globalNav__titleWrap {
  padding: 0 0 20px;
  border-bottom: 1px solid #e9eaea;
}

.globalNav__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.75px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  color: #4c5151;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.2s;
}
@media (hover: hover) {
  .globalNav__title:hover {
    color: #087aab;
  }
}

.globalNav__desc {
  font-size: 10px;
  font-weight: 400;
  line-height: 164%;
  text-align: left;
  margin-top: 20px;
  color: #595959;
}
@media screen and (max-width: 749px) {
  .globalNav__desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 164%;
    text-align: left;
    margin-top: 12px;
    color: #797c7d;
  }
}

@media screen and (max-width: 749px) {
  .globalNav__desc + .globalNav__innerColumn {
    margin-top: 20px;
  }
}

.globalNav__linkLarge {
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.75px;
  text-align: left;
  color: #4c5151;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.2s;
}
@media (hover: hover) {
  .globalNav__linkLarge:hover {
    color: #087aab;
  }
}
@media screen and (max-width: 749px) {
  .globalNav__linkLarge {
    font-size: 16px;
    font-weight: 400;
    line-height: 164%;
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 749px) {
  .globalNav--blog .globalNav__linkLarge {
    font-size: 14px;
    font-weight: 400;
    line-height: 164%;
    text-align: left;
    width: calc(50% - 8px);
    letter-spacing: 0;
  }
}

.globalNav__linkLarge--blue {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #55cbe1;
}

.globalNav__arrowIconLarge {
  margin-left: 16px;
}
.globalNav__arrowIconLarge > path {
  transition: fill 0.2s;
}

.globalNav__title:hover .globalNav__arrowIconLarge > path {
  fill: #087aab;
}

@media screen and (max-width: 749px) {
  .js-header__toggleSp.is-active .header__text {
    color: #087aab;
  }
}

@media screen and (max-width: 749px) {
  .globalNav__toggle {
    position: static;
    width: 100%;
    height: 0;
    min-height: 0;
    overflow: hidden;
    pointer-events: auto;
    opacity: 0;
    transition-duration: 0.3s;
    transform: none;
  }
  .globalNav__toggle.is-open {
    height: auto;
    min-height: 100px;
    opacity: 1;
  }
}

.globalNav__linkColumnTitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.75px;
  text-align: left;
  display: inline-block;
  margin-top: 20px;
  color: #4c5151;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.2s;
}
@media (hover: hover) {
  .globalNav__linkColumnTitle:hover {
    color: #087aab;
  }
}
@media screen and (max-width: 749px) {
  .globalNav__linkColumnTitle {
    width: 100%;
    margin-top: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.75px;
    text-align: left;
  }
}

.globalNav__innerColumn + .globalNav__linkColumnTitle {
  margin-top: 24px;
}
