body {
    color: #231815;
    line-height: 1.4;
    position: relative;
}

a {
    text-decoration: none;
    display: block;
    color: #231815;
}

ul {
    margin: 0;
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.title-24 {/* 24pxのタイトル */
    font-size: 24px;
    font-weight: bold;
    color: #231815;
    margin-bottom: 10px;
}

p {
    color: #231815;
    font-size: 20px;
    text-align: justify;
}

.section__inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-width: 0;
}

.section__title {
    font-size: 48px;
    text-align: center;
    font-weight: bold;
}

.marker-yellow {
    background: linear-gradient(transparent 50%, yellow 50%);
    padding: 0 5px 7px;
}


@media (max-width: 1250px) {
    .section__inner {
    padding: 0 30px;
    }
    .section__title {
    font-size: 36px;
    }
    .title-24 {
    font-size: 20px;
    }
    p {
    font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section__inner {
    padding: 0 40px;
    }
    .section__title {
    font-size: 20px;
    }
}

@media (max-width: 500px) {
    .section__inner {
    padding: 0 20px;
    }
}


/* ---------
ヘッダー
--------- */
.header {
    background-color: #fff;
    height: 70px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.23);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

/* logo */

.header__logo img {
    align-items: center;
}

/* nav */

.nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav__list {
    display: flex;
    gap: 30px;
    margin-right: 36px;
}

.nav__list__item {
    font-weight: bold;
    font-size: 16px;
}

.nav__list__item a:hover {
    color: #3476B4;
}

/* ボタン */

.nav__btns {
    display: flex;
    height: 100%;
}

.nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
    height: 100%;
    font-size: 23px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.nav__btn:hover {
    opacity: 0.7;
}

.nav__btn-yellow {
    background-color: #FFF325;
}

.nav__btn-blue {
    background-color: #3476B4;
    color: #fff;
}

.nav-unshown { display: none; }

@media (max-width: 1250px) {
  .header__logo img { 
    width: 180px;
 }

 .nav__list {
    gap: 20px;
    margin-right: 20px;
}

 .nav__list__item {
    font-size: 12px;
}

.nav__btn {
    padding-left: 28px;
    padding-right: 28px;
    font-size: 16px;
}

}

@media (max-width: 768px) {
    .header {
    height: 60px;
    padding: 0 15px;
  }

  .nav-open {
    display: block;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 100;
  }
  .nav-open span, .nav-open span::before, .nav-open span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #333;
    transition: 0.3s;
  }
  .nav-open span { top: 10px; }
  .nav-open span::before { top: -10px; }
  .nav-open span::after { top: 10px; }

  /* メニューを画面全体に広げる（初期は右に隠す） */
  .nav {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column; 
    justify-content: center;
    transition: 0.5s;
    z-index: 90;
  }

  /* チェックされたらメニューを出す */
  #nav-input:checked ~ .nav { right: 0; }
  
  .nav__list {
    flex-direction: column;
    text-align: center;
    margin-right: 0;
    gap: 20px;
  }
  .nav__btns {
    flex-direction: column;
    width: 80%;
    height: auto;
    margin-top: 30px;
  }
  .nav__btn { height: 50px; width: 100%; }
}


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

.mv {
    position: relative;
    overflow: hidden;
    padding: 2px 0;
}

.mv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mv__bg img {
    width: 100%;
}

.mv__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
}

.mv__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 50%;
}

.mv__lead {
    display: inline-block;
    font-weight: bold;
    color: #fff;
    background-color: #231815;
    padding: 10px;
    width: fit-content;
}

.mv__title {
    font-size: 40px;
    
    line-height: 1.3;
    letter-spacing: -0.06em;
    width: fit-content;
}

.mv__title-strong {
    font-size: 56px;
    font-weight: bold;
}

.mv__desc {
    font-weight: bold;
    line-height: 1.8;
}

.mv__btn {
    font-size: 32px;
    font-weight: bold;
    background-color: #3476B4;
    color: #fff;
    border: solid #fff 5px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 90px 25px 50px;
    transition: opacity 0.3s;
    position: relative;
}

