@charset "utf-8";

/* 見出し */
.product_h2_title {
    color: var(--text-color);
    font-size: 2.0em;
    margin-bottom: 20px;
    padding: 3px 0;
}

.product_h3_title {
    color: var(--comp-color);
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 3px 0;
}

.product_h4_title {
    color: var(--text-color);
    font-size: .9em;
    margin-bottom: 10px;
}

/* アンカーリンク */
.product_anchor_nav_wrapper {
    background-color: var(--bright-grey);
    padding: 10px 0;
    border: 1px solid var(--grey);
}

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

.product_anchor_nav {
    align-items: center;
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
}

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

.product_anchor_link:first-child {
    border-right: solid 2px var(--grey);
}

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

.product_anchor_bar {
    color: #ccc!important;
    font-size: 30px;
}

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

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

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

    .product_anchor_link:first-child {
        border-right: none;
        border-bottom: solid 1px var(--grey);
    }

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

/* MV */
#mv {
    padding-bottom: 0;
}

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

.mv_section img {
    margin: 0 auto;
}

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

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

.read-txt-link {
    color: var(--text-color);
    text-decoration: none;
}

.read-txt-link:hover {
    text-decoration: underline;
}



/* 製品ラインナップ */
.lineup_header {
    padding-bottom: 20px;
    text-align: left;
}

.lineup_h2 {
    border-bottom: 3px solid var(--comp-color);
    color: var(--text-color);
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 15px;
    padding: 12px 20px 12px 0;
}

@media screen and (max-width: 768px) {
    .read-title {
        font-size: 24px;
        max-width: 95%;
        margin: 0 auto;
    }
    .closing-text {
        padding: 12px 0;
    }
    .lineup_h2,
    .case-study-section h2 {
        font-size: 1.4em;
    }
}

/* 製品紹介・特徴*/
.tokucho_section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
    margin: 0 auto;
    max-width: 1300px;
    width: 90%;
}

.product_flex {
    display: grid;
    gap: 20px;
    grid-template-columns: 3fr 2fr;
}

.tokucho_group {
    display: block;
    grid-column: 2;
    margin: auto 0;
}

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

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

.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: '';
  display: block;
  position: absolute;
  top: 30%;
  left: 0;
  width: 20px;
  height: 10px;
  border-left: 2px solid #25AF01;
  border-bottom: 2px solid #25AF01;
  transform: rotate(-45deg);
}
.box_btn_inq {
    margin-top: 50px;
    margin-bottom: 0;
    text-align: center;
}

.box_btn_inq span {
    font-size: .95em;
    vertical-align: top;
}

.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;
    }

    .product_flex {
        grid-template-columns: repeat(1, 1fr);
    }

    .tokucho_group {
        grid-column: auto;
    }
    
    .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 {
        height: auto; /* 高さを自動に */
        line-height: 1.5; /* 行の高さを設定 */
        padding-top: 14px; /* 上下のpaddingで高さを確保 */
        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: var(--bright-grey);
    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: left;
}

.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: #5a6a78;
}

.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;
    }
}



/* 仕様 */
#shiyou {
    background-color: var(--bright-grey);
}

.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: #ececec;
    font-weight: 700;
    color: var(--text-color);
}

@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;
    }
    .sp_display_none {
        display: none;
    }
}

.card_list_component {
    padding: 60px 0;
}

.card_list_component_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.card_list_component_item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
}

.card_list_component_heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0.5em;
    color: var(--text-color);
}

.card_list_component_description {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 1.5em;
    color: var(--grey);
}

.card_list_component_image_wrapper img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e9e9e9;
}

@media (max-width: 768px) {
    .card_list_component {
    padding: 40px 0;
    }
    .card_list_component_list {
    grid-template-columns: 1fr;
    gap: 30px;
    }
    .card_list_component_heading {
    font-size: 1.2rem;
    }
    .card_list_component_description {
    font-size: 0.95rem;
    }
}

:root {
    --color-green-dark: #407c37;
    --color-green: #e7f0e5;
    --color-blue: #E6F2FF;
    --color-dark: #018593;
    --color-light-blue: #F0F5F9;
    --color-gray: #f2f2f2;
    --color-border: #ccc;
    --color-white: #fff;
    --color-text-dark: #333;
}

/* --- Product Comparison Container --- */
.product_comparison_container {
    margin-bottom: 40px;
}

