:root {
  --color-primary: #2E4F9E;
  --color-secondary: #4B8AD0;
  --color-tertiary: #A7CFFF;
  --color-action-primary: linear-gradient(115deg, rgba(185,255,96,1) 0%, rgba(83,255,194,1) 100%); /* ctaなど */
  --color-emphasis: #2F6AF8; /* 強調表現 */
  --color-caution: #fffb2f;

  --color-black: #000;
  --color-white: #fff;
  --color-gray02: #FAFAFA;
  --color-gray03: #F5F5F5;
  --color-gray04: #F0F0F0;
  --color-gray05: #D9D9D9;
  --color-gray06: #BFBFBF;
  --color-gray07: #8C8C8C;
  --color-gray08: #595959;
  --color-gray09: #434343;
  --color-gray10: #262626;
  --color-gray11: #1F1F1F;
  --color-gray12: #141414;
  --color-light-blue: #DEE7F1;
  --color-pale-blue-gray: #EEF2F5;
  --color-pale-blue: #DCECFF;
}

/*--------------------------------------------
reset
--------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    background: var(--color-white);
    scroll-behavior: smooth;
}
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
    margin: 0;
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
body {
    min-height: 100vh;
    overscroll-behavior: none;
    background: var(--color-white);
}
body:has(#drawer_input:checked) {
    max-height: 100vh;
    overflow: hidden;
}
button, input, label {
    line-height: 1.1;
}
a {
    transition: .2s;
}
a:not([class]) {
    color: currentColor;
}
img,
picture {
    max-width: 100%;
    display: block;
    margin: auto;
}
svg {
    vertical-align: middle;
}
input, button,
textarea, select {
    font: inherit;
}
textarea:not([rows]) {
    min-height: 10em;
}
:target {
    scroll-margin-block: 5ex;
}
/*--------------------------------------------
base
--------------------------------------------*/
.is-pc {
    display: none;
}
@media (min-width:980px) {
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
}
.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Helvetica Neue', 'Helvetica', 'Noto Sans JP',sans-serif;
}
section {
    padding: 4rem 0;
}
.divider {
    border-top: 1px solid var(--color-gray05);
    margin-top: 1rem;
    padding-top: 1rem;
}
.layout_wrapper {
    padding: 0 1.5rem;
}
@media (min-width: 980px) {
    .layout_wrapper {
        margin-left: auto;
        margin-right: auto;
        max-width: 1240px;
        padding: 0 60px;
    }
}
.button-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.button-box .button {
    width: 250px;
    border-radius: 100px;
    padding: 1rem;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: .2s;
}
.button-box .button:hover {
    opacity: .7;
}
.button-box .button-action-primary {
    background: var(--color-action-primary);
    color: var(--color-primary);
}
.button-box .button-action-primary svg {
    fill: var(--color-primary);
}
.button-box .button-white {
    background: var(--color-white);
    color: var(--color-primary);
}
.button-box .button-stroke-black {
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-black);
}
.button-box .text-link {
    color: var(--color-black);
    font-size: 80%;
}
.button-box .text-link:hover {
    text-decoration: none;
}
.wrapper-heading {
    margin-bottom: 3rem;
    text-align: center;
}
.wrapper-heading h2 {
    margin: 0;
    font-size: 1.75rem;
    color: var(--color-primary);
    line-height: 1.5;
}
@media (min-width:980px) {
    .wrapper-heading h2 {
        font-size: 2rem;
        letter-spacing: .03em;
    }
}
.wrapper-heading h2 span,
.wrapper-heading h3 span {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
}
@media (min-width:980px) {
    .wrapper-heading h2 strong {
        font-size: 3rem;
        letter-spacing: .05em;
    }
}
.wrapper-heading h3 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.5;
}
.wrapper-heading p {
    margin-top: 1.5rem;
    color: var(--color-gray08);
    text-align: center;
}
.wrapper-heading span {
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: .5rem;
}
@media screen and (max-width:48em) {
.wrapper-heading p span {
    text-align: left;
    display: inline-block;
    }
}
#contentWrap {
transition: opacity .3s linear;
}
#contentWrap.st-hidden {
opacity: 0;
transition: none;
}