.mv__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
  width: 20px;
  height: 20px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.mv__btn:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.mv__device {
    width: 50%;
}

.mv__device img {
    width: 100%;
}

@media (max-width: 1250px) {
    .mv__lead ,.mv__desc {
        font-size: 16px;
    }

    .mv__title {
        font-size: 32px;
    }

    .mv__title-strong {
        font-size: 40px;
    }

    .mv__btn {
    font-size: 28px;
    padding: 20px 28px;
    }
}

@media (max-width: 768px) {
    .mv {
        height: auto;
    }

    .mv__inner {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
    }

    .mv__lead, .mv__title {
        margin: 0 auto;
    }
    .mv__title {
        font-size: 28px;
    }
    .mv__title-strong {
        font-size: 32px;
    }
    .mv__content {
        width: 100%;
    }
    .mv__device {
        width: 80%;
        margin-bottom: 20px;
    }
    .mv__desc {
        padding: 0 20px;
    }
    .sp-none {
        display: none;
    }
    .mv__btn {
    font-size: 22px;
    max-width: 400px;
    margin: 0 auto;
    }
    .mv__btn::after {
    width: 15px;
    height: 15px;
}
}

@media (max-width: 500px) {
    .mv__title {
        font-size: 22px;
    }
    .mv__title-strong {
        font-size: 24px;
    }
    .mv__lead {
        font-size: 14px;
        margin: 0 20px;
    }
}

/* ---------
こんなお悩みありませんか？
--------- */

.problem {
    background-color: #E1F1F3;
    padding: 100px 0;
    position: relative;
}

/* タイトル */

.problem__title::before{
    content: '';
    display: inline-block;
    width: 100px;
    height: 100px;
    background: url(../images/problem_hukidashi.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 20px;
    margin-bottom: 20px;
}

.problem__title-strong {
    font-size: 64px;
    color: #3476B4;
}

/* リスト */
.problem__list {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6%;
}

.problem__listitem {
    width: 47%;
    background-color: #fff;
    font-size: 24px;
    padding: 85px 40px 40px;
    border-radius: 10px;
    margin-bottom: 6%;
    position: relative;
    display: inline-block;
}

/* リスト_チェックマーク */
.problem__listitem::before{
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background: url(../images/problem_check.png);
    background-size: contain;
    background-repeat: no-repeat;
}

/* リスト_吹き出し */
.problem__listitem-left::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 70%;
  margin-left: -15px;
  border-style: solid;
  border-width: 35px 0 15px 45px;
  border-color: #ffffff transparent transparent transparent;
}

.problem__listitem-right::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 30%;
  margin-left: -15px;
  border-style: solid;
  border-width: 35px 45px 0 0;
  border-color: #ffffff transparent transparent transparent;
}


.problem__marker {
    font-weight: bold;
}

.problem__man {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 300px;
    margin: 0 auto;
    z-index: 10;
}

@media (max-width: 1250px) {
    .problem__title::before{
    width: 80px;
    height: 80px;
    margin-right: 15px;
    margin-bottom: 10px;
}

.problem__title-strong {
    font-size: 48px;
}

.problem__list {
    margin-top: 30px;
}

.problem__listitem {
    font-size: 20px;
    padding: 75px 35px 25px;
    margin-bottom: 60px;
}

.problem__man {
    max-width: 250px;
}

/* リスト_チェックマーク */
.problem__listitem::before{
    top: 15px;
    width: 40px;
    height: 40px;
}
}


