body {
    width: 100%;
    height: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}
header {
    position: sticky;
    top: 1rem;
    z-index: 5;
}
nav {
    background-color: white;
    text-align: center;
    border-radius: 40px;
    overflow: hidden;
    margin: 0 10px -80px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.navbar-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    white-space: nowrap;
}
.navbar-brand img {
    float: left;
}
.nav-link {
    position: relative;
    display: inline-block;
    transition: color 0.3s;
    color: inherit;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background-color: #F54747;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s;
}
.nav-link:hover {
    color: inherit;
}
.nav-link:hover::after {
    transform: scaleX(1);
}
.nav-btn-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 2.5rem;
}
.nav-btn-wrapper .btn-all {
    padding: 12px;
}
@media (min-width: 992px) and (max-width: 1280px) {
    #navbarNavAltMarkup {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end;
    }
    .navbar-nav {
        margin-right: 1.75rem;
    }
    .nav-btn-wrapper {
        transform: scale(0.85);
    }
}
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}
@media (max-width: 991px) {
    .navbar-nav.pc-nav {
        display: none;
    }
    .navbar-toggler {
        display: block;
    }
}
main {
    text-align: center;
    flex: 1;
}
section {
    padding: 5rem 0;
    z-index: -2;
}
a {
    scroll-margin-top: 12vh;
    text-decoration: none;
}
h1 {
    margin: 0;
    color: #fad4d4;
    line-height: 1.5;
}
h2 {
    margin-top: 4rem;
    margin-bottom: 5rem;
    position: relative;
    text-align: center;
    z-index: 2;
    font-size: 2.35rem;
}
h2::before {
    content: attr(data-text);
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.75rem;
    font-weight: bold;
    color: #FFD9D9;
    z-index: -1;
}
h4 {
    padding: 1rem 0;
}
footer {
    background-color: #ececec;
    padding: 30px;
}
.layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#downloadButton,
#downloadButton:hover {
    background-color: #F54747;
    color: white;
    border: 2px solid white;
}
.btn-dl,
.btn-dl:hover {
    background-color: white;
    color: #F54747;
    border: 2px solid #F54747;
}
.btn-try,
.btn-try:hover {
    background-color: #1EAA96;
    color: white;
    border: 2px solid white;
}
.btn-dl,
.btn-try {
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.btn-dl::after,
.btn-try::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    box-sizing: border-box;
}
.btn-all {
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    font-weight: 500;
}
#downloadButton:hover, 
.btn-dl:hover,
.btn-try:hover {
    transform: scale(0.9,0.9);
}
.nav-btn {
    width: 180px !important;
    white-space: nowrap;
    font-size: smaller;
}
.nav-btn::after {
    content: none !important;
    display: none !important;
}
.plan-btn {
    width: 140px;
    white-space: nowrap;
    font-size: 14px !important;
    margin: 0.68rem 0;
    padding: 10px;
}
.btn-wrapper {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    gap: 1rem;
    width: fit-content;
}
#downloadButton {
    width: 60%;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.w-90 {
    width: 90%;
}
.large-box {
    background: #FFF0F0;
    border-radius: 10px;
    align-items: stretch;
    display: flex;
}
.m-box,
.s-box {
    background: white;
    text-align: center;
    padding: 20px;
    border-radius: 5%;
    box-sizing: border-box;
    height: 100%;
}
.s-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.space {
    margin-top: 1em;
    color: #F54747;
    font-weight: bold;
}
.l-space {
    margin: 2rem 0;
}

#first_view {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.8rem;
    background-image: url(../img/FV_back.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left; 
}
.no-back-img {
    background-image: none !important;
}
#first_view .container {
    width: 1300px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}
#first_view .btn-wrapper {
    grid-auto-flow: row !important;
    min-width: 526px;
}
#first_view .btn-all {
    min-width: 500px;
}
.midashi {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 0 0 43%;
    text-align: left;
    color: white;
    min-width: 526px;
}
.midashi strong {
    font-size: 2.5rem;
    color: white;
}
.midashi p {
    padding-left: 5px;
}
.only-sp-br {
    display: none;
}

