@charset "UTF-8";

.js-hover {
  display: block !important;

}

@media screen and (min-width: 769px) {
  #commonHeader::before {
    background: none;
  }

  #commonHeader .logo {
    width: 500px;
  }

  #contentHeader {
    min-height: 60px;
    padding-top: 0;
    background-image: none;
  }
}

@media screen and (max-width: 768px) {
  #contentHeader {
    min-height: 0;
    margin-top: -11em;
  }
}

.sds-header {
  position: relative;
  z-index: 11;
  background: #fff;
  border-bottom: 1px solid #eef2f4;
}

.sds-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 16px;
}

.sds-header__logo {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 1;
}

.sds-header__logo-img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
}

.sds-header__actions {
  display: none;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.sds-header__tel {
  display: block;
  text-align: right;
  text-decoration: none;
  line-height: 1.2;
}

.sds-header__tel-label {
  display: block;
  color: #4a5560;
  font-size: var(--fs-xs);
  letter-spacing: .04em;
}

.sds-header__tel-num {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #212121;
  font-family: Roboto, sans-serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: .02em;
}

.sds-header__tel-num svg {
  width: 19px;
  height: 19px;
  fill: var(--sds-color-blue-accent, #00a0e9);
}

.sds-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #ff6b35;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(255,107,53,.30);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.sds-header__cta:hover {
  background: #ef5a26;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(255,107,53,.40);
}

.sds-header__cta--ask {
  background: #2e9e6c;
  box-shadow: 0 4px 12px rgba(46,158,108,.30);
}

.sds-header__cta--ask:hover {
  background: #268a5c;
  box-shadow: 0 7px 16px rgba(46,158,108,.40);
}

.sds-header__bottom {
  display: none;
  border-top: 1px solid #eef2f4;
  background: #fff;
}

.sds-gnav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.sds-gnav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sds-gnav__link {
  display: block;
  position: relative;
  padding: 16px 26px;
  color: #212121;
  text-decoration: none;
  white-space: nowrap;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: .04em;
  transition: color .2s;
}

.sds-gnav__link::after {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--sds-color-blue-accent, #00a0e9);
  transform: translateX(-50%);
  transition: width .25s;
  content: "";
}

.sds-gnav__link:hover {
  color: var(--sds-color-blue-accent, #00a0e9);
}

.sds-gnav__link:hover::after {
  width: calc(100% - 40px);
}

.sds-gnav__link.is-current {
  color: var(--sds-color-blue-accent, #00a0e9);
}

.sds-gnav__link.is-current::after {
  width: calc(100% - 40px);
}

.sds-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.sds-header__hamburger span:not(.sds-header__hamburger-label) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto;
  background: #212121;
  border-radius: 2px;
  transition: transform .3s, opacity .2s;
}

.sds-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sds-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.sds-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media screen and (max-width: 768px) {

  .sds-header__top {
    transition: opacity .25s ease;
  }
  .sds-header.is-scrolled .sds-header__top {
    opacity: 0;
    pointer-events: none;
  }

  .sds-header__hamburger {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 200;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, width .25s ease, height .25s ease, transform .2s ease;
  }
  .sds-header__hamburger:hover,
  .sds-header__hamburger:focus {
    transform: scale(1.03);
  }

  .sds-header__hamburger span:not(.sds-header__hamburger-label) {
    width: 24px;
    height: 3px;
    box-shadow: 0 0 4px rgba(255, 255, 255, .9);
    transition: transform .25s, opacity .2s, width .25s, height .25s, box-shadow .25s;
  }

  .sds-header__hamburger-label {
    display: none;
    margin-top: 2px;
    color: #1a1a1a;
    letter-spacing: .05em;
    font-size: 8px;
    font-weight: 700;
    box-shadow: none;
  }

  .sds-header__hamburger.is-scrolled {
    gap: 4px;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .sds-header__hamburger.is-scrolled:hover,
  .sds-header__hamburger.is-scrolled:focus {
    background: #fff;
  }

  .sds-header__hamburger.is-scrolled span:not(.sds-header__hamburger-label) {
    width: 22px;
    height: 2px;
    box-shadow: none;
  }

  .sds-header__hamburger.is-scrolled .sds-header__hamburger-label {
    display: block;
  }

  .sds-header__hamburger.is-active .sds-header__hamburger-label {
    display: none;
  }

  .sds-header.is-scrolled {
    min-height: 0;
  }
}

.sds-nav-sp {
  display: none;
}

.sds-nav-sp.-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  background: #fff;
  border-top: 1px solid #eef2f4;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.sds-nav-sp__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sds-nav-sp__list > li {
  border-bottom: 1px solid #f0f4f6;
}

.sds-nav-sp__list > li > a {
  display: block;
  padding: 16px 20px;
  color: #212121;
  text-decoration: none;
  font-size: var(--fs-md);
  font-weight: 700;
}

.sds-nav-sp__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--sds-color-blue-bg, #f0f7fb);
}

.sds-nav-sp__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #212121;
  text-decoration: none;
  font-family: Roboto, sans-serif;
  font-size: var(--fs-xl);
  font-weight: 700;
}

