@charset "UTF-8";
/* 変数 */
:root {
  --color-main: #3061C3;
  --header-height: 84px;
}
@media screen and (max-width: 750px) {
  :root {
    --header-height: 63px;
  }
}

/* 汎用 */
.buttonContact {
  color: #fff;
  background-color: var(--color-main);
  padding: 8px 52px;
  border-radius: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1250px) {
  .buttonContact {
    padding: 8px 10px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    max-width: 310px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.buttonContact:hover {
  background-color: #5D90F8;
  opacity: 1;
}

.globalNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.globalNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1250px) {
  .globalNav__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.globalNav__link {
  color: #707070;
  white-space: nowrap;
}

.contentsArea {
  margin-top: var(--header-height);
}

.contentsSetion {
  padding-block: 140px;
}
@media screen and (max-width: 1250px) {
  .contentsSetion {
    padding-block: 100px;
  }
}
.contentsSetion__heading {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1250px) {
  .contentsSetion__heading {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .contentsSetion__heading {
    font-size: min(11.2820512821vw, 44px);
  }
}
.contentsSetion__heading .subheading {
  color: var(--color-main);
  font-size: 20px;
  line-height: 1.6;
  font-weight: bold;
}
.contentsSetion__heading.--left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1250px) {
  .contentsSetion__heading.--left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contentsSetion__lead {
  font-size: 40px;
  line-height: 1.4;
  margin-top: 72px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1250px) {
  .contentsSetion__lead {
    font-size: 32px;
    margin-top: 60px;
  }
}
.contentsSetion__content {
  margin-top: 72px;
}
@media screen and (max-width: 1250px) {
  .contentsSetion__content {
    margin-top: 60px;
  }
}
.contentsSetion__media {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 39% 80px 1fr;
  grid-template-columns: 39% 1fr;
  gap: 80px;
}
@media screen and (max-width: 1250px) {
  .contentsSetion__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
@media screen and (max-width: 1250px) {
  .contentsSetion__media__image {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
}

.buttonCircle {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-main);
}
@media screen and (max-width: 750px) {
  .buttonCircle {
    aspect-ratio: unset;
    border-radius: 8px;
    padding: 16px;
  }
}

.slide-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  will-change: opacity, transform;
}
.slide-up.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 1250px) {
  .forPC {
    display: none;
  }
}

.forTab {
  display: none;
}
@media screen and (max-width: 1250px) {
  .forTab {
    display: block;
  }
}

.forSP {
  display: none;
}
@media screen and (max-width: 750px) {
  .forSP {
    display: block;
  }
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.header__inner {
  min-height: var(--header-height);
  padding: 20px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .header__inner {
    min-height: unset;
    padding: 20px;
  }
}
.header__brand {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1250px) {
  .header__content {
    gap: 20px;
  }
}
@media screen and (max-width: 1250px) {
  .header__nav {
    visibility: hidden;
    opacity: 0;
    width: 100%;
    max-width: 350px;
    position: fixed;
    top: var(--header-height);
    right: 0;
    padding-inline: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    overflow-y: scroll;
    background-color: #fff;
    height: calc(100svh - var(--header-height));
    z-index: 9;
    -webkit-transition: visibility 0.3s, opacity 0.3s;
    transition: visibility 0.3s, opacity 0.3s;
    will-change: visibility, opacity;
  }
  .header__nav.is-show {
    visibility: visible;
    opacity: 1;
  }
  .header__nav.is-show::before {
    content: "";
    width: calc(100vw - 350px);
    height: 100%;
    background-color: #000;
    opacity: 0.6;
    position: fixed;
    top: var(--header-height);
    left: 0;
  }
}
@media screen and (max-width: 1250px) {
  .header__nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-padding-before: 80px;
            padding-block-start: 80px;
    -webkit-padding-after: 80px;
            padding-block-end: 80px;
  }
}
.header__humberger {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1250px) {
  .header__humberger {
    display: block;
  }
}
.header__humberger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.header__humberger__line:nth-child(1) {
  top: 0;
}
.header__humberger__line:nth-child(2) {
  top: 0;
  bottom: 0;
  margin-block: auto;
}
.header__humberger__line:nth-child(3) {
  bottom: 0;
}
.header__humberger.is-show .header__humberger__line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.header__humberger.is-show .header__humberger__line:nth-child(2) {
  opacity: 0;
}
.header__humberger.is-show .header__humberger__line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

/* footer */
.footer {
  background-color: #fff;
}
.footer__inner {
  -webkit-padding-before: 40px;
          padding-block-start: 40px;
  -webkit-padding-after: 20px;
          padding-block-end: 20px;
  padding-inline: 32px;
}
.footer__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1250px) {
  .footer__upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 20px;
}
@media screen and (max-width: 1250px) {
  .footer__company {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
  }
}
@media screen and (max-width: 750px) {
  .footer__company {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__logo {
  max-width: 165px;
}
.footer__text {
  color: #707070;
}
.footer__content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__content__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  gap: 40px;
}
@media screen and (max-width: 750px) {
  .footer__content__upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__content__bottom {
  margin-top: 20px;
  text-align: right;
}
@media screen and (max-width: 1250px) {
  .footer__content__bottom {
    margin-top: 40px;
    text-align: left;
  }
}
@media screen and (max-width: 750px) {
  .footer__content__bottom {
    margin-top: 40px;
    text-align: center;
  }
}
.footer__nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  .footer__nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__copyright {
  font-size: 10px;
  color: #707070;
  text-align: center;
  margin-top: 80px;
}