@charset "UTF-8";

/* 固定ヘッダー */
.head-cont {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #fff;
    z-index: 100;
}
.head-cont-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 0 40px;
}

.header-logo {
    flex-shrink: 0;
}

.header-buttons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.logo-img {
    width: 450px;
    max-width: 450px;
}

/* レイアウト */
.lp-top {
    padding-top: 90px;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}
.container-ktns {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e6e6e6;
}

/* タブ実装 */
.switching_area {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    max-width: 1088px;
    padding: 0;
    margin: auto;
}
.switching_area a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}
.tab_btn {
    display: flex;
    flex: 1;
    flex-basis: 120px;
    justify-content: center;
    background-color: #999999;
    color: #fff;
    align-items: center;
}
.tab_btn.on {
    background-color: #0b02ce;
}
.tab_btn:hover {
    opacity: 0.8;
}
.tab_btn_arrow {
    display: inline-block;
    margin-left: 8px;
    margin-bottom: 6px;
    width: 12px;
    height: 12px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
}

/* ボタン関連 */
.btn-entry,
.btn-entry-blue,
.btn-entry-yellow  {
    border-radius: 4px;
    display: flex;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    width: 214px;
    height: 54px;
    padding: 8px;
    transition: .3s cubic-bezier(.4,.4,0,1);
    align-items: center;
    justify-content: center;
}
.btn-entry {
    color: #0b02ce;
    background-color: #fff;
    border: solid 2px #0b02ce;
}
.btn-entry:hover {
    background: #0b02ce;
    color: #fff;
}
.btn-entry-blue {
    color: #fff;
    background-color: #0b02ce;
    border: solid 2px #0b02ce;
}
.btn-entry-blue:hover {
    background: #fff;
    color: #0b02ce;
    border: solid 2px #0b02ce;
}
.btn-entry-yellow {
    color: #0b02ce;
    background-color: #ffaa00;
    border: solid 2px #ffaa00;
}
.btn-entry-yellow:hover {
    background: #fff;
    border: solid 2px #ffaa00;
}

/* ヘッダボタン位置調整 */
.ds-grid {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
}

/* ヘッダボタンの動的サイズ調整 */
.ds-grid .btn-entry,
.ds-grid .btn-entry-blue,
.ds-grid .btn-entry-yellow {
    width: 214px;
    flex-shrink: 0;
    flex-grow: 0;
}

/* ウィンドウ幅が狭い時のヘッダボタン自動縮小 */
@media screen and (max-width: 1200px) {
    .ds-grid .btn-entry,
    .ds-grid .btn-entry-blue,
    .btn-entry-yellow {
        font-size: clamp(12px, 1.4vw, 16px);
        width: clamp(160px, 17vw, 214px);
        height: clamp(46px, 5vw, 54px);
        flex-shrink: 1;
    }
    .logo-img {
        width: clamp(200px, 37.5vw, 450px);
        max-width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .ds-grid .btn-entry,
    .ds-grid .btn-entry-blue,
    .ds-grid .btn-entry-yellow {
        font-size: clamp(11px, 1.3vw, 14px);
        width: clamp(140px, 16vw, 180px);
        height: clamp(42px, 5vw, 48px);
    }
}

@media screen and (max-width: 800px) {
    .ds-grid .btn-entry,
    .ds-grid .btn-entry-blue,
    .ds-grid .btn-entry-yellow {
        font-size: clamp(10px, 1.25vw, 12px);
        width: clamp(115px, 14.5vw, 145px);
        height: clamp(38px, 4.8vw, 44px);
    }
}

/* メインビジュアル */
.main-visual {
    position: relative;
    border-top: solid 2px #2922ad;
}
.main-visual p {
    position: absolute;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
    font-size: clamp(14px, 2.2vw, 27px);
    font-weight: bold;
    color: #fff;
    top: 56%;
    left: 8%;
}
.main-visual-btn {
    position: absolute;
    color: #fff;
    top: 80%;
    left: 5%;
    display: flex;
    gap: clamp(8px, 2vw, 24px);
    align-items: center;
}
.main-visual-btn .btn-entry,
.main-visual-btn .btn-entry-blue {
    width: 290px;
    height: 54px;
    font-size: 16px;
    padding: 8px;
    white-space: nowrap;
}
.main-visual-btn .btn-entry {
    border: solid 2px #fff;
}
.main-visual-btn .btn-entry:hover {
    border: solid 2px #fff;
}
.main-visual-btn .btn-entry-blue {
    border: solid 2px #fff;
}

/* メインビジュアルボタンのレスポンシブ対応 */
@media screen and (max-width: 1200px) {
    .main-visual-btn .btn-entry,
    .main-visual-btn .btn-entry-blue {
        width: clamp(120px, 24vw, 290px);
        height: clamp(30px, 4.5vw, 54px);
        font-size: clamp(9px, 1.33vw, 16px);
        padding: clamp(4px, 0.67vw, 8px);
    }
}

/* 見出しデザイン */
.heading-design {
  position: relative;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 30px 30px 30px 50px; 
}
.heading-design::before,
.heading-design::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
}
.heading-design::before {
  top: 0;
  height: calc(100% - 20px); 
}
.heading-design::after {
  bottom: 0;
  height: 20px;
}
.heading-design-01 {
  background: linear-gradient(90deg, rgba(0, 53, 127, 1) 0%, rgba(42, 48, 173, 1) 80%, rgba(0, 184, 181, 1) 100%);
}
.heading-design-01::before {
  background-color: #2922ad;
}
.heading-design-01::after {
  background-color: #ffaa00;
}

