@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%;
}

/* Header
/************************************************************/

:root {
    --header-text: #1d2433;
    --header-accent: #ff8c2f;
    --header-accent-dark: #ff8c2f;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN",
        sans-serif;
    color: var(--header-text);
    background: #ffffff;
    padding-top: 80px;
}

.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 {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.header__toggle {
    display: none;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header__toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 0 auto;
    background: #1d2433;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__toggle span+span {
    margin-top: 6px;
}

.header__logo {
    width: 135px;
    height: auto;
    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: 30px;
}

.header__menu a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--header-text);
    transition: color 0.2s ease, transform 0.2s ease;
}

.header__menu a:hover,
.header__menu a:focus-visible {
    color: var(--header-accent);
    transform: translateY(-1px);
}

.header__cta {
    flex: 0 0 auto;
    min-width: 145px;
    padding: 15px 25px;
    border-radius: 999px;
    background: var(--header-accent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    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: var(--header-accent-dark);
    transform: translateY(-1px);
}

/* Top MV
/************************************************************/

.top-mv {
    overflow: hidden;
    background: linear-gradient(180deg, #e8f4ff 0%, #eaf5ff 100%);
}

.top-mv__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px 60px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.top-mv__content {
    flex: 0 1 540px;
    padding-bottom: 35px;
}

.top-mv__lead {
    margin-bottom: 25px;
    color: #334869;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.42;
    letter-spacing: 0.02em;
}

.top-mv__title {
    margin-bottom: 25px;
    color: #3b69f2;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.top-mv__subcopy {
    margin-bottom: 5px;
    text-align: center;
    color: #50617d;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}


.top-mv__cta {
    display: inline-block;
    min-width: 300px;
    padding: 20px 35px;
    border-radius: 999px;
    background: #ff8c2f;
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    text-align: center;
    box-shadow: 0 15px 30px rgba(239, 79, 122, 0.18);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.top-mv__cta::after {
    content: "\2192";
    margin-left: 0.4em;
}

.top-mv__cta:hover,
.top-mv__cta:focus-visible {
    background: #ff8c2f;
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(239, 79, 122, 0.24);
}

.top-mv__visual {
    flex: 0 1 500px;
    display: flex;
    justify-content: flex-end;
}

.top-mv__image {
    width: min(100%, 580px);
    display: block;
}

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

/* Top Worries
/************************************************************/

.top-worries {
    background: #ffffff;
}

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

.top-worries__heading {
    margin-bottom: 35px;
    text-align: center;
}

.top-worries__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin-bottom: 22px;
    padding: 14px 34px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f78eb 0%, #2567df 100%);
    box-shadow: 0 12px 24px rgba(37, 103, 223, 0.16);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.top-worries__badge::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 20px solid #2567df;
}

.top-worries__title {
    color: #34476c;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
}

.top-worries__cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 30px;
}

.top-worries__card {
    overflow: hidden;
    border: 1px solid #e6ebf5;
    border-radius: 0 0 5px 5px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(29, 48, 88, 0.12);
}

.top-worries__card-title {
    padding: 15px 20px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

.top-worries__card--problem .top-worries__card-title {
    background: #35415f;
}

.top-worries__card--risk .top-worries__card-title {
    background: #ef4f74;
}

.top-worries__list {
    padding: 35px 30px 35px 20px;
}

.top-worries__list li {
    position: relative;
    padding-left: 35px;
    color: #586884;
    font-size: 15px;
    line-height: 1.65;
}

.top-worries__list li+li {
    margin-top: 20px;
}

.top-worries__list--problem li::before {
    content: "";
    position: absolute;
    top: 0.05em;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.top-worries__item--attack::before {
    background-color: #eaf3ff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%233f7fe8' d='M12 2l7 3v6c0 4.97-2.98 9.58-7 11-4.02-1.42-7-6.03-7-11V5l7-3zm0 3.18L7 7.32v3.52c0 3.62 2.05 6.98 5 8.24 2.95-1.26 5-4.62 5-8.24V7.32l-5-2.14z'/%3E%3C/svg%3E");
}

.top-worries__item--client::before {
    background-color: #eef6ea;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%235c9f3a' d='M21 7h-3V6a2 2 0 00-2-2h-2V3h-4v1H8a2 2 0 00-2 2v1H3a1 1 0 00-1 1v3c0 1.1.9 2 2 2h4v1h8v-1h4a2 2 0 002-2V8a1 1 0 00-1-1zM8 6h8v1H8V6zm12 5h-4v-1H8v1H4V9h16v2zm-1 3h-4v1H9v-1H5v4a2 2 0 002 2h10a2 2 0 002-2v-4z'/%3E%3C/svg%3E");
}

.top-worries__item--budget::before {
    background-color: #fff3e8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f08a34' d='M3 6a2 2 0 012-2h12a2 2 0 012 2v1h1a1 1 0 011 1v9a3 3 0 01-3 3H6a3 3 0 01-3-3V6zm2 0v11a1 1 0 001 1h12a1 1 0 001-1V8H7a2 2 0 01-2-2zm2 0h10v1H7V6zm10 6a2 2 0 110 4 2 2 0 010-4z'/%3E%3C/svg%3E");
}

.top-worries__list--risk li::before {
    content: "";
    position: absolute;
    top: 0.05em;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.top-worries__risk--logic::before {
    background-color: #ffe8ee;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ef4f74' d='M11 2a9 9 0 00-9 9c0 3.53 2.04 6.58 5 8.05V22h8v-2.95c2.96-1.47 5-4.52 5-8.05a9 9 0 00-9-9zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

.top-worries__risk--damage::before {
    background-color: #fff0ec;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ef7a4f' d='M12 2l7 4v5c0 4.63-2.96 8.88-7 10-4.04-1.12-7-5.37-7-10V6l7-4zm0 4.3L7 8.73v2.2c0 3.49 2.15 6.67 5 7.6 2.85-.93 5-4.11 5-7.6v-2.2L12 6.3zm1 8.7h-2v-2h2v2zm0-4h-2V8h2v3z'/%3E%3C/svg%3E");
}

.top-worries__risk--delay::before {
    background-color: #fff6e8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f0a034' d='M19 3h-1V1h-2v2H8V1H6v2H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V5a2 2 0 00-2-2zm0 16H5V9h14v10zm-6-9h-2v4l3.5 2.1 1-1.64-2.5-1.46V10z'/%3E%3C/svg%3E");
}

.top-worries__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #224f72;
    font-size: 50px;
    line-height: 1;
}

.top-worries__solution {
    position: relative;
    margin-top: 40px;
    padding: 50px 25px 0;
    background: linear-gradient(180deg, #5286ee 0%, #4c82eb 100%);
}

.top-worries__solution-inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}


.top-worries__solution-lead {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.35;
}

.top-worries__solution-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.55;
    letter-spacing: 0.01em;
}

.top-worries__solution-title span {
    color: #f4ef2b;
}

.top-worries__solution-visual {
    margin-top: 15px;
}

.top-worries__solution-visual img {
    width: min(100%, 575px);
    display: block;
    margin: 0 auto;
}

/* Top Merit
/************************************************************/

.top-merit {
    background: #ffffff;
}

.top-merit__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 50px 20px 60px;
}

.top-merit__heading {
    margin-bottom: 35px;
    text-align: center;
}

.top-merit__title {
    color: #34476c;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
}

.top-merit__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

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

.top-merit__icon-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, #ffffff 0%, #f8fbff 65%, #ecf6ff 100%);
    box-shadow: inset 0 0 0 2px #d5ebff, 0 10px 25px rgba(92, 142, 211, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-merit__icon {
    width: 90px;
    height: auto;
    display: block;
}

.top-merit__icon--large {
    width: 105px;
}

.top-merit__icon--narrow {
    width: 50px;
}

.top-merit__item-title {
    margin-bottom: 15px;
    color: #394761;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}

.top-merit__item-title span {
    color: #3b84ff;
}

.top-merit__text {
    color: #4e5c76;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.9;
    text-align: left;
}

/* Top Menu
/************************************************************/

.top-menu {
    background: #eaf3ff;
}

.top-menu__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 50px 30px 60px;
}

.top-menu__heading {
    margin-bottom: 40px;
    text-align: center;
}

.top-menu__title {
    color: #354665;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
}

.top-menu__title span {
    color: #3f8cff;
}

.top-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 45px;
}

.top-menu__card {
    min-height: 80px;
    padding: 20px 30px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(72, 100, 145, 0.18);
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-menu__icon-wrap {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-menu__icon {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
    display: block;
}

.top-menu__content {
    min-width: 0;
}

.top-menu__card-title {
    margin-bottom: 5px;
    color: #3b4b67;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
}

.top-menu__card-text {
    color: #4a5871;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

/* Top Reason
/************************************************************/

.top-reason {
    background: #ffffff;
}

.top-reason__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 50px 30px 60px;
}

.top-reason__heading {
    margin-bottom: 40px;
    text-align: center;
}

.top-reason__title {
    color: #354665;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
}

.top-reason__title span {
    color: #4a90ff;
}

.top-reason__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.top-reason__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    align-items: center;
    gap: 40px;
}

.top-reason__item--reverse {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
}

.top-reason__content {
    color: #3f4a60;
}

.top-reason__point {
    margin-bottom: 10px;
    color: #4a90ff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.top-reason__item-title {
    margin-bottom: 20px;
    color: #2f3d58;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.4;
}

.top-reason__text {
    color: #434f66;
    font-weight: 400;
    line-height: 2;
}

.top-reason__text+.top-reason__text {
    margin-top: 10px;
}

.top-reason__visual {
    display: flex;
    justify-content: center;
}

.top-reason__visual img {
    width: min(100%, 420px);
    height: auto;
    display: block;
}

.top-reason__visual--cost img {
    width: min(100%, 360px);
}

.top-reason__visual--wide img {
    width: min(100%, 470px);
}

/* Top Flow
/************************************************************/

.top-flow {
    background: #4d84eb;
}

.top-flow__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 30px 25px 30px;
}

.top-flow__heading {
    margin-bottom: 25px;
    text-align: center;
}

.top-flow__title {
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
}

.top-flow__title span {
    color: #e8ff2f;
}

.top-flow__panel {
    padding: 30px 30px;
    border-radius: 25px;
    background: #ffffff;
}

.top-flow__panel-title {
    margin-bottom: 20px;
    color: #20273a;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.top-flow__panel-title span {
    color: #4a90ff;
}

.top-flow__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.top-flow__card {
    padding: 25px 30px;
    border-radius: 20px;
    background: #eaf4ff;
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-flow__icon-wrap {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-flow__icon {
    width: 90px;
    height: auto;
    display: block;
}

.top-flow__content {
    min-width: 0;
}

.top-flow__card-title {
    margin-bottom: 10px;
    color: #263449;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
}

.top-flow__card-text {
    color: #37445a;
    font-weight: 400;
    line-height: 1.9;
}

/* Top Voice
/************************************************************/

.top-voice {
    background: #eaf3ff;
}

.top-voice__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 50px 30px 60px;
}

.top-voice__heading {
    margin-bottom: 40px;
    text-align: center;
}

.top-voice__title {
    font-size: 30px;
    font-weight: bold;
}

.top-voice__item {
    display: flex;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    gap: 5%;
}

.top-voice__item-img {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.top-voice__item-text {
    flex: 1;
}

.top-voice__item-text dt {
    color: #3f8cff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.top-voice__item-text dd {
    margin-bottom: 14px;
}

/* Top CV
/************************************************************/

.top-cv {
    background: linear-gradient(135deg, #2f5c99 0%, #315f9c 60%, #274f89 100%);
    overflow: hidden;
}

.top-cv__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 25px 15px 30px;
    text-align: center;
}

.top-cv__title {
    margin-bottom: 60px;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
}

.top-cv__appeal {
    margin-bottom: 10px;
}

.top-cv__appeal img {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.top-cv__lead {
    position: relative;
    margin-bottom: 20px;
    color: #eef5ff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
}

.top-cv__appeal-img {
    position: absolute;
    top: -40px;
    left: 650px;
    width: 80px;
}

.top-cv__button {
    display: inline-block;
    min-width: 300px;
    padding: 15px 35px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f55d8f 0%, #ff8c2f 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 10px 20px rgba(16, 26, 55, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-cv__button::after {
    content: "\2192";
    margin-left: 0.4em;
}

.top-cv__button:hover,
.top-cv__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(16, 26, 55, 0.25);
}

/* Top Company
/************************************************************/

.top-company {
    background: #15254d;
}

.top-company__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 50px 25px 40px;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.top-company__title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.5;
}

.top-company__table {
    width: 100%;
    border-collapse: collapse;
}

.top-company__table tr {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.top-company__table tbody tr:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.top-company__table th,
.top-company__table td {
    padding: 18px 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
    vertical-align: top;
}

.top-company__table th {
    width: 190px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
}

.site-footer {
    background: #0c1533;
}

.site-footer__copy {
    padding: 20px 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .header__inner {
        padding: 15px 20px;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header__nav {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .header__menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px 30px;
    }

    .top-mv__inner {
        padding: 45px 30px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .top-mv__content,
    .top-mv__visual {
        flex-basis: auto;
        width: 100%;
    }

    .top-mv__content {
        padding-bottom: 0;
    }

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

    .top-mv__visual {
        justify-content: center;
    }

    .top-worries__inner {
        padding: 40px 30px 0;
    }

    .top-worries__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .top-worries__arrow {
        font-size: 40px;
        transform: rotate(90deg);
    }

    .top-worries__solution {
        margin-top: 30px;
        padding-top: 40px;
    }

    .top-merit__inner {
        padding: 50px 30px 60px;
    }

    .top-merit__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 25px;
    }

    .top-menu__inner {
        padding: 50px 30px 60px;
    }

    .top-menu__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .top-reason__inner {
        padding: 50px 30px 60px;
    }

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

    .top-reason__item--reverse .top-reason__visual {
        order: 2;
    }

    .top-reason__item--reverse .top-reason__content {
        order: 1;
    }

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

    .top-flow__card {
        padding: 25px 20px;
    }

    .top-cv__inner {
        padding: 30px 20px 35px;
    }

    .top-company__inner {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 45px 25px 35px;
    }

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

@media screen and (max-width: 640px) {
    body.menu-open {
        overflow: hidden;
    }

    body {
        padding-top: 85px;
    }

    .header__inner {
        padding: 15px 15px 20px;
        position: relative;
        justify-content: space-between;
        z-index: 20;
    }

    .header__logo {
        width: 120px;
    }

    .header__brand {
        position: relative;
        z-index: 20;
    }

    .header__toggle {
        display: block;
        position: relative;
        z-index: 20;
    }

    .header__nav {
        display: block;
        position: fixed;
        inset: 0;
        padding: 110px 24px 32px;
        background: #ffffff;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        transform: translateY(-16px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 15;
    }

    .header__tel {
        display: none;
    }

    .header--open .header__nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid #dbe4f0;
    }

    .header__menu a,
    .header__cta,
    .header__cta--mobile {
        font-size: 15px;
    }

    .header__menu li {
        border-bottom: 1px solid #dbe4f0;
    }

    .header__menu a {
        display: block;
        padding: 18px 4px;
    }

    .header__cta {
        display: none;
    }

    .header__cta--mobile {
        display: inline-block;
        min-width: 100%;
        margin-top: 28px;
        padding: 15px 20px;
        text-align: center;
    }

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

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

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

    .top-mv__inner {
        padding: 30px 15px 30px;
        gap: 25px;
    }

    .top-mv__lead {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.6;
    }

    .top-mv__title {
        margin-bottom: 20px;
        font-size: 40px;
        line-height: 1.18;
    }

    .top-mv__subcopy {
        margin-bottom: 10px;
        gap: 10px;
        font-size: 16px;
    }

    .top-mv__subcopy::before,
    .top-mv__subcopy::after {
        font-size: 15px;
    }

    .top-mv__cta {
        min-width: 100%;
        padding: 15px 20px;
        font-size: 20px;
    }

    .top-mv__image {
        width: min(100%, 430px);
    }

    .top-worries__inner {
        padding: 30px 15px 0;
    }

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

    .top-worries__badge {
        min-height: 0;
        margin-bottom: 16px;
        padding: 12px 20px 16px;
        font-size: 14px;
        line-height: 1.5;
    }

    .top-worries__badge::after {
        bottom: -14px;
        border-left-width: 12px;
        border-right-width: 12px;
        border-top-width: 16px;
    }

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

    .top-worries__card-title {
        font-size: 15px;
    }

    .top-worries__list {
        padding: 25px 20px 25px 15px;
    }

    .top-worries__list li {
        padding-left: 30px;
        font-size: 16px;
    }

    .top-worries__arrow {
        font-size: 35px;
    }

    .top-worries__solution {
        padding: 35px 15px 0;
    }

    .top-worries__solution-lead {
        margin-bottom: 5px;
        font-size: 20px;
    }

    .top-worries__solution-title {
        font-size: 20px;
        line-height: 1.7;
    }

    .top-worries__solution-visual {
        margin-top: 10px;
    }

    .top-merit__inner {
        padding: 40px 15px 50px;
    }

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

    .top-merit__title {
        font-size: 25px;
        line-height: 1.6;
    }

    .top-merit__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .top-merit__icon-wrap {
        width: 160px;
        height: 160px;
        margin-bottom: 15px;
    }

    .top-merit__item-title {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .top-merit__text {
        font-size: 16px;
    }

    .top-menu__inner {
        padding: 40px 15px 50px;
    }

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

    .top-menu__title {
        font-size: 25px;
        line-height: 1.6;
    }

    .top-menu__card {
        min-height: 80px;
        padding: 20px 15px;
        border-radius: 20px;
        align-items: flex-start;
        gap: 15px;
    }

    .top-menu__icon-wrap {
        flex-basis: 50px;
    }

    .top-menu__icon {
        max-width: 45px;
        max-height: 45px;
    }

    .top-menu__card-title {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .top-menu__card-text {
        font-size: 16px;
    }

    .top-reason__inner {
        padding: 40px 15px 50px;
    }

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

    .top-reason__title {
        font-size: 25px;
        line-height: 1.6;
    }

    .top-reason__list {
        gap: 30px;
    }

    .top-reason__item,
    .top-reason__item--reverse {
        gap: 25px;
    }

    .top-reason__point {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .top-reason__item-title {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .top-reason__text {
        font-size: 16px;
        line-height: 1.9;
    }

    .top-reason__visual img,
    .top-reason__visual--cost img,
    .top-reason__visual--wide img {
        width: min(100%, 320px);
    }

    .top-flow__inner {
        padding: 30px 15px 30px;
    }

    .top-flow__heading {
        margin-bottom: 20px;
    }

    .top-flow__title {
        font-size: 25px;
        line-height: 1.6;
    }

    .top-flow__panel {
        padding: 25px 15px;
        border-radius: 25px;
    }

    .top-flow__panel-title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .top-flow__list {
        gap: 20px;
    }

    .top-flow__card {
        padding: 20px 15px;
        border-radius: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .top-flow__icon-wrap {
        flex-basis: auto;
    }

    .top-flow__icon {
        width: 80px;
    }

    .top-flow__card-title {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .top-flow__card-text {
        font-size: 16px;
    }

    .top-cv__inner {
        padding: 30px 15px;
    }

    .top-cv__title {
        margin-bottom: 20px;
        font-size: 25px;
        line-height: 1.6;
    }

    .top-cv__appeal {
        margin-bottom: 10px;
    }

    .top-cv__appeal img {
        width: 170px;
    }

    .top-cv__lead {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .top-cv__button {
        min-width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }

    .top-company__inner {
        gap: 20px;
        padding: 40px 15px 30px;
    }

    .top-company__title {
        font-size: 25px;
        line-height: 1.6;
    }

    .top-company__table th,
    .top-company__table td {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        line-height: 1.8;
    }

    .top-company__table td {
        padding-top: 0;
        padding-bottom: 16px;
    }

    .site-footer__copy {
        padding: 20px 15px;
        font-size: 16px;
    }

    .top-voice__inner {
        padding: 30px 15px 30px;
    }

    .top-voice__item {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }
}