/*--------------------------------------------
header
--------------------------------------------*/
.drawer_hidden {
    display: none;
}
.drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 100;
    cursor: pointer;
    top: 22px;
    right: 20px;
    width: 30px;
    height: 30px;
    z-index: 9999;
}
.drawer_open span, .drawer_open span:before, .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background: #F9F9F9;
    transition: 0.5s;
    position: absolute;
}
.drawer_open span:before {
    bottom: 10px;
}
.drawer_open span:after {
    top: 10px;
}
#drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
}
#drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#drawer_input:checked~.drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
}
#drawer_input:checked~nav {
    left: 0;
}
@media (min-width: 980px) {
    #drawer_input,
    .drawer_open {
        display: none;
    }
}
/* header-wrapper */
.header-wrapper {
    background: linear-gradient(109deg, #2E4F9E 40%, #1755E8 100%);
}
@media (min-width: 980px) {
    header {
        display: flex;
        align-items: center;
    }
}
header .bm-logo {
    margin: 0;
    padding: 1rem 1.25rem;
}
header nav {
    width: 100%;
    height: 100%;
    position: fixed;
    right: -100%;;
    background: var(--color-primary);
    transition: .5s;
    text-align: center;
    padding: 0 1rem;
    z-index: 999;
}
@media (min-width: 980px) {
    header nav {
        position: static;
        background: transparent;
        padding: 1rem 1.25rem;
    }
}
header nav .nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}
@media (min-width: 980px) {
    header nav .nav-list {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
}
header .nav-list-item {
    border-top: 1px solid #4B8AD0;
}
header .nav-list-item:last-child {
    border-top: none;
}
@media (min-width: 980px) {
    header .nav-list-item {
        border-top: none;
    }
    header .nav-list-item:last-child {
        margin-left: .5rem;
    }
}
header .nav-list-item a {
    display: block;
    padding: 1rem;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s;
}
header .nav-list-item a:hover {
    opacity: .7;
}
header .nav-list-item .nav-list-textlink {
    color: var(--color-white);
}
@media (min-width: 980px) {
    header .nav-list-item a {
        padding: .5rem 1rem;
    }
    header .nav-list-item .nav-list-textlink {
        margin-right: .5rem;
    }
}
header .nav-list-item a svg {
    vertical-align: text-top;
    margin-left: 0.25rem;
}
header .nav-list-item a svg path {
    fill: var(--color-white);
}
header .download-button {
    color: var(--color-primary);
    background: var(--color-action-primary);
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 145%;
    margin: auto;
    padding: 0.75rem;
    border-radius: 100px; 
}
header .contact-button {
    display: inline-block;
    color: var(--color-primary);
    background: var(--color-white);
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 145%;
    margin: auto;
    padding: 0.75rem;
    border-radius: 100px;
    margin: 2rem 0 1rem;
}
header .contact-button .download-button {
    display: block;
}
header .contact-button svg {
    fill: black;
}
@media (min-width: 980px) {
    header .contact-button {
        max-width: 250px;
    }
    header .contact-button {     
        margin: 0;
    }
}
/* hero-header */
.hero-header {
    position: relative;
    overflow: hidden;
}
.hero-header-wrapper {
    max-width: none;
    padding-top: 76px;
}
.hero-header-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 2.5rem;
    padding: 1rem 0 3rem;
    gap: 2rem;
}
@media (min-width: 980px) {
    .hero-header-content {
        justify-content: space-between;
        flex-direction: row;
        padding: 2.5rem 0 5rem;
        gap: 3rem;
    }
}
@media (min-width: 980px) {
    .hero-header-image {
        min-width: 0;
        width: 100%;
    }
}
.hero-header-image video {
    width: 100%;
}
@media (min-width: 980px) {
    .hero-header-image video {
        width: 100%;
        height: auto;
    }
}
.hero-header-text {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    color: var(--color-white);
}
@media (min-width: 980px) {
    .hero-header-text {
        flex: 0 0 30vw;
        min-width: 0;
        text-align: center;
        padding: 0;
    }
}
.hero-header-title {
    display: flex;
    justify-content: flex-start;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.45;
}
@media (min-width: 980px) {
    .hero-header-title {
        font-size: 3vw;
    }
}
.hero-header-subtitle {
    font-size: 0.9rem;
}
.hero-header-text .button-box {
    margin-top: 1rem;
    flex-direction: column;
}
.hero-header-text .button-box .button {
    display: block;
    width: 100%;
}
@media (min-width: 768px) {
    .hero-header-text .button-box {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-header-text .button-box .button {
        width: 40%;
        min-width: 200px;
    }
}
.hero-header-text .button-box svg {
    vertical-align: text-top;
    margin-left: 0.25rem;
}

/*--------------------------------------------
main
--------------------------------------------*/
/* customers-list */
.customers-list-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.customers-list-content ul li {
    width: 33%;
    max-width: 150px;
}
@media (min-width: 980px) {
    .customers-list-content ul li {
        width: 14%;
    }
}

/* features */
.features {
    position: relative;
    z-index: 0;
}
.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-pale-blue);
    z-index: -1;
}
@media (min-width: 980px) {
    .features::before {
        width: 80%;
        border-radius: 0 80px 80px 0;
    }
}
.features-content-box {
    display: flex;
    flex-direction: column;
    gap: 1rem 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 980px) {
    .features-content-box {
        flex-direction: row;
        padding-right: 160px;
        margin-bottom: 5rem;
    }
    .features-content-box:nth-child(2n) {
        flex-direction: row-reverse;
        padding-left: 160px;
        padding-right: 0;
    }
}
@media (min-width: 980px) {
    .features-content-image {
        position: relative;
        flex: 0 0 320px;
    }
    .features-content-image::after {
        content: "";
        background: url("https://cdn.blog.st-hatena.com/files/10257846132625906040/6801883189064567294") no-repeat;
        background-size: contain;
        width: 77px;
        height: 178px;
        position: absolute;
        right: -10px;
        top: 50px;
    }
    .features-content-box:nth-child(2) .features-content-image::after {
        background: url("https://cdn.blog.st-hatena.com/files/10257846132625906040/6801883189064567296") no-repeat;
        background-size: contain;
        width: 103px;
        right: 0;
        top: 70px;
        left: -20px;
    }
    .features-content-box:nth-child(3) .features-content-image::after {
        background: url("https://cdn.blog.st-hatena.com/files/10257846132625906040/6801883189064567298") no-repeat;
        background-size: contain;
        width: 83px;
        top: 70px;
    }
}
.features-content-text {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
}
.features-content-text h3 {
    margin-top: 0;
    font-size: 1.25rem;
}
@media (min-width: 980px) {
    .features-content-text h3 {
        font-size: 1.75rem;
    }
}
.features-content-text p {
    margin-top: 0;
    color: var(--color-gray08);
}
.features-content-text ul {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.features-content-text li {
    position: relative;
    margin-left: .5rem;
    color: var(--color-gray08);
    font-weight: 700;
    font-size: .9em;
}
.features-content-text li:before {
    border-radius: 50%;
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    left: -0.75rem;
    top: 0.6rem;
    content: "";
    background: var(--color-emphasis);
}
.features-content-text li.ai-assist {
    border-radius: 4px;
    background: linear-gradient(92deg, #F7A2AB 0%, #DA8EBD 26.13%, #8754EF 100%);
    color: var(--color-white);
    padding: 0 .5rem;
}
.features-content-text a:hover {
    text-decoration: none;
}
.features-content-text .subdirectory {
    display: flex;
    flex-direction: column;
    background: var(--color-tertiary);
    font-size: .75rem;
    border-radius: 8px;
    padding: 1rem .75rem;
    gap: .5rem 0;
}
.features-content-text .subdirectory h4 {
    margin-top: 0;
}
.features-content-text .subdirectory-url {
    display: flex;
    flex-direction: row;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    background: var(--color-white);
}
.features-content-text .subdirectory-url .title,
.features-content-text .subdirectory-url .ex-url {
    font-weight: 700;
    padding: .4rem .75rem;
}
.features-content-text .subdirectory-url .title {
    background: var(--color-secondary);
    color: var(--color-white);
}
.features-content-text .subdirectory-url .ex-url {
    color: var(--color-secondary);
}

/* features-support */
.features-support {
    background: var(--color-pale-blue);
    padding-top: 0;
}
@media (min-width: 980px) {
    .features-support {
        background: transparent;
        padding-top: 4rem;
    }
}
@media (min-width: 980px) {
    .features-support-wrapper {
        max-width: 960px;
    }
}
.features-support-heading {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}
.features-support-content {
    background: var(--color-secondary);
    padding: 1.5rem 1rem;
    border-radius: .5rem;
    color: var(--color-white);
    font-size: .9rem;
}
@media (min-width: 980px) {
    .features-support-content {
        display: flex;
        gap: 0 1.25rem;
        align-items: center;
    }
}
@media (min-width: 980px) {
    .features-support-image {
        position: relative;
        flex: 0 0 240px;
    }
}
@media (min-width: 980px) {
    .features-support-text {
        flex: auto;
    }
}
.features-support-text ul {
    display: flex;
    flex-wrap: wrap;
    margin: .75rem 0 0;
    gap: .5rem;
}
.features-support-text li {
    border: 1px solid var(--color-white);
    padding: .25rem;
    font-size: 10px;
    border-radius: 4px;
}
@media (min-width: 980px) {
    .features-support-text li {
        font-size: 12px;
    }
}

/* steps */
.steps .steps-content ul {
    display: flex;
    flex-direction: column;
}
@media (min-width: 980px) {
    .steps .steps-content ul {
        flex-direction: row;
        gap: 3rem;
    }
}
.steps .steps-content li {
    display: flex;
    position: relative;
    gap: 0 .5rem;
    padding-bottom: 1.5rem;
}
.steps .steps-content li .bubble {
    z-index: 2;
    line-height: 1;
	display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
	margin: 0;
	color: var(--color-white);
	border-radius: 100px;
	background-color: var(--color-primary);
    flex: 0 0 auto;
    font-weight: 700;
}
@media (min-width: 980px) {
    .steps .steps-content li .bubble {
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
    }
}
.steps .steps-content li:not(:last-child):before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.79rem;
    display: block;
    width: 0.14rem;
    content: "";
    background-color: var(--color-primary);
    transform: translateY(0.36rem);
}
@media (min-width: 980px) {
    .steps .steps-content li:not(:last-child):before {
        top: 6px;
        left: 50%;
        width: 21rem;
        height: 0.14rem;
    }
}
@media (min-width: 1120px) {
    .steps .steps-content li:not(:last-child):before {
        top: 6px;
        left: 50%;
        width: 23rem;
        height: 0.14rem;
    }
}
.steps-box {
    flex: auto;
    display: flex;
    flex-direction: column-reverse;
}
@media (min-width: 980px) {
    .steps-box {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-top: 30px;
    }
}
.steps-image {
    margin-top: .5rem;
}
.steps-image img {
    max-width: 250px;
    margin: auto;
}
.steps-text h3 {
    margin-top: 0;
}
@media (min-width: 980px) {
    .steps-text h3 {
        text-align: center;
    }
}
.steps-text p {
    margin-top: .5rem;
    font-size: .9rem;
    color: var(--color-gray08);
}
/* voices */
.voices {
    position: relative;
    z-index: 0;
}
.voices::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--color-pale-blue);
    z-index: -1;
}
@media (min-width: 980px) {
    .voices::before {
        width: 80%;
        border-radius: 80px 0 0 80px;
    }
}
.voices-wrapper {
    max-width: 1140px;
    margin: auto;
    overflow: hidden; /* swiperの横スクロール表示対策 */
}
.voices-content {
    margin: 0 1rem 2rem;
}
.swiper {
    overflow: visible;
}
.voices-swiper .swiper-wrapper {
    margin-bottom: 7rem;
}
.voices-swiper .swiper-slide {
    height: auto;
    display: block;
    padding: 1.25rem;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05);
    background: var(--color-white);
    border-radius: .5rem;
}
.voices-swiper .swiper-slide a {
    text-decoration: none;
}
.voices-swiper h3 {
    margin-top: 1rem;
    font-size: 1rem;
}
.voices-swiper p {
    margin: 1rem 0 0;
    color: var(--color-gray08);
    font-size: .8rem;
}
.voices-swiper [class^="swiper-button-"]{
    top: initial;
    bottom: 0;
}
.voices-swiper [class^="swiper-button-"]::after{
    font-size: 20px;
}
.voices-swiper .swiper-button-prev {
    top: 110%;
    left: 40%;
}
.voices-swiper .swiper-button-next {
    top: 110%;
    right: 40%;
}
/* support-service */
.support-service {
    background: var(--color-gray02);
}
@media (min-width: 980px) {
    .support-service {
        margin-top: 100px;
    }
}
.support-service-heading h2 {
    color: var(--color-black);
}
.support-service-content li {
    border-bottom: 1px solid var(--color-gray06);
    padding: 1.5rem 1.25rem;
    color: var(--color-gray08);
}
.support-service-content li:first-child {
    border-top: 1px solid var(--color-gray06);
}
@media (min-width: 980px) {
    .support-service-content dl {
        display: flex;
    }
}
.support-service-content dt {
    font-weight: 700;
    margin-bottom: .5rem;
}
@media (min-width: 980px) {
    .support-service-content dt {
        flex: 0 0 300px;
        align-self: center;
        font-size: 1.15rem;
        margin-bottom: 0;
    }
}
.support-service-content .text-link {
    font-weight: 700;
    margin-top: .5rem;
}
.support-service-content .text-link a {
    display: inline-flex;
    align-items: center;
    gap: 0 2px;
    margin-top: .5em;
    padding: 4px 8px;
    text-decoration: none;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    color: var(--color-primary);
}
.support-service-content .text-link a:hover {
    text-decoration: none;
    opacity: .7;
}
.support-service-content .text-link svg {
    vertical-align: text-top;
}
.support-service-content .text-link svg path {
    stroke: var(--color-primary);
}
/* price */
.price-wrapper {
    .price-heading-description {
        display: grid;
        gap: .5rem;
        margin-top: 1rem;
        p {
            margin: 0;
        }
        span {
            font-weight: bold;
            color: var(--color-black);
            letter-spacing: .1em;
            display: inline;
        }
        img {
            display: block;
            width: 80%;
            max-width: 700px;
            margin: 2em auto 0;
            border: 1px solid var(--color-gray08);
        }
    } 
}
.price-content {
    text-align: center;
    margin-top: -1em;
    & > span {
        position: relative;
        display: inline-block;
        padding: 1em 1.5em;
        color: var(--color-primary);
        font-weight: bold;
        font-size: 90%;
        &::before,
        &::after {
            position: absolute;
            top: .9em;
            height: 1.8em;
            content: '';
        }
        &::before {
            border-left: solid 2px;
            left: 0;
            transform: rotate(-30deg);
        }
        &::after {
            border-right: solid 2px;
            right: 4px;
            transform: rotate(30deg);
        }
    }

}