/* 4つのポイントのご紹介 */
.four-points-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.four-points-area .column {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.four-points-area .column h3 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    align-self: center;
    padding: 16px;
}
.four-points-area .column h3 span {
    font-size: 22px;
    color: #ffaa00;
}
.four-points-area .column h3.heading-m-center {
    margin-bottom: 0;
}
.four-points-area .column img {
    width: 100%;
    height: auto;
    align-self: start;
}
.four-points-area .column p {
    font-size: 16px;
    line-height: 1.6;
    padding: 16px 32px;
}

/* レポートご提供までの流れ */
.flow-provision-images-01 {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: flex-start;
    align-items: flex-start;
}

.flow-provision-images-01 img {
    height: auto;
}

.flow-provision-images-01 img:nth-child(1) {
    width: 33.87%;
}

.flow-provision-images-01 img:nth-child(2) {
    width: 44.86%;
}

/* レポートご提供までの流れ（未契約） */
.flow-provision-area .heading-m {
    margin-bottom: 0;
}

.flow-provision-images-02 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 0;
    justify-content: flex-start;
    align-items: flex-start;
}

.flow-provision-images-02 img {
    height: auto;
}

.flow-provision-images-02 img:nth-child(1),
.flow-provision-images-02 img:nth-child(2),
.flow-provision-images-02 img:nth-child(4) {
    width: 32.66%;
}

.flow-provision-images-02 img:nth-child(3) {
    width: 31.75%;
}

.flow-provision-images-02 img:nth-child(5) {
    width: 44.83%;
}

/* データ利活用に関するご案内 */
ul.data-information-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 16px;
}

