@charset "UTF-8";

/* ========================================
   リセット・基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    line-height: 1.7;
    color: #000000;
    background: #FFFFFF;
}

.lp-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    padding-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ========================================
   共通レイアウト
======================================== */
.header__inner,
.main-message__inner,
.promise__inner,
.manager__inner,
.pricing__inner,
.case-study__inner,
.faq__inner,
.credibility__inner,
.company__inner,
.cta__inner,
.footer__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background: linear-gradient(to right, #203988 0%, #080E22 100%);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__logo-text {
    color: #FAFBFF;
    font-size: 24px;
    font-weight: 700;
}

.header__logo-sub {
    color: #FAFBFF;
    font-size: 16px;
    font-weight: 500;
}

.header__contact {
    background: #F39800;
    padding: 5px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
}

.header__contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: ripple-header 2s infinite;
    z-index: -1;
}

.header__contact::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    animation: ripple-header 2s infinite 0.5s;
    z-index: -1;
}

@keyframes ripple-header {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.header__contact:hover {
    background: #E08900;
}

.header__contact-icon {
    width: 22px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

/* ========================================
   ファーストビュー
======================================== */
.fv {
    position: relative;
    width: 100%;
}

.fv__bg {
    width: 100%;
}

.fv__bg img {
    width: 100%;
    display: block;
}
.fv__man{
	width: 20%;
    position: absolute;
    top: 75%;
    right: 1%;
}
/* ========================================
   メインメッセージ
======================================== */
.main-message {
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.main-message__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.main-message__title {
    text-align: center;
}

.main-message__title-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ 明朝", serif;
    text-align: center;
}

.main-message__title-line {
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ 明朝", serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
}

.main-message__title-line > span {
    display: inline;
}

.main-message__title-highlight {
    color: #203988;
    font-size: 38px;
    font-weight: 700;
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ 明朝", serif;
}

.main-message__badge {
    background: #203988;
    color: #FFFFFF;
    text-align: center;
    padding: 20px 50px;
    border-radius: 100px;
    font-size: 24px;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
}

.main-message__badge-br {
    display: none;
}

.main-message__cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.main-message__card {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-message__card-number {
    font-size: 24px;
    font-weight: 700;
    color: #203988;
    line-height: 1.2em;
    text-align: center;
}

.main-message__card-text {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #000000;
    line-height: 1.6;
}

.main-message__card-image {
    width: 100%;
    align-self: stretch;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.main-message__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.main-message__card-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    text-align:justify;
}

.main-message__bottom {
    background: linear-gradient(to right, #080E22 0%, #203988 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 30px 50px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
}

.main-message__bottom-br,
.main-message__bottom-br2 {
    display: none;
}

/* ========================================
   3つの約束
======================================== */
.promise {
    padding: 80px 0;
    border-radius: 30px;
    position: relative;
    background: #FFFFFF;
    z-index: 2;
}

.promise__inner {
    position: relative;
}

.promise__header {
    text-align: center;
    margin-bottom: 50px;
}

.promise__title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promise__title-text {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ 明朝", serif;
}

.promise__title-number {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promise__title-number-big {
    font-size: 80px;
    font-weight: 700;
    color: #DB0510;
    line-height: 1;
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ 明朝", serif;
}

.promise__title-number-text {
    font-size: 32px;
    font-weight: 700;
    color: #DB0510;
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ 明朝", serif;
}

.promise__items {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.promise__item {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}

.promise__item-image {
    flex-shrink: 0;
}

.promise__item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promise__item-badge {
    background: #000000;
    color: #FFFFFF;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    width: fit-content;
    line-height: 1.25em;
}

.promise__item-label {
    color: #203988;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.4em;
}

.promise__item-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.promise__item-title-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.promise__item-title-line > span {
    display: inline;
}

.promise__item-title-main {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
}

.promise__item-title-highlight {
    font-size: 26px;
    font-weight: 700;
    color: #DB0510;
}

.promise__item-texts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promise__item-text {
    font-size: 18px;
    line-height: 1.25em;
    color: #000000;
    font-weight: 500;
}

.promise__person {
    position: absolute;
    top: -100px;
    right: 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    aspect-ratio: 1 / 1;
    width: 300px;
}

.promise__person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   マネージャーの皆様へ
======================================== */
.manager {
    background-image: url('image/manager-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.manager__inner {
    padding: 0 20px;
}

.manager__box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 8px 8px 4.2px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.manager__header {
    text-align: center;
    margin-bottom: 0;
    width: 100%;
}

.manager__badge {
    background: #000000;
    color: #FFFFFF;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.manager__title {
    font-size: 42px;
    font-weight: 600;
    color: #DB0510;
    line-height: 1.36em;
    margin-bottom: 25px;
}

.manager__title-br,
.manager__title-br2 {
    display: none;
}

.manager__text {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.6em;
    color: #000;
    text-align: left;
    margin: 0;
    width: 100%;
}

.manager__cards {
    display: flex;
    gap: 40px;
    justify-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}

.manager__card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.manager__card-header {
    background: #DB0510;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
	justify-content: center;
}

.manager__card-icon {
    width: 40px;
    height: 40px;
    background: #f4e64b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DB0510;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.manager__card-title {
    font-size: 34px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1em;
}

.manager__card-text {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5em;
    color: #000000;
}

/* ========================================
   料金プラン
======================================== */
.pricing {
    background: #F39800;
    padding: 80px 0;
	background-image: radial-gradient(circle, #ffffff57 1px, transparent 1px);
    background-position: 0 0;
    background-size: 20px 20px;
	position: relative;
}
.customer{
	position: absolute;
    bottom: 0;
    width: 29%;
    right: -1px;
    max-width: 450px;
}
.pricing__header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing__title {
    font-size: 45px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.448em;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.pricing__plans {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 60px;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
}

.pricing__plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    border-bottom: 1px solid #000000;
}

.pricing__plan:last-child {
    border-bottom: none;
}

.pricing__plan-label {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    line-height: 1.333em;
}

.pricing__plan-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing__plan-text {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    line-height: 1em;
}

.pricing__plan-number {
    font-size: 52px;
    font-weight: 700;
    color: #DB0510;
    line-height: 0.5em;
}

.pricing__plan-unit {
    font-size: 26px;
    font-weight: 700;
    color: #DB0510;
    line-height: 1em;
}

.pricing__note {
    padding: 40px;
    border-radius: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing__note-badge {
    background: #020202;
    color: #FFFFFF;
    display: inline-block;
    padding: 20px 40px;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.pricing__note-text {
    font-size: 22px;
    font-weight: 700;
    width: 70%;
    margin: 0 auto;
    line-height: 1.7;
    color: #000;
    text-align: center;
    display: block;
}

/* ========================================
   導入事例
======================================== */
.case-study {
    background: #203988;
    padding: 100px 0;
	background-image: radial-gradient(circle, #ffffff1f 1px, transparent 1px);
    background-position: 0 0;
    background-size: 20px 20px;
}

.case-study__header {
    text-align: center;
    margin-bottom: 60px;
}

.case-study__badge {
    color: #FED800;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.2em;
    border-bottom: 1px solid #FED800;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.case-study__title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
}

.case-study__title-br {
    display: none;
}

.case-study__item {
    margin-bottom: 60px;
}

.case-study__item-title {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 700;
    border-left: 10px solid #FED800;
    padding-left: 30px;
    margin-bottom: 30px;
}

.case-study__item-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.case-study__arrow {
    display: none;
}

.case-study__item-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-study__item-box--after {
    background: #FED800;
}

.case-study__item-heading {
    font-size: 28px;
    font-weight: 700;
    color: #203988;
    text-align: center;
    margin-bottom: 25px;
    line-height: 0.9;
}

.case-study__item-heading--after {
    font-size: 26px;
    color: #203988;
    line-height: 0.7;
}

.case-study__item-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-study__item-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

.case-study__item-result {
    font-size: 30px;
    font-weight: 700;
    color: #DB0510;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 30px;
}

.case-study__item-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.case-study__item-stat {
    font-size: 22px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1;
    text-align: center;
}

.case-study__item-stat--highlight {
    font-size: 30px;
    color: #DB0510;
}

.case-study__item-reduction {
    margin-top: 30px;
    margin-bottom: 30px;
}

.case-study__item-reduction-title {
    font-size: 24px;
    font-weight: 700;
    color: #203988;
    text-align: center;
    margin-bottom: 20px;
}

.case-study__item-reduction-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.case-study__item-reduction-stat {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
}

.case-study__item-reduction-text {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
}

.case-study__item-comment {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
}

.case-study__button-wrapper {
    text-align: center;
    margin-top: 60px;
}

.case-study__button {
    background: #079A40;
    color: #FFFFFF;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.286em;
    padding: 15px 100px;
    border-radius: 100px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.case-study__button:hover {
    background: #067A33;
}

/* ========================================
   FAQ
======================================== */
.faq {
    background: #FED800;
    padding: 100px 0;
	background-image: radial-gradient(circle, #ffffffab 1px, transparent 1px);
    background-position: 0 0;
    background-size: 20px 20px;
}

.faq__title {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: #203988;
}
.faq__subtitle{
	font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #212121;
    margin-bottom: 50px;
}
.faq__content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq__item {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    background: #203988;
    color: #FFFFFF;
    transition: background 0.3s ease;
}

.faq__question:hover {
    background: #2d4ca8;
}

.faq__question-mark {
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq__question-text {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
}

.faq__icon {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
    flex-shrink: 0;
    font-size: 0;
    color: transparent;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    transition: transform 0.3s ease;
}

.faq__icon::before {
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__item.is-open .faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
    background: #FFFFFF;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__item.is-open .faq__answer {
    max-height: 500px;
}

.faq__answer-inner {
    padding: 30px;
}

.faq__answer-text {
    font-size: 18px;
    line-height: 1.9;
    color: #000000;
}

/* ========================================
   CTA
======================================== */
.cta {
    background: #203988;
    background-image: url('image/cta-person.jpg');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    min-height: 600px;
}

.cta__inner {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: stretch;
    flex-wrap: wrap;
}

.cta__content {
    flex: 1;
    min-width: 400px;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
}

.cta__badge {
    color: #FED800;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.448em;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 20px;
    text-align: left;
    width: 100%;
}

.cta__text {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.448em;
    text-align: left;
}

.cta__button {
    background: #079A40;
    color: #FFFFFF;
    padding: 25px 60px;
    border-radius: 100px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.448em;
    transition: background 0.3s ease;
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite;
    z-index: -1;
}

.cta__button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite 0.5s;
    z-index: -1;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

.cta__button:hover {
    background: #067A33;
}

.cta__note {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.448em;
    text-align: left;
}

/* ========================================
   東証スタンダード市場上場企業グループの安定基盤
======================================== */
.credibility {
    background: #FFFFFF;
    padding: 0;
}

.credibility__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}

.credibility__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
}

.credibility__image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.credibility__image {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

.credibility__text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.credibility__title {
    font-size: 38px;
    font-weight: 700;
    color: #203988;
    line-height: 1.362em;
    margin: 0;
}

.credibility__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.667em;
    color: #000000;
    margin: 0;
}

.credibility__badge {
    background: #FED800;
    border-radius: 100px;
    padding: 25px 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.credibility__badge-label {
    font-size: 26px;
    font-weight: 700;
    color: #203988;
    line-height: 1.448em;
}

.credibility__badge-number {
    font-size: 60px;
    font-weight: 700;
    color: #203988;
    line-height: 1.448em;
}

.credibility__badge-unit {
    font-size: 34px;
    font-weight: 700;
    color: #203988;
    line-height: 1.448em;
}

.credibility__company {
    width: 100%;
    margin-top: 60px;
}

.credibility__company-box {
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 40px 10%;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.credibility__company-title {
    font-size: 30px;
    font-weight: 700;
    color: #203988;
    line-height: 1.143em;
    letter-spacing: 0.1em;
    margin: 0;
    border-bottom: 1px solid #000000;
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
}

.credibility__company-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.credibility__company-item {
    display: flex;
    border-bottom: 1px solid #000000;
    padding: 20px 0;
}

.credibility__company-item:last-child {
    border-bottom: none;
}

.credibility__company-label {
    font-size: 24px;
    font-weight: 700;
    color: #203988;
    line-height: 1.429em;
    min-width: 120px;
    flex-shrink: 0;
}

.credibility__company-value {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 1.429em;
    flex: 1;
}

/* ========================================
   会社情報
======================================== */
.company {
    background: #FFFFFF;
    padding: 80px 0;
}

.company__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.company__info {
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.company__info-item {
    display: flex;
    border-bottom: 1px solid #000000;
    padding: 30px 0;
}

.company__info-item:last-child {
    border-bottom: none;
}

.company__info-label {
    font-size: 28px;
    font-weight: 700;
    color: #203988;
    line-height: 1.429em;
    min-width: 200px;
    flex-shrink: 0;
}

.company__info-value {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    line-height: 1.429em;
    flex: 1;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: #000000;
    padding: 60px 0 40px;
    text-align: center;
}

.footer__title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__copyright {
    color: #FFFFFF;
    font-size: 14px;
}

/* ========================================
   レスポンシブ対応
======================================== */

/* 1000px以上 */
@media screen and (min-width: 1001px) {
    .case-study__arrow {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: auto;
        height: auto;
        max-width: 80px;
        max-height: 80px;
    }
}

/* 1000px以下 */
@media screen and (max-width: 1000px) {
    .promise__person {
        display: none;
    }

    .promise__item {
        flex-direction: column;
        align-items: center;
    }

    .promise__item-image {
        text-align: center;
    }
	.promise__item-image2{
		width: 160px;
	}
    .case-study__item-content {
        flex-direction: column;
    }

    .case-study__item-box {
        min-width: auto;
    }

    .main-message__title {
        text-align: center !important;
    }

    .main-message__title-text {
        align-items: center !important;
        text-align: center !important;
        gap: 0 !important;
    }

    .main-message__title-line {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .main-message__card-number {
        font-size: 20px;
        line-height: 1.4em;
    }

    .cta {
        background-image: none;
        padding-right: 0;
    }

    .cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .cta__content {
        max-width: 100% !important;
        min-width: auto !important;
        width: 100% !important;
        padding-right: 0;
        margin-right: 0;
        align-items: center !important;
        text-align: center !important;
        box-sizing: border-box;
    }

    .cta__badge {
        text-align: center !important;
    }

    .cta__text {
        text-align: center !important;
    }

    .cta__note {
        text-align: center !important;
    }
}

/* 768px以下 */
@media screen and (max-width: 768px) {
	.fv__man{
		display: none;
	}
	.customer{
	display: none;
   }
    .main-message {
        padding: 50px 0;
    }

    .main-message__title {
        text-align: center !important;
    }

    .main-message__title-text {
        font-size: 28px;
        align-items: center !important;
        text-align: center !important;
    }

    .main-message__title-line {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .main-message__title-highlight {
        font-size: 30px;
    }

    .main-message__badge {
        font-size: 18px;
        padding: 15px 30px;
    }

    .main-message__cards {
        flex-direction: column;
        align-items: center;
    }

    .main-message__card {
        max-width: 100%;
    }

    .main-message__card-number {
        font-size: 31px;
    }

    .main-message__bottom {
        font-size: 20px;
        padding: 25px 30px;
    }

    .promise {
        padding: 0px 0 60px;
    }

    .promise__title-text {
        font-size: 26px;
    }

    .promise__title-number-big {
        font-size: 60px;
    }

    .promise__title-number-text {
        font-size: 26px;
    }

    .promise__item {
        padding: 30px;
    }

    .promise__item-title-main,
    .promise__item-title-highlight {
        font-size: 22px;
    }

    .promise__item-text {
        font-size: 16px;
    }

    .manager {
        padding: 70px 0;
    }

    .manager__box {
        padding: 40px 30px;
        margin-bottom: 20px;
    }

    .manager__badge {
        font-size: 18px;
        padding: 10px 25px;
    }

    .manager__title {
        font-size: 32px;
    }

    .manager__text {
        font-size: 18px;
    }

    .manager__cards {
        flex-direction: column;
        align-items: stretch;
    }

    .manager__card {
        min-width: auto;
        max-width: 100%;
        flex: none;
    }

    .manager__card-title {
        font-size: 28px;
    }

    .manager__card-text {
        font-size: 22px;
        padding: 30px;
    }

    .pricing {
        padding: 60px 0;
    }

    .pricing__title {
        font-size: 32px;
    }

    .pricing__plan {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        text-align: center;
    }

    .pricing__plan-label {
        font-size: 22px;
    }

    .pricing__plan-content {
        flex-wrap: wrap;
    }

    .pricing__plan-text {
        font-size: 22px;
    }

    .pricing__plan-number {
        font-size: 42px;
    }

    .pricing__plan-unit {
        font-size: 22px;
    }

    .pricing__note-badge {
        font-size: 28px;
        padding: 15px 30px;
    }

    .pricing__note-text {
        font-size: 18px;
    }

    .case-study {
        padding: 30px 0;
    }

    .case-study__badge {
        font-size: 36px;
    }

    .case-study__item-title {
        font-size: 24px;
    }

    .case-study__item-box {
        padding: 30px;
    }

    .case-study__item-heading {
        font-size: 22px;
    }

    .case-study__item-heading--after {
        font-size: 24px;
    }

    .case-study__item-result {
        font-size: 26px;
    }

    .case-study__item-reduction-title {
        font-size: 22px;
    }

    .case-study__item-reduction-stat {
        font-size: 16px;
    }

    .case-study__item-reduction-text {
        font-size: 16px;
    }

    .case-study__item-comment {
        font-size: 16px;
    }

    .case-study__button {
        font-size: 28px;
        padding: 15px 60px;
    }

    .faq {
        padding: 60px 0;
    }

    .faq__title {
        font-size: 36px;
    }

    .faq__question {
        padding: 20px;
    }

    .faq__question-mark {
        font-size: 24px;
    }

    .faq__question-text {
        font-size: 18px;
    }

    .faq__answer-inner {
        padding: 20px;
    }

    .faq__answer-text {
        font-size: 16px;
    }

    .cta {
        padding: 60px 0;
        min-height: 500px;
        background-size: contain;
        background-position: right center;
    }

    .cta__content {
        max-width: 100%;
    }

    .cta__badge {
        font-size: 26px;
    }

    .cta__text {
        font-size: 20px;
    }

    .cta__button {
        padding: 20px 50px;
        font-size: 25px;
    }

    .cta__note {
        font-size: 22px;
    }
	 .credibility__badge {
        padding: 18px 25px;
        flex-direction: column;
        gap: 0;
        width: 100%;
        border-radius: 20px;
    }
}

/* 480px以下 */
@media screen and (max-width: 480px) {
    .lp-wrapper {
        padding-top: 60px;
    }

    .header {
        padding: 10px 0;
    }

    .header__inner {
        padding: 0 15px;
    }

    .header__logo {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        flex-wrap: nowrap;
    }

    .header__logo-text {
        font-size: 4.5vw;
        white-space: nowrap;
    }

    .header__logo-sub {
        font-size: 3.2vw;
        white-space: nowrap;
    }

    .header__contact {
        padding: 10px 20px;
        font-size: 14px;
    }

    .main-message__title {
        text-align: center !important;
    }

    .main-message__title-text {
        font-size: 5.05vw;
        align-items: center !important;
        text-align: center !important;
    }

    .main-message__title-line {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .main-message__title-highlight {
        font-size: 5.41vw;
    }

    .main-message__badge {
        font-size: 16px;
        padding: 12px 25px;
    }

    .main-message__badge-br {
        display: inline;
    }

    .main-message__inner {
        gap: 20px;
    }

    .main-message__cards {
        gap: 20px;
    }

    .main-message__card {
        min-width: auto;
        padding: 30px 20px;
    }

    .main-message__card-number {
        font-size: 24px;
        line-height: 1.4em;
    }

    .main-message__bottom {
        font-size: 18px;
        padding: 20px 25px;
    }

    .main-message__bottom-br,
    .main-message__bottom-br2 {
        display: inline;
    }

    .promise__title-text {
        font-size: 22px;
    }

    .promise__item-label {
        font-size: 28px;
    }

    .promise__items {
        gap: 20px;
    }

    .promise__title-number-big {
        font-size: 50px;
    }

    .promise__title-number-text {
        font-size: 22px;
    }

    .promise__item {
        padding: 25px 20px;
    }

    .promise__item-image img {
        max-width: 150px;
    }

    .promise__item-title-main,
    .promise__item-title-highlight {
        font-size: 20px;
    }

    .promise__item-text {
        font-size: 15px;
    }

    .pricing__title {
        font-size: 28px;
    }

    .pricing__subtitle {
        font-size: 20px;
    }

    .pricing__price-number {
        font-size: 40px;
    }

    .pricing__note {
        padding: 0;
    }

    .manager__box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .manager__cards {
        gap: 20px;
    }

    .pricing__header {
        margin-bottom: 20px;
    }

    .pricing__plans {
        margin-bottom: 20px;
    }

    .case-study__title-br {
        display: inline;
    }

    .case-study__header {
        margin-bottom: 20px;
    }

    .case-study__item {
        margin-bottom: 20px;
    }

    .case-study__button-wrapper {
        margin-top: 20px;
    }

    .case-study__item-content {
        gap: 20px;
    }

    .manager__badge {
        font-size: 16px;
        padding: 8px 20px;
    }

    .manager__title {
        font-size: 26px;
    }

    .manager__title-br,
    .manager__title-br2 {
        display: inline;
    }

    .manager__text {
        font-size: 16px;
    }

    .manager__card-header {
        padding: 20px;
    }

    .manager__card-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .manager__card-title {
        font-size: 24px;
    }

    .manager__card-text {
        font-size: 18px;
        padding: 25px 20px;
    }

    .pricing__title {
        font-size: 26px;
    }

    .pricing__plan {
        padding: 25px 20px;
    }

    .pricing__plan-label {
        font-size: 18px;
    }

    .pricing__plan-text {
        font-size: 18px;
    }

    .pricing__plan-number {
        font-size: 36px;
    }

    .pricing__plan-unit {
        font-size: 18px;
    }

    .pricing__note-badge {
        font-size: 22px;
        padding: 12px 20px;
    }

    .pricing__note-text {
        font-size: 16px;
    }

    .credibility__inner {
        padding: 50px 30px;
    }

    .credibility__content {
        gap: 30px;
    }

    .credibility__image {
        max-width: 67px;
    }

    .credibility__text-wrapper {
        gap: 20px;
    }

    .credibility__title {
        font-size: 28px;
    }

    .credibility__text {
        font-size: 16px;
    }

    .credibility__badge {
        padding: 20px 40px;
        gap: 3px;
    }

    .credibility__badge-label {
        font-size: 22px;
    }

    .credibility__badge-number {
        font-size: 48px;
    }

    .credibility__badge-unit {
        font-size: 28px;
    }

    .credibility__company {
        margin-top: 40px;
    }

    .credibility__company-box {
        padding: 35px;
    }

    .credibility__company-title {
        font-size: 24px;
    }

    .credibility__company-label,
    .credibility__company-value {
        font-size: 20px;
    }

    .company {
        padding: 60px 0;
    }

    .company__info {
        padding: 40px 30px;
    }

    .company__info-item {
        flex-direction: column;
        gap: 15px;
    }

    .company__info-label {
        min-width: auto;
        font-size: 24px;
    }

    .company__info-value {
        font-size: 24px;
    }

    .case-study__badge {
        font-size: 28px;
        letter-spacing: 0.2em;
    }

    .case-study__item-title {
        font-size: 20px;
        padding-left: 20px;
        border-left-width: 6px;
    }

    .case-study__item-box {
        padding: 25px 20px;
        min-width: auto;
    }

    .case-study__item-heading {
        font-size: 20px;
    }

    .case-study__item-heading--after {
        font-size: 22px;
    }

    .case-study__item-result {
        font-size: 22px;
    }

    .case-study__item-reduction-title {
        font-size: 20px;
    }

    .case-study__item-reduction-stat {
        font-size: 15px;
    }

    .case-study__item-reduction-text {
        font-size: 15px;
    }

    .case-study__item-comment {
        font-size: 15px;
    }

    .case-study__button {
        font-size: 24px;
        padding: 12px 40px;
    }

    .case-study__item-stat {
        font-size: 18px;
    }

    .case-study__item-stat--highlight {
        font-size: 24px;
    }

    .case-study__item-comment {
        font-size: 18px;
    }

    .faq__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .faq__question {
        padding: 18px;
    }

    .faq__question-mark {
        font-size: 20px;
    }

    .faq__question-text {
        font-size: 16px;
    }

    .faq__icon {
        width: 25px;
        height: 25px;
    }

    .faq__icon::before,
    .faq__icon::after {
        width: 16px;
    }

    .faq__answer-inner {
        padding: 18px;
    }

    .faq__answer-text {
        font-size: 15px;
    }

    .credibility__inner {
        padding: 40px 20px;
    }

    .credibility__content {
        gap: 25px;
    }

    .credibility__text-wrapper {
        gap: 15px;
    }

    .credibility__title {
        font-size: 24px;
    }

    .credibility__text {
        font-size: 15px;
    }

    .credibility__badge-label {
        font-size: 18px;
    }

    .credibility__badge-number {
        font-size: 40px;
    }

    .credibility__badge-unit {
        font-size: 24px;
    }

    .credibility__company {
        margin-top: 20px;
    }

    .credibility__company-box {
        padding: 25px 20px;
    }

    .credibility__company-title {
        font-size: 20px;
    }

    .credibility__company-label,
    .credibility__company-value {
        font-size: 18px;
    }

    .credibility__company-item {
        flex-direction: column;
        gap: 10px;
    }

    .credibility__company-label {
        min-width: auto;
    }

    .company__info {
        padding: 30px 20px;
    }

    .company__info-label {
        font-size: 20px;
    }

    .company__info-value {
        font-size: 20px;
    }

    .cta__inner {
        gap: 40px;
    }

    .cta {
        min-height: 400px;
        background-size: contain;
        background-position: right center;
    }

    .cta__content {
        min-width: auto;
        max-width: 100%;
    }

    .cta__badge {
        font-size: 22px;
    }

    .cta__text {
        font-size: 16px;
    }

    .cta__button {
        padding: 18px 40px;
        font-size: 4.5vw;
        width: 100%;
        max-width: 350px;
        white-space: nowrap;
    }

    .cta__note {
        font-size: 18px;
    }

    .footer__title {
        font-size: 20px;
    }

    .footer__copyright {
        font-size: 12px;
    }
}



