/* Base Settings
---------------------------------------- */
html {
  font-size: clamp(15px, 0.9375vw, 18px);
}

body {
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}
body.visible {
  opacity: 1;
}
@media screen and (min-width: 751px) and (max-width: 1140px), print {
  body {
    width: 1140px;
  }
}
@media screen and (max-width: 750px) {
  body {
    padding-top: 14vw;
    font-size: 3.6vw;
  }
}

img {
  max-width: 100%;
}

/* Common Settings
---------------------------------------- */
.font--bebas {
  font-family: "Bebas Neue", sans-serif;
}

.button {
  text-align: center;
}
.button a {
  display: inline-block;
  line-height: 3.6rem;
  padding: 0 2.8em 0 3em;
  border: solid 3px #FFC800;
  border-radius: 4em;
  background-color: #FFC800;
  font-size: 1.22em;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 750px) {
  .button a {
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 751px) {
  .button a {
    transition: background-color 0.3s;
  }
  .button a:hover {
    background-color: #fff;
    color: #000;
  }
}

.section__inner {
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 750px) {
  .section__inner {
    padding: 10vw 0;
  }
}
.section__title {
  margin-bottom: 1em;
  text-align: center;
  font-size: 1.66em;
}
.section__title.--blue {
  color: #285EBD;
}
.section__title.--white {
  color: #fff;
}

.anchor-base {
  position: relative;
}
.anchor-point {
  position: absolute;
  display: block;
  width: 0;
}
@media screen and (min-width: 751px) {
  .anchor-point {
    top: -6rem;
    height: 6rem;
  }
}
@media screen and (max-width: 750px) {
  .anchor-point {
    top: -14vw;
    height: 14vw;
  }
}

/* Header
---------------------------------------- */
.header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-top: solid 1rem #000;
  background-color: #fff;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 14vw;
    padding-top: 5px;
    border-top: none;
  }
  .header::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-top: solid 5px #000;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  width: 96%;
  height: 5rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .header__inner {
    width: 90%;
    height: auto;
  }
}
.header__logo {
  width: 12.77em;
  line-height: 0;
}
@media screen and (max-width: 750px) {
  .header__logo {
    width: 30vw;
  }
}

/* Nav
---------------------------------------- */
.g-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 1em 0;
}
@media screen and (max-width: 750px) {
  .g-nav {
    position: fixed;
    display: block;
    top: 14vw;
    left: 100vw;
    width: 100%;
    padding: 7vw 0 15vw;
    background-color: #000;
    opacity: 0;
    transition: left 0.5s, opacity 0.5s;
  }
  .g-nav.opened {
    left: 0;
    opacity: 1;
  }
}
.g-nav__list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .g-nav__list {
    display: block;
    width: 80%;
    margin: 0 auto 2em;
  }
}
.g-nav__list li {
  margin-right: 3vw;
}
@media screen and (min-width: 751px) {
  .g-nav__list li a {
    transition: color 0.3s;
  }
  .g-nav__list li a:hover {
    color: #285EBD;
  }
}
@media screen and (max-width: 750px) {
  .g-nav__list li {
    margin: 0;
  }
  .g-nav__list li a {
    display: block;
    padding: 1.5em 1em;
    text-align: center;
    font-size: 1.4em;
    color: #fff;
  }
}
.g-nav__switch {
  position: absolute;
  top: 5px;
  right: 0;
  width: 14vw;
  height: calc(14vw - 5px);
}
@media screen and (min-width: 751px) {
  .g-nav__switch {
    display: none;
  }
}
.g-nav__switch > span {
  position: absolute;
  display: block;
  top: calc(50% - 0.4vw);
  left: calc(50% - 3vw);
  width: 6vw;
  height: 0.8vw;
  background-color: #000;
}
.g-nav__switch > span::before, .g-nav__switch > span::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 6vw;
  height: 0.8vw;
  background-color: #000;
}
.g-nav__switch > span::before {
  top: -2vw;
}
.g-nav__switch > span::after {
  bottom: -2vw;
}
@media screen and (max-width: 750px) {
  .g-nav .button a {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}

/* Hero
---------------------------------------- */
.hero {
  position: relative;
  padding: 2.77em 0 3.55em;
  background-color: #285EBD;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .hero {
    padding: 5vw 0 0;
  }
}
.hero__title {
  background-color: #FFC800;
}
.hero__title > span {
  display: block;
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
  line-height: 2;
  font-size: 1.5em;
}
.hero__text {
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .hero__text {
    padding-bottom: 7vw;
  }
}
.hero__copy {
  margin: 1em 0;
  line-height: 1.5;
  font-size: clamp(50px, 4vw, 4.44em);
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .hero__copy {
    font-size: 10vw;
  }
}
@media screen and (min-width: 751px) {
  .hero__button {
    text-align: left;
  }
}
.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .hero__image {
    position: static;
    width: 100%;
    height: auto;
  }
}
.hero__image::before {
  content: "";
  position: absolute;
  display: block;
  width: 120%;
  height: 100%;
  background-color: #009FE8;
  transform: skew(-15deg);
}
@media screen and (max-width: 750px) {
  .hero__image::before {
    content: none;
  }
}
.hero__image > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 900px;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .hero__image > div {
    padding: 0 5%;
    background-color: #009FE8;
  }
}
.hero__image > div img {
  max-height: 100%;
}

