@charset "utf-8";

/* ------------------------------
 style root
------------------------------ */

:root {
    --white: #fff;
    --coral-red: #FC6956;
    --coral-light: #FC8256;
    --peacock-blue: #32BADB;
    --navy:#3F5A85;
    --light-gray: #F2F2F3;
    --light-beige: #FFF9F6;
    --pale-pink: #FFEEEB;
    --dark-gray: #676E79;
    --gray-mid: #b0b0b1;
    --gradation-orange: linear-gradient(90deg, rgba(252, 105, 86, 1), rgba(255, 173, 114, 1));
    --shadow-default: 4px 4px 10px rgba(0, 0, 0, .1);
}

:root {
    --ff-default:  "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --ff-sans-serif: var(--ff-default);
    --ff-serif: "Noto Serif JP","游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --fz-default: 16px;
    --fw-default: 400;
    --lh-default: 1.5;
    --lts-default: 0.05em;
    --c-default: #3F3F3F;
    --content-section-default: 120px;
    --section-inner-default: 88.888888888%;
    --section-inner-width-default: 1000px;
    --heading-fw-default: 700;
    --heading-lh-default: var(--lh-default);
}

@media (max-width: 767px) {
    :root {
        --lts-default: 0;
        --content-section-default: 80px;
        --section-inner-default: 87.2%;
    }
}

#wrapper {
    margin: 0 auto;
}

/* ------------------------------
 header
------------------------------ */
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.header {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#header-logo {
    width: 240px;
}
#header-logo a {
    display: inline-block;
}
#header-logo a img {
    width: 100%;
}
.header-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    font-weight: 700;
}
@media (max-width: 1024px) {
    .header {
        max-width: 768px;
    }
    #header-logo {
        width: 178px;
    }
    .header-tel {
        font-size: 22px;
    }
    .header-tel img {
        width: 18px;
        height: 18px;
    }
}
/* ------ max-width:1024px_END ------ */
@media (max-width: 767px) {
    #header-logo {
        width: 29.8vw;
    }
    .header {
        max-width: none;
        padding: 5.33vw;
    }
    .header-tel {
        gap: 6px;
        font-size: 16px;
    }
    .header-tel img {
        width: 14px;
        height: 14px;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 footer
------------------------------ */
#footer {
    text-align: center;
    padding-bottom: 1.25rem;
}

.footer {
    padding-top: 2.5rem;
}

#footer-logo a {
    display: inline-block;
    padding-bottom: .625rem;
}

#footer-logo a picture {
    display: block;
    width: 340px;
}

.footer-address {
    margin-bottom: 1.25rem;
}

.footer-nav {
    margin-bottom: 1.25rem;
}

.footer-nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: .625rem;
}

.footer-nav-item a {
    display: block;
    padding: .125rem 1rem;
    border: 1px solid;
}

.footer-copy {
    margin-left: calc(50% - var(--viewWidth) / 2);
    margin-right: calc(50% - var(--viewWidth) / 2);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1024px) {

    #footer {
        padding-bottom: 12rem;
    }
}

@media (max-width: 767px) {
    #footer {
        padding-bottom: 8rem;
    }

    .footer {
        padding-top: 1.875rem;
    }

    #footer-logo a picture {
        width: 228px;
    }

    .footer-nav {
        margin-bottom: 1.875rem;
    }

    .footer-nav-list {
        gap: 0;
    }

    .footer-nav-item a {
        font-size: 14px;
        margin: 0 .3rem;
    }

    .footer-copy {
        font-size: 12px;
    }
}

/* ------------------------------
 totop
------------------------------ */
#totop {
    position: fixed;
    bottom: 0;
    right: 10px;
    z-index: 99;
    text-align: center;
}

#totop a {
    display: inline-block;
}

#totop svg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

@media (max-width:767px) {
    #totop {
        right: 0;
        bottom: 0;
    }
    #totop svg {
        width: 40px;
        height: 40px;
    }
}

