@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&family=Oswald:wght@500&family=Roboto:wght@400;700&display=swap");
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  font-family: "Roboto", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

code,
kbd,
pre,
samp {
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

menu,
ol,
ul {
  list-style: none;
  list-style-image: none;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.35);
}

a:active, a:hover {
  outline: 0;
}

a:focus {
  outline: none;
}

a img,
a svg {
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

.scroll {
  opacity: 0;
}

.scroll.is-scroll.is-scroll--top {
  -webkit-animation: fadein 0.8s ease forwards;
  animation: fadein 0.8s ease forwards;
}

.scroll.is-scroll.is-scroll--right {
  -webkit-animation: right 0.8s ease forwards;
  animation: right 0.8s ease forwards;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.scroll.is-scroll.is-scroll--left {
  -webkit-animation: left 0.6s ease forwards;
  animation: left 0.6s ease forwards;
}

@-webkit-keyframes fadein {
  0%,
  10% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadein {
  0%,
  10% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes right {
  0%,
  10% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes right {
  0%,
  10% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes left {
  0%,
  10% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes left {
  0%,
  10% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slide-bg {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@keyframes slide-bg {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@-webkit-keyframes slide-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slide-bg {
  position: relative;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slide-bg:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: #459f83;
}

.slide-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.is-move .slide-bg:before {
  -webkit-animation: slide-bg 1s ease 0s 1 normal forwards;
  animation: slide-bg 1s ease 0s 1 normal forwards;
}

.is-move .slide-txt {
  -webkit-animation: slide-txt 0s ease 0.55s 1 normal forwards;
  animation: slide-txt 0s ease 0.55s 1 normal forwards;
}

.pc {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}

.header {
  background-image: url(../images/bg.jpg);
  background-position: center center;
  background-size: cover;
}

.header-wrap {
  padding: 5rem 3.5vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header-wrap__block {
  text-align: center;
}

.header-wrap__visual {
  width: 90%;
  margin: 0 auto;
}

.header-sub {
  font-size: 4.8vw;
  font-weight: bold;
}

.header-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 6.45vw;
  font-weight: 900;
}

.header-bal {
  margin: 2rem 0;
}

.header-webinar {
  font-size: 3.5vw;
  font-weight: bold;
  margin-top: 2rem;
  text-align: center;
}

.header-webinar a {
  color: #ff9300;
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .header-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 1.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: row-reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-wrap__block {
    width: 62%;
    text-align: left;
  }
  .header-wrap__visual {
    width: 32%;
  }
  .header-sub {
    font-size: 2.3rem;
  }
  .header-title {
    font-size: 3.5rem;
  }
  .header-bal {
    max-width: 600px;
    margin: 2rem 0;
  }
  .header-webinar {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 4rem;
    text-align: left;
  }
  .header-webinar a:hover {
    text-decoration: none;
  }
}

@media screen and (min-width: 1300px) {
  .header-sub {
    font-size: 2.8rem;
  }
  .header-title {
    font-size: 4rem;
  }
}

.footer {
  margin: 7rem 0;
  text-align: center;
}

.footer-txt {
  font-size: 1.7rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
  margin-bottom: 4rem;
}

.footer-txt a {
  color: #ff9300;
  text-decoration: underline;
}

.footer-txt .new {
  position: absolute;
  top: -1.8rem;
  left: -1.2rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.footer-txt .new span {
  font-size: 1.4rem;
  display: inline-block;
  color: #ff0000;
  position: relative;
}

.footer-txt .new span:before {
  content: "";
  width: 1px;
  height: 15px;
  background: #ff0000;
  position: absolute;
  bottom: 0;
  left: -1rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.footer-txt .new span:after {
  content: "";
  width: 1px;
  height: 15px;
  background: #ff0000;
  position: absolute;
  bottom: 0;
  right: -1rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.footer .copy {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .footer-txt {
    font-size: 1.7rem;
    font-weight: bold;
    display: inline-block;
    position: relative;
    margin-bottom: 4rem;
  }
  .footer-txt a {
    color: #ff9300;
    text-decoration: underline;
  }
  .footer-txt .new {
    position: absolute;
    top: -2.3rem;
    left: -1.8rem;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .footer-txt .new span {
    font-size: 1.5rem;
  }
  .footer .copy {
    font-size: 1.3rem;
  }
}

.main {
  display: block;
}

.main .heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 6.4vw;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
}

.main .heading--w {
  color: #fff;
}

.main-about {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.main-about .about-txt {
  max-width: 890px;
  margin: 0 auto;
}

.main-about .about-txt p {
  line-height: 2;
}

.main-about .about-txt p + p {
  margin-top: 2rem;
}

.main-about .about-txt p span {
  font-weight: bold;
}

.main-about .about-strength {
  max-width: 1200px;
  margin-top: 5rem;
  border: 2px solid #459f83;
  padding: 2.5rem;
}

.main-about .about-strength .strength-heading {
  font-size: 2.8rem;
  text-align: center;
  margin-top: -4.5rem;
}

.main-about .about-strength .strength-heading span {
  font-weight: bold;
  color: #459f83;
  background: #fff;
  display: inline-block;
  padding: 0 2rem;
}

.main-about .about-strength .strength-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.main-about .about-strength .strength-list-block {
  width: 45%;
  padding: 3% 2.5%;
}

.main-about .about-strength .strength-list-block h3 {
  font-size: 1.35rem;
  text-align: center;
  margin-top: 1rem;
}

.main-service {
  margin: 5rem auto 0;
  padding: 5rem 4rem;
  background: #459f83;
}

.main-service .service-list {
  max-width: 900px;
  margin: 0 auto;
}

.main-service .service-list-block {
  position: relative;
  background: #fff;
}

.main-service .service-list-block + div {
  margin-top: 4rem;
}

.main-service .service-list .s-number {
  font-size: 6rem;
  font-family: "Oswald", sans-serif;
  position: absolute;
  top: -5rem;
  right: 2rem;
}

.main-service .service-list .s-col-illust {
  background: #edf4fc;
  padding: 4rem;
}

.main-service .service-list .s-col-tt {
  padding: 2rem;
}

.main-service .service-list .s-col-tt h2 {
  font-size: 2rem;
}

.main-service .service-list .s-col-tt .notice {
  font-size: 1.3rem;
  color: #ff0000;
  margin-top: 1rem;
}

.main-service .service-list .s-col-tt ol {
  margin-top: 1.5rem;
}

.main-service .service-list .s-col-tt ol li {
  color: #459f83;
  list-style: decimal;
  margin-left: 2.5rem;
}

.main-service .service-txt {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.main-price {
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.main-price .price-block {
  max-width: 660px;
  margin: 0 auto;
}

.main-price .price-block-illust {
  max-width: 580px;
  margin: 0 auto;
}

.main-price .price-block-check {
  margin-top: 3rem;
  padding: 2rem;
  border: 2px solid #459f83;
}

.main-price .price-block-check li {
  font-size: 1.5rem;
  padding-left: 2.5rem;
  position: relative;
}

.main-price .price-block-check li + li {
  margin-top: 1rem;
}

.main-price .price-block-check li:before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/svg/check.svg);
  background-size: center center;
  background-position: 20px 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.main-contact {
  padding: 5rem 1.5rem;
  background: #f7f9fb;
}

.main-case {
  padding: 5rem 1.5rem;
  background: #f7f9fb;
}

.main-case .case-list {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.main-case .case-list__block {
  width: 48%;
  margin: 1%;
  padding: 1.5rem;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main-case .case-list__block figcaption {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 0.5rem;
  text-align: center;
}

.main-case .case-arrow {
  width: 7vw;
  margin: 2rem auto;
}

@media screen and (min-width: 768px) {
  .main .heading {
    font-size: 3.5rem;
    margin-bottom: 4rem;
  }
  .main .txt {
    font-size: 1.7rem;
    margin-top: -2rem;
  }
  .main-about {
    margin: 6rem auto;
  }
  .main-about .about-strength .strength-list-block {
    width: 25%;
    padding: 3% 2.5%;
  }
  .main-about .about-strength .strength-list-block h3 {
    font-size: 1.35rem;
    text-align: center;
    margin-top: 1rem;
  }
  .main-service {
    margin: 7rem auto 0;
    padding: 7rem 1.5rem;
  }
  .main-service .service-list-block + div {
    margin-top: 6rem;
  }
  .main-service .service-list .s-number {
    font-size: 8rem;
    top: -7rem;
    right: 3rem;
  }
  .main-service .service-list .s-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-service .service-list .s-col-illust {
    width: 30%;
    background: #edf4fc;
    padding: 4rem;
  }
  .main-service .service-list .s-col-tt {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 4rem;
  }
  .main-service .service-list .s-col-tt h2 {
    font-size: 2.5rem;
  }
  .main-service .service-list .s-col-tt .notice {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
  .main-service .service-txt {
    font-size: 2.5rem;
  }
  .main-price {
    margin: 7rem auto;
  }
  .main-price .price-block-check {
    margin-top: 5rem;
    padding: 4rem;
    text-align: center;
  }
  .main-price .price-block-check ul {
    display: inline-block;
  }
  .main-price .price-block-check li {
    font-size: 1.7rem;
    text-align: left;
  }
  .main-price .price-block-check li + li {
    margin-top: 1.2rem;
  }
  .main-contact {
    padding: 7rem 1.5rem;
  }
  .main-case {
    padding: 7rem 1.5rem;
  }
  .main-case .case-list__block {
    width: 22%;
    margin: 1.5%;
    padding: 2rem;
  }
  .main-case .case-list__block figcaption {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .main-case .case-arrow {
    width: 30px;
    margin: 2.5rem auto;
  }
}

@media screen and (min-width: 1024px) {
  .main .heading {
    font-size: 3.8rem;
  }
  .main .txt {
    font-size: 1.8rem;
    text-align: center;
  }
  .main-about {
    margin: 8rem auto;
  }
  .main-about .about-txt p {
    font-size: 1.7rem;
  }
  .main-about .about-txt p + p {
    margin-top: 2rem;
  }
  .main-about .about-strength {
    margin-top: 7rem;
    padding: 3.5;
  }
  .main-about .about-strength .strength-heading {
    font-size: 3.4rem;
    margin-top: -5rem;
  }
  .main-about .about-strength .strength-list-block {
    width: 17%;
    padding: 2.5% 1.5%;
  }
  .main-service {
    margin-top: 8rem;
    padding: 8rem 1.5rem;
  }
  .main-service .service-list .s-number {
    right: 4rem;
  }
  .main-service .service-list .s-col-illust {
    width: 20%;
    padding: 2rem;
  }
  .main-service .service-list .s-col-tt {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 3rem;
  }
  .main-service .service-list .s-col-tt h2 {
    font-size: 2.6rem;
  }
  .main-service .service-list .s-col-tt ol {
    margin-top: 2rem;
    counter-reset: number 0;
  }
  .main-service .service-list .s-col-tt ol li {
    display: inline-block;
    color: #459f83;
    margin-left: 2.5rem;
  }
  .main-service .service-list .s-col-tt ol li:first-child {
    margin-left: 0;
  }
  .main-service .service-list .s-col-tt ol li:before {
    counter-increment: number 1;
    content: counter(number) ". ";
  }
  .main-price {
    margin: 8rem auto;
  }
  .main-contact {
    padding: 8rem 1.5rem;
  }
  .main-case {
    padding: 8rem 1.5rem;
  }
}

.cv {
  max-width: 900px;
  margin: 4rem auto 0;
}

.cv div {
  margin: 1rem 0;
  text-align: center;
}

.cv div div {
  font-size: 1.4rem;
  display: inline-block;
  position: relative;
  letter-spacing: 0.45rem;
}

.cv div div:before {
  content: "";
  width: 1px;
  height: 30px;
  background: #000;
  position: absolute;
  bottom: -0.5rem;
  left: -1.5rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.cv div div:after {
  content: "";
  width: 1px;
  height: 30px;
  background: #000;
  position: absolute;
  bottom: -0.5rem;
  right: -1.5rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.btn {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  padding: 1.6rem 1rem;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  position: relative;
}

.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

.btn--primary {
  background: #459f83;
  border: 2px solid #459f83;
}

.btn--second {
  background: #ff9300;
  border: 2px solid #ff9300;
}

@media screen and (min-width: 768px) {
  .cv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .cv > div {
    width: 48%;
  }
  .cv > div div {
    font-size: 1.5rem;
  }
  .btn {
    font-size: 2.4rem;
    padding: 1.5rem 1rem;
  }
  .btn:after {
    right: 2.5rem;
    width: 12px;
    height: 12px;
  }
  .btn--primary:hover {
    color: #459f83;
    background: #fff;
  }
  .btn--primary:hover:after {
    border-top: 2px solid #459f83;
    border-right: 2px solid #459f83;
  }
  .btn--second:hover {
    color: #ff9300;
    background: #fff;
  }
  .btn--second:hover:after {
    border-top: 2px solid #ff9300;
    border-right: 2px solid #ff9300;
  }
}