@media (max-width: 768px) { 
    .problem {
    padding-bottom: 140px;
}
    .problem__title::before{
    width: 45px;
    height: 45px;
    margin-right: 10px;
    margin-bottom: 5px;
}
    .problem__listitem {
    width: 100%;
    font-size: 16px;
    text-align: center;
    padding: 60px 20px 25px;
    margin-bottom: 40px;
    }

.problem__title-strong {
    font-size: 32px;
}

/* リスト_チェックマーク */
.problem__listitem::before{
    top: 15px;
    width: 30px;
    height: 30px;
}

/* リスト_吹き出し */
.problem__listitem-left::after {
  border-width: 15px 15px 0 15px;
  left: 50%;
}

.problem__listitem-right::after {
  border-width: 15px 15px 0 15px;
  left: 50%;
}

.problem__man {
    max-width: 200px;
    min-width: 190px;
}

}

/* ---------
DynaCADCUBEが解決
--------- */

.success {
    background-color: #E1F1F3;
    padding-bottom: 80px;
    overflow: hidden;
}

/* ヘッダー */
.success__header {
    background-color: #3476B4;
    padding: 46px 40px;
    position: relative;
    margin-bottom: 130px;
    z-index: 20;
}

.success__title {
    color: #fff;
}

.success__title-strong {
    color: #FFF325;
}

/* ヘッダー_吹き出し */
.success__header::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 30px 40px 0 40px;
  border-color: #3476B4 transparent transparent transparent;
}

/* リスト */
.success__listitem {
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
    border-radius: 10px;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 30px 40px;
    position: relative;
    gap: 28px;
}

.success__listitem.-item2 {
    flex-direction: row-reverse;
}

/* 数字 */
.success__number {
    font-size: 90px;
    color: #3476B4;
    font-weight: bold;
    position: absolute;
    top: -50px;
    left: 17px;
}

.success__listitem.-item2 .success__number {
    left: auto;
    right: 30px;
}

/* 画像 */
.success__listitem-img {
    width: 100%;
    flex: 1;
}

/* リスト_content */
.success__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1.3;
}

.success__content-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.success__label {
    background-color: #FFF325;
    font-weight: bold;
    padding: 10px;
}

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

.success__content-title-strong {
    color: #3476B4;
    font-size: 36px;
    font-weight: bold;
}

.success__desc {
    font-size: 18px;
}

/* リスト_導入効果 */
.success__benefit-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.success__benefit-label {
    background-color: #3476B4;
    color: #fff;
    font-weight: bold;
    display: block;
    width: 130px;
    text-align: center;
    padding: 15px 10px;
}

.success_benefit-text {
    color: #3476B4;
    font-weight: bold;
}

/* リスト_詳しくはこちら */
.success__link {
    font-weight: bold;
    display: block;
    color: #3476B4;
    width: fit-content;
    border-bottom: solid 2px #3476B4;
    padding-bottom: 10px;
    text-align: right;
    margin-left: auto;
}

.success__link:hover {
    opacity: 0.7;
    transform: translateY(2px);
}

.success__link::after {
    content: ">";
    font-size: 22px;
    margin-left: 5px;
    font-weight: 100;
}

/* CTA */
.success_cta {
    display: flex;
    align-items: center;
    justify-content:center ;
    gap: 20px;
}

.success_cta-btn {
    font-size: 32px;
    font-weight: bold;
    padding: 25px 90px 25px 50px;
    border-radius: 60px;
    position: relative;
}

.success_cta-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
  width: 20px;
  height: 20px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.success_cta-btn.-white {
    background-color: #fff;
    color: #3476B4;
    border: #3476B4 4px solid;
}

.success_cta-btn.-blue {
    background-color: #3476B4;
    color: #fff;
    border: #fff 4px solid;
}

.success_cta-btn:hover {
    opacity: 0.7;
    transform: translateY(2px);
}

@media (max-width: 1250px) {
    .success__content-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

.success__content-title-strong {
    font-size: 32px;
}

.success_cta-btn {
    font-size: 28px;
    padding: 25px 80px 25px 40px;
}

}