/* compare-list */
.compare {
    padding-top: 4rem;
}
.compare-list-slide::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
.compare-list-slide::-webkit-scrollbar-thumb {
  border-radius: 1rem;
}
.compare-list-slide::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color: rgba(0, 0, 0, 0.1);
}
.compare-list-content {
    position: relative;
}
@media (max-width: 980px) { /* SPのみ */
    .compare-list-content {
        margin: 0 -20px;
    }
}
.compare-list-slide {
    display: flex;
    min-width: 700px;
}
.compare-list-slide .compare-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
    margin-bottom: 4px;
}
.compare-list-slide .compare-list p {
    border-right: 1px solid var(--color-gray06);
    border-bottom: 1px solid var(--color-gray03);
    color: var(--color-gray08);
    padding: .5rem .75rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 60px;
    font-size: .9rem;
}
@media (min-width: 980px) {
    .compare-list-slide .compare-list p {
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: 1rem;
    }
}
.compare-list-slide .compare-list-head p {
    font-weight: 700;
}
.compare-list-slide .compare-list-body p {
    align-items: center;
}
.compare-list-content .compare-list-body p:first-child {
    font-weight: 700;
    background: var(--color-gray03);
    text-align: center;
}
.compare-list-content .compare-list-hatena {
    border: 4px solid var(--color-emphasis);
    border-radius: 8px;
    margin-bottom: 0;
}
.compare-list-content .compare-list-hatena p {
    color: var(--color-emphasis);
    border-right: none;
    font-weight: 700;
}
@media (min-width: 980px) {
    .compare-list-content .compare-list-hatena p {
        font-size: 1.125rem;
    }
}
.compare-list-content .compare-list-hatena p:first-child {
    background: var(--color-emphasis);
    color: var(--color-white);
    height: 70px;
}
.compare-list-content .compare-list-hatena p:last-child {
    border-bottom: none;
}
.compare-list-content .compare-list-hatena p svg {
    width: 20px;
    height: 20px;
}
.compare-list-content .compare-list-hatena p svg path {
    fill: var(--color-emphasis);
}
.compare-list-wrapper .detail {
    font-size: 12px;
    color: var(--color-gray07);
    margin-top: 1.25rem;
}
/* contact */
.contact {
    background: var(--color-secondary);
}

