@charset "utf-8";

/* 見出し */
.product_h3_title {
    border-bottom: 3px solid var(--text-color);
    color: var(--text-color);
    font-size: 1.5em;
    padding-bottom: 3px;
}

/* アンカーリンク */
.product_anchor_nav_wrapper {
    background-color: #f7f7f7;
    padding: 20px 0;
    border-bottom: 1px solid #c2c2c2;
    border-top: 1px solid #c2c2c2;
}

.product_anchor_nav_title {
    color: var(--text-color);
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
}

.product_anchor_nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_anchor_link {
    color: var(--comp-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.product_anchor_link:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.product_anchor_link + .product_anchor_link::before {
    content: "|";
    color: #cccccc;
    margin-right: 24px;
    font-weight: 400;
}

.product_anchor_link:last-child {
    padding-left: 5px;
}

/* --- レスポンシブ --- */
@media screen and (max-width: 768px) {
    .product_anchor_nav_wrapper {
        padding: 16px 0;
    }

    .product_anchor_nav {
        flex-direction: column;
        gap: 12px;
    }

    .product_anchor_link {
        font-size: 1rem;
        padding: 4px 0;
        width: 100%;
        text-align: center;
    }

    .product_anchor_link + .product_anchor_link::before {
        display: none;
    }
}

/* MV */
.mv_section {
    margin-top: 25px;
    padding-bottom: 0!important;
    width: 100%;
}

/* こんなことにお困りではありませんか */
.read-title {
    padding-bottom: 10px;
}

.closing-text {
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-color) 100%); /* 画像に近い赤色 */
    color: #ffffff; /* 白色テキスト */
    text-align: center; /* テキストを中央揃え */
    padding: 12px 20px; /* 内側の余白 (上下 左右) */
    font-weight: bold; /* 太字 */
    font-size: 1.1rem; /* 文字サイズ */
    letter-spacing: 1px; /* 文字間隔を少し広げる */
    display: inline-block; /* 内容に合わせて幅を調整 */
    box-sizing: border-box; /* paddingを含めて幅を計算 */
    margin: 10px auto 0;
    width: 100%;
}


/* 製品名・画像 */
.product_name {
    background-color: #f7f7f7;
    border-left: 5px solid var(--comp-color);
    color: var(--text-color);
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 auto;
    padding: 12px 15px;
}

.product_youto {
    padding-top: 15px;
}

@media screen and (max-width: 768px) {
    .product_name {
        font-size: 1.2em;
        padding: 8px 12px;
    }
}

.product_img {
    text-align: center;
    width: 100%;
}

.product_img img {
    display: inline-block;
}

.irradiation_table_wrapper {
    margin: 10px auto 70px;
}

.irradiation_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    table-layout: fixed;
}

.irradiation_table td {
    border: 1px solid #ccc;
    padding: 12px;
    vertical-align: middle;
    text-align: center;
}

.irradiation_table_header td {
    font-weight: 700;
    background-color: #f7f7f7;
}

.irradiation_table_image_cell {
    padding: 16px;
    text-align: center;
}

.irradiation_table_image_cell img {
    display: inline-block;
    width: 80%;
}

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

.irradiation_table_note td {
    background-color: #f7f7f7;
    color: #333;
    font-size: 1em;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .irradiation_table td {
        padding: 8px;
    }
    .irradiation_table_image_cell {
        padding: 8px;
    }
}

/* 特長 */
.tokucho_group {
    margin-bottom: 70px;
}
.features_section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}

.selection_points_grid {
    /* border-top: 3px solid var(--text-color); */
}

.selection_point_card {
    padding: 32px 0;
    border-bottom: 1px solid #e0e0e0;
}

.selection_point_card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.selection_point_card_header {
    margin-bottom: 12px;
    border-bottom: none;
    padding-bottom: 0;
}

.selection_point_card_title {
    position: relative;
    padding-left: 32px;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.selection_point_card_title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--comp-color);
}