/* --- 横スクロール用のラッパー --- */
/* ▼▼▼ レスポンシブ対応の追加 ▼▼▼ */
.product_comparison_wrapper {
    overflow-x: auto; /* 内容がはみ出た場合に横スクロールを有効にする */
    -webkit-overflow-scrolling: touch; /* iOSで慣性スクロールを有効にする */
    border: 1px solid var(--color-border); /* スクロール範囲が分かりやすいように枠線を追加 */
    border-radius: 4px; /* 少し角を丸める */
}

/* --- Product Comparison Table Section --- */
.comparative-chart {
    width: 100%;
    border-collapse: collapse;
    /* ▼▼▼ レスポンシブ対応の変更 ▼▼▼ */
    border: none; /* ラッパーに枠線を移したため、テーブル自体の枠線は不要 */
    font-size: 14px;
    color: var(--color-text-dark);
    text-align: center;
    background-color: var(--color-white);
    table-layout: fixed;
    margin-bottom: 0; /* ラッパーに管理を任せるためリセット */
}

/* --- 全てのセル（th, td）の共通スタイル --- */
.comparative-chart th,
.comparative-chart td {
    border: 1px solid var(--color-border);
    padding: 12px 8px;
    vertical-align: middle;
}

/* --- ヘッダー（thead）のスタイル --- */
.comparative-chart thead th {
    padding: 16px 8px;
    font-weight: bold;
    vertical-align: middle;
}

.comparative-chart thead th:nth-child(1) {
    width: 120px;
}

/* --- ボディのヘッダー列（tbody th）のスタイル --- */
.comparative-chart tbody th {
    font-size: 16px;
    font-weight: bold;
}

/* --- 縦書きのスタイル --- */
.text-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}


