@charset "utf-8";

/* ベース
/************************************************************/
html {
    scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP",
    sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: normal;
  color: #333;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
p {
  line-height: 180%;
}

h2 {
  font-weight: bold;
  line-height: 135%;
  font-size: 34px;
}

h3 {
  font-weight: 500;
  line-height: 140%;
}

h4 {
  font-weight: bold;
  line-height: 135%;
}
h5 {
  font-weight: bold;
  line-height: 135%;
}

/* 共通要素
/************************************************************/

.container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.container::after {
  content: "";
  display: block;
  clear: both;
}
.hide-pc {
  display: none;
}
.heading {
  text-align: center;
  margin-bottom: 40px;
}

.blue {
  color: #01b38c;
}
.pink {
  color: #f7267a;
}
.yellow {
  color: #ffeb14;
}
.lt-green{
  color: #01b38c;
}

/* マーカー
/************************************************************/

em {
  display: inline;
  position: relative;
  background-image: linear-gradient(90deg, #fff000, #fff000);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 20%;
  transition-property: all;
  transition-duration: 0.9s;
  transition-delay: 0s;
  transition-timing-function: ease-in-out;
  padding-bottom: 2px;
  font-weight: bold;
}
em.marker {
  background-size: 100% 30%;
}


/* MV
/************************************************************/

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(29, 36, 51, 0.08);
}

.header__inner {
    max-width: 1360px;
    min-height: 70px;
    margin: 0 auto;
    padding: 15px 25px 15px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__brand {
    margin: 0;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 102;
}

.header__toggle {
    display: none;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 102;
}

.header__toggle span {
    position: absolute;
    left: 50%;
    width: 25px;
    height: 2px;
    background: #1d2433;
    transform: translateX(-50%);
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.header__toggle span:nth-child(1) {
    top: 16px;
}

.header__toggle span:nth-child(2) {
    top: 24px;
}

.header__toggle span:nth-child(3) {
    top: 32px;
}

body.menu-open {
    overflow: hidden;
}

.header__logo {
    width: 120px;
    display: block;
}

.header__nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__tel {
    flex: 0 0 auto;
    display: block;
}

.header__tel img {
    display: block;
    width: 260px;
    max-width: 100%;
    height: auto;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__menu a {
    color: #222;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.header__menu a:hover,
.header__menu a:focus-visible {
    color: #2867d8;
    transform: translateY(-1px);
}

.header__cta {
    flex: 0 0 auto;
    min-width: 145px;
    padding: 15px 25px;
    border-radius: 999px;
    background: #ef6c00;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.header__cta::after {
    content: "\2192";
    margin-left: 0.35em;
    font-weight: 700;
}

.header__cta--mobile {
    display: none;
}

.header__cta:hover,
.header__cta:focus-visible {
    background: #d85f00;
    transform: translateY(-1px);
}

.top-mv {
    position: relative;
    overflow: hidden;
    padding: 130px 20px 60px;
    background: #eef3fb;
}

.top-mv::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.45) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.45) 25%, transparent 25%);
    background-size: 80px 80px;
    opacity: .35;
    pointer-events: none;
}

.top-mv__inner {
    position: relative;
    z-index: 2;

    max-width: 1180px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.top-mv__content {
    width: 50%;
}

.top-mv__title {
    margin: 0 0 28px;
    color: #222;
    font-size: 44px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: .04em;
}

.top-mv__title span {
    color: #2867d8;
}

.top-mv__text {
    max-width: 620px;
    margin: 0 0 38px;
    color: #555;
    font-size: 14px;
    line-height: 2;
}

.top-mv__btn {
    width: 300px;
    height: 68px;
    border-radius: 999px;
    background: #ef6c00;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;

    transition: .3s;
}

.top-mv__btn:hover {
    opacity: .8;
}

.top-mv__image {
    width: 45%;
}

.top-mv__image img {
    width: 100%;
    display: block;
}

@media screen and (max-width: 1024px) {
    .top-mv__inner {
        flex-direction: column;
        text-align: center;
    }

    .top-mv__content,
    .top-mv__image {
        width: 100%;
    }

    .top-mv__text {
        margin-right: auto;
        margin-left: auto;
    }

    .top-mv__btn {
        margin: 0 auto;
    }

    .top-mv__title {
        font-size: 48px;
    }

}

@media screen and (max-width: 640px) {
    .header__inner {
        min-height: 65px;
        padding: 10px 20px;
        gap: 15px;
    }

    .header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .header__nav {
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        min-height: 100vh;
        padding: 95px 20px 32px;
        background: #ffffff;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        z-index: 101;
    }

    .header__tel {
        display: none;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .header__cta {
        display: none;
    }

    .header__cta--mobile {
        display: flex;
        justify-content: center;
        width: fit-content;
        margin-top: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .header--open .header__nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header--open .header__toggle span:nth-child(1) {
        transform: translateX(-50%) translateY(8px) rotate(45deg);
    }

    .header--open .header__toggle span:nth-child(2) {
        opacity: 0;
    }

    .header--open .header__toggle span:nth-child(3) {
        transform: translateX(-50%) translateY(-8px) rotate(-45deg);
    }

    .header__logo {
        width: 100px;
    }

    .top-mv {
        padding: 110px 16px 40px;
    }

    .top-mv__title {
        font-size: 34px;
    }

    .top-mv__text {
        font-size: 13px;
    }

    .top-mv__btn {
        width: 260px;
        height: 58px;
        font-size: 17px;
    }
}

.top-worries {
    padding: 72px 20px 58px;
    background: #fff;
}

.top-worries__inner {
    max-width: 1060px;
    margin: 0 auto;
}

.top-worries__title {
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    color: #222;
}

.top-worries__lead {
    margin: 0 0 36px;
    font-size: 12px;
    line-height: 1.8;
    color: #333;
}

.top-worries__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    margin: 0;
    padding: 0;
}

.top-worries__item {
    padding: 26px 24px 28px;
    background: #f4f4f4;
    border-radius: 10px;
    box-sizing: border-box;
}

.top-worries__image {
    height: 150px;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-worries__image img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.top-worries__item-title {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    color: #111;
}

.top-worries__text {
    margin: 0;
    font-size: 11px;
    line-height: 1.8;
    color: #333;
}

.top-worries__arrow {
    width: 82px;
    margin: 30px auto 26px;
}

.top-worries__arrow img {
    width: 100%;
    display: block;
}

.top-worries__solution {
    text-align: center;
}

.top-worries__solution-text {
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    color: #222;
}

.top-worries__solution-text img {
    width: 150px;
    display: block;
}

.top-worries__btn {
    width: 270px;
    height: 70px;
    margin: 0 auto;
    border-radius: 999px;
    background: #ef6c00;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .top-worries {
        padding: 50px 20px;
    }

    .top-worries__title {
        font-size: 24px;
    }

    .top-worries__list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .top-worries__solution-text {
        flex-direction: column;
        gap: 8px;
        font-size: 24px;
    }
}

.top-support {
    padding: 76px 20px 86px;
    background: linear-gradient(135deg, #003b94 0%, #006bd6 55%, #0098e8 100%);
    color: #fff;
}

.top-support__inner {
    max-width: 1060px;
    margin: 0 auto;
}

.top-support__title {
    margin: 0 0 25px;
    font-size: 32px;
}

.top-support__lead {
    margin: 0 0 38px;
    color: rgba(255, 255, 255, .9);
}

.top-support__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
}

.top-support__item {
    padding: 22px 24px 20px;
    background: #fff;
    border-radius: 10px;
    color: #111;
    box-sizing: border-box;
}

.top-support__item-title {
    position: relative;
    margin: 0 0 10px;
    padding-left: 22px;
    font-size: 18px;
}

.top-support__catch {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #006bd6;
    line-height: 1.6;
}

.top-support__item-title::before {
    content: "✓";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 16px;
    height: 16px;
    background: #111;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
}

.top-support__text {
    margin: 0;
    color: #333;
}

@media screen and (max-width: 1024px) {
    .top-support__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .top-support {
        padding: 55px 18px 60px;
    }

    .top-support__title {
        font-size: 24px;
    }

    .top-support__list {
        grid-template-columns: 1fr;
    }
}


.top-system {
    padding: 76px 20px 90px;
    background: #f4f6fb;
}

.top-system__inner {
    max-width: 1060px;
    margin: 0 auto;
}

.top-system__title {
    margin-bottom: 25px;
    font-size: 32px;
}

.top-system__lead {
    margin-bottom: 56px;
}

.top-system__list {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.top-system__item {
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: center;
    gap: 75px;
}

.top-system__item--reverse {
    grid-template-columns: 1fr 360px;
}

.top-system__item--reverse .top-system__image {
    order: 2;
}

.top-system__item--reverse .top-system__content {
    order: 1;
}

.top-system__image img {
    width: 100%;
}

.top-system__item-title {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .top-system {
        padding: 50px 20px 60px;
    }

    .top-system__title {
        font-size: 25px;
    }

    .top-system__lead {
        margin-bottom: 40px;
    }

    .top-system__list {
        gap: 40px;
    }

    .top-system__item,
    .top-system__item--reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .top-system__item--reverse .top-system__image,
    .top-system__item--reverse .top-system__content {
        order: initial;
    }
}

.top-commit {
    padding: 80px 20px 65px;
    background: #fff;
}

.top-commit__inner {
    max-width: 1060px;
    margin: 0 auto;
}

.top-commit__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.top-commit__title {
    margin-bottom: 15px;
    font-size: 32px;
}

.top-commit__lead {
    margin-bottom: 30px;
}

.top-commit__image {
    width: 280px;
    margin-bottom: 10px;
}

.top-commit__image img {
    width: 100%;
}

.top-commit__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: -10px;
}

.top-commit__item {
    min-height: 170px;
    padding: 45px 40px 30px;
    border: 1px solid #2f6bff;
    border-radius: 25px;
    box-sizing: border-box;
}

.top-commit__item-title {
    margin-bottom: 25px;
    color: #2867d8;
    font-size: 16px;
    font-weight: bold;
}

.top-commit__text {
    margin-bottom: 25px;
}

.top-commit__company {
    color: #999;
    font-size: 10px;
}

@media screen and (max-width: 768px) {
    .top-commit {
        padding: 50px 20px;
    }

    .top-commit__head {
        display: block;
    }

    .top-commit__title {
        font-size: 24px;
    }

    .top-commit__image {
        width: 180px;
        margin: 25px auto 0;
    }

    .top-commit__list {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .top-commit__item {
        padding: 30px 25px;
    }
}

.top-plan {
    padding: 35px 0;
    background: #f5f6fb;
    border-radius: 65px 65px 0 0;
}

.top-plan__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 65px 60px;
    box-sizing: border-box;
}

.top-plan__title {
    margin-bottom: 20px;
    font-size: 30px;
}

.top-plan__lead {
    margin-bottom: 40px;
    font-size: 12px;
}

.top-plan__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.top-plan__item {
    padding: 45px 20px 35px;
    background: #fff;
    border-radius: 15px;
    box-sizing: border-box;
}

.top-plan__item-title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}

.top-plan__time {
    padding-bottom: 15px;
    border-bottom: 1px solid #ccd4e5;
    font-size: 12px;
}

.top-plan__price {
    margin: 20px 0 35px;
    color: #004cff;
    font-size: 24px;
    font-weight: bold;
}

.top-plan__price span {
    font-size: 28px;
}

.top-plan__content {
    padding: 15px;
    border: 1px solid #d8deea;
}

.top-plan__content-title {
    margin-bottom: 5px;
    font-size: 12px;
}

.top-plan__content-list li {
    position: relative;
    padding-left: 15px;
    font-size: 14px;
}

.top-plan__content-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #004cff;
    font-size: 10px;
}

.top-plan__note {
    margin-top: 25px;
    color: #777;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .top-plan {
        padding: 0;
    }

    .top-plan__inner {
        padding: 50px 20px;
        border-radius: 35px 35px 0 0;
    }

    .top-plan__title {
        font-size: 24px;
    }

    .top-plan__list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .top-plan__item {
        padding: 30px 20px;
    }
}