ul.data-information-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 20px;
    height: 20px;
    background-image: url('/solution/medical/hospital/mdv_act/sim_report_2026/images/act-report-2026_ico_02.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* セキュリティ管理体制 */
.data-security-area {
    border: 2px solid #0b02ce;
    border-radius: 4px;
    background: #fff;
}

.data-security-area .list-table li a {
    display: flex;
    align-items: flex-start;
}

.data-security-area .list-table .fw-bold .c-blue {
    font-size: 0.6em;
    margin-right: 3px;
    line-height: 2.5;
}

.data-security-area .list-table .fw-bold {
    flex-shrink: 0;
    margin-right: 8px;
    display: inline-block;
    text-indent: -0.7em;
    padding-left: 0.7em;
}

/* 共通パーツ変更 */
.heading-m::after,
.heading-m-center::after,
.heading-xs::before {
    background: #0b02ce;
}

/* よくある質問 */
.faq-area {
    font-family: 'YakuHanJP', Arial, 'Noto Sans JP', sans-serif, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
}
.faq-area .acd-content,
.flow-provision-area .acd-content {
    overflow: hidden;
}
.faq-area .heading-l::before,
.flow-provision-area .heading-l::before {
    background: #0b02ce;
}
.faq-area .acd-label:after,
.flow-provision-area .acd-label:after {
    color: #0b02ce;
}
.faq-area .acd-faqtext {
    color: #0b02ce;
}
.faq-area .btn-base::before,
.flow-provision-area .btn-base::before {
    background: -webkit-linear-gradient(0deg, #0b02ce 0%, #4e64f9 49.44%, #0b02ce 100%);
    background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0, #0b02ce), color-stop(0.4944, #4e64f9), color-stop(1, #0b02ce));
    background: linear-gradient(90deg, #0b02ce 0%, #4e64f9 49.44%, #0b02ce 100%);
}
.faq-area .btn-base:hover,
.flow-provision-area .btn-base:hover h3 {
    color: #fff;
}
.flow-provision-area .btn-base:hover .heading-m::after {
    background: #fff;
}

.faq-area .btn-entry-blue {
    width: 280px;
    max-width: 100%;
    font-weight: bold;
}

/* 2行ボタン用スタイル */
.btn-entry-blue-multiline {
    flex-direction: column;
    height: auto;
    min-height: 54px;
    padding: 8px 12px;
    line-height: 1.4;
    width: auto;
    min-width: 280px;
    max-width: none !important;
}
.btn-entry-blue-multiline .btn-main-text {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
}
.btn-entry-blue-multiline .btn-sub-text {
    font-size: 12px;
    font-weight: normal;
    margin-top: 4px;
    color: #fff;
    white-space: nowrap;
}
.btn-entry-blue-multiline:hover .btn-main-text,
.btn-entry-blue-multiline:hover .btn-sub-text {
    color: #0b02ce;
}

/* ボタン横並び用 */
.btn-horizontal-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
}
.btn-horizontal-group .btn-entry-blue {
    height: 54px;
    white-space: nowrap;
    width: auto;
    min-width: 280px;
}

/* 汎用 */
.c-light-gray-bg {
    background-color: #e1e3eb;
}
.c-dark-gray-bg {
    background-color: #e6e6e6;
}
.c-blue {
    color: #0b02ce;
}
.line-height-190 {
   line-height: 1.9; 
}
.line-b-yellow {
    border-bottom: 1px solid #ffaa00;
}

/* トップへ戻るボタン */
.btn-floating-top a {
    background: #0b02ce;
}
.btn-floating-top a:hover {
    background: #2d52d7;
}

@media screen and (max-width: 768px) {
    [class*="w-res-"] {
        width: 100% !important;
    }
    .data-security-area .list-table li a {
        flex-direction: column;
    }
    
    .four-points-area {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .m-b-0-pc {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 686px) {
    .btn-entry {
        font-size: 12px;
        width: 140px;
    }
    .btn-entry-blue {
        font-size: 12px;
        width: 140px;
    }
    .ds-grid .btn-entry,
    .ds-grid .btn-entry-blue,
    .ds-grid .btn-entry-yellow {
        width: clamp(105px, 14vw, 130px);
        font-size: clamp(9px, 1.3vw, 11px);
        height: clamp(36px, 4.5vw, 42px);
    }
    .faq-area .btn-entry-blue {
        font-size: 16px;
        width: 280px;
    }
    .faq-area .btn-horizontal-group .btn-entry-blue {
        width: auto;
    }
}

@media screen and (max-width: 600px) {
    .switching_area {
        flex-direction: column;
        align-items: stretch;
    }
    .tab_btn {
        flex-basis: initial;
    }
    .container-ktns {
        padding: 20px;
    }
    .head-cont {
        height: 124px;
    }
    .head-cont-inner {
        flex-direction: column;
        justify-content: center;
        padding: 10px;
    }
    .header-logo {
        text-align: center;
    }
    .logo-img {
        width: 90%;
        margin: 0 auto;
    }
    .header-buttons {
        width: 100%;
        padding: 0 16px;
    }
    .ds-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        justify-content: stretch;
    }
    .ds-grid .btn-entry,
    .ds-grid .btn-entry-blue,
    .ds-grid .btn-entry-yellow {
        width: 100%;
        max-width: 100%;
        font-size: 11px;
        height: 40px;
        padding: 4px;
        flex-shrink: 0;
    }
    .lp-top {
        padding-top: 124px;
    }
    .switching_area {
        margin-bottom: 20px;
    }
    .switching_area a {
        font-size: 14px;
        min-height: 40px;
    }
    .btn-entry {
        font-size: 10px;
        width: 110px;
    }
    .btn-entry-blue {
        font-size: 10px;
        width: 110px;
    }
    .main-visual p,
    .main-visual-btn {
        display: none;
    }
    .faq-area .btn-horizontal-group .btn-entry-blue,
    .faq-area .btn-horizontal-group .btn-entry-blue-multiline .btn-main-text,
    .faq-area .btn-horizontal-group .btn-entry-blue-multiline .btn-sub-text {
        width: 100%;
        min-width: auto;
        height: auto;
        white-space: normal;
    }
    
    /* 余白調整 */
    .p-tb-40 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .p-tb-0-sp {
        padding-top: 0;
        padding-bottom: 0;
    }
    .p-lr-40 {
        padding: 0;
    }
    .p-l-40 {
        padding-left: 0;
    }
    .p-r-40 {
        padding-right: 0;
    }
    .m-l-40 {
        margin-left: 0;
    }
    .m-r-40 {
        margin-right: 0;
    }
    .p-40 {
        padding: 20px;
    }
    .p-24 {
        padding: 15px;
    }
    .p-lr-24 {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* フォントサイズ・余白調整 */
    .heading-design {
        font-size: 18px;
        padding: 16px 16px 16px 26px;
    }
    .c-dark-gray-bg .fs-18,
    .c-dark-gray-bg .fs-20,
    .c-dark-gray-bg .fs-22,
    .c-dark-gray-bg p {
        font-size: 16px;
    }
    .c-white-bg .fs-24 {
        font-size: 20px;
    }
    .four-points-area .column h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .four-points-area .column img {
        margin-bottom: 10px;
    }
    .four-points-area .column p {
        font-size: 14px;
    }
    .line-height-190 {
        line-height: 1.5;
    }
}