.sds-nav-sp__tel svg {
  width: 20px;
  height: 20px;
  fill: var(--sds-color-blue-accent, #00a0e9);
}

.sds-nav-sp__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  padding: 15px 20px;
  background: #ff6b35;
  color: #fff;
  text-decoration: none;
  font-size: var(--fs-lg);
  font-weight: 700;
  border-radius: 30px;
}

.sds-nav-sp__cta--ask {
  background: #2e9e6c;
}

@media screen and (min-width: 769px) {
  .sds-header__top {
    padding: 14px 28px;
  }

  .sds-header__logo-img {
    max-width: 480px;
  }

  .sds-header__bottom .sds-gnav__link {
    padding-top: 5px;
    padding-bottom: 12px;
  }

  .sds-header__actions {
    display: flex;
  }

  .sds-header__bottom {
    display: block;
  }

  .sds-header__hamburger,
  .sds-nav-sp {
    display: none !important;
  }
}

#contentHeader {
  margin-top: 0;
  min-height: 0;
  padding-top: 0;
  background-image: none;
}

@media screen and (max-width: 768px) {
  #contentHeader {
    margin-top: -1.5em;
  }
}

#contentHeader #breadCrumbs {
  display: none;
}

#main > #breadCrumbs {
  max-width: 1280px;
  margin: 40px auto 56px;
  padding: 0 28px;
}
#main > #breadCrumbs .wrap {
  width: auto;
}
#main > #breadCrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
#main > #breadCrumbs li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--fs-base);
  color: #4a5560;
}

#main > #breadCrumbs li:not(:first-child)::before {
  margin: 0 10px;
  color: #c2ccd2;
  content: ">";
}
#main > #breadCrumbs li a {
  display: inline-flex;
  align-items: center;
  color: #4a5560;
  text-decoration: none;
  transition: color .2s;
}
#main > #breadCrumbs li a:hover {
  color: var(--sds-color-blue-accent, #00a0e9);
}

#main > #breadCrumbs li:first-child .ico svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  vertical-align: middle;
}

#main > #breadCrumbs li:last-child,
#main > #breadCrumbs li:last-child a {
  color: var(--sds-color-blue-accent, #00a0e9);
}

#contents > h2:first-of-type {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding: 64px 24px 70px;
  background: linear-gradient(180deg, #eaf6fa 0%, var(--sds-color-blue-bg, #f0f7fb) 100%);
  text-align: center;
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: .12em;
  color: #222b33;
}

#contents > h2:first-of-type::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  max-width: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #eaf6fa 0%, var(--sds-color-blue-bg, #f0f7fb) 100%);
  content: "";
}

#contents > h2:first-of-type .en-ttl {
  display: block;
  margin-top: 14px;
  color: var(--sds-color-blue-accent, #00a0e9);
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: .35em;
}

#contents > h2:first-of-type::after {
  display: block;
  width: 48px;
  height: 3px;
  margin: 22px auto 0;
  background: var(--sds-color-blue-accent, #00a0e9);
  border-radius: 2px;
  content: "";
}

.anchor-link-area .link-btn,
.link-btn.anchor {
  background-image: none;
  background-color: var(--sds-color-blue-accent, #00a0e9);
  box-shadow: 0 4px 14px rgba(0,160,233,.25);
}
.anchor-link-area .link-btn:hover,
.link-btn.anchor:hover {
  opacity: 1;
  background-color: #008ed1;
}

@media screen and (max-width: 768px) {
  #contents > h2:first-of-type {
    padding: 44px 20px 48px;
    font-size: var(--fs-h2);
  }
  #contents > h2:first-of-type .en-ttl {
    font-size: var(--fs-sm);
  }

  #main > #breadCrumbs {
    margin: 28px auto 36px;
    padding: 0 16px;
  }
}