#first_view .fv-image {
    width: 100%;
    height: 32vw;
    background-image: url(../img/FV_SP.png), url(../img/FV_PC.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 23%, contain;
    background-position: bottom 4vw right 2vw, center center;
}
@media (max-width: 768px) {
    .midashi {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        align-items: center !important;
        min-width: 0 !important;
    }
    .midashi p {
        padding-left: 0;
    }
    .only-sp-br {
        display: inline;
    }
    #first_view .btn-wrapper {
        min-width: 0 !important;
        width: 100%;
        place-items: center;
    }
    #first_view .btn-all {
        min-width: 0 !important;
        width: 100%;
    }
    #first_view .fv-image {
        width: 70%;
        padding-top: 70%;
        margin-top: 2rem;
        background-image: url(../img/FV_SP.png);
        background-size: cover;
        background-position: center top;
    }
}

.icon {
    border-radius: 50%;
    height: 7rem;
    width: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;
}
#onayami .icon {
    background-color: #FFF0F0;
}
#function .icon {
    background-color: #F64747;
    height: 6rem;
    width: 6rem;
}


#onayami .container {
    width: 1000px;
}
#onayami h2 {
    padding: 1.5rem 0;
    margin: 0.75rem 0;
}
.space-wrapper {
    display: block;
    text-align: center;
}
.inline-img img{
    padding: 0 0 6px 10px;
}

#function {
    background: #fff0f0;
}
#function .container {
    width: 1250px;
}
#function .space {
    font-size: larger;
}
.box-text {
    padding: 1rem 2rem;
    text-align: left;
}
.gray-box {
    background-color: #F2F2F2;
}
.white-box {
    background-color: white;
    border: 1px solid #F54747;
}
.gray-box,
.white-box {
    border-radius: 20px;
    padding: 20px;
    margin: 10px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 95%;
    box-sizing: border-box;
}
.gray-box::after {
    bottom: -20px;
    border-top: 15px solid #F2F2F2;
}
.white-box::before {
    top: -10px;
    border-top: 20px solid #F54747;
}
.gray-box::after,
.white-box::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
@media (max-width: 768px) {
    .gray-box::after,
    .white-box::before {
        content: none;
    }
}

.text {
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#points {
    background: #f76d6d;
    overflow: hidden;
}
#points .container {
    width: 1300px;
}
#points h2 {
    margin: 1.5rem 0;
    font-size: 2.5rem;
}
#points .box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 5% 15%;
    margin-top: 30px;
}
#points .box::before {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100vw;
    height: 100%;
    background: #FFF0F0;
}
#points .box:nth-child(even)::before {
    right: 0;
    border-radius: 0 140px 140px 0;
}
#points .box:nth-child(odd)::before {
    left: 0;
    border-radius: 140px 0 0 140px;
}
#points .box:nth-child(odd) {
    flex-direction: row-reverse;
}
#points .t-box h3 .redpoint {
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
}
#points .t-box h3 span .bold {
    display: block;
    font-family: Inter;
    font-size: 3rem;
    margin-top: -5px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
#points .t-box {
    width: 55%;
}
#points .i-box {
    width: 45%;
}
@media (max-width: 768px) {
    #points .t-box,
    #points .i-box {
        width: 100%;
    }
}
#points .box {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
#points .box.box-visible {
    opacity: 1;
    transform: translateY(0);
}
.point-title {
    margin: 0 0 1.5rem 0!important;
}
#points span {
    color: #F64747;
}
#points .text-white span {
    color: white;
    font-size: 3.8rem;
}

.btn-area {
    background-color: #F64747;
    padding: 4rem 0;
}
.btn-area .btn-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}
.btn-area .btn-all {
    width: 100%;
}