.selection_point_card_description {
    color: #333333;
    line-height: 1.7;
    margin: 0;
    padding-left: 32px;
}

.box_btn_inq {
    margin-top: 50px;
    margin-bottom: 0;
    text-align: center;
}

.btn_inq {
    background: var(--accent-color) url(../../img/common/icon-mail.png) 15px 50% no-repeat;
    border-radius: 3px;
    color: var(--bs-white);
    display: inline-block;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 2em 0 3.5em;
    text-decoration: none;
}

.btn_inq:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
    .features_section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .selection_point_card {
        padding: 24px 0;
    }

    .selection_point_card_title {
        font-size: 1.1rem;
        padding-left: 24px;
    }
    
    .selection_point_card_title::before {
        width: 14px;
    }

    .selection_point_card_description {
        padding-left: 24px;
    }

    .box_btn_inq {
        margin-top: 40px;
    }

    .btn_inq {
        display: block;
        width: 100%;
        padding-top: 14px;
        padding-bottom: 14px;
    }
}


/* 事例 */
.jirei_section {
    background-color: var(--bright-comp-color);
}

.case_study_block {
    padding: 0;
}

.case_study_container {
    align-items: center;
    display: flex;
    gap: 40px;
    padding: 20px 0 0;
}

.case_study_text_content {
    flex: 1;
    min-width: 0;
}

.case_study_image_wrapper {
    flex: 0 0 45%;
    max-width: 45%;
}

.case_study_mini_title {
    display: inline-block;
    /* background-color: var(--comp-color); */
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 15px;
}

.case_study_description {
    margin: 0;
    line-height: 1.8;
    color: #333;
}

.case_study_image {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .case_study_section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .case_study_container {
        flex-direction: column;
        gap: 24px;
    }

    .case_study_text_content {
        width: 100%;
    }

    .case_study_image_wrapper {
        width: 100%;
        max-width: 100%;
        order: -1;
    }

    .case_study_mini_title {
        margin-bottom: 16px;
    }
}

/* 会社概要 */
.company_profile_section {
    background-color: #f4f4f4;
    padding: 80px 0;
    overflow: hidden; /* アニメーションのため */
}

.company_profile_description p {
    margin: 0 0 1.5em 0;
}
.company_profile_description p:last-child {
    margin-bottom: 0;
}

.company_profile_representative {
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
}

.company_profile_list_wrapper {
    /* padding-top: 20px; */
}

.company_profile_list_title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
}

.company_profile_list {
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0e0e0;
}

.company_profile_list_item {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.company_profile_list_term {
    flex: 0 0 180px; /* 項目名の幅を固定 */
    font-weight: 600;
    color: var(--text-color);
}

.company_profile_list_description {
    flex: 1;
    margin: 0;
    line-height: 1.7;
    color: var(--text-light-color);
}

.company_profile_animate_item {
    opacity: 1;
    transform: translateY(0);
}

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
    .company_profile_section {
        padding: 60px 0;
    }
    .company_profile_list_item {
        flex-direction: column; /* 縦積みに変更 */
    }
    .company_profile_list_term {
        flex-basis: auto; /* 幅固定を解除 */
        margin-bottom: 8px;
    }
}



/* 仕様 */


.spec_table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    font-size: 1rem;
}

.spec_table th,
.spec_table td {
    border-bottom: 1px solid #cccccc;
    padding: 12px 16px;
    vertical-align: middle;
    text-align: left;
}

.spec_table th {
    width: 30%;
    background-color: #f7f7f7;
    font-weight: 700;
    color: #333;
}

@media screen and (max-width: 768px) {
    .spec_table {
        border-left: none;
        border-right: none;
    }
    .spec_table th,
    .spec_table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .spec_table th {
        border-bottom: none;
        padding-bottom: 4px;
    }

    .spec_table td {
        padding-top: 4px;
    }
}