/* 各セクションで使うもの */

.title-box {
    text-align: center;
}

.title-box p {
    margin-top: 32px;
}

/* メインビジュアル */

.main_visual {
    background: url(/-/media/sp/hci/products/stratus/image/main_visual_bg.png) no-repeat center center / cover;
}

.main_visual .content-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.main_visual .content-block .text-box h1,
.main_visual .content-block .text-box p {
    color: #fff;
}

.main_visual .content-block .text-box .description {
    margin-top: 20px;
}

.main_visual .content-block .text-box .cta-box {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.main_visual .content-block .text-box .cta-box a {
    width: 225px;
    padding: 8px;
}

.main_visual .content-block .image-box img {
    max-width: 514px;
}

@media screen and (max-width: 767px) {
    .main_visual .content-block {
        flex-direction: column;
    }

    .main_visual .content-block .text-box .image-box {
        margin-top: 2rem;
    }

    .main_visual .content-block .text-box .cta-box {
        flex-direction: column;
    }

    .main_visual .content-block .text-box .description {
        background: rgb(0, 0, 0, 0.7);
        padding: .5rem;
    }

    .main_visual .content-block .text-box .cta-box a {
        display: block;
        width: 80%;
        margin: 0 auto;
    }
}

/* お悩み */

.problem {
    padding-bottom: 30px;
}

.problem .content-block .problem-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.problem .content-block .problem-box .image-box img {
    max-width: 350px;
}

.problem .content-block .problem-box .problem-list .problem-item {
    padding-left: 38px;
    margin-bottom: 20px;
    position: relative;
}

.problem .content-block .problem-box .problem-list .problem-item:last-child {
    margin-bottom: 0;
}

.problem .content-block .problem-box .problem-list .problem-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(/-/media/sp/hci/products/stratus/image/problem_icon.png) no-repeat center center / contain;
}

@media screen and (max-width: 767px) {
    .problem .content-block .problem-box {
        flex-direction: column;
        padding-bottom: .2rem;
    }

    .problem .content-block .problem-box .image-box {
        text-align: center;
    }

    .problem .content-block .problem-box .image-box img {
        width: 70%;
    }
}

/* 解決 */

.solution {
    padding-top: 139px;
    background: #ffcd30;
    position: relative;
}

.solution::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 96px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background: #fff;
}

.solution .hedding-block {
    margin-bottom: 60px;
    text-align: center;
}

.solution .hedding-block .marker::after {
    background: #fff;
    bottom: 10px;
}

.solution .content-block .image-box {
    text-align: center;
}

.solution .content-block .image-box img {
    max-width: 600px;
}

.solution .content-block .solution-list {
    width: max-content;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 33px;
}

.solution .content-block .solution-list .solution-item .image-box img {
    max-width: 150px;
}

.solution .content-block .solution-list .solution-item .text-box {
    margin-top: 15px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution .content-block .solution-list .solution-item h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
}

.solution .content-block .solution-list .solution-item .note-list {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.solution .content-block .solution-list .solution-item .note-list .note-item {
    padding-left: 15px;
    position: relative;
}

.solution .content-block .solution-list .solution-item .note-list .note-item::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 767px) {
    .solution::before {
        height: 48px;
    }

    .solution .hedding-block {
        margin-bottom: 1rem;
    }

    .solution .content-block .solution-list {
        grid-template-columns: 1fr;
        gap: 4rem;
        min-width: 0;
    }

    .solution .content-block .solution-list .solution-item .image-box img {
        width: 70%;
    }

    .solution .content-block .image-box img {
        max-width: unset;
    }

    .solution .content-block .solution-list .solution-item .text-box h3 {
        text-align: center;
    }
}

/* とは */

.about {
    background: #eff2f5;
}

.about .content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.about .content-block .about-box {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.about .content-block .about-box .image-box img {
    max-width: 450px;
}

.about .content-block .category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
}

.about .content-block .category-list .category-item {
    padding: 20px;
    background: #fff;
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.25);
}