/* --- 製品紹介セルのスタイル --- */
.td-product {
    padding: 16px;
}
.td-product a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.table-image, .table-image-btpt2, .table-image-tk12 {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
/* 画像サイズを個別に調整する場合 */
.table-image-btpt2 { height: 80px; }
.table-image { height: 55px; }
.table-image-tk12 { height: 70px; }


.table-productname {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
}

.table-modelnumber {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
}

.table-button {
    display: inline-block;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    color: var(--color-white);
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.table-button:hover {
    opacity: 0.8;
}

/* --- アイコンと記号のスタイル --- */
.fall_icon, .stationary_icon {
    height: 30px;
}
.table-icon {
    height: 24px;
    vertical-align: middle;
    margin-right: 4px;
}

.comparative-chart [class*="bi-"] {
    vertical-align: -0.125em;
}

.table-circle-green, .table-circle-blue {
    font-size: 24px;
    font-weight: bold;
}
.table-circle-green { color: var(--color-green-dark); }
.table-circle-blue { color: var(--comp-color); }


/* --- ユーティリティクラス（HTMLで使われているもの） --- */
.bg-gry { background-color: var(--color-gray); }
.bg-green-dark { background-color: var(--color-green-dark); }
.bg-green { background-color: var(--color-green); }
.bg-primary { background-color: var(--comp-color); }
.bg-blue { background-color: var(--color-blue); }
.bg-color-dark { background-color: var(--color-dark); }
.bg-light-blue { background-color: var(--color-light-blue); }

.text-white { color: var(--color-white); }
.text-start { text-align: left; }
.text-nowrap { white-space: nowrap; }

.fw-bold { font-weight: bold; }
.d-flex { display: flex; flex-direction: column; }
.justify-content-start { justify-content: flex-start; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.me-1 { margin-right: 0.25rem; }
.ms-3 { margin-left: 1rem; }
.d-inline-block { display: inline-block; }

.align-items-baseline {
    align-items: baseline;
}

.text-align-left td {
    text-align: left;
}

/* --- レスポンシブ対応 (PC/SPの表示切り替え) --- */
.pc-only { display: block; }
.sp-only { display: none; }

/* --- スマートフォン向けのスタイル（例：768px以下） --- */
@media screen and (max-width: 768px) {
    .pc-only { display: none; }
    .sp-only { display: block; }

    /* ▼▼▼ レスポンシブ対応の追加 ▼▼▼ */
    .comparative-chart {
        min-width: 800px; /* テーブルが縮みすぎて崩れないように最小幅を設定 */
        font-size: 12px; /* 元の指定を維持 */
    }

    .table-productname {
        font-size: 14px; /* 元の指定を維持 */
    }
}

.product_img {
    grid-column: 1;
}

.product_img img {
    display: inline-block;
}

.introduce_title {
    background-color: var(--color-green-dark);
    color: white;
    display: block;
    font-size: 1.5em;
    margin-bottom: 25px;
    padding: 8px 15px;
}

.product_name_category {
    background-color: var(--accent-color);
    border-radius: 15px;
    color: white;
    font-size: 13px;
    margin-right: 8px;
    padding: 4px 10px;
    vertical-align: middle;
}

.product_youto {

}

.youtube__aspect-ratio {
    aspect-ratio: 16 / 9;
    margin: 10px auto;
    padding: 30px 0 10px;
}

.youtube__aspect-ratio iframe {
    aspect-ratio: 16 / 9;
}



.exh-btpt2_header {
    margin-top: 30px;
    margin-bottom: -40px;
}

/*  */
/* --- アイコンリスト全体のコンテナ --- */
.product_explain {
    display: flex;
    flex-direction: column;   
    justify-content: center;
}

.features_title {
    border-bottom: solid 1px var(--text-color);
    color: var(--text-color);
    font-size: 2.0em;
    margin-bottom: 20px;
    padding: 3px 0;
}

.feature-list {
    display: flex; /* 要素を横並びにする */
    flex-wrap: wrap; /* 画面が狭い時に折り返す */
    justify-content: flex-start; /* 中央揃えにする */
    gap: 8px; /* アイテム間の隙間 */
    margin: 20px 0;
    padding: 10px 0;
  }
  
/* --- 各アイテム（四角いボックス）のスタイル --- */
.feature-item {
    background-color: var(--comp-color);
    color: #ffffff;
  
    width: 80px;
    height: 80px;
    border-radius: 2px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-weight: bold;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box; 
    padding: 5px;
  }
  
  /* スマートフォンなど画面が小さい場合の調整 */
  @media (max-width: 768px) {
    .feature-item {
      width: 80px;
      height: 80px;
      font-size: 12px;
    }
    .product_img {
        grid-column: auto;
        width: 100%;
    }
    /* --- 製品紹介のヘッダーマージン調整 --- */
    .exh-btpt2_header,
    .exh-bttk2_header {
        margin-bottom: 0;
    }

    /* --- 特徴アイコン (feature-item) --- */
    .feature-item {
        width: calc(25% - 6px); /* 隙間を考慮して4列表示 */
        height: auto;
        aspect-ratio: 1 / 1; /* 正方形を維持 */
        font-size: 11px; /* 文字サイズを調整 */
    }
  }


.price_inquirybtn p:first-child {
    font-size: 18px;
    margin-top: 10px;
}


.system {
    background-color: var(--bright-grey);
    margin-bottom: 20px;
    padding: 40px 0;
}

.system_title {
    background-color: var(--bg-black);
    color: white;
    display: inline-block;
    font-size: 1.3em;
    padding: 4px 10px;
}

.system_img {
    margin-top: 15px;
}

.exh-bttk2_header {
    margin-bottom: -30px;
}


/* 事例 */
.case-study-section {
    margin: 50px auto;
    padding: 0;
    background-color: transparent; /* 背景はbodyに任せるか、必要なら設定 */
  }
  
  .case-study-section h2 {
    border-bottom: 3px solid var(--comp-color);
    color: var(--text-color);
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 auto 20px;
    padding: 12px 20px 12px 0;
    max-width: 1125px;
  }

  /* 見出しの下線 */
  .case-study-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--comp-colo  r);
    border-radius: 2px;
  }
  
  
  /* --- タブのスタイル --- */
  .case-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* タブ間の隙間を少し広げる */
    border-bottom: 2px solid var(--grey);
    padding: 0 20px;
    margin-bottom: 0;
    justify-content: center;
  }
  
  .case-tab-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    background-color: transparent;
    color: #5a6a78;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px 6px 0 0;
    -webkit-appearance: none;
  }
  
  .case-tab-item:hover {
    background-color: var(--bright-comp-color);
    color: var(--comp-color);
  }
  
  /* アクティブなタブのスタイル */
  .case-tab-item.is-active {
    color: var(--comp-color);
    background-color: white;
  }
  /* アクティブタブの下線をアクセントカラーで強調 */
  .case-tab-item.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* コンテンツエリアの境界線に重ねる */
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
  }
  
  /* SVGアイコンのスタイル */
  .case-tab-icon {
    width: 1.3em;
    height: 1.3em;
    stroke-width: 2;
    fill: none;
    stroke: currentColor;
  }
  
  
  /* --- コンテンツエリアのスタイル --- */
  .case-contents {
    padding: 40px 0;
    background-color: white;
    max-width: 1125px;
    margin: 0 auto;
  }
  
  .case-content-item { display: none; }
  
  .case-content-item.is-active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* 事例コンテンツ内のスタイル */
  .case-content-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
  }
  
  /* サブタイトルをより強調 */
  .case-content-item .case-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 5px solid var(--accent-yellow);
  }
  
  /* 色の指定 */
  .case-title { color: var(--text-color); text-align: left; }
  .case-subtitle { color: var(--comp-color); }
  
  .case-content-item p {
    font-size: 16px;
    line-height: 1.9;
    color: #5a6a78;
    margin-bottom: 40px;
  }
  
  /* 画像プレースホルダーのスタイル */
  .system-diagram-img {
    width: 100%;
    font-weight: bold;
    margin-bottom: 25px;
    overflow: hidden; /* 画像がはみ出ないように */
  }
  .system-diagram-img img {
    width: auto;
    height: auto;
    max-height: 80vh;
  }

  .case-haiti_title,
  .case-kousei_title {
    background-color: var(--bg-black);
    color: white;
    display: inline-block;
    font-size: 1.3em;
    padding: 4px 10px;
  }

  .case-kousei_title {
    margin-top: 25px;
  }

  .border-short-case {
    border: solid 1px var(--grey);
    max-width: 1125px;
  }

  /* --- スマートフォン向けのレスポンシブ対応 --- */
  @media (max-width: 768px) {
    .case-tabs {
        justify-content: space-around;
    }
    .case-tab-item {
      font-size: 14px;
      padding: 12px 15px;
    }
    .case-study-section h2 {
        padding: 0 20px;
    }
    .case-contents {
      padding: 25px;
    }
    .case-content-item h3 { font-size: 20px; }
    .case-content-item .case-subtitle { font-size: 18px; }
    .system-diagram-img { font-size: 18px; }
  }