/* Outline
---------------------------------------- */
.outline {
  background-color: #D9F1FC;
}
.outline__inner {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 750px) {
  .outline__inner {
    padding: 10vw 0;
  }
}
.outline__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .outline__list {
    width: 100vw;
    margin-left: -5vw;
    justify-content: center;
  }
}
.outline__list li {
  margin-bottom: 1em;
  padding: 0.75em 0;
  border: solid 1px #285EBD;
  border-radius: 0.4em;
  background-color: #fff;
  text-align: center;
  font-size: 1.1em;
  color: #285EBD;
}
@media screen and (max-width: 750px) {
  .outline__list li {
    margin: 0 0.25em 0.5em;
    padding: 0.5em 1em;
    font-size: 0.9em;
  }
}
@media screen and (min-width: 751px) {
  .outline__list li:nth-child(-n+3) {
    width: 32%;
  }
  .outline__list li:nth-child(n+4) {
    width: 23.5%;
  }
}
.outline__price {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 1;
  margin-top: 1em;
}
@media screen and (max-width: 750px) {
  .outline__price {
    flex-wrap: wrap;
    margin-top: 2em;
  }
}
.outline__price > span:first-child {
  margin: 0 0.25em 0.75em 0;
  font-size: 2.33em;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 750px) {
  .outline__price > span:first-child {
    font-size: 1.6em;
  }
}
.outline__price > em {
  font-family: "Bebas Neue", sans-serif;
  font-size: 8.88em;
  font-style: normal;
  color: #FFC800;
  text-stroke: 3px #285EBD;
  -webkit-text-stroke: 3px #285EBD;
}
@media screen and (max-width: 750px) {
  .outline__price > em {
    font-size: 6em;
    text-stroke: 2px #285EBD;
    -webkit-text-stroke: 2px #285EBD;
  }
}
.outline__price > em small {
  font-size: 0.5em;
  font-weight: 700;
}
.outline__price > small {
  margin: 0 0 2.5em 0.5em;
}
@media screen and (max-width: 750px) {
  .outline__price > small {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 750px) {
  .outline__notes01 {
    margin: 1em 0;
  }
}
.outline__notes01 li {
  display: inline-block;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .outline__notes01 li {
    display: block;
    line-height: 1.2;
    text-align: center;
  }
}
.outline__notes01 li:not(:last-child) {
  margin-right: 2em;
}
@media screen and (max-width: 750px) {
  .outline__notes01 li:not(:last-child) {
    margin-right: 0;
  }
}
.outline__notes01 li em {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2em;
  font-style: normal;
  letter-spacing: 0.05em;
}
.outline__notes02 {
  font-size: 0.83em;
  font-weight: 300;
}
.outline__table {
  border-collapse: separate;
  width: 100%;
  margin-top: 2em;
}
.outline__table th, .outline__table td {
  padding: 1em;
  vertical-align: middle;
  line-height: 1.2;
  text-align: center;
  font-size: 1.11em;
}
@media screen and (max-width: 750px) {
  .outline__table th, .outline__table td {
    display: block;
  }
}
.outline__table thead th {
  padding: 0.75em 1em;
  background-color: #285EBD;
  color: #fff;
}
.outline__table tbody th {
  width: 45%;
  background-color: #BECFEB;
}
@media screen and (max-width: 750px) {
  .outline__table tbody th {
    width: 100%;
  }
}
.outline__table tbody td {
  width: 55%;
  background-color: #fff;
  font-weight: 700;
  color: #285EBD;
}
@media screen and (max-width: 750px) {
  .outline__table tbody td {
    width: 100%;
  }
}
.outline__table tbody td em {
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  font-size: 2em;
  letter-spacing: 0.1em;
}
.outline__notes03 {
  margin: 1em 0 3em;
}
.outline__notes03 li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
}