#price {
    background-color: #F2F2F2;
}
#price .btn-try::after {
    content: none !important;
    display: none !important;
}
#price .btn-try {
    font-size: 1rem;
    margin-bottom: 28px;
}
.subscription {
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: xx-large;
    margin-top: 1rem;
}
.fee {
    display: inline-flex;
    align-items: flex-end;
    position: relative; 
}
.fee::before,
.fee::after {
    position: absolute;
    font-size: 0.9rem;
    font-weight: normal;
    bottom: 0.4rem;
}
.fee::before {
    content: '￥';
    left: -1.1rem;
}
.fee::after {
    content: '/月';
    right: -1.5rem;
}
.hidden-th {
    visibility: hidden;
    border: none;
    background: transparent;
}
.plan-th {
    min-width: 170px;
}
.plan-box-t {
    padding: 10px 0;
}
.plan-box-b {
    background-color: white;
    color: black;
    padding: 10px;
}
.check-count {
    display: inline-block;
    color: #F64747;
    border: 2px solid #F59393;
    border-radius: 50px;
    text-align: center;
    font-size: 12px;
    padding: 8px;
}
th {
    font-weight: normal;
}
tr:first-child th {
    border-radius: 20px 20px 0 0;
    border: none;
    padding: 3px;
    font-weight: bold;
    color: white;
}
tr:first-child th:nth-child(2) {
    background-color: #F8D8D8;
}
tr:first-child th:nth-child(3) {
    background-color: #F5C4C4;
}
tr:first-child th:nth-child(4) {
    background-color: #F59393;
}
tr:first-child th:nth-child(5) {
    background-color: #F56262;
}
tr:first-child th:nth-child(6) {
    background-color: #F64747;
}
tr:first-child th:nth-child(7) {
    background-color: #F53131;
}
.table-bordered {
    overflow: hidden;
    border-color: #F2F2F2;
}
.joining-th {
    vertical-align: middle;
    width: 80px;
}
.small-th{
    width: 95px;
}
.joining-th,
.large-th,
.small-th {
    text-align: right;
    white-space: nowrap;
}
.red-dot {
    color: #F54747 !important;
}
table.table01  thead tr:first-of-type th:first-of-type {
    z-index: 2;
}
@media (max-width: 1000px) {
    table th:first-child {
        position: sticky;
        left: 0;
        z-index: 2;
    }
}

.flow-box {
    background-color: #fafafa;
    border-radius: 30px;
    padding: 20px;
    margin: 10px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.flow-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    width: 50px;
    height: 10px;
    background-color: inherit;
    transform: translateY(-50%);
}
@media (max-width: 768px) {
    #flow .row {
        flex-direction: column !important;
    }
    .flow-box:not(:last-child)::after {
        top: unset;
        right: unset;
        left: 50%;
        bottom: -50px;
        width: 10px;
        height: 40px;
    }
}
#flow .icon {
    background-color: inherit;
}
.overlay {
    position: absolute;
    top: 95px;
    left: 59%;
    transform: translate(-50%, -50%);
    height: auto;
}
.flow-title {
    color: white;
    background-color: #F64747;
    border-radius: 30px;
    font-weight: bold;
    padding: 5px;
    min-width: 180px;
    display: inline-block;
}

#faq {
    background-color: #FFF0F0;
}
#faq .container {
    width: 1000px;
}
.accordion-item {
    border-radius: 20px !important;
    overflow: hidden;
    border: none;
}
.accordion-button::before {
    content: "Q";
    color: #F54747;
    margin-right: 1.5rem;
    font-weight: bold;
    font-size: x-large;
}
.accordion-body {
    position: relative;
    padding-left: 4rem;
}
.accordion-body::before {
    content: "A";
    position: absolute;
    color: gray;
    font-weight: bold;
    font-size: x-large;
    left: 1.5rem;
    top: 10px;
}
.accordion-button {
    color: initial !important;
}
.accordion-button:focus {
    box-shadow: 1px 1px 1px lightgray;
}
.accordion-button:not(.collapsed) {
    background-color: white !important;
}

.cases-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 5rem;
}
.s-col {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 20px;
    background-color: white;
    color: black;
    font-size: 16px;
    text-align: center;
    min-width: 140px;
    flex: 1 1 calc(33.333% - 20px);
}
@media (max-width: 768px) {
    .industry-btn {
        flex: 1 1 100%;
    }
}
#case_study .col {
    margin: 15px;
}
#case_study .large-box {
    background-color: #F76D6D;
    display: flex;
    flex-wrap: nowrap;
    padding: 1px;
}
#case_study ul {
    margin: 0;
    text-align: left;
    list-style: none;
    padding-left: 0;
}
#case_study ul li {
    position: relative;
    padding-left: 2rem;
}
#case_study ul li::before {
    content: "•";
    color: #1EAA96;
    font-size: 2rem;
    position: absolute;
    left: 15px;
    top: -0.35rem;
}
.top-box{
    border-radius: 10px 10px 0 0;
    border: 1px solid lightgray;
    background-color: white;
    padding: 30px;
}
.bottom-box {
    border-radius: 0 0 10px 10px;
    border: 1px solid lightgray;
    background-color: white;
    padding: 10px;
}
.d-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch;
}
.icon-box {
    min-width: 70px;
    color: #1EAA96;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #1EAA96;
    border-radius: 5px;
    text-align: center;
}
.green {
    color: white;
    background-color: #1EAA96;
}
.case-title {
    padding: 20px 0 15px 0;
    color: white;
    font-size: x-large;
    font-weight: bolder;
    position: relative;
}
.slider .case-title {
    color: initial;
    font-size: larger;
}
.case-title::before {
    content: "Case\A""01";
    white-space: pre;
    font-size: 1rem;
    border-radius: 50%;
    background-color: #1EAA96;
    border: white solid 2px;
    height: 5rem;
    width: 5rem;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}
