/* CSS Document */ :root {
    /* 日本語既定：mac/Win/旧Win を順にカバー */
    --font-jp: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
    /* 欧文（英数字）既定：軽くて無難 */
    --font-en: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
body {
    font-family: var(--font-jp);
}
:lang(en), .font-en, .product-code {
    font-family: var(--font-en);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.w1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.w1300 {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
.w1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.w1100 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.flexBox01 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
/* ==============================
   MAIN HERO
   ============================== */
.hero-welthings {
    background: url("../img/welthings-new-hero-back.png")center/cover no-repeat;
    min-height: 620px;
    max-height: 800px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 0 40px 0;
}
.hero-conts {}
.logo-welthings {
    flex-basis: 20%;
    background-color: #FFF;
    padding: 25px 35px;
    border-radius: 8px;
    display: flex;
    justify-content: center; /* 横方向中央 */
    align-items: center; /* 縦方向中央 */
}
.logo-welthings img {
    max-width: 100%;
    height: auto;
    display: block;
}
.hero-welthings h1 {
    flex-basis: 78%;
    margin-left: 2%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #00206a;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    padding-top: 0.2em;
}
.hero-welthings h1 span {
    font-size: 3.1rem;
    font-weight: 800;
    text-indent: 0.5rem;
    display: block;
}
.area-hero-lead {
    flex-basis: 38%;
}
.hero-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: #111;
}
.hero-lead span {
    background: linear-gradient(#ffffca 0%, #ffffca 100%);
    background-repeat: no-repeat;
    background-size: 100% 80%; /* 背景色の高さ（文字の約40%〜50%） */
    background-position: 0 center; /* どの高さに敷くか（ベースライン寄りに） */
}
.hero-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
}
.hero-note-list {
    width: 90%;
    color: #111;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 auto 1em auto;
    padding: 0 0 0 0;
}
.hero-note-list li {
    margin-bottom: 0.1em;
}
.hero-note {
    width: 90%;
    color: #111;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 auto;
}
.hero-note-list li a, .hero-note a {
    color: #0000ff;
    text-decoration: underline;
    transition: color 0.25s ease, opacity 0.25s ease, text-decoration 0.25s ease;
}
.hero-note-list li a:hover, .hero-note a:hover {
    opacity: 0.7; /* ふわっと薄く */
    text-decoration: none; /* 下線消す */
}
.hero-update a {
    display: inline-flex;
    align-items: center;
    gap: 0.15em;
}
.hero-update a:hover {
    opacity: 0.75;
    text-decoration: none;
}
.area-hero-img {
    flex-basis: 62%;
    margin-left: -3%;
}
.infinite-list {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    background-color: #fafafa;
}
/* トラック（ul） */
.loop-track {
    --gap: 30px; /* ← ここをあなたの gap と揃える */
    display: flex;
    gap: var(--gap);
    width: max-content;
    padding: 0;
    margin: 0;
    list-style: none;
    --loop-duration: 90s;
    animation: loopScroll var(--loop-duration) linear infinite;
    will-change: transform; /* サブピクセルのブレ軽減 */
    backface-visibility: hidden;
}
/* タイル */
.loop-track li {
    flex: 0 0 auto;
    padding: 20px 40px 25px 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    white-space: nowrap;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 0.1rem;
    font-size: 3.5rem;
    line-height: 1;
    background-color: #00206a;
}
/* 50% に gap/2 を足して中央継ぎ目とピッタリ重ねる */
@keyframes loopScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - var(--gap) / 2));
    }
}
/* スマホ：タイルを少し小さめに */
@media (max-width: 600px) {
    .loop-track {
        gap: 14px;
    }
    .loop-track li {
        padding: 10px 16px;
        font-size: .95rem;
    }
}
/* アニメーション苦手な環境の配慮 */
@media (prefers-reduced-motion: reduce) {
    .loop-track {
        animation: none;
    }
}
.btn-primary {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    display: inline-block;
    padding: 1.8rem 3rem;
    background-color: rgba(195, 1, 23, 1);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
}
@media (max-width:767px) {
    .btn-primary {
        padding: 0.8rem 2rem;
    }
}
.btn-primary:hover {
    background-color: rgba(195, 1, 23, 0.9);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn-primary:focus {
    outline: 2px solid #ff7b8a;
    outline-offset: 2px;
}
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* ← これをベースサイズとする */
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    vertical-align: middle; /* よく使うのでここで入れておく */
    margin-left: 0.2em;
}
/* アイコン共通スケール */
.material-symbols-outlined.icon-sm {
    font-size: 1.1rem;
    font-variation-settings: "wght"300;
}
.material-symbols-outlined.icon-md {
    font-size: 1.4rem;
    font-variation-settings: "wght"300;
}
.material-symbols-outlined.icon-lg {
    font-size: 1.8rem;
    font-variation-settings: "wght"300;
}
.ma10B {
    margin-bottom: 1em;
}
.ma15B {
    margin-bottom: 1.5em;
}
.ma20B {
    margin-bottom: 2em;
}
.ma30B {
    margin-bottom: 3em;
}
.section-solutions {
    background-color: #fafafa;
    padding: 60px 0 150px 0;
    color: #222;
}
.solutions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.section-solutions {
    background-color: #fafafa;
}
.section-solutions h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 70px;
}
.section-solutions h2 span {
    font-size: 2.4rem;
    display: block;
    color: #00206a;
    margin-bottom: 0.4em;
}
.solution-item {
    box-sizing: border-box;
    flex: 0 1 calc((100% - 6rem) / 3);
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
    margin-top: 3.8rem;
    padding-top: 30px;
}
@media (max-width: 1200px) {
    .solution-item {
        flex: 0 1 calc((100% - 4rem) / 3);
    }
}
.solution-inner {
    padding: 3rem 0 1.5rem;
}
#h01, #h07 {
    background: url(https://www.e-welcom.com/common/images/app-sp/h01.svg) no-repeat 12px center;
}
#h02, #h08 {
    background: url(https://www.e-welcom.com/common/images/app-sp/h03.svg) no-repeat 12px center;
}
#h03, #h09 {
    background: url(https://www.e-welcom.com/common/images/app-sp/h04.svg) no-repeat 12px center;
}
#h04, #h10 {
    background: url(https://www.e-welcom.com/common/images/app-sp/h06.svg) no-repeat 12px center;
}
#h05, #h11 {
    background: url(https://www.e-welcom.com/common/images/app-sp/h05.svg) no-repeat 12px center;
}
#h06, #h12 {
    background: url(https://www.e-welcom.com/common/images/app-sp/h02.svg) no-repeat 12px center;
}
#h01, #h02, #h03, #h04, #h05, #h06, #h07, #h08, #h09, #h10, #h11, #h12 {
    background-size: 70px auto;
    background-color: #ffffff;
}
.solution-bubble {
    position: absolute;
    top: -3.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    width: 85%;
    height: 6.8rem;
    padding: 0 1.2em 0 6em;
    box-sizing: border-box;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
    background-color: #fff;
}
.solution-bubble p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: bold;
    margin: 0; /* これも重要：pのデフォルトmarginをリセット */
}
.solution-bubble::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 14px 10px 0 10px;
    border-color: #ececec transparent transparent;
    translate: -50% 100%;
}
.solution-bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 12.3px 8.8px 0 8.8px;
    border-color: #ffffff transparent transparent;
    translate: -50% 100%;
}
.solution-inner h3 {
    text-align: center;
    font-size: 1.45rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #00206a;
}
.solution-inner picture {
    text-align: center;
    margin: 0 auto 30px;
    display: block;
}
.solution-inner picture img {
    max-height: 220px;
    margin: 0 auto;
}
.solutions-lead {
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 2.3rem;
}
.solutions-sup {
    padding: 0 2.3rem;
}
.solutions-sup h4 {
    font-weight: bold;
    border-top: 1px solid #ececec;
    padding-top: 20px;
}
.solutions-sup p {
    font-size: 1rem;
    line-height: 1.8;
}
.solutions-sup p span {
    color: #999;
}
.w1500 {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
.flexBox02 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.section-reason {
    background: url("../img/reason-back01.png")center/cover no-repeat;
    height: auto;
    padding: 150px 0 0 0;
    color: #222;
}
.reason-back01 {
    position: relative;
    width: 100%;
    /* コンテンツ＋PCぶんの高さは padding で確保 */
    padding-bottom: 150px;
}
.reason-back01::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(620px, 100%); /* ここが最強ポイント */
    aspect-ratio: 67 / 80; /* ← これが正しい比率 */
    background: url("../img/reason-back03.png") right bottom no-repeat;
    background-size: contain; /* or auto; 必要に応じて調整 */
    pointer-events: none;
}
.section-reason h2 {
    flex-basis: 50%;
    margin-left: 6%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #00206a;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 2.5rem;
}
.reason-img01 {
    flex-basis: 18%;
    margin-right: 4%;
}
.reason-img01 img {
    max-width: 100%;
    height: auto;
    display: block;
}
.reason-lead01 {
    flex-basis: 44%;
}
.reason-lead01 h3 {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #00206a;
}
.reason-lead01 p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 0;
}
.section-package {
    padding: 130px 0;
}
.section-package, .section-common-features {
    background-color: #eaf8ff;
    color: #222;
}
.section-package {
    padding: 130px 0 50px 0;
}
.section-common-features {
    padding: 50px 0 130px 0;
}
.section-package h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #00206a;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 0.4em;
}
.section-package-lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 70px;
}
/* ============================= */
/* NEW TAB スタイル（完全版）    */
/* ============================= */
/* タブリスト全体 */
ul.product-tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    position: relative;
}
/* 各タブのコンテナ */
ul.product-tabs li {
    flex-basis: 30%;
    background: #F4F4F4;
    border: 1px solid #ececec;
    position: relative;
    white-space: nowrap;
}
ul.product-tabs li.active {
    margin-bottom: -1px; /* ← 下に 1px はみ出させる */
    z-index: 3; /* ← さらに一段前面に */
}
ul.product-tabs li.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: #fff;
}
ul.product-tabs li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    padding: 1.3em 0;
    gap: 0.6rem; /* アイコンとテキストの間隔 */
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
}
/* ホバー時 */
ul.product-tabs li:hover > a {
    background-color: #FFF;
}
/* アクティブ時 */
ul.product-tabs li.active > a {
    background-color: #FFF;
    font-weight: bold;
}
/* 上タブ：箱の“上”にくっつく */
.section-package ul.product-tabs.top {
    position: relative;
    z-index: 2;
}
.section-package ul.product-tabs.top li {
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}
.section-package ul.product-tabs.top li a {
    border-radius: 12px 12px 0 0;
}
/* アクティブ上タブだけ 1px 下に食い込ませて、境目の線を隠す */
.section-package ul.product-tabs.top li.active {
    margin-bottom: -1px;
    z-index: 3;
}
.section-package ul.product-tabs.top li.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: #fff;
}
/* 下タブ：箱の“下”にくっつく */
.section-package ul.product-tabs.bottom {
    position: relative;
    z-index: 2;
}
/* 角丸を“下だけ”にする＆上ボーダーを消す */
.section-package ul.product-tabs.bottom li {
    border-radius: 0 0 12px 12px;
    border-top: none;
}
.section-package ul.product-tabs.bottom li a {
    border-radius: 0 0 12px 12px;
}
/* アクティブ下タブだけ 1px 上に食い込ませて、境目の線を隠す */
.section-package ul.product-tabs.bottom li.active {
    margin-top: -1px;
    z-index: 3;
}
.section-package ul.product-tabs.bottom li.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px; /* ここが上下逆になるポイント */
    height: 1px;
    background: #fff;
}
/* ============================= */
/* タブ切り替えコンテンツ初期状態 */
/* ============================= */
.tab-content {
    display: none;
}
.package-area {
    box-sizing: border-box;
    border: 1px solid #ececec;
    border-radius: 8px;
    background-color: #fff;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
    padding: 140px 0 80px 0;
    z-index: 1; /* ← タブより後ろ側 */
}
.package-area--common {
    padding: 100px 0 80px 0;
}
#stock-package .package-area, #rental-package .package-area {
    position: relative;
}
#stock-package .package-area::before, #rental-package .package-area::before {
    content: "";
    position: absolute;
    top: 40px; /* 上に寄せつつ、自然な位置 */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    pointer-events: none;
}
#stock-package .package-area::before {
    background: url("../img/zaiko-logo.svg") no-repeat center / contain;
}
#rental-package .package-area::before {
    background: url("../img/kashi-logo.svg") no-repeat center / contain;
}
.package-area-in {
    padding-left: clamp(20px, 6vw, 80px);
    padding-right: clamp(20px, 6vw, 80px);
    padding-top: 0;
    padding-bottom: 0;
}
.package-area h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #00206a;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 0.3em;
}
.package-lead01 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1.5em;
}
.package-lead02 {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 2em 0;
    padding: 0 2em;
}
.package-area .flexBox01 {
    align-items: stretch;
    justify-content: flex-start; /* 左寄せ */
    gap: 2%;
}
.package-area ul li {
    flex: 0 0 23.5%;
    background-color: #eaf8ff;
    list-style: none;
    padding: 25px 0;
    margin-bottom: 1.2em;
}
.package-area ul li img {
    width: 84%;
    margin: 0 auto 1.5em auto;
    background-color: #FFF;
}
.package-area ul li dl {
    padding: 0 1.4em;
    margin-bottom: 0;
}
.package-area ul li dl dt {
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 0.5em;
}
.package-area ul li dl dd {
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 0 0;
}
.section-environment {
    padding: 130px 0;
    background-color: #fafafa;
}
.section-environment h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #00206a;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 0.4em;
}
.section-environment-lead01 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 70px;
}
.section-environment picture {
    display: block;
    margin-bottom: 3em;
}
.section-environment-lead02 {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 3em 0;
    padding: 0 2em;
}
.section-type {
    padding: 130px 0;
}
.section-type h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #00206a;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 0.4em;
}
.section-type-lead01 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 40px;
}
.section-type-lead02 {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 3em 0;
    padding: 0 2em;
    text-align: center;
}
.section-type-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 0.1rem;
    background-color: #646464;
    padding: 0.8em 1.2em;
    margin: 0 0 0 0;
}
.note-box p {
    margin: 0 0 0 0;
}
.price-main span {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #c30117;
}
.price-sub {
    font-size: 0.85rem;
    color: #888;
    font-weight: normal;
}
.price-sub span {
    font-family: 'Roboto', sans-serif;
}
/* NEW TABLE
-------------------------------------------- */
.dTable01, .dTable02, .dTable03 {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    word-break: break-word;
    border: 1px solid #D0D0D0;
    font-size: 0.9rem;
}
/* 2 列用 : .col-2 */
table.dTable03.col-2 th, table.dTable03.col-2 td {
    width: 50%;
}
/* 3 列用 : .col-3 */
table.dTable03.col-3 th, table.dTable03.col-3 td {
    width: 33.3333%;
} /* =100/3 */
.dTable01 thead th, .dTable02 thead th, .dTable03 thead th {
    background-color: #349dd9;
    color: #FFF;
}
.dTable01 thead th:first-child {
    width: 30%;
}
.dTable01 th, .dTable03 th {
    background-color: #F4F4F4;
}
.dTable01 th, .dTable01 td, .dTable03 th, .dTable03 td {
    padding: 6px 15px;
    border-bottom: 1px solid #D0D0D0;
    border-left: 1px solid #D0D0D0;
}
.dTable02 thead th:first-child {
    width: 75%;
}
.dTable02 tbody tr:nth-child(odd) {
    background: #F5F5F5;
}
.dTable02 th, .dTable02 td {
    padding: 6px 15px;
    border-bottom: 1px solid #D0D0D0;
    border-left: 1px solid #D0D0D0;
}
.dTable02 td {
    text-align: center;
}
.dTable02 td span.material-icons {
    font-size: 1.2rem;
}
.dTable01 ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 3px;
}
/* 画面に非表示、スクリーンリーダーのみ読み上げ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px; /* 画面外へ押し出す */
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%); /* Safari 対策 */
    border: 0;
}
.fig01 picture {
    margin-bottom: 15px;
}
.fig01 figcaption {
    font-weight: bold;
    text-align: center;
}
.table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid #ececec;
    overflow: hidden;
    font-size: 1rem;
}
.table-modern thead th {
    background: #F2F2F2;
    font-weight: 600;
    padding: 1.1em 1.7em;
    text-align: left;
}
.table-modern tbody th {
    font-weight: 600;
    background: #FAFAFA;
    padding: 1.1em 1.7em;
    width: 32%;
    border-bottom: 1px solid #ececec;
}
.table-modern td {
    padding: 1.1em 1.7em;
    border-bottom: 1px solid #ececec;
}
.table-modern tbody tr:last-child th, .table-modern tbody tr:last-child td {
    border-bottom: none;
}
.list01 {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 auto 0 1.5em;
    padding: 0 0 0 0;
}
.list01 li {
    list-style: disc;
}
.bold {
    font-weight: bold;
}
.red {
    color: #c30117;
}
.textSmall {
    font-size: 0.85rem;
    color: #888;
    font-weight: normal;
}



