@charset "UTF-8";
/* デフォルト */
/* レスポンシブ設定 */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: white;
  color: #424242;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  display: block;
  text-decoration: none;
}
a.page-button {
  max-width: 307px;
  width: 90%;
  padding: 21px 0;
  padding-left: 35px;
  background-color: #16b0dc;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 19px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  position: relative;
  transition: background-color 0.3s ease;
  margin: 0 auto;
  line-height: 1;
}
@media screen and (max-width:540px) {
  a.page-button {
    max-width: 255px;
    font-size: 16px;
    padding-left: 25px;
  }
}
a.page-button:hover {
  background-color: #2cbae2;
}
a.page-button .button-icon {
  position: absolute;
  width: 28px;
  height: 22px;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
}
@media screen and (max-width:540px) {
  a.page-button .button-icon {
    left: 25px;
  }
}
a.page-button.noicon {
  padding-left: 0;
}
a.cta-btn {
  max-width: 286px;
  background: #ee5e6b;
  color: white;
  border: none;
  padding: 15px 0px;
  padding-left: 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
}
@media screen and (max-width:540px) {
  a.cta-btn {
    font-size: 15px;
    max-width: 255px;
  }
}
a.cta-btn:hover {
  background: #f5707e;
}
a.cta-btn::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 16px;
  background: url(../img/cta-gz.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

h2 {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.4;
  color: #16b0dc;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width:540px) {
  h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 500;
  color: #16b0dc;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width:540px) {
  h3 {
    font-size: 15px;
  }
}

p {
  font-size: 18px;
}
@media screen and (max-width:1024px) {
  p {
    font-size: 16px;
  }
}
@media screen and (max-width:540px) {
  p {
    font-size: 14px;
  }
}
p.section-description {
  text-align: center;
  margin: 30px 0;
}
@media screen and (max-width:540px) {
  p.section-description {
    color: #16B0DC;
    margin: 30px auto 20px;
  }
}

section {
  padding: 100px 0;
}
section.blue {
  background-color: #F4FCFF;
}
@media screen and (max-width:540px) {
  section {
    padding: 70px 0;
  }
}

.container {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  .container {
    max-width: 330px;
  }
}

.sub-container {
  max-width: 1270px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  .sub-container {
    max-width: 330px;
  }
}

.mini-container {
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  .mini-container {
    max-width: 330px;
  }
}

header {
  padding: 12px 60px;
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  z-index: 999;
}
@media screen and (max-width:1024px) {
  header {
    padding: 12px 30px;
  }
}
@media screen and (max-width:540px) {
  header {
    padding: 12px 15px;
  }
}
header a img {
  width: 165px;
}
@media screen and (max-width:540px) {
  header a img {
    width: 122px;
  }
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width:1024px) {
  header nav ul {
    gap: 20px;
  }
}
@media screen and (max-width:540px) {
  header nav ul {
    flex-direction: column;
  }
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  font-size: 16px;
  color: #424242;
  transition: color 0.4s ease;
}
header nav ul li a:hover {
  color: #16b0dc;
}
@media screen and (max-width:1024px) {
  header nav ul li a {
    font-size: 15px;
  }
}
header nav ul li a.free-trial {
  padding: 10px 20px;
  border-radius: 6px;
  color: white;
  background-color: #ED6B77;
  text-align: center;
  transition: background-color 0.4s ease;
}
header nav ul li a.free-trial:hover {
  background-color: #e88993;
}
@media screen and (max-width:540px) {
  header nav ul li a.free-trial {
    padding: 6px 10px;
    padding-left: 30px;
    position: relative;
    font-size: 13px;
  }
  header nav ul li a.free-trial::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 16px;
    background: url(../img/cta-gz.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
  header nav ul li a.free-trial.inmenu {
    display: inline;
    padding-left: 35px;
    font-size: 15px;
  }
}
header nav.tb {
  display: flex;
  gap: 10px;
  align-items: center;
}
header .top-bar-open {
  background: #fff;
  padding: 16px 16px 12px;
  box-shadow: 0px -6px 15px rgba(0, 0, 0, 0.2);
}
header .top-bar-open__head {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:540px) {
  header .top-bar-open__head--logo {
    width: 35%;
    height: auto;
  }
}
header .top-bar-open__head--logo img {
  width: 160px;
  height: auto;
}
header .top-bar-open__click {
  border-radius: 100%;
}
header .top-bar-open__click span {
  position: relative;
  z-index: 999;
  display: block;
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 10px;
  background: #07B7EA;
  margin: 7px auto;
  transition: 0.3s;
}
header .top-bar-open__click.open {
  margin: 0 auto;
}
header .top-bar-open__click.open span {
  background: #393939;
  transition: 0.3s;
  width: 24px;
}
header .top-bar-open__click.open span:first-child {
  position: fixed;
  transform: translate(-30px, 0px) rotate(45deg);
  margin: 0 auto;
}
header .top-bar-open__click.open span:nth-child(2) {
  display: none;
}
header .top-bar-open__click.open span:nth-child(3) {
  margin: 0 auto;
  position: fixed;
  transform: translate(-30px, 0px) rotate(-45deg);
}
header .top-bar {
  background: linear-gradient(to right bottom, #F7FDFF, #E9FDFD);
  padding: 30px 30px 32px;
  height: 100vh;
}
header .top-bar__head {
  position: relative;
}
header .top-bar__head img {
  width: 122px;
}
header .top-bar__menu {
  width: 85%;
  height: auto;
  margin-top: 40px;
}
@media screen and (max-width:540px) {
  header .top-bar__menu {
    margin-top: 30px;
  }
}
header .top-bar__menu ul {
  flex-wrap: wrap;
  padding: 20px 0;
  gap: 30px;
}
header .top-bar__menu ul li {
  width: 100%;
}
header .top-bar__menu ul li a {
  display: block;
  font-size: 23px;
}
@media screen and (max-width:540px) {
  header .top-bar__menu ul li a {
    font-size: 16px;
  }
}
header .close-menu {
  position: absolute;
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  transform: translateX(100%);
  transition: 0.4s;
}
header .close-menu .top-bar {
  opacity: 0;
  top: -100%;
}
header .close-menu.open {
  transform: translateX(0);
  transition: 0.4s;
  display: block;
}
header .close-menu.open .top-bar {
  opacity: 1;
}

footer {
  background-color: #e3f3f7;
  padding: 80px 40px 20px;
}
@media screen and (max-width:540px) {
  footer {
    padding: 40px 20px 20px;
  }
}
footer .mini-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  footer .mini-container {
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }
}
@media screen and (max-width:540px) {
  footer .mini-container {
    display: block;
    margin-bottom: 30px;
  }
}
footer .mini-container .footer-brand {
  flex: 1;
  max-width: 300px;
}
footer .mini-container .footer-brand img.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 30px;
}
@media screen and (max-width:540px) {
  footer .mini-container .footer-brand img.footer-logo {
    width: 150px;
  }
}
footer .mini-container .footer-brand p.brand-tagline {
  font-size: 20px;
  font-weight: 500;
  color: #16b0dc;
  margin-bottom: 20px;
}
@media screen and (max-width:540px) {
  footer .mini-container .footer-brand p.brand-tagline {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
footer .mini-container .footer-brand .social-links {
  display: flex;
  gap: 10px;
}
@media screen and (max-width:540px) {
  footer .mini-container .footer-brand .social-links {
    margin-bottom: 20px;
  }
}
footer .mini-container .footer-brand .social-links a.social-link {
  width: 50px;
  height: 50px;
  background-color: #16b0dc;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: background-color 0.3s ease;
  padding: 10px;
}
footer .mini-container .footer-brand .social-links a.social-link:hover {
  background-color: #2cbae2;
}
footer .mini-container .footer-brand .social-links a.social-link img {
  width: 100%;
}
footer .mini-container .footer-nav {
  flex: 1;
  max-width: 300px;
}
footer .mini-container .footer-nav ul.nav-list {
  list-style: none;
}
footer .mini-container .footer-nav ul.nav-list li.nav-item {
  margin-bottom: 15px;
}
footer .mini-container .footer-nav ul.nav-list li.nav-item a.nav-link {
  color: #424242;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
footer .mini-container .footer-nav ul.nav-list li.nav-item a.nav-link:hover {
  color: #16b0dc;
}
footer .mini-container .footer-cta {
  flex: 1;
  max-width: 250px;
}
@media screen and (max-width:540px) {
  footer .mini-container .footer-cta {
    max-width: 166px;
  }
}
footer .mini-container .footer-cta a.cta-button {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width:768px) {
  footer .mini-container .footer-cta a.cta-button {
    font-size: 15px;
  }
}
@media screen and (max-width:540px) {
  footer .mini-container .footer-cta a.cta-button {
    font-size: 12px;
    padding: 10px 0;
  }
}
footer .mini-container .footer-cta a.cta-button.cta-primary {
  background-color: #ed5d6b;
  color: white;
}
footer .mini-container .footer-cta a.cta-button.cta-primary:hover {
  background-color: #f5707e;
}
footer .mini-container .footer-cta a.cta-button.cta-secondary {
  background-color: white;
  color: #ee5e6b;
  border: 1px solid #ee5e6b;
}
footer .mini-container .footer-cta a.cta-button.cta-secondary:hover {
  background-color: #f9f9f9;
}
footer .mini-container .footer-cta a.cta-button img {
  width: 20px;
}
footer .footer-copyright {
  text-align: center;
  color: #424242;
  font-size: 14px;
  padding-top: 20px;
}/*# sourceMappingURL=style.css.map */