.box1, .box2 {
    box-sizing: border-box;
    margin: 15px;
    flex-grow: 1;
    display:flex;
    flex-direction:column;
}
.box2, .box3,
.case-box {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    flex-grow: 1;
}
.box1 {
    padding: 0;
    margin-right: 0;
    flex: 0 0 calc(45% - 15px);
}
.box2 {
    flex: 0 0 calc(55% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.box3 {
    margin: 0;
}
.slider .box2 {
    margin: 0;
}
.case-text {
    display: flex;
    grid-template-columns: 1fr;
}
@media (max-width: 990px) {
    .box1 {
        margin: 15px;
    }
    .case-text {
        display: block;
    }
    .case-box .box2 {
        padding: 0 !important;
    }
    #case_study .large-box:nth-child(even) .box3 {
        margin-left: 15px;
    }
    #case_study .f-box {
        flex-direction: column !important;
    }
}
#case_study .large-box:nth-child(even) {
    flex-direction: row-reverse;
    margin-top: 8rem;
    margin-bottom: 8rem;
}
#case_study .large-box:nth-child(4) .box1 {
    margin-left: 0 !important;
    margin-right: 15px !important;
}
#case_study .large-box:nth-child(4) .case-title::before {
    content: "Case\A""02";
}
#case_study .large-box:nth-child(5) .slick-item[data-case="1"] .case-title::before {
    content: "Case\A""03";
    color: white;
}
#case_study .large-box:nth-child(5) .slick-item[data-case="2"] .case-title::before {
    content: "Case\A""04";
    color: white;
}
#case_study .large-box:nth-child(5) .slick-item[data-case="3"] .case-title::before {
    content: "Case\A""05";
    color: white;
}
.sliderArea {
	max-width: 100%;
	margin: 0 auto;
	padding: 25px;
}
.slick-slide {
	margin: 0 5px;
}
.slick-prev, .slick-next {
	z-index: 1;
}
.slick-prev:before {
    position: relative !important;
    left: -1.25rem;
}
.slick-prev:before, .slick-next:before {
	color: #F54747 !important;
    font-size: 2.5rem !important;
}
.slick-slide {
	transition: all ease-in-out .3s;
	opacity: .2;
}
.slick-active {
	opacity: 1;
}
.slick-current {
	opacity: 1;
}

form {
    background: #fafafa;
    padding: 40px 0;
    border-radius: 40px;
}
.hide {
    display: none;
    height: 0;
    width: 0;
}
.form_row {
    display: flex;
}
.form_col_label {
    width: 30%;
    padding: 7px 1.5% 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.form_col_input {
    width: 70%;
    padding: 0 10% 2rem 0;
    text-align: left;
}
.required_icon, .optional_icon {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: small;
    line-height: 1.5;
    white-space: nowrap;
}
.required_icon {
    background-color: #F54747;
    color: white;
}
.optional_icon {
    background-color: inherit;
    color: gray;
    border: 1px solid lightgray;
}
.radio-group {
    display: flex;
    flex-direction: column;
}
label {
    padding: 10px 2px;
}
.formError {
    left: auto !important;
    right: auto !important;
    margin-top: 5px;
}
.accented {
    accent-color: green;
}
.submit-btn {
    cursor: pointer;
}
.submit-btn[disabled] {
    background-color: #ccc;
    cursor: not-allowed;
}
.real-submit {
    display: none !important;
}

@media (max-width: 768px) {
    .form_row {
        flex-direction: column;
    }
    .form_col_label,
    .form_col_input {
        width: auto;
        padding: 10px 3% 0;
    }
}
.form-control {
    border: none;
    padding: 0.75rem;
}
.form-control:focus {
    box-shadow: 0 0 5px 3px rgba(30, 170, 150, 0.5);
}

@media (max-width: 768px) {
    .container {
        width: 95% !important;
    }
    .f-box {
        flex-direction: column !important;
    }
    .btn-wrapper {
        grid-auto-flow: row;
        grid-template-columns: none !important;
    }
    .btn-all {
        width: 100%;
    }
}