/* ------------------------------
 floating-cta
------------------------------ */
.floating-cta {
    position: fixed;
    bottom: 90px;
    right: 0;
    z-index: 100;
}
.floating-cta a {
    position: relative;
    display: block;
}
.floating-cta-bg img {
    display: block;
    width: 231px;
    height: auto;
    -webkit-filter: drop-shadow(var(--shadow-default));
            filter: drop-shadow(var(--shadow-default));
}
.floating-cta-doc {
    position: absolute;
    top: -31px;
    left: -30px;
    width: 97px;
    -webkit-animation: poyopoyo 2s ease-out infinite;
            animation: poyopoyo 2s ease-out infinite;
}
.floating-cta-doc img {
    display: block;
    width: 100%;
    height: auto;
}
@-webkit-keyframes poyopoyo {
    0%, 40%, 60%, 80% { -webkit-transform: scale(1); transform: scale(1); }
    50%, 70% { -webkit-transform: scale(0.95); transform: scale(0.95); }
}
@keyframes poyopoyo {
    0%, 40%, 60%, 80% { -webkit-transform: scale(1); transform: scale(1); }
    50%, 70% { -webkit-transform: scale(0.95); transform: scale(0.95); }
}
@media (max-width:767px) {
    .floating-cta {
        top: auto;
        bottom: 0;
        right: auto;
        left: 0;
        width: calc(100% - 40px);
        -webkit-transform: none;
                transform: none;
    }
    .floating-cta-bg img {
        width: calc(100% - 20px);
        height: auto;
        max-width: 400px;
        margin-right: .625rem;
        margin-bottom: .25rem;
        margin-left: .625rem;
    }
    .floating-cta-doc {
        top: -36px;
        left: 8px;
        width: 98px;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 common
------------------------------ */
#main{
    margin-left: auto;
    margin-right: auto;
    background-color: var(--white)
}

.section-title  {
    margin-bottom: 2.5rem;
}

.sec-lead {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .sec-lead {
        font-size: 16px;
    }
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.fv-form-btn::before,
.cta-form-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
    -webkit-animation: btnShine 5s infinite;
            animation: btnShine 5s infinite;
}

@-webkit-keyframes btnShine {
    0% { left: -75%; }
    20%, 100% { left: 125%; }
}

@keyframes btnShine {
    0% { left: -75%; }
    20%, 100% { left: 125%; }
}

.form-error {
    margin-top: .25rem;
    color: var(--coral-red);
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}
.fv-form-item.is-error .fv-form-input,
.cta-form-item.is-error .cta-form-input {
    border: 1px solid var(--coral-red);
}
/* 注意文（入力は受け付けるが、確認をお願いする場合） */
.form-notice {
    margin-top: .25rem;
    padding-left: .7em;
    border-left: 2px solid var(--peacock-blue);
    color: var(--navy);
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

/* ------------------------------
 FV
------------------------------ */
.fv-wrap {
    position: relative;
}
.fv {
    position: relative;
    background-color: var(--coral-red);
    overflow-x: hidden;
}
.fv-bg {
    display: block;
    width: 1440px;
    height: 686px;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.fv-bg img {
    display: block;
    width: 1440px;
    height: 686px;
    max-width: none;
}
.fv-inner {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    height: 686px;
    padding: 0 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.fv-text img {
    width: 492px;
    height: 489px;
}
.fv-form {
    position: absolute;
    top: 94px;
    right: max(1.25rem, calc((100% - 1280px) / 2 + 1.25rem));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    z-index: 2;
}
.fv-form-box {
    width: min(440px, 44.3vw - 127px);
}
.fv-form-head {
    position: relative;
    z-index: 2;
    margin-bottom: -18px;
    text-align: center;
}
.fv-form-head-sub {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}
.fv-form-head-sub::before,
.fv-form-head-sub::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 26px;
    border-radius: 2px;
    background-color: var(--white);
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.fv-form-head-sub::before {
    margin-right: 1rem;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
}
.fv-form-head-sub::after {
    margin-left: 1rem;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
}
.fv-form-head-ttl {
    display: inline-block;
    width: 304px;
    margin-top: .25rem;
    padding: .5rem 0;
    border: 3px solid var(--coral-red);
    border-radius: 32px;
    background-color: var(--white);
    color: var(--coral-red);
    font-size: 20px;
    font-weight: 700;
}
.fv-form-body {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem 2.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0px 15px rgba(0, 0, 0, .15);
}
.fv-form-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: .625rem;
    text-align: left;
}
.fv-form-label {
    width: 88px;
    -ms-flex-negative: 0;
        flex-shrink: 0;    font-weight: 700;
}
.fv-form-req {
    margin-left: .25rem;
    color: var(--coral-red);
}
.fv-form-input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    height: 40px;
    padding: 0 .75rem;
    border: 1px solid #DCDCDC;
    border-radius: 6px;
    background-color: var(--light-gray);}
.fv-form-radio {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 6px 16px;
}
.fv-form-item-check {
    display: block;
}
.fv-form-item-check .fv-form-label {
    display: block;
    width: auto;
    margin-bottom: .4rem;
}
.fv-form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 4px;
}
.fv-form-check label {
    line-height: 1.2;
    white-space: nowrap;
}
.fv-form-radio label,
.fv-form-check label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
}
.fv-form-item-privacy {
    display: block;
    margin-top: .75rem;
}
.fv-form-item-privacy label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
}
.fv-form-item-privacy a {
    color: var(--navy);
    text-decoration: underline;
}
.fv-form-btn {
    width: 100%;
    height: 56px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 8px;
    background-image: var(--gradation-orange);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: var(--lts-default);
}
.fv-form-btn-txt {
    display: inline-block;
    padding-right: calc(14px + .5rem);
    background-image: url(../images/fv_pic01.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 14px 17px;
}
@media (max-width: 1024px) {
    .fv-bg {
        width: 100%;
        height: 585px;
        margin-left: 0;
        -webkit-transform: none;
                transform: none;
        overflow: hidden;
    }
    .fv-bg img {
        width: 1024px;
        height: 585px;
        margin-left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    .fv-inner {
        display: none;
    }
    .fv-form {
        position: static;
        height: auto;
        right: auto;
        display: block;
        padding: 2.5rem 1.25rem;
        background-color: var(--light-beige);
    }
    .fv-form-head-sub {
        color: var(--c-default);
    }
    .fv-form-head-sub::before,
    .fv-form-head-sub::after {
        background-color: var(--c-default);
    }
    .fv-form-box {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
/* ------ max-width:1024px_END ------ */
@media (max-width: 767px) {
    .fv-bg {
        height: auto;
        overflow: visible;
    }
    .fv-bg img {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin-left: 0;
        -webkit-transform: none;
                transform: none;
    }
    .fv-form {
        padding: 2rem 1.25rem;
    }
    .fv-form-head-sub {
        font-size: 16px;
    }
    .fv-form-head-ttl {
        width: auto;
        padding: .5rem 20px;
        font-size: 20px;
    }
    .fv-form-body {
        padding: 1.25rem 1.5rem;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 logo
------------------------------ */

.logo.content-section {
    padding: 0;
}



.logo-marquee-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    position: relative;
    padding: 2.5rem 0;
    background-color: var(--navy);
}

.logo-marquee-wrap.is-sp {
    display: none;
}

.logo-marquee-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 22px;
}

@-webkit-keyframes marquee {
    from { -webkit-transform: translateX(0); transform: translateX(0); }
    to { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes marquee {
    from { -webkit-transform: translateX(0); transform: translateX(0); }
    to { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

.logo-marquee-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.logo-marquee-item img {
    display: block;
    width: auto;
    height: 76px;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .15);
}

@media (max-width:767px) {
    .logo-marquee-wrap {
        padding: 1.25rem 0;
    }

    .logo-marquee-list {
        gap: 10px;
    }

    .logo-marquee-item img {
        height: 38px;
    }

    .logo-marquee-wrap.is-pc {
        display: none;
    }
    .logo-marquee-wrap.is-sp {
        display: block;
    }

    .logo-marquee-wrap.is-sp .logo-marquee-list + .logo-marquee-list {
        margin-top: .625rem;
    }

    .offset-bottom {
        margin-left: -75px;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 problem
------------------------------ */
.problem.content-section {
    background-image: url(../images/problem_bg01.webp);
    background-size: cover;
    background-position: center;
}
.problem-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 16px;
}
.problem-item {
    width: calc((100% - 32px) / 3);
    padding: 1.25rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-default);
}
.problem-icon {
    width: 70px;
    height: 70px;
}
.problem-item-title {
    margin-top: 1rem;
    margin-bottom: .25rem;
    color: var(--coral-red);
    font-size: 20px;
    font-weight: 700;
}
.problem-item-text {    line-height: 1.7;
}
.problem-lead {
    margin-top: 2.5rem;
    line-height: 1.9;
}
.problem-lead .color-coral {
    color: var(--coral-red);
}
@media (max-width: 767px) {
    .problem-list {
        gap: 10px;
    }
    .problem-item {
        width: calc((100% - 10px) / 2);
        padding: 1.35rem .625rem;
    }
    .problem-icon {
        width: 50px;
        height: 50px;
    }
    .problem-item-title {
        margin-top: .625rem;
        margin-bottom: .375rem;
        font-size: 16px;
    }
    .problem-item-text {
        text-align: left;
    }
    .problem-lead {
        text-align: left;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 reason
------------------------------ */
.reason.content-section {
    background-color: var(--light-beige);
}
.reason .section-inner {
    width: 1280px;
}
.reason-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 40px;
}
.reason-item {
    position: relative;
    width: calc((100% - 80px) / 3);
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-default);
}
.reason-num {
    position: absolute;
    top: -24px;
    left: 14px;
    z-index: 2;
    color: var(--coral-red);
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    text-shadow: 2px 2px 0 #fff;
}
.reason-pht {
    display: block;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.reason-pht img {
    display: block;
    width: 100%;
    height: auto;
}
.reason-body {
    padding: 1.25rem .625rem;
}
.reason-item-title {
    margin-bottom: .25rem;
    color: var(--coral-red);
    font-size: 22px;
    font-weight: 700;
}
.reason-item-text {    line-height: 1.8;
    text-align: left;
}
@media (max-width: 1024px) {
    .reason-list {
        gap: 20px;
    }
    .reason-item {
        width: calc((100% - 40px) / 3);
    }
}
/* ------ max-width:1024px_END ------ */
@media (max-width: 767px) {
    .reason-item {
        width: 100%;
    }
    .reason-list {
        gap: 40px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .reason-num {
        font-size: 54px;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 tech
------------------------------ */
.tech.content-section {
    background-color: var(--coral-red);
    color: var(--white);
}
.tech .section-title {
    margin-bottom: 5rem;
}
.tech-compare {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 20px;
}
.tech-compare-card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--white);
    box-shadow: var(--shadow-default);
    text-align: left;
}
.tech-compare-label {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 38px;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .1em;
}
.tech-compare-other .tech-compare-label {
    background-color: var(--dark-gray);
}
.tech-compare-azurite .tech-compare-label {
    background-color: var(--peacock-blue);
}
.tech-compare-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 1.25rem;
    color: var(--c-default);
    text-align: center;
}
.tech-compare-head {
    display: inline-block;
    margin-bottom: .625rem;
    margin-left: auto;
    margin-right: auto;
    padding: .375rem 2.5rem;
    border: 1px solid;
    text-align: center;    font-weight: 700;
}
.tech-compare-head span {
    display: inline-block;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 22px auto;
}
.tech-compare-head-other {
    border-color: var(--dark-gray);
    color: var(--dark-gray);
}
.tech-compare-head-other span {
    background-image: url(../images/tech_pic04.svg);
}
.tech-compare-head-azurite {
    border-color: var(--peacock-blue);
    color: var(--peacock-blue);
}
.tech-compare-head-azurite span {
    background-image: url(../images/tech_pic05.svg);
}
.tech-compare-list li {
    padding-left: 22px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 14px 14px;    line-height: 1.5;
    letter-spacing: .02em;
    text-align: left;
}
.tech-compare-list li + li {
    margin-top: .625rem;
}
.tech-compare-list-other li {
    background-image: url(../images/tech_pic02.svg);
}
.tech-compare-list-azurite li {
    background-image: url(../images/tech_pic03.svg);
}
.tech-compare-mid {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}
.tech-reduce {
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
}
.tech-reduce-num {
    font-family: "Roboto", sans-serif;
    font-size: 44px;
}
.tech-arrow img {
    display: block;
    width: 116px;
    height: 48px;
}
.tech-lead {
    margin-top: 5rem;
    margin-bottom: 2.5rem;
    font-size: 28px;
    font-weight: 500;
}
.tech-feature-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 24px;
}
.tech-feature-item {
    width: calc((100% - 48px) / 3);
}
.tech-feature-label {
    display: inline-block;
    margin-bottom: .625rem;
    padding: .5rem 2rem;
    background-color: var(--white);
    -webkit-clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
            clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
    color: var(--c-default);
    font-size: 18px;
    font-weight: 700;
}
.tech-feature-label b {
    color: var(--peacock-blue);
}
.tech-feature-img img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-default);
}
.tech-feature-text {
    margin-top: .625rem;    line-height: 1.7;
    text-align: left;
}
@media (max-width: 1024px) {
    .tech-compare {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .tech-compare-mid {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }
    .tech-arrow img {
        width: 30px;
        height: 73px;
    }
}
/* ------ max-width:1024px_END ------ */
@media (max-width: 767px) {
    .tech .section-title {
        margin-bottom: 2.5rem;
    }
    .tech-compare-list li {
        line-height: 1.2;
        background-position: 0 3px;
    }
    .tech-lead {
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
        font-size: 18px;
    }
    .tech-feature-list {
        gap: 32px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .tech-feature-item {
        width: 100%;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 service
------------------------------ */
.service.content-section {
    background-color: var(--light-beige);
}
.service-lead {
    margin-bottom: 2.5rem;
    text-align: center;
}
.service-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
}
.service-item {
    width: calc((100% - 60px) / 4);
    padding: 1.5rem 1rem;
    border: 1px solid var(--coral-red);
    border-radius: 4px;
    background-color: var(--white);
    box-shadow: 4px 4px 0 var(--coral-red);
    text-align: center;
}
.service-icon {
    display: block;
    width: auto;
    height: 32px;
    margin-left: auto;
    margin-right: auto;
}
.service-item-title {
    margin-top: .5rem;
    color: var(--coral-red);
    font-size: 18px;
    font-weight: 700;
}
.service-item-text {
    margin-top: .125rem;}
@media (max-width: 767px) {
    .service-list {
        gap: 10px;
    }
    .service-item {
        width: calc((100% - 10px) / 2);
        padding: 1.5rem .625rem;
        box-shadow: 2px 2px 0 var(--coral-red);
    }
    .service-item-title {
        font-size: 16px;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 case
------------------------------ */
.case-lead {
    margin-bottom: 2.5rem;
    text-align: center;
}
.case-emblem {
    margin-bottom: 2.5rem;
    text-align: center;
}
.case-emblem img {
    width: 701px;
    max-width: 100%;
    height: auto;
}
.case-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 40px;
}
.case-item {
    width: calc((100% - 40px) / 2);
    overflow: hidden;
    border: 2px solid var(--coral-red);
    background-color: var(--white);
    box-shadow: var(--shadow-default);
}
.case-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--pale-pink);
}
.case-pht {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 181px;
}
.case-pht img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left top;
       object-position: left top;
}
.case-head-info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
    padding: 1rem 1.25rem;
}
.case-item-title {
    font-size: 20px;
    font-weight: 700;
}
.case-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
}
.case-tag {
    padding: .125rem .75rem;
    border-radius: 100px;
    background-color: var(--white);    font-weight: 500;
}
.case-body {
    padding: 1.25rem;
}
.case-result {
    text-align: center;
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
}
.case-result::before,
.case-result::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 20px;
    background-color: var(--navy);
    vertical-align: middle;
    position: relative;
    top: -2px;
}
.case-result::before {
    margin-right: 12px;
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
}
.case-result::after {
    margin-left: 12px;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
}
.case-result-num {
    font-family: "Roboto", sans-serif;
    font-size: 28px;
}
.case-stats {
    margin-top: 1.25rem;
}
.case-stat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}
.case-stat + .case-stat {
    margin-top: .625rem;
}
.case-stat-label {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 130px;
    padding: .25rem .75rem;
    background-color: var(--pale-pink);
    text-align: left;
    -webkit-clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.case-stat-val {
    font-weight: 700;
}
.case-stat-val b {
    color: var(--coral-red);
}
.case-num {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
}
.case-stat-arrow {
    display: inline-block;
    width: 28px;
    height: auto;
    margin: 0 .5rem;
    vertical-align: middle;
}
.case-change-after {
    padding: .25rem .625rem;
    background-color: var(--pale-pink);
    color: var(--coral-red);
    font-size: 18px;
    font-weight: 500;
}
.case-spec {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--coral-red);
}
.case-spec-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
}
.case-spec-row + .case-spec-row {
    margin-top: .625rem;
}
.case-spec-label {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 88px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: .25rem;
    border-radius: 4px;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    text-align: center;
    font-size: 14px;
}
.case-spec-val {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}
.case-list .slick-prev,
.case-list .slick-next {
    width: 40px;
    height: 40px;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 40px;
    -webkit-filter: drop-shadow(var(--shadow-default));
            filter: drop-shadow(var(--shadow-default));
}
.case-list .slick-prev {
    left: 10px;
    background-image: url(../images/case_pic03.svg);
}
.case-list .slick-next {
    right: 10px;
    background-image: url(../images/case_pic04.svg);
}
.case-list .slick-prev::before,
.case-list .slick-next::before {
    display: none;
}
.case-list .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.case-list .slick-slide {
    height: auto;
}
@media (max-width: 1024px) {
    .case-list {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
    }
    .case-item {
        width: 340px;
        max-width: 85vw;
        margin-left: 10px;
        margin-right: 10px;
    }
    .case-pht {
        width: 110px;
        height: 98px;
    }
    .case-head-info {
        padding: 1rem .625rem;
    }
    .case-tags {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        gap: 4px;
    }
    .case-item-title {
        font-size: 18px;
    }
    .case-tag {
        font-size: 14px;
        padding: 0 .625rem;
    }
    .case-body {
        padding: 1.25rem .625rem;
    }
    .case-stats {
        margin-top: .625rem;
    }
    .case-stat {
        gap: 4px;
    }
    .case-stat + .case-stat {
        margin-top: .375rem;
    }
    .case-stat-label {
        width: 100px;
        padding: .25rem;
        font-size: 14px;
    }
    .case-stat-val {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 14px;
        white-space: nowrap;
    }
    .case-num {
        font-size: 18px;
    }
    .case-stat-arrow {
        width: 23px;
        margin: 0 .375rem;
    }
    .case-change-before {
        font-size: 14px;
    }
    .case-change-after {
        font-size: 14px;
    }
    .case-spec {
        margin-top: .625rem;
        padding-top: .625rem;
    }
    .case-spec-val {
        text-align: left;
    }
    .case-spec-row:nth-child(2) .case-spec-val {
        text-align: center;
    }
}
/* ------ max-width:1024px_END ------ */
@media (max-width: 767px) {
    .case-item {
        width: 300px;
        margin-left: 8px;
        margin-right: 8px;
    }
    .case-spec-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 6px;
    }
    .case-spec-label {
        width: 100%;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 compare
------------------------------ */
.compare.content-section {
    background-color: var(--coral-red);
}
.compare .section-inner {
    max-width: 94%;
}
.compare-box {
    padding: 3.75rem 2.5rem 0 2.5rem;
    border-radius: 8px;
    background-color: var(--white);
}
.compare-table img {
    display: block;
    width: 100%;
    height: auto;
}
.compare-recommend {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
        "woman txt"
        "woman check";
    align-items: center;
    justify-content: center;
    gap: 16px 24px;
    margin-top: 3.75rem;
}
.compare-recommend-pht {
    grid-area: woman;
    -ms-flex-item-align: end;
        align-self: end;
    display: block;
    width: 221px;
}
.compare-recommend-pht img {
    display: block;
    width: 100%;
    height: auto;
}
.compare-recommend-txt {
    grid-area: txt;
    text-align: left;
}
.compare-recommend-sub {
    font-size: 22px;
    font-weight: 700;
}
.compare-recommend-ttl {
    margin-top: .25rem;
    font-size: 32px;
    font-weight: 700;
}
.txt-dots span {
    position: relative;
}
.txt-dots span::before {
    content: "・";
    position: absolute;
    top: -16px;
    left: 50%;
    font-size: 22px;
    color: var(--peacock-blue);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.compare-check {
    grid-area: check;
    margin-bottom: 2.5rem;
}
.compare-check li {
    padding-left: calc(22px + .5rem);
    background-image: url(../images/compare_pic02.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 22px 22px;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
}
.compare-check li + li {
    margin-top: .75rem;
}
@media (max-width: 767px) {
    .compare-box {
        padding: 1.25rem .625rem;
    }
    .compare-table {
        display: block;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .compare-recommend {
        grid-template-areas:
            "woman txt"
            "check check";
        gap: 10px 0;
        margin-top: 1.25rem;
    }
    .compare-recommend-pht {
        width: 107px;
    }
    .compare-recommend-txt {
        margin-left: -1rem;
    }
    .compare-recommend-sub {
        font-size: 16px;
    }
    .compare-recommend-ttl {
        font-size: 24px;
    }
    .txt-dots span::before {
        top: -12px;
        font-size: 18px;
    }
    .compare-check {
        margin-bottom: 0;
    }
    .compare-check li {
        padding-left: calc(18px + .5rem);
        background-size: 18px 18px;
        font-size: 16px;
    }
    .compare-check li + li {
        margin-top: .625rem;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 price
------------------------------ */
.price.content-section {
    background-color: var(--light-beige);
}
.price-box {
    padding: 3.75rem 2.5rem;
    border: 2px solid var(--coral-red);
    border-radius: 8px;
    background-color: var(--white);
    text-align: center;
}
.price .section-title {
    margin-bottom: 1.875rem;
}
.price-amount {
    color: var(--coral-red);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 3px 3px 0 var(--white), -3px 3px 0 var(--white), 3px -3px 0 var(--white), -3px -3px 0 var(--white), 6px 6px 0 var(--gray-mid);
}
.price-amount-num {
    font-family: "Roboto", sans-serif;
    font-size: 88px;
}
.price-note {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}
.price-plus {
    display: block;
    width: 34px;
    height: 34px;
    margin: 1.875rem auto;
}
.price-option-ttl {
    font-size: 22px;
    font-weight: 700;
}
.price-option-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-top: .625rem;
}
.price-option-item {
    padding: .625rem 2.4rem .625rem 3.65rem;
    background-color: var(--navy);
    background-repeat: no-repeat;
    background-position: left 28px center;
    background-size: auto 22px;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    -webkit-clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
            clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}
.price-option-ats {
    background-image: url(../images/price_pic01.svg);
}
.price-option-doc {
    background-image: url(../images/price_pic02.svg);
}
.price-option-report {
    background-image: url(../images/price_pic03.svg);
}
.price-dl {
    display: block;
    max-width: 600px;
    margin: 1.875rem auto 0;
}
.price-dl img {
    display: block;
    width: 100%;
    height: auto;
}
/* ------------------------------
 campaign（流用パーツ）
------------------------------ */
.campaign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    max-width: 800px;
    margin: 2.5rem auto 0;
    overflow: hidden;
    background-image: url(../images/price_bg01.webp);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-default);
}
.campaign-left {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 420px;
    padding: 2.5rem 6rem 2.5rem 1.5rem;
    background-image: var(--gradation-orange);
    color: var(--white);
    text-align: center;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 90px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 90px) 100%, 0 100%);
}
.campaign-bubble {
    position: absolute;
    top: 8px;
    left: 8px;
    display: block;
    width: 208px;
}
.campaign-bubble img {
    display: block;
    width: 100%;
    height: auto;
}
.campaign-ttl {
    margin-top: 1rem;
    font-size: 34px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: .2rem;
}
.campaign-ttl .txt-dots span::before {
    left: 65%;
    color: var(--white);
}
.campaign-right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .5rem;
    margin-left: -2rem;
    padding: 2.5rem 1.5rem 2.5rem 0;
}
.campaign-fee {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: .5rem;
}
.campaign-fee-head {
    text-align: center;
}
.campaign-fee-tag {
    position: relative;
    display: inline-block;
    margin-bottom: .5rem;
    padding: .25rem 1rem;
    border-radius: 500px;
    background-color: var(--peacock-blue);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}
.campaign-fee-tag::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--peacock-blue);
}
.campaign-fee-label {
    display: block;
    background-image: var(--gradation-orange);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 700;
}
.campaign-fee-num,
.campaign-fee-unit {
    position: relative;
    display: inline-block;
    color: var(--coral-red);
    text-shadow: 3px 3px 0 var(--white), -3px 3px 0 var(--white), 3px -3px 0 var(--white), -3px -3px 0 var(--white), 3px 0 0 var(--white), -3px 0 0 var(--white), 0 3px 0 var(--white), 0 -3px 0 var(--white), 5px 5px 0 var(--gray-mid);
}
.campaign-fee-num {
    font-family: "Roboto", sans-serif;
    font-size: 124px;
    line-height: 0.8;
    text-shadow: 3px 3px 0 var(--white), -3px 3px 0 var(--white), 3px -3px 0 var(--white), -3px -3px 0 var(--white), 3px 0 0 var(--white), -3px 0 0 var(--white), 0 3px 0 var(--white), 0 -3px 0 var(--white), 6px 6px 0 var(--gray-mid);
}
.campaign-fee-unit {
    font-size: 24px;
    font-weight: 700;
}
.campaign-fee-num::after,
.campaign-fee-unit::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: var(--gradation-orange);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
}
.campaign-period {
    text-align: center;
}
.campaign-period-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    margin-bottom: .25rem;
    font-size: 16px;
}
.campaign-period-label::before,
.campaign-period-label::after {
    content: "";
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 1px;
    background-color: currentColor;
}
.campaign-period-date {
    padding: 0 30px .5rem;
    border-bottom: 1px solid;
    font-size: 18px;
    letter-spacing: .1em;
}
@media (max-width: 1024px) {
    .campaign-left {
        width: 380px;
    }
}
/* ------ max-width:1024px_END ------ */
@media (max-width: 767px) {
    .price-box {
        padding: 2.5rem .625rem;
    }
    .price .section-title {
        margin-bottom: 1.25rem;
    }
    .price-plus {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .price-dl {
        max-width: 300px;
        margin-top: 1.25rem;
    }
    .price-amount {
        font-size: 24px;
    }
    .price-amount-num {
        font-size: 60px;
    }
    .price-note {
        font-size: 14px;
    }
    .price-option-ttl {
        font-size: 18px;
    }
    .price-option-list {
        gap: 0;
    }
    .price-option-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: .625rem 1.25rem;
        background-image: none;
        font-size: 14px;
        text-align: center;
    }
    .price-option-item::before {
        content: "";
        width: 26px;
        height: 18px;
        margin-bottom: .25rem;
        background-position: center;
        background-size: auto 18px;
        background-repeat: no-repeat;
    }
    .price-option-ats::before {
        background-image: url(../images/price_pic01.svg);
    }
    .price-option-doc::before {
        background-image: url(../images/price_pic02.svg);
    }
    .price-option-report::before {
        background-image: url(../images/price_pic03.svg);
    }
    .price-option-ats {
        margin-right: -.3125rem;
    }
    .price-option-report {
        margin-left: -.3125rem;
    }
    .campaign {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        max-width: 500px;
    }
    .campaign-left {
        width: 100%;
        padding: 2.5rem .625rem;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
                clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
    }
    .campaign-right {
        margin-left: 0;
        padding: 1.25rem .625rem;
    }
    .campaign-bubble {
        left: -6px;
        width: 154px;
    }
    .campaign-ttl {
        font-size: 22px;
    }
    .campaign-fee-tag {
        font-size: 16px;
    }
    .campaign-fee-label {
        font-size: 24px;
    }
    .campaign-fee-num {
        font-size: 94px;
    }
    .campaign-period-date {
        font-size: 16px;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 team
------------------------------ */
.team.content-section {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(54%, var(--white)), color-stop(54%, var(--coral-red)));
    background: linear-gradient(to bottom, var(--white) 54%, var(--coral-red) 54%);
}
.team .section-title {
    margin-bottom: 3.75rem;
}
.team-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.team-main-pht {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 44%;
}
.team-main-pht img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-filter: drop-shadow(var(--shadow-default));
            filter: drop-shadow(var(--shadow-default));
}
.team-card {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 3.75rem;
    margin-left: -1.25rem;
    padding: 2.5rem;
    background-color: var(--light-beige);
    box-shadow: var(--shadow-default);
    text-align: left;
}
.team-merit-item + .team-merit-item {
    margin-top: 2.5rem;
}
.team-merit-ttl {
    padding-left: calc(24px + .625rem);
    background-image: url(../images/compare_pic02.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 24px 24px;
    font-size: 20px;
    font-weight: 700;
}
.team-merit-text {
    margin-top: .5rem;
    padding-left: calc(24px + .625rem);
    line-height: 1.7;
    text-align: left;
}
.team-member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-top: 3.75rem;
}
.team-member-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-default);
}
.team-member-item img {
    display: block;
    width: 100%;
    height: auto;
}
.team-member-label {
    padding: .5rem;
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
    font-weight: 700;
}
@media (max-width: 767px) {
    .team .section-title {
        margin-bottom: 2.5rem;
    }
    .team.content-section {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(29%, var(--white)), color-stop(29%, var(--coral-red)));
        background: linear-gradient(to bottom, var(--white) 29%, var(--coral-red) 29%);
    }
    .team-main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .team-main-pht {
        width: 90%;
    }
    .team-card {
        margin-left: 1.625rem;
        margin-top: -1.25rem;
        padding: 1.25rem .625rem;
    }
    .team-merit-ttl {
        padding-left: calc(18px + .5rem);
        background-size: 18px 18px;
        font-size: 16px;
    }
    .team-merit-text {
        margin-top: .25rem;
        padding-left: calc(18px + .5rem);
    }
    .team-merit-item + .team-merit-item {
        margin-top: 1.25rem;
    }
    .team-member {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 10px;
        max-width: 500px;
        margin-top: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    .team-member-item {
        -webkit-box-flex: 0;
            -ms-flex: none;
                flex: none;
        width: calc((100% - 10px) / 2);
    }
    .team-member-label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        min-height: 64px;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 メッセージ
------------------------------ */

.message.content-section {
    background-color: var(--light-beige);
}
.message-lead {
    line-height: 1.9;
    font-size: 18px;
}
.message-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2.5rem;
    padding: 2.5rem;
    border-radius: 16px;
    background-color: var(--white);
    box-shadow: var(--shadow-default);
    text-align: left;
}
.message-pht {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 234px;
    margin-right: 2.5rem;
}
.message-pht img {
    display: block;
    width: 100%;
    height: auto;
}
.message-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.message-company {
    font-size: 20px;
    font-weight: 700;
}
.message-role {
    margin-left: .625rem;
    font-size: 16px;
    font-weight: 400;
}
.message-name {
    margin-top: .25rem;
    font-size: 26px;
    font-weight: 700;
}
.message-name-en {
    margin-left: .625rem;
    font-size: 16px;
    font-weight: 400;
}
.message-profile {
    margin-top: 1.25rem;
    line-height: 1.8;
}
.message-mission {
    margin-top: 1.25rem;
    padding: .625rem 0 .625rem 1rem;
    border-left: 3px solid var(--coral-red);
}
.message-mission-label {
    color: var(--coral-red);
    font-weight: 700;
}
.message-mission-text {
    margin-top: .25rem;
    font-weight: 700;
}

