﻿@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap);

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: auto;
  }
}

@media screen and (max-width: 780px) {
  html {
    scroll-padding-top: 100px;
    min-width: 780px;
  }
}

@media screen and (min-width: 781px) {
  html {
    scroll-padding-top: 80px;
    min-width: 1200px;
  }
}


body {
  margin: 0;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  background-color: #fff;
}

body.noscroll {
  height: 100%;
  overflow: hidden;
}

main {
  background-color: #f4f6fb;
}

@media screen and (max-width: 780px) {
  body {
    font-size: 24px;
  }
}

@media screen and (min-width: 781px) {
  body {
    width: auto;
    font-size: 16px;
  }

  main {
    overflow: hidden;
  }
}

picture {
  display: block;
  width: 100%;
}

figure {
  margin: 0;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

img.wide {
  width: 100%;
  max-width: inherit;
}

a {
  color: #e88d4b;
  text-decoration: none;
}

@media screen and (min-width: 781px) {
  a:hover {
    transition: 0.3s ease;
    text-decoration: underline;
  }

  a:hover img {
    opacity: 0.75;
  }
}

.en {
  font-family: 'Roboto', sans-serif;
}

.text-right {
  text-align: right;
}

@media screen and (max-width: 780px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 781px) {
  .sp {
    display: none;
  }
}

.section-hl {
  width: 100%;
  margin-top: 0;
  margin-bottom: 90px;
  padding-bottom: 45px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.section-hl:after {
  content: "";
  display: inline-block;
  width: 110px;
  border-top: 4px solid #36549e;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-hl span {
  display: inline-block;
}

@media (min-width:781px) {
  .section-hl {
    margin-bottom: 90px;
    padding-bottom: 30px;
    font-size: 42px;
  }

  .section-hl:after {
    width: 70px;
  }
}

#header {
  width: 100%;
  background-color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}

#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100px;
  padding: 0;
}

#header-logo {
  width: 210px;
  margin-left: 40px;
  position: relative;
  z-index: 10;
}

#footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  background-color: #fff;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width:780px) {
  #menu {
    width: 100px;
    height: 100px;
    background-image: url("../img/menu.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 57px;
    position: relative;
    z-index: 10;
  }

  #menu.active {
    background-image: url("../img/close.svg");
  }
}

@media screen and (min-width:781px) {
  #header .inner {
    width: 1100px;
    height: 80px;
    margin: auto;
  }

  #header-logo {
    width: 160px;
    margin-left: 0px;
  }

  #menu {
    display: none;
  }

  #footer {
    align-items: flex-start;
    position: relative;
    width: 1100px;
    height: 79px;
    margin: 0 auto;
    padding-top: 25px;
    font-size: 12px;
    border-top: 2px solid #a1aec7;
  }
}

@media screen and (max-width:780px) {
  #nav-header {
    width: 100%;
    height: 0;
    transition: 0.3s;
    background-color: #f0f2f9;
    overflow: hidden;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 0;
  }

  #nav-header.active {
    height: calc(100dvh - 100px);
  }

  #nav-header .nav-header-wrap {
    width: 100%;
    border-top: 1px solid #c7d0e1;
  }

  #nav-header .nav-list {
    width: 660px;
    margin: 0 auto;
    padding-left: 0;
    list-style-type: none;
  }

  #nav-header .nav-list li {
    border-bottom: 1px solid #c7d0e1;
  }

  #nav-header .nav-list li a {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    padding: 0 20px;
    color: #222222;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: left;
    background-image: url("../img/arrow.png");
    background-position: calc(100% - 20px) center;
    background-repeat: no-repeat;
    background-size: 15px;
  }

  #nav-header .nav-btn-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
  }

  #nav-header .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 320px;
    height: 170px;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  #nav-header .nav-btn:before {
    content: "";
    display: inline-block;
    width: 52px;
    height: 43px;
    margin-bottom: 26px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  #nav-header .btn-download {
    background-color: #3d5499;
  }

  #nav-header .btn-download:before {
    background-image: url("../img/download-wh.svg");
  }

  #nav-header .btn-trial {
    background-color: #e88d4b;
  }

  #nav-header .btn-trial:before {
    background-image: url("../img/trial-wh.svg");
  }
}

@media screen and (min-width:781px) {
  #nav-header .nav-header-wrap {
    display: flex;
    gap: 25px;
  }

  #nav-header .nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding-left: 0;
    list-style-type: none;
  }

  #nav-header .nav-list li a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #222222;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
  }

  #nav-header .nav-list li a:hover,
  #nav-header .nav-list li a.current {
    color: #3d5499;
    border-bottom: 2px solid #3d5499;
    opacity: 1;
  }

  #nav-header .nav-list li a[target="_blank"]:after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    background-image: url("../img/blank.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  #nav-header .nav-btn-wrap {
    display: flex;
    gap: 10px;
  }

  #nav-header .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 166px;
    height: 48px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
  }

  #nav-header .nav-btn:hover {
    opacity: 0.7;
  }

  #nav-header .nav-btn:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 15px;
    margin-right: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  #nav-header .btn-download {
    background-color: #3d5499;
  }

  #nav-header .btn-download:before {
    background-image: url("../img/download-wh.svg");
  }

  #nav-header .btn-trial {
    background-color: #e88d4b;
  }

  #nav-header .btn-trial:before {
    background-image: url("../img/trial-wh.svg");
  }
}