.top-cv {
    margin-bottom: 60px;
    padding: 60px 20px 0;
    background: #fff;
}

.top-cv__inner {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    min-height: 260px;
}

.top-cv__image {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 190px;
}

.top-cv__image img {
    width: 100%;
}

.top-cv__content {
    text-align: center;
}

.top-cv__title {
    margin-bottom: 30px;
    font-size: 30px;
}

.top-cv__title span {
    color: #2867d8;
}

.top-cv__text {
    margin-bottom: 35px;
}

.top-cv__btn-area {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.top-cv__btn {
    width: 260px;
    height: 70px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.top-cv__btn--orange {
    background: #ef6c00;
}

.top-cv__btn--green {
    background: #67b91f;
}

@media screen and (max-width: 768px) {
    .top-cv {
        padding: 50px 20px;
    }

    .top-cv__inner {
        min-height: auto;
    }

    .top-cv__image {
        position: static;
        width: 140px;
        margin: 0 auto 25px;
    }

    .top-cv__title {
        font-size: 24px;
    }

    .top-cv__btn-area {
        flex-direction: column;
        align-items: center;
    }

    .top-cv__btn {
        width: 100%;
        max-width: 280px;
    }
}

.top-company {
    padding: 80px 20px;
    background: radial-gradient(circle at 35% 45%, #245ee0 0%, #0041b5 45%, #002c86 100%);
    color: #fff;
}

.top-company__inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
}

.top-company__title {
    padding-top: 20px;
    font-size: 24px;
}

.top-company__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .8);
}

.top-company__row:first-child {
    border-top: 1px solid rgba(255, 255, 255, .8);
}

.top-company__row dt {
    color: #7ee4ff;
    font-size: 12px;
}

.top-company__row dd {
    font-size: 12px;
}

.top-footer {
    padding: 20px;
    background: #09255a;
    color: #fff;
    text-align: center;
}

.top-footer p {
    font-size: 10px;
}

@media screen and (max-width: 768px) {
    .top-company {
        padding: 50px 20px;
    }

    .top-company__inner {
        display: block;
    }

    .top-company__title {
        margin-bottom: 30px;
        padding-top: 0;
    }

    .top-company__row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 0;
    }
}