.read {
    background-color: var(--bright-grey);
    /* padding: 20px 20px 4rem!important; */
    padding: 60px 0!important;
}

.read div {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .read div {
        max-width: 95%;
    }
}


/* 特徴 */
.features_section {
    padding: 60px 0;
}

.features_section_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
    margin: 0 0 40px;
    list-style: none;
}

.features_section_item {
    background-color: #fff;
    display: flex;
    gap: 20px;
    padding: 0 0 20px;
}

.features_section_image_wrapper {
    margin: auto 0;
    width: 40%;
}

.features_section_image_wrapper img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e9e9e9;
}

.features_section_text_wrapper {
    width: 60%;
}

.features_section_heading {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--comp-color);
    color: var(--text-color);
}
.features_section_catchphrase {
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--comp-color);
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 1em;
}

.features_section_text {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.about-block {
  margin-top: 20px;
}

.about-list {
  background-color: #f5f5f5; /* 背景グレー */
  padding: 20px;
  width: 65%;
}

.about-list ul {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

.text-grey {
  color: var(--text-color);
  font-size: .95em;
  line-height: 1.8;
}

@media (max-width: 768px) {
    .features_section {
    padding: 40px 0;
    }
    .features_section_list {
    grid-template-columns: 1fr;
    gap: 30px;
    }
    .features_section_heading {
    font-size: 1.1rem;
    }
    .features_section_catchphrase {
    font-size: 1.1rem;
    }
    .features_section_text {
    font-size: 0.95rem;
    }
    .features_section_item {
        flex-direction: column;
    }
    .features_section_item div {
        width: 100%;
    }
}


.image_text_list_section {
    background-color: var(--bright-comp-color);
    padding: 60px 0;
}

.image_text_list_section_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 10px 0 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.image_text_list_section_item {
    border-bottom: solid 1px #ccc;
    padding: 30px 0;
    width: 48%;
}

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

.image_text_list_section_text_wrapper {
    flex: 1;
}

.image_text_list_section_image_wrapper {
    flex: 0 0 25%;
}

.image_text_list_section_image_wrapper img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e9e9e9;
}

.image_text_list_section_heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0.8em;
    color: var(--text-color);
}

.image_text_list_section_text {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .image_text_list_section {
    padding: 40px 0;
    }
    .image_text_list_section_list {
        gap: 0;
    }
    .image_text_list_section_item {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    }    
    .image_text_list_section_text_wrapper {
    order: 2;
    }
    .image_text_list_section_image_wrapper {
    order: 1;
    width: 100%;
    flex-basis: auto;
    }
    .image_text_list_section_heading {
    font-size: 1.2rem;
    }
    .image_text_list_section_text {
    font-size: 0.95rem;
    }
}


#visual {
    padding-bottom: 0;
}

.visual_title {
    color: var(--comp-color);
    text-align: center;
}


/* アクセサリー */
.accessories_section {
    padding: 60px 0;
}

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

/* お問い合わせ */
.ask-title {
    margin-bottom: 0;
    text-align: center;
}

.ask_btn_group {
    text-align: center;
}

.ask_btn_group .box_btn_inq {
    margin-top: 15px;
}