@media screen and (max-width:780px) {
  #nav-footer {
    display: none;
  }
}

@media screen and (min-width:781px) {
  #nav-footer {
    width: 1100px;
    margin: 0 auto;
  }

  #nav-footer .nav-footer-inner {
    display: flex;
    justify-content: space-between;
    padding-top: 70px;
    padding-bottom: 60px;
  }

  #nav-footer .nav-footer-logo {
    width: 200px;
    margin-left: 60px;
  }

  .nav-footer-wrap {
    display: grid;
    grid-template-columns: repeat(2, max-content);
  }

  .nav-footer-wrap ul {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
  }

  .nav-footer-wrap ul:nth-of-type(1) {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(2, max-content);
    gap: 12px 70px;
    padding-right: 56px;
    border-right: 2px solid #a1aec7;
  }

  .nav-footer-wrap ul:nth-of-type(2) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    height: max-content;
    padding: 0 56px;
  }

  .nav-footer-wrap ul:nth-of-type(1) li {
    padding-left: 25px;
    background-image: url("../img/arrow-s.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 8px;
  }

  .nav-footer-wrap ul li a {
    display: flex;
    align-items: center;
    width: max-content;
    color: #222222;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
  }

  .nav-footer-wrap ul li a[target="_blank"]:after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    background-image: url("../img/blank.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .nav-footer-wrap ul li a:hover {
    color: #3d5499;
    border-bottom: 2px solid #3d5499;
    opacity: 1;
  }
}

#contact {
  background-color: #3d5499;
  background-image: url("../img/cta-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
  z-index: 0;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1531px;
  margin: auto;
  position: relative;
  z-index: 0;
}

.contact-hl {
  margin-bottom: 60px;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1;
}

.contact-hl h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.contact-hl p {
  margin-top: 40px;
  margin-bottom: 0;
}

.contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-column {
  width: 660px;
  height: 574px;
  background: #fff;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  position: relative;
  z-index: 1;
}

.contact-column a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  color: #222222;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: calc(50/28);
  text-decoration: none;
  text-align: center;
}

.contact-column a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  box-shadow: 0px 0px 30px #3d5499;
  mix-blend-mode: multiply;
  transition: 0.3s;
}

.contact-column a:hover {
  opacity: 1;
}

.contact-column a:before {
  content: "";
  display: block;
  width: 130px;
  height: 130px;
  background-color: #f4f6fb;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 130px;
  transition: 0.3s;
}

.contact-column:nth-of-type(1) a:before {
  background-image: url("../img/download.svg");
  background-size: 73px;
}

.contact-column:nth-of-type(2) a:before {
  background-image: url("../img/trial.svg");
  background-size: 73px;
}

.contact-column-hl {
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.contact-column p {
  margin-top: 0px;
  margin-bottom: 30px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 90px;
  background-color: #f98838;
  border-radius: 90px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

@media screen and (min-width:781px) {
  #contact {
    background-image: url("../img/cta-bg-pc.png");
  }

  .contact-inner {
    width: 1100px;
    height: 750px;
  }

  .contact-hl {
    margin-bottom: 60px;
    font-size: 20px;
  }

  .contact-hl h2 {
    font-size: 42px;
  }

  .contact-hl p {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .contact-wrap {
    flex-direction: row;
    gap: 80px;
  }

  .contact-column {
    width: 450px;
    height: 420px;
  }

  .contact-column a {
    font-size: 16px;
    line-height: calc(30/16);
  }

  .contact-column a:after {
    box-shadow: 0px 0px 20px #3d5499;
  }

  .contact-column a:hover {
    opacity: 1;
  }

  .contact-column a:hover:after {
    box-shadow: 0px 0px 30px #1d2848;
  }

  .contact-column a:before {
    width: 107px;
    height: 107px;
    border-radius: 107px;
  }

  .contact-column:nth-of-type(1) a:before {
    background-image: url("../img/download.svg");
    background-size: 60px;
  }

  .contact-column:nth-of-type(2) a:before {
    background-image: url("../img/trial.svg");
    background-size: 60px;
  }

  .contact-column a:hover:before {
    background-color: #3d5499;
  }

  .contact-column:nth-of-type(1) a:hover:before {
    background-image: url("../img/download-wh.svg");
  }

  .contact-column:nth-of-type(2) a:hover:before {
    background-image: url("../img/trial-wh.svg");
  }

  .contact-column-hl {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 32px;
  }

  .contact-column p {
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .contact-btn {
    width: 320px;
    height: 60px;
    border-radius: 30px;
    font-size: 20px;
  }

  .contact-column a:hover .contact-btn {
    opacity: 0.75;
  }
}

/* Low Page */

#headline {
  background-color: #3d5499;
  background-image: url("../img/headline-bg.png");
  background-position: center;
  background-repeat: repeat;
  background-size: auto 100%;
}

.headline-inner {
  display: flex;
  align-items: center;
  width: 660px;
  height: 200px;
  margin: auto;
}

.headline-hl {
  margin: 0;
  color: #fff;
  font-size: 42px;
}

.headline-hl small {
  display: block;
  font-size: 28px;
}

@media screen and (min-width:781px) {
  #headline {
    background-image: url("../img/headline-bg.png");
  }

  .headline-inner {
    width: 1100px;
    height: 250px;
  }

  .headline-hl small {
    font-size: 24px;
  }
}

@media screen and (min-width:781px) {
  li.sp-only {
    display: none;
  }
}