@media (max-width: 768px) {
    .success__listitem ,.success__listitem.-item2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .success__number {
        font-size: 60px;
        top: -30px;
        left: 15px;
    }

    .success__listitem.-item2 .success__number {
        right: auto;
        left: 15px;
    }

    .success__listitem-img img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
        height: auto;
    }

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

    .success__content-title-strong {
        font-size: 22px;
    }

    .success__desc {
        font-size: 16px;
    }

    .success_cta {
        flex-direction: column;
    }

    .success_cta-btn {
        width: 100%;
        max-width: 500px;
    }

    .success_cta-btn {
    font-size: 20px;
}

.success_cta-btn::after {
  width: 15px;
  height: 15px;
}
}

@media (max-width: 500px) {
    .success__header {
    padding: 35px 20px;
    }
    .success__listitem {
        padding: 50px 20px 40px;
    }
}

/* ---------
メリット1
--------- */

.merit {
    background-color: #3476B4;
    padding: 80px 0;
}

.merit__label {
    background-color: #fff;
    color: #3476B4;
    padding: 10px;
    width: 100px;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 auto 30px auto;
}

.merit__title {
    color: #fff;
    margin-bottom: 30px;
}

.merit__strong {
    color: #FFF325;
    font-size: 54px;
    padding-bottom: 10px;
    border-bottom: solid 3px#fff;
}

.merit__lead-strong {
    color: #231815;
    background-color: #FFF325;
    padding: 2px;
}

.merit__lead {
    text-align: center;
    color: #fff;
}

.merit1__img {
    margin: 60px auto;
}

.merit1__img img {
    margin: auto;
}

/* 3つの確認機能 */
.merit1__function {
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
    padding: 60px 50px;
    border-radius: 5px;
}

.function__title {
    margin : 0 auto 60px auto;
}

.function__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.function__listitem {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
    border-left: #3476B4 solid 15px;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.function__listitem-text {
    width: 80%;
}

.function__listitem-title {
    margin-bottom: 10px;
}

/* こんなシーンで活躍します */
.active__title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.active__listitem-title::before{
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../images/icon_check.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 5px;
}

.active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.active__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.active__listitem-desc {
    margin-left: 41px;
    font-size: 18px;
}

@media (max-width: 1250px) {
    .function__listitem-desc ,.active__listitem-desc{
        font-size: 16px;
    }
    .merit__strong {
    font-size: 48px;
}
}

@media (max-width: 768px) {
    .merit__strong {
    font-size: 32px;
    }
    .merit1__function {
        padding: 60px 30px;
    }
    .function__title {
        font-size: 28px;
    }
    .function__listitem-desc ,.active__listitem-desc{
        font-size: 16px;
    }
    .function__listitem {
        flex-direction: column;
        padding: 30px;
        border-left: 0;
        border-top: #3476B4 solid 15px;
    }
    .function__listitem-text {
        width: 100%;
    }

    .active {
        flex-direction: column-reverse;
        
    }
    .active__title {
        text-align: center;
        font-size: 28px;
    }

    .active__listitem-title {
        margin-bottom: 10px;
    }

    .active__listitem-desc {
        margin-left: 0;
    }

    .active__listitem-title::before{
    width: 25px;
    height: 25px;
    margin-bottom: 0;
}
    .active__lmg {
        max-width: 200px;
    }
}

@media (max-width: 500px) {
    .merit1__function {
    padding: 50px 20px;
    }
    .function__listitem {
    padding: 20px;
    }
}

/* ---------
メリット2
--------- */

.merit2 {
    background-color: #fff;
    padding: 80px 0 50px 0;
}

.merit__label.-blue {
    background-color: #3476B4;
    color: #fff;
    padding: 10px;
}
.merit2__title {
    line-height: 1.6;
    margin-bottom: 30px;
}

.merit2__strong {
    font-size: 54px;
    padding-bottom: 10px;
    border-bottom: solid 5px#FFF325;
}

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

/* 現場とオフィスをシームレスに */
.merit2__share-wrapper {
    background-color: #fff;
    padding: 40px 150px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
    margin-bottom: 60px;
}

.merit2__share-title {
    margin: 20px 0 10px 0;
}

/* データ共有の壁を取り払う */
.date__head {
    margin-bottom: 10px;
}