/* ============================= */
/* ざっくりスマホ対応（暫定版） */
/* ============================= */
@media (max-width: 767px) {

  /* 横幅コンテナは左右に少し余白 */
  .w1400,
  .w1500,
  .w1300,
  .w1200,
  .w1100 {
    padding: 0 16px;
  }

  /* HERO周り */
  .hero-welthings {
    min-height: auto;
    padding: 30px 0 30px;
    background-position: center top;
  }
  .hero-welthings .flexBox01 {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo-welthings {
    flex-basis: auto;
    margin-bottom: 16px;
    padding: 16px 20px;
  }
  .hero-welthings h1 {
    flex-basis: auto;
    margin-left: 0;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
  }
  .hero-welthings h1 span {
    font-size: 1.9rem;
  }
  .area-hero-lead,
  .area-hero-img {
    flex-basis: 100%;
    margin-left: 0;
  }
  .area-hero-img {
    margin-top: 24px;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-btn {
    margin: 1.2em 0;
  }
  .hero-note-list,
  .hero-note {
    width: 100%;
  }

  /* 無限スクロール帯（少し小さめに） */
  .infinite-list {
    padding: 16px 0;
  }
  .loop-track li {
    padding: 10px 18px;
    font-size: 1.2rem;
  }

  /* solutions：1カラム */
  .solutions-list {
    gap: 1.8rem;
  }
  .solution-item {
    flex: 0 0 100%;
    margin-top: 3.2rem;
  }
  .solutions-lead,
  .solutions-sup {
    padding: 0 1.4rem;
  }

  /* reason：縦並び */
  .flexBox02 {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-reason {
    padding: 80px 0 40px;
  }
  .section-reason h2 {
    flex-basis: auto;
    margin: 0 0 24px 0;
    font-size: 1.8rem;
  }
  .reason-img01 {
    flex-basis: auto;
    margin: 0 0 16px 0;
    width: 70%;
  }
  .reason-lead01 {
    flex-basis: auto;
  }
  .reason-lead01 h3 {
    font-size: 1.3rem;
  }
  .reason-lead01 p {
    font-size: 1rem;
  }

  /* パッケージ：タブを2列→1列寄りに */
  ul.product-tabs li {
    flex-basis: 50%;
  }
  @media (max-width: 480px) {
    ul.product-tabs li {
      flex-basis: 100%;
    }
  }

  .package-area {
    padding: 90px 0 50px 0;
  }
  .package-area-in {
    padding-left: 16px;
    padding-right: 16px;
  }
  .package-lead02 {
    padding: 0;
  }
  .package-area .flexBox01 {
    gap: 1.5rem;
  }
  .package-area ul li {
    flex: 0 0 48%;
  }
  @media (max-width: 480px) {
    .package-area ul li {
      flex: 0 0 100%;
    }
  }

  /* 共通機能も同じく2→1カラム寄せ */
  .section-common-features .flexBox01 {
    gap: 1.5rem;
  }
  .section-common-features .flexBox01 li {
    flex: 0 0 48%;
  }
  @media (max-width: 480px) {
    .section-common-features .flexBox01 li {
      flex: 0 0 100%;
    }
  }

  /* 構成・料金セクションの余白とテーブル */
  .section-environment,
  .section-type {
    padding: 80px 0;
  }
  .section-environment-lead01,
  .section-type-lead01 {
    font-size: 1.2rem;
    margin-bottom: 32px;
  }
  .section-environment-lead02,
  .section-type-lead02 {
    padding: 0;
    text-align: left;
  }

  .section-environment picture {
    margin-bottom: 1.8em;
  }

  /* テーブルは横スクロール許容 */
  .table-modern {
    font-size: 0.9rem;
  }
  .section-environment .w1100,
  .section-type .w1100 {
    overflow-x: auto;
  }
  .section-environment .table-modern,
  .section-type .table-modern {
    min-width: 520px;
  }

  /* 問い合わせブロックは縦積み寄り */
  .w-inqSet {
    padding-left: 16px;
    padding-right: 16px;
  }
  .w-btn5 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .w-btn5 li {
    flex: 0 0 48%;
  }
  .w-tel {
    flex-direction: column;
    gap: 8px;
  }
}