/* About
---------------------------------------- */
.about__inner {
  width: 90%;
  max-width: 980px;
}
.about__copy {
  text-align: center;
  font-size: 1.11em;
}
.about__list {
  display: flex;
  margin: 50px 0;
}
@media screen and (max-width: 750px) {
  .about__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.about__list li {
  width: 20%;
  border-right: solid 3px #285EBD;
  text-align: center;
}
.about__list li:first-child {
  border-left: solid 3px #285EBD;
}
@media screen and (max-width: 750px) {
  .about__list li {
    width: 50%;
    border-right-width: 2px;
  }
  .about__list li:nth-child(odd) {
    border-left: solid 2px #285EBD;
  }
  .about__list li:not(:last-child) {
    margin-bottom: 5vw;
  }
}
.about__list dl {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.about__list dl dt {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.11em;
  letter-spacing: 0.2em;
  color: #285EBD;
}
.about__list dl dd {
  margin-top: 1em;
  font-size: 0.72em;
  color: #4C4C4C;
}
.about__list dl dd img {
  display: block;
  width: 80%;
  margin: 0 auto;
}

/* Slution
---------------------------------------- */
.solution {
  background-color: #285EBD;
}
.solution__inner {
  width: 90%;
  max-width: 1360px;
}
.solution__list {
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .solution__list {
    margin-bottom: 10vw;
  }
}
.solution__list li {
  display: flex;
  margin-top: 50px;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .solution__list li {
    display: block;
    margin-top: 5vw;
  }
}
.solution__list li:nth-child(even) {
  flex-direction: row-reverse;
}
.solution__list li dl {
  width: 60%;
  padding: 3% 5%;
  color: #285EBD;
}
@media screen and (max-width: 750px) {
  .solution__list li dl {
    width: 100%;
    padding: 5%;
  }
}
.solution__list li dl dt span {
  display: inline-block;
  padding: 0.2em 1.2em 0 1.5em;
  border-radius: 2em;
  background-color: #FFC800;
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.66em;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.solution__list li dl dd:first-of-type {
  margin: 1em 0;
  font-size: 1.44em;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.solution__list li dl dd:last-child {
  line-height: 1.66;
  text-align: justify;
}
.solution__list li p {
  width: 40%;
  background-color: #FFF7D9;
}
@media screen and (max-width: 750px) {
  .solution__list li p {
    width: 100%;
    text-align: center;
  }
  .solution__list li p img {
    width: 80%;
  }
}

/* FAQ
---------------------------------------- */
.faq__inner {
  width: 90%;
  max-width: 980px;
}
.faq__list span {
  position: absolute;
  display: block;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  line-height: 2rem;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.33rem;
  color: #fff;
}
.faq__list dt {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 3rem;
  line-height: 1.38;
  font-size: 1.44em;
  letter-spacing: 0.1em;
  color: #285EBD;
}
.faq__list dt > span {
  background-color: #285EBD;
}
.faq__list dd {
  position: relative;
  margin-bottom: 2rem;
  padding: 0 0 2rem 3rem;
  border-bottom: solid 1px #000;
  line-height: 1.66;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .faq__list dd:last-child {
    margin-bottom: 0;
  }
}
.faq__list dd > span {
  background-color: #000;
}

/* Contact
---------------------------------------- */
.contact {
  background-color: #D9F1FC;
}
.contact__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 980px;
  margin: 0 auto;
  padding: 45px 0;
}
@media screen and (max-width: 750px) {
  .contact__inner {
    display: block;
    padding: 10vw 0;
  }
}
@media screen and (min-width: 751px) {
  .contact .button {
    margin: 0 1em;
  }
}
@media screen and (max-width: 750px) {
  .contact .button a {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .contact .button.--tel {
    margin-top: 1em;
  }
}
.contact .button.--tel a {
  line-height: calc(3.6rem - 0.2em);
  padding: 0.2em 1.8em 0 2em;
  border-color: #285EBD;
  background-color: #285EBD;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.88rem;
  color: #fff;
}
@media screen and (min-width: 751px) {
  .contact .button.--tel a:hover {
    background-color: #fff;
    color: #285EBD;
  }
}

/* Footer
---------------------------------------- */
.footer {
  background-color: #4C4C4C;
  font-weight: 300;
  color: #fff;
}
.footer__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0 50px;
}
@media screen and (max-width: 750px) {
  .footer__inner {
    padding: 10vw 0;
  }
}
.footer__nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .footer__nav {
    flex-wrap: wrap;
  }
}
.footer__nav li {
  width: 20%;
}
.footer__nav li a {
  display: flex;
  align-items: center;
  padding: 0.75em 0;
  border: solid #fff;
  border-width: 1px 0;
  font-size: 0.83em;
  font-weight: 300;
  color: #fff;
}
.footer__nav li a::before {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  margin-right: 1em;
  background: url(../images/footer_arrow.svg) center center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .footer__nav li {
    width: 48%;
  }
  .footer__nav li:nth-child(-n+2) a {
    border-bottom: none;
  }
}
.footer__address {
  display: flex;
  margin-top: 35px;
  border: solid #fff;
  border-width: 0 3px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .footer__address {
    display: block;
    margin-top: 5vw;
    border: none;
  }
}
.footer__address > dt {
  padding: 0 5%;
  border-right: solid 3px #fff;
  font-size: 1.11em;
}
@media screen and (max-width: 750px) {
  .footer__address > dt {
    margin-bottom: 0.5em;
    padding: 0;
    border: none;
  }
}
.footer__address > dd {
  padding: 0 5%;
}
@media screen and (max-width: 750px) {
  .footer__address > dd {
    padding: 0;
    font-size: 0.9em;
  }
}
.footer__address dl dt {
  float: left;
  font-weight: 300;
}
.footer__address dl dd {
  padding-left: 8em;
}
@media screen and (max-width: 750px) {
  .footer__address dl dd {
    margin-bottom: 0.5em;
  }
}
.footer .copyright {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .footer .copyright {
    margin-top: 10vw;
  }
}
.footer .copyright small {
  font-size: 0.66em;
}/*# sourceMappingURL=style.css.map */