/* データ共有_FLOW */
.date__flow {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.date__flow-inner {
    padding: 30px;
    max-width: 270px;
}

.date__flow-img {
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 100px;
    min-width: 60px;
}

.date__flow-title {
    text-align: center;
    margin-bottom: 10px;
}

.date__flow-desc {
    text-align: center;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 20px solid #4e4e4e;
  border-right: 0;
  margin: auto;
}

/* データ共有_リスト */
.date__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6%;
}

.date__listitem {
    width: 47%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 6%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
}

.date__icon {
    margin-bottom: 20px;
}

.date__title {
    margin-bottom: 10px;
}

@media (max-width: 1250px) {
    .merit2__strong {
    font-size: 48px;
    }

/* 現場とオフィスをシームレスに */
    .merit2__share-wrapper {
    padding: 40px 80px;
    }

    .merit2__lead {
    margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .merit2__strong {
        font-size: 32px;
    }

    .merit2__share-wrapper {
        padding: 30px;
    }

    .date__head {
        font-size: 28px;
    }

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

    .triangle {
  border-top: 20px solid #4e4e4e;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-bottom: 0;
}

    .date__list {
        flex-direction: column;
    }

    .date__listitem {
        width: 100%;
        margin-bottom: 10%;
    }

    .date__icon img {
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .merit2__share-wrapper, .date__listitem {
    padding: 20px;
    }
}

/* ---------
メリット3
--------- */

.merit3__contener {
    background-color: #fff;
    padding: 50px;
    border-radius: 5px;
    margin-top: 60px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
    display: flex;
    align-items: center;
    gap: 30px;
}

/* メリット3__画像 */
.merit3__img {
    flex: 1;
}

.merit3__img img{
    margin: auto;
}

/* メリット3__content */
.merit3__content {
    flex: 1.1;
}

.merit3__content-block {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border-left: #FFF325 solid 15px;
    margin-top: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
}

.merit3__content-strong {
    color: #3476B4;
}

/* メリット3__リスト */
.merit3__content-listitem {
    margin: 30px auto 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
}

.merit3__content-img {
    width: 100%;
    max-width: 70px;
}

@media (max-width: 768px) {
    .merit3__contener {
        padding: 30px;
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .merit3__contener {
    padding: 20px;
    }
    .merit3__content-block {
        padding: 10px;
    }
}

/* ---------
他社比較
--------- */

.comparison {
    background-color: #fff;
    padding: 80px 0;
}

.comparison__title {
    margin-bottom: 40px;
}

.comparison__strong {
    font-size: 64px;
    color: #3476B4;
}

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

/* 比較表 */
.comparison-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    gap: 5px;
}

.comparison__labels, .comparison__competitor, .comparison__cube {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.comparison__cell {
    height: 138px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    text-align: center;
    background-color: #f2f2f2;
    font-size: 24px;
    white-space: nowrap;
}

.comparison__cell p{
    text-align: center;
}

/* 項目ラベル */
.comparison__labels {
    width: 180px;

}

.comparison__label-cell {
    background-color: #fff;
    text-align: right;
    font-weight: bold;
}

.comparison__labels .comparison__header-cell {
    background-color: #fff;
    height: 125px;
}

/* 高機能な競合CAD */
.comparison__competitor {
    width: 400px;
}

.comparison__competitor .comparison__header-cell {
    background-color: #5F5F5F;
    border-radius: 10px 10px 0 0;
    height: 90px;
    margin-top: 36px;
    color: #fff;
    font-weight: bold;
}

.comparison__competitor-subtitle {
    color: #fff;
    font-weight: 100;
}

/* DynaCAD CUBE */
.comparison__cube {
    width: 400px;
    border: solid #3476B4 5px;
    border-radius: 10px;
    box-sizing:content-box;
}

.comparison__cube .comparison__header-cell {
    background-color: #3476B4;
    height: 120px;
    color: #fff;
    font-weight: bold;
}

.comparison__cube-title {
    font-size: 36px;
    color: #FFF325;
}

.comparison__cube-subtitle {
    color: #fff;
}

.comparison__cell img {
    max-width: 100%;
    width: 35px;
    margin: 0 auto 5px auto;
}

.comparison__cube .comparison__cell {
    font-weight: bold;
    color: #3476B4;
}

.comparison__link-cell {
    background-color: #3476B4;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison__link {
    max-width: 130px;
    text-align: center;
    color: #FFF325;
    padding: 5px;
    border-bottom: #FFF325 solid
     2px;
     font-weight: bold;
     font-size: 20px;
}

.comparison__link:hover {
    opacity: 0.9;
}

.comparison__link::after {
    content: ">";
    margin-left: 5px;
}

@media (max-width: 1250px) {
    .comparison__strong {
    font-size: 48px;
    }
    .comparison__title {
    margin-bottom: 30px;
    }
    .comparison__cell {
        font-size: 20px;
    }
    .comparison__cube-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .comparison-container {
        width: 100%;
        max-width: 100%;
        overflow-x: scroll;
        justify-content: flex-start;
        padding-bottom: 20px;
    }

    .comparison__labels ,.comparison__competitor ,.comparison__cube {
        flex-shrink: 0;
    }

    .comparison__labels { width: 120px; }
    .comparison__competitor { width: 280px; }
    .comparison__cube { width: 280px; }

    .comparison__strong {
    font-size: 32px;
}
.comparison__cell {
font-size: 16px;
}
}
@media (max-width: 500px) {
    .comparison__labels { width: 100px; }
    .comparison__competitor { width: 260px; }
    .comparison__cube { width: 260px; }
}


/* なぜ、DynaCAD CUBEなのか？*/

.reason {
    margin-top: 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.reason__content {
    flex: 1.1;
}

.reason__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.reason__desc {
    margin-bottom: 40px;
}

.reason__strong {
    color: #3476B4;
}

.reason__block-title::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../images/icon_check.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 5px;
}

.reason__block-desc {
    margin-left: 41px;
    width: 90%;
}

.reason__img {
    flex: 1;
}

.reason__img-note {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
}

@media (max-width: 1250px) {
    .reason {
    gap: 20px;
    }
    .reason__title {
        font-size: 24px;
    }
    .reason__block-desc {
    margin-left: 0;
    width: 100%;
}
    .reason__img-note {
    font-size: 16px;
}
}

@media (max-width: 768px) {
    .reason {
    flex-direction: column;
    gap: 50px;
    }
    .reason__title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* ---------
導入までの流れ
--------- */

.intro {
    background-color: #E1F1F3;
    padding: 80px 0;
}

.intro__title {
    color: #3476B4;
    margin: 0 auto 40px auto;
}

.intro__lead {
    text-align: center;
}

.intro__flow {
    display: flex;
    gap: 38px;
    margin: 60px 0;
}

.intro__flow-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    max-width: 177px;
}

.intro__flow-img {
    margin: auto;
}

.intro__flow-title {
    position: relative;
    display: inline-block;
}

.intro__flow-title::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    display: inline-block;
    width: 50px;
    height: 4px;
    background-color: #FFF325;
    border-radius: 2px;
}

/* サポート */
.intro__support {
padding: 40px;
background-color: #fff;
border-radius: 10px;
display: flex;
gap: 4%;
align-items: center;
}

.support__img {
    width: 40%;
}

.support__img img{
    margin: 0 auto;
}

.support__content {
    width: 56%;
}

.support__content-title {
    font-size: 32px;
    font-weight: bold;
    color: #3476B4;
    margin-bottom: 20px;
}

.support__list {
    margin-top: 20px;
}

.support__listitem {
    font-size: 24px;
    font-weight: bold;
}

.support__listitem:first-child{
margin-bottom: 10px;
}

.support__listitem::before{
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../images/icon_check.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 5px;
}

@media (max-width: 1250px) {
    .intro__title {
        font-size: 36px;
    }
    .support__content-title {
        font-size: 24px;
    }
    .support__listitem {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .intro__title {
        font-size: 28px;
    }
    .intro__flow {
        flex-direction: column;
        align-items: center;
    }
    .intro__flow-inner {
        max-width: 500px;
    }

    .intro__flow-img {
        max-width: 100px;
    }

    .intro__support {
        flex-direction: column-reverse;
    }

    .support__img {
    width: 100%;
    margin-top: 40px;
    }

    .support__content {
    width: 100%;
    }
    .support__listitem {
        font-size: 16px;
    }

    .support__listitem::before{
    width: 25px;
    height: 25px;
}
}

@media (max-width: 500px) {
    .intro__support {
    padding: 40px 20px;
    }
}

/* ---------
CTA
--------- */

.cta {
    background-color: #3476B4;
    padding: 60px 0 100px;
}

.cta__head {
    margin-bottom: 80px;
}

.cta__title {
    font-size: 64px;
    color: #fff;
    margin-bottom: 40px;
}

.cta__title-strong {
    font-size: 72px;
    color: #FFF325;
}

.cta__lead {
    text-align: center;
    color: #fff;
}

/* 無料動画 */
.cta__movie-wrapper {
    border: solid 3px #E1F1F3;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 80px;

}

.movie__title {
    font-size: 36px;
    color: #fff;
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding: 0 50px;
    font-weight: bold;
}

.movie__title:before, .movie__title:after {
  content: '';
  position: absolute;
  top: 54%;
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #fff;
}

.movie__title:before {
  -webkit-transform: rotate(-115deg);
  transform: rotate(-115deg);
}

.movie__title::after {
  -webkit-transform: rotate(-65deg);
  transform: rotate(-65deg);
}

.movie__title:before {
  left:0;
}
.movie__title:after {
  right: 0;
}

.movie__title-strong {
    font-size: 52px;
    color: #FFF325;
    border-bottom: 4px solid #FFF325;
    padding-bottom: 10px;
}

.movie__line {
    background-color: #f2f2f2;
    width: 100%;
    height: 5px;
    margin: 40px 0;
}

.movie {
    width: 100%;
    aspect-ratio: 16 / 9;
    text-align: center;
}

.movie iframe {
    width: 100%;
    height: 100%;
}


@media (max-width: 1250px) {
    .cta__title {
    font-size: 48px;
    }
    .cta__title-strong {
    font-size: 58px;
    }
    .movie__title {
    font-size: 28px;
    padding: 0 40px;
    }
    .movie__title-strong {
    font-size: 36px;
    }
}

@media (max-width: 768px) {
    .cta__title {
    font-size: 28px;
    }
    .cta__title-strong {
    font-size: 32px;
    }

    .cta__movie-wrapper {
    padding: 25px;
    }
    .movie__title {
    font-size: 22px;
    padding: 0 35px;
    line-height: 2;
    }
    .movie__title-strong {
    font-size: 28px;
    }
    .movie__title:before, .movie__title:after {
    width: 30px;
    height: 2px;
}
}

/* ---------
フッター
--------- */
.footer {
    padding: 60px 90px 20px;
    width: 100%;
}

.footer__menu {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: space-between;
}

.info__list {
    display: flex;
    gap: 40px;
    font-weight: bold;
}

.info__list-item {
    display: flex;
    width: 100%;
}

.info__list-item dt {
    width: 15%;
}

.info__list-item dd {
    width: 85%;
}

.footer__menu a:hover {
    opacity: 0.7;
}

.info__list-logo a{
    margin-top: 20px;
}

.footer__copy {
    text-align: center;
    font-size: 14px;
    padding-top: 40px;
}

@media (max-width: 1250px) {
    .footer {
    padding: 60px 40px 20px;
}
    .footer__menu {
    justify-content: center;
    gap: 120px;
}
    .info__list {
    flex-direction: column;
}
}

@media (max-width: 768px) {
    .footer__menu {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 500px) {
    .footer {
        padding: 40px 20px 20px;
    }
}