.about .content-block .category-list .category-item .head {
    padding-bottom: 20px;
    height: 108px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #ccc;
}

.about .content-block .category-list .category-item .head img {
    width: 108px;
}

.about .content-block .category-list .category-item .body {
    padding-top: 20px;
}

.about .content-block .category-list .category-item .body .genre-list {
    padding-left: 30px;
}

.about .content-block .category-list .category-item .body .genre-list .genre-item {
    padding-left: 20px;
    position: relative;
}

.about .content-block .category-list .category-item .body .genre-list .genre-item::before {
    content: "◾️";
    position: absolute;
    top: 2px;
    left: 0;
}

.about .content-block .category-list .category-item:last-child .head h4 {
    font-size: 17px;
}

.about .content-block .category-list .category-item:last-child .body .genre-list {
    padding-left: 0;
}

@media screen and (max-width: 767px) {
    .about .content-block .about-box {
        flex-direction: column;
    }

    .about .content-block .category-list {
        padding-bottom: .2rem;
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .about .content-block .category-list .category-item .head {
        padding-left: 30px;
    }

    .about .content-block .category-list .category-item:last-child .body .genre-list {
        padding-left: 30px;
    }
}

/* CTA */

.cta {
    background: linear-gradient(95deg, #676767 10.45%, #333 89.49%);
}

.cta .content-block {
    text-align: center;
}

.cta .content-block p,
.cta .content-block h2 {
    color: #fff;
}

.cta .content-block h2 {
    margin-top: 10px;
}

.cta .cta-block {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

@media screen and (max-width: 767px) {
    .cta .cta-block {
        flex-direction: column;
    }

    .cta .cta-block a {
        display: block;
        margin: 0 auto;
    }
}

/* 特長 */

.feature .content-block ol {
    padding: 0;
    margin-bottom: 60px;
    counter-reset: step;
}

.feature .content-block ol li {
    margin-bottom: 80px;
    counter-increment: step;
    list-style: none;
    position: relative;
}

.feature .content-block ol li:last-child {
    margin-bottom: 0;
}

.feature .content-block ol li h3 {
    position: relative;
    padding-left: 95px;
}

.feature .content-block ol li h3::before {
    content: counter(step);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #ffcd30;
    color: #333;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
}

.feature .content-block ol li .content-box {
    margin-top: 49px;
    display: flex;
    gap: 44px;
}

.feature .content-block ol li:nth-child(2) .content-box .image-box {
    margin-top: -90px;
}

@media screen and (max-width: 767px) {
    .feature .content-block ol li h3 {
        padding-left: 55px;
    }
    
    .feature .content-block ol li h3::before {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .feature .content-block ol li .content-box {
        margin-top: 1rem;
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .feature .content-block ol li:nth-child(2) .content-box .image-box {
        margin-top: 0;
    }
}

/* 理由 */

.reason {
    background: #eff2f5;
}

.reason .content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.reason .content-block .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.reason .content-block .scroll p {
    font-weight: 700;
    text-align: center;
}

.reason .content-block .scroll .grid-table {
    margin-top: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    background: #fff;
    position: relative;
}

.reason .content-block .scroll .grid-table::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((238px + 4px) * 3);
    width: calc(238px + 3px);
    border: 3px solid #ff8e09;
    pointer-events: none;
    box-sizing: border-box;
    z-index: 1;
}

.reason .content-block .scroll .grid-table div {
    width: 238px;
}

.reason .content-block .scroll .grid-table .empty {
    background: #eff2f5;
}

.reason .content-block .scroll .grid-table .header .image-box img {
    width: 238px;
}

.reason .content-block .scroll .grid-table .header p {
    background: #ffcd30;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reason .content-block .scroll .grid-table .cell {
    width: 238px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.reason .content-block .scroll .grid-table .cell.strong {
    font-weight: 700px;
}

.reason .content-block .scroll .grid-table .row-odd {
    background: #fff5d6;
}

.reason .content-block .scroll .grid-table .row-even {
    background: #fff0c1;
}

@media screen and (max-width: 767px) {
    .reason .content-block .scroll {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
        margin: 0 auto;
    }

    .reason .content-block .scroll .grid-table {
        transform: scale(0.8);
        transform-origin: left;
    }
}

/* 保守サービス */

.service .content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.service .content-block p {
    text-align: center;
}

.service .content-block .content-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.service .content-block .content-box .image-box img {
    max-width: 450px;
}

.service .content-block .content-box ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service .content-block .content-box ul li {
    position: relative;
    padding-left: 26px;
}

.service .content-block .content-box ul li::before {
    content: "●";
    color: #ffcd30;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 767px) {
    .service .content-block .content-box {
        flex-direction: column;
    }
}

/* 製品 */

.product .content-block ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.product .content-block ul li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product .content-block ul li .image-box img {
    max-width: 452px;
}

.product .content-block ul li h3 {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .product .content-block ul {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

/* 技術仕様 */

.spec .content-block .scroll .grid-table {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    background: #fff;
}

.spec .content-block .scroll .grid-table .header {
    width: 190px;
}

.spec .content-block .scroll .grid-table .header .image-box img {
    width: 100%;
}

.spec .content-block .scroll .grid-table .header p {
    background: #fdcd31;
    text-align: center;
}

.spec .content-block .scroll .grid-table .empty {
    background: #f2f2f2;
}

.spec .content-block .scroll .grid-table .cell,
.spec .content-block .scroll .grid-table .empty {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.spec .content-block .scroll .grid-table .cell {
    height: 70px;
}

.spec .content-block .scroll .grid-table .cell.strong {
    font-weight: 700;
}

.spec .content-block .scroll .grid-table .cell.col-4 {
    grid-column: 2 / -1;
}

.spec .content-block .scroll .grid-table .full {
    height: 35px;
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ccc;
    text-align: center;
}

.spec .content-block .scroll .grid-table .row-odd {
    background: #fef5d6;
}

.spec .content-block .scroll .grid-table .row-even {
    background: #fef0c1;
}

.spec .content-block .scroll .note {
    text-align: right;
    margin-top: 5px;
}

@media screen and (max-width: 767px) {
    .spec .content-block .scroll {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
        margin: 0 auto;
    }

    .spec .content-block .scroll .grid-table {
        transform: scale(0.8);
        transform-origin: left;
    }

    .spec .content-block .scroll .note {
        text-align: left;
    }
}

/* edge */

.product-edge {
    background: #eff2f5;
}

.product-edge .content-block {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.product-edge .content-block .image-box img {
    max-width: 450px;
}

.product-edge .cta-block {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.product-edge .cta-block a {
    width: 390px;
}

@media screen and (max-width: 767px) {
    .product-edge .content-block {
        flex-direction: column;
    }
}

/* FAQ */

.faq .content-block ul li {
    padding: 30px 0 30px 30px;
    border-bottom: 1px solid #757374;
    cursor: pointer;
}

.faq .content-block ul li .question {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

.faq .content-block ul li .question p {
    position: relative;
    padding-left: 60px;
}

.faq .content-block ul li .question p::before {
    content: "Q.";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffcd30;
}

.faq .content-block ul li .question .icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    position: relative;
}

.faq .content-block ul li .question .icon::before {
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 14px;
    background-color: #b1000e;
}

.faq .content-block ul li .question .icon::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 0px;
    width: 2px;
    height: 30px;
    background-color: #b1000e;
    transition: transform 0.6s ease;
}

.faq .content-block ul li.open .question .icon::after {
    transform: rotate(270deg);
}

.faq .content-block ul li .answer {
    display: none;
	overflow: hidden;
    padding-top: 30px;
}

.faq .content-block ul li .answer p {
    position: relative;
    padding-left: 60px;
}

.faq .content-block ul li .answer p::before {
    content: "A.";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    font-weight: 700;
    color: #b1000e;
}

@media screen and (max-width: 767px) {
    .faq .content-block ul li {
        padding: 30px 0;
    }

    .faq .content-block ul li .question p,
    .faq .content-block ul li .answer p {
        padding-left: 40px;
    }
}