/* contact */
.contact-heading h2 {
    color: var(--color-white);
}
.contact-hsform {
    display: flex;
    flex-direction: column;
    gap: 1.5rem 0;
}
@media (min-width: 980px) {
    .contact-hsform .hs-form-field {
        display: flex;
        flex-wrap: wrap;
    }
}
.contact-hsform label {
    display: block;
    color: var(--color-white);
    margin-bottom: .5rem;
}
.contact-hsform input,
.contact-hsform textarea {
    border: none;
}
.contact-hsform input[type=radio],
.contact-hsform input[type=checkbox] {
    margin-right: .25rem;
}
.contact-hsform input[type=text],
.contact-hsform input[type=email],
.contact-hsform input[type=tel],
.contact-hsform textarea {
    padding: .5rem;
    width: 100%;
    border-radius: .25rem;
}
.contact-hsform .hs-form-field > label {
    font-weight: 700;
    line-height: 1.5;
}
@media (min-width: 980px) {
    .contact-hsform .hs-form-field > label {
        flex: 0 0 200px;
    }
}
@media (min-width: 980px) {
    .contact-hsform .input {
        flex: 0 0 80%;
    }
}
@media (min-width: 980px) {
    .contact-hsform .inputs-list {
        display: flex;
        gap: 2rem;
    }
}
.contact-hsform .hs-richtext a {
    color: var(--color-white)!important;
}
.contact-hsform .hs-richtext a span {
    font-size: .9rem!important;
}
.contact-hsform .inputs-list li {
    margin-top: 16px;
}
@media (min-width: 980px) {
    .contact-hsform .inputs-list li {
        margin-top: 0;
    }
}
.contact-hsform .hs-error-msgs {
    margin-top: 4px;
}
@media (min-width: 980px) {
    .contact-hsform .hs-error-msgs {
        margin-left: 200px;
    }
}
.contact-hsform .hs-error-msgs label {
    color: var(--color-caution);
}
@media (min-width: 980px) {
    .contact-hsform .hs_error_rollup .hs-error-msgs {
        text-align: center;
        margin-left: 0;
    }
}
.contact-hsform .hs_submit .actions {
    text-align: center;
}
.contact-hsform .hs_submit .hs-button {
    cursor: pointer;
    width: 250px;
    padding: .75rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    border-radius: 100px;
    transition: .2s;
}
.contact-hsform .hs_submit .hs-button:hover {
    opacity: .7;
}
@media (min-width: 980px) {
    .contact-hsform .hs_inquiry_ownedmedia_status > label,
    .contact-hsform .hs-inquiry_ownedmedia_issues > label {
        flex: auto;
    }
}
@media (min-width: 1120px) {
    .contact-hsform .hs_inquiry_ownedmedia_status,
    .contact-hsform .hs-inquiry_ownedmedia_issues {
        flex-direction: column;
        gap: 8px;
    }
    .contact-hsform .hs_inquiry_ownedmedia_status > label,
    .contact-hsform .hs-inquiry_ownedmedia_issues > label {
        margin-left: 200px;
    }
    .contact-hsform .hs_inquiry_ownedmedia_status .input,
    .contact-hsform .hs-inquiry_ownedmedia_issues .input {
        margin-left: 200px;
    }
    .contact-hsform .hs_inquiry_ownedmedia_status {
        position: relative;
    }
    .contact-hsform .hs_inquiry_ownedmedia_status::before {
        content: "アンケート";
        position: absolute;
        left: 0;
        top: 0;
        color: var(--color-white);
        font-weight: 700;
    }
}
/* 共通の装飾 */
.text-marker {
    background:linear-gradient(transparent 70%, #FFFF00 0%);
}

/* -- 送信後 --*/
.submitted-message {
    color: #fff;
    line-height: 1.7;
}
.submitted-message a {
    display: inline-block;
    max-width: 16em;
    margin-top: 1em;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #fff;
    text-decoration: none;
    font-size: .9rem;
}

@media (min-width: 980px) {
    .submitted-message {
        text-align: center;
    }
    .submitted-message a {
        max-width: none;
    }
}


/*--------------------------------------------
footer-cta
--------------------------------------------*/
.footer-cta {
    position: fixed;
    width: 100%;
    z-index: 100;
    background: var(--color-action-primary);
    color: var(--color-white);
    bottom: 0;
    right: 0;
}
.footer-cta-contents {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
    text-decoration: none;
    color: var(--color-primary);
}
.footer-cta-contents img {
    width: 100%;
}
.footer-cta-contents .footer-cta-text {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1fr auto;
}
.footer-cta-contents .footer-cta-text span {
    font-size: 14px;
    text-align: center;
}
.footer-cta-contents .footer-cta-text p {
    display: inline-block;
    padding: .8rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 2rem;
    font-size: 14px;
    white-space: nowrap;
}
.footer-cta .close-btn {
    line-height: 1;
    cursor: pointer;
    padding: .2rem;
    margin: .2rem .2rem 0;
    border-radius: 50px;
    display: none;
}
.footer-cta .close-btn:hover{
    background-color: rgba(255, 255, 255, .3);
}
.is-close {
    display: none;
}
@media (min-width: 980px) {
    .footer-cta {
        text-align: right;
        bottom: 24px;
        right: 24px;
        border-radius: 8px;
        width: 260px;
        height: auto;
        /* アニメーション */
        opacity: 0;
        animation-name: slide-animation;
        animation-duration: 0.5s; 
        animation-delay: 4s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }
    @keyframes slide-animation { 
        0% { 
            opacity: 0;
            transform: translateY(30px);
        } 
        100%{ 
            opacity: 1;
            transform: translateY(0);
        }
    }
    .footer-cta-contents {
        padding: 0 1rem 1rem;
    }
    .footer-cta-contents .footer-cta-text {
        font-size: 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .2rem;
        margin-bottom: .5rem;
    }
    .footer-cta-contents .footer-cta-text p {
        padding: 0;
        background-color: transparent;
        color: var(--color-primary);
        font-size: 18px;
    }
    .footer-cta .close-btn {
        display: inline-block;
    }
}

/*--------------------------------------------
footer
--------------------------------------------*/
footer {
    padding: 3rem 0 7rem;
}
@media (min-width: 980px) {
    footer {
        padding: 6rem 0 12rem;
    }
}
.footer-content-heading {
    text-align: left;
}
@media (min-width: 980px) {
    .footer-content-heading {
        display: flex;
        justify-content: space-between;
    }
}
.footer-content-heading img {
    width: 230px;
    margin: 0;
}
.footer-content-heading .copyright {
    font-size: 10px;
}
@media (min-width: 980px) {
    .footer-content {
        display: flex;
        justify-content: space-between;
    }
}
.footer-content ul {
    list-style: disc;
    margin-top: .5rem;
    padding-left: 1em;
    line-height: 2;
}
.footer-content li {
    color: var(--color-gray08);
    font-size: .9rem;
}
.footer-content li a {
    text-decoration: none;
    color: var(--color-gray08);
}
.footer-content li a:hover {
    text-decoration: underline;
}
@media (min-width: 980px) {
    .footer-content .divider {
        display: none;
    }
}

/* Intersection Observer のアニメーション */
.features-content-box,
.steps-content {
    opacity: 0;
    transform: translateY(50px);
}
.features-content-box.active,
.steps-content.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.voices-content {
    opacity: 0;
    transform: translateX(-270px);
}
.voices-content.active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}