@media (max-width: 767px) {
    .message .section-title {
        margin-bottom: 1.25rem;
    }
    .message-lead {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        font-size: 16px;
    }
    .message-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        max-width: 500px;
        margin-top: 1.25rem;
        margin-left: auto;
        margin-right: auto;
        padding: 1.5rem 1.25rem;
    }
    .message-pht {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.25rem;
    }
    .message-company {
        font-size: 18px;
    }
    .message-role {
        display: block;
        margin-top: .25rem;
        margin-left: 0;
    }
    .message-profile {
        margin-top: .625rem;
    }
    .message-mission {
        margin-top: .625rem;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 FAQ
------------------------------ */

.faq.content-section {
    background-color: var(--white);
}

.faq-list > * + * {
    margin-top: 1.25rem;
}

.faq-item {
    overflow: hidden;
    background-color: var(--pale-pink);
}

.faq-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    cursor: pointer;
    background-color: var(--light-beige);
}

.faq-q {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 64px;
    background-color: var(--coral-red);
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.faq-q-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-item-align: center;
        align-self: center;
    padding: 1.125rem 1.25rem;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

.faq-icon {
    width: 16px;
    height: 16px;
    position: relative;
    -ms-flex-item-align: center;
        align-self: center;
    margin-right: 1.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background-color: var(--coral-red);
}

.faq-icon::before {
    width: 3px;
    height: 16px;
    top: 0px;
    left: 7px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq-icon::after {
    width: 16px;
    height: 3px;
    top: 7px;
    left: 0px;
}

.accordion.open .faq-icon::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

.faq-body {
    background-color: var(--white);
}

.faq-body-inner {
    margin: 0 1.5rem;
    padding: 1.25rem 0;
}

.faq-body-text {
    line-height: 1.8;
    text-align: left;
}

@media (max-width:767px) {

    .faq-q {
        width: 50px;
        font-size: 28px;
    }

    .faq-q-text {
        padding: 1rem;
        font-size: 16px;
    }

    .faq-icon {
        margin-right: 1rem;
    }

    .faq-body-inner {
        margin: 0 1rem;
        padding: 1.25rem 0;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 キャンペーン（最終）
------------------------------ */

.campaign-section.content-section {
    padding: 3.75rem 0;
    background-color: var(--light-beige);
}
.campaign-section .campaign {
    margin-top: 0;
}

/* ------------------------------
 最終CTA
------------------------------ */

.cta.content-section {
    background-image: var(--gradation-orange);
}
.cta-head-img img {
    margin-left: auto;
    margin-right: auto;
}
.cta-form-wrap {
    margin-top: 2.5rem;
    position: relative;
    max-width: 680px;
    margin: 2.5rem auto 0;
}
.cta-badge {
    position: absolute;
    top: -28px;
    right: -35px;
    z-index: 2;
    width: 110px;
    height: 110px;
    border: 3px solid var(--coral-red);
    border-radius: 50%;
    background-color: var(--white);
    color: var(--coral-red);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.cta-form {
    padding: 2.5rem 5rem;
    border-radius: 8px;
    background-color: var(--white);
    text-align: left;
}
.cta-form-item + .cta-form-item {
    margin-top: 1.5rem;
}
.cta-form-label {
    display: block;
    margin-bottom: .5rem;
    font-size: 18px;
    font-weight: 700;
}
.cta-form-req {
    margin-left: .25rem;
    color: var(--coral-red);
}
.cta-form-input {
    width: 100%;
    height: 56px;
    padding: 0 1rem;
    border: none;
    border-radius: 8px;
    background-color: var(--light-gray);
}
.cta-form-input::-webkit-input-placeholder {
    color: var(--gray-mid);
}
.cta-form-input::-moz-placeholder {
    color: var(--gray-mid);
}
.cta-form-input:-ms-input-placeholder {
    color: var(--gray-mid);
}
.cta-form-input::-ms-input-placeholder {
    color: var(--gray-mid);
}
.cta-form-input::placeholder {
    color: var(--gray-mid);
}
.cta-form-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 8px 24px;
}
.cta-form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 8px 24px;
}
.cta-form-radio label,
.cta-form-check label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    cursor: pointer;
}
.cta-form-item-privacy label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    cursor: pointer;
}
.cta-form-item-privacy a {
    color: var(--navy);
    text-decoration: underline;
}
.cta-form-btn {
    display: block;
    width: 100%;
    max-width: 520px;
    height: 64px;
    margin: 2rem auto 0;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 4px;
    background-image: var(--gradation-orange);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    letter-spacing: .15em;
}
.cta-form-btn-txt {
    display: inline-block;
    padding-right: calc(19px + .75rem);
    background-image: url(../images/cta_pic02.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 19px 22px;
}
.cta-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    max-width: 800px;
    margin: 2.5rem auto 0;
}
.cta-sub-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5rem;
    border: 2px solid var(--white);
    border-radius: 8px;
}
.cta-sub-tel {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 680px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.cta-sub-ttl {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}
.cta-sub-ttl::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    margin: .75rem auto 0;
    background-color: var(--white);
}
.cta-sub-tel-num {
    margin-top: .5rem;
}
.cta-sub-tel-num a {
    display: inline-block;
    padding-left: calc(23px + .5rem);
    background-image: url(../images/cta_pic01.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 23px 23px;
    color: var(--white);
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    font-weight: 700;
}
.cta-sub-btn {
    display: inline-block;
    margin-top: .75rem;
    padding: .625rem 3rem;
    border: 2px solid var(--white);
    border-radius: 40px;
    background-color: var(--white);
    background-image: url(../images/cta_pic03.svg), url(../images/cta_pic04.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left 1.25rem center, right 1.25rem center;
    background-size: 24px 24px, 18px 18px;
    color: var(--coral-light);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .cta-badge {
        top: -20px;
        right: 12px;
        width: 70px;
        height: 70px;
        border-width: 2px;
        font-size: 18px;
    }
    .cta-form {
        padding: 2.5rem 1.25rem;
    }
    .cta-sub {
        margin-top: 1.25rem;
    }
    .cta-form-label {
        font-size: 16px;
    }
    .cta-form-check label {
        font-size: 14px;
    }
    .cta-form-btn {
        font-size: 18px;
    }
    .cta-form-btn-txt {
        padding-right: calc(16px + .75rem);
        background-size: 16px 20px;
    }
    .cta-sub {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 16px;
    }
    .cta-sub-ttl {
        font-size: 18px;
    }
    .cta-sub-tel-num a {
        font-size: 24px;
    }
    .cta-sub-btn {
        font-size: 16px;
        background-size: 17px 17px, 16px 16px;
    }
}
/* ------ max-width:767px_END ------ */

/* ------------------------------
 pg-thanks
------------------------------ */

.thanks.content-section {
    background-image: var(--gradation-orange);
}
.thanks-head {
    letter-spacing: .1em;
}
.thanks-head-sub {
    position: relative;
    display: inline-block;
    padding: 0 2.25rem;
    color: var(--white);
    font-size: 30px;
    font-weight: 500;
}
.thanks-head-sub::before,
.thanks-head-sub::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 2px;
    height: 20px;
    background-color: var(--white);
}
.thanks-head-sub::before {
    left: .75rem;
    -webkit-transform: translateY(-50%) rotate(-25deg);
            transform: translateY(-50%) rotate(-25deg);
}
.thanks-head-sub::after {
    right: .75rem;
    -webkit-transform: translateY(-50%) rotate(25deg);
            transform: translateY(-50%) rotate(25deg);
}
.thanks-head-ttl {
    color: var(--white);
    font-size: 46px;
    font-weight: 700;
}
.thanks-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-top: 1.25rem;
    padding: 3.75rem 2.5rem;
    border-radius: 8px;
    background-color: var(--white);
}
.thanks-card-pht {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 326px;
}
.thanks-card-pht img {
    display: block;
    width: 100%;
    height: auto;
}
.thanks-card-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
}
.thanks-card-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.9;
}
.thanks-pdf-btn {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    background-image: var(--gradation-orange);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.thanks-pdf-btn-txt {
    display: inline-block;
    padding-right: calc(20px + .75rem);
    background-image: url(../images/thanks_pic01.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px 20px;
}

@media (max-width: 1024px) {
    .thanks-card-text {
        text-align: left;
    }
}
/* ------ max-width:1024px_END ------ */
@media (max-width: 767px) {
    .thanks-head-sub {
        padding: 0 1.25rem;
        font-size: 20px;
    }
    .thanks-head-ttl {
        font-size: 28px;
    }
    .thanks-card-text {
        font-size: 16px;
    }
    .thanks-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 24px;
        padding: 1.5rem 1.25rem;
    }
    .thanks-card-pht {
        width: 240px;
    }
    .thanks-pdf-btn {
        font-size: 18px;
    }
}
/* ------ max-width:767px_END ------ */

