:root {
    /* サイト幅 */
    --site-width: 1275px;

    /* 余白 */
    --section-padding-top: 80px;
    --section-padding-bottom: 80px;
    --hedding-block-margin-bottom: 80px;
    --intro-margin-bottom: 30px;
    --subtext-margin-top: 30px;

    --sp-section-padding-top: 3rem;
    --sp-section-padding-bottom: 3rem;
    --sp-hedding-block-margin-bottom: 2rem;
    --sp-intro-margin-bottom: 1rem;
    --sp-subtext-margin-top: 1rem;

    /* color */
    --color-main: #333;
    --color-strong: #333;
    --color-h2-underline: #c02;
    --color-h2-line-left: #c02;

    /* 背景色 */
    --bg-color1: linear-gradient(0deg, #E4E4E4 0.33%, #F8F8F8 101.51%);
    --bg-color2: linear-gradient(180deg, #3C3131 0%, #745E5E 100%);

    /* PCフォント */
    --font-size-h1: 42px;
    --font-weight-h1: 700;
    --line-height-h1: 50px;

    --font-size-h2: 36px;
    --font-weight-h2: 700;
    --line-height-h2: 42px;
  
    --font-size-h3: 30px;
    --font-weight-h3: 700;
    --line-height-h3: 37px;

    --font-size-h4: 24px;
    --font-weight-h4: 700;
    --line-height-h4: 30px;

    --font-size-h5: 18px;
    --font-weight-h5: 700;
    --line-height-h5: 24px;

    --font-size-h6: 14px;
    --font-weight-h6: 700;
    --line-height-h6: 20px;
  
    --font-size-p1: 24px;
    --font-weight-p1: 400;
    --line-height-p1: 32px;
    --letter-spacing-p1: 1.92px;
  
    --font-size-p2: 18px;
    --font-weight-p2: 400;
    --line-height-p2: 27px;
    --letter-spacing-p2: 1.44px;

    --font-size-p3: 14px;
    --font-weight-p3: 400;
    --line-height-p3: 22px;
    --letter-spacing-p3: 0.7px;

    --font-size-p4: 12px;
    --font-weight-p4: 400;
    --line-height-p4: 22px;
    --letter-spacing-p4: 0.6px;

    --font-size-p5: 10px;
    --font-weight-p5: 400;
    --line-height-p5: 18px;
    --letter-spacing-p5: 0.5px;

    /* モバイルフォント */
    --sp-font-size-h1: 2.4rem;
    --sp-font-weight-h1: 700;
    --sp-line-height-h1: 1.2;
  
    --sp-font-size-h2: 1.8rem;
    --sp-font-weight-h2: 700;
    --sp-line-height-h2: 1.4;
  
    --sp-font-size-h3: 1.4rem;
    --sp-font-weight-h3: 700;
    --sp-line-height-h3: 1.4;
  
    --sp-font-size-h4: 1.2rem;
    --sp-font-weight-h4: 700;
    --sp-line-height-h4: 1.4;

    --sp-font-size-h5: 1rem;
    --sp-font-weight-h5: 700;
    --sp-line-height-h5: 1.4;

    --sp-font-size-h6: .8rem;
    --sp-font-weight-h6: 700;
    --sp-line-height-h6: .9;

    --sp-font-size-p1: 1.2rem;
    --sp-font-weight-p1: 400;
    --sp-line-height-p1: 1.6;
    --sp-letter-spacing-p1: 1.2px;

    --sp-font-size-p2: 1.1rem;
    --sp-font-weight-p2: 400;
    --sp-line-height-p2: 1.4;
    --sp-letter-spacing-p2: 1.1px;

    --sp-font-size-p3: 1rem;
    --sp-font-weight-p3: 400;
    --sp-line-height-p3: 1.4;
    --sp-letter-spacing-p3: 1px;

    --sp-font-size-p4: .9rem;
    --sp-font-weight-p4: 400;
    --sp-line-height-p4: 1.4;
    --sp-letter-spacing-p4: 0.8px;

    --sp-font-size-p5: .8rem;
    --sp-font-weight-p5: 400;
    --sp-line-height-p5: 1.4;
    --sp-letter-spacing-p5: 0.6px;
}

/* 調整用（スタイル打ち消し） */
table th {
    border: none;
    text-align: center;
}
table td {
    border: none;
  
}
a {
    text-decoration: unset;
}
a:hover, a:hover * {
    text-decoration: unset;
}
  
a:active, a:active * {
    text-decoration: unset;
}
h2 span {
    background: none;
    display: unset;
    font-weight: unset;
    padding: unset;
}
h3 {
    border: none;
    background: none;
}
@media screen and (max-width: 994px) {
    .JS #Contents {
      padding: 0;
    }
}

/* 基本設定 */
*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

section {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
}

h1 {
    margin: 0;
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-h1);
    line-height: var(--line-height-h1);
    color: var(--color-main);
}

h2 {
    margin: 0;
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-h2);
    line-height: var(--line-height-h2);
    color: var(--color-main);
}

h3 {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-h3);
    line-height: var(--line-height-h3);
    color: var(--color-main);
}

h4 {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-h4);
    line-height: var(--line-height-h4);
    color: var(--color-main);
}

h5 {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-h5);
    line-height: var(--line-height-h5);
    color: var(--color-main);
}

h6 {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-h6);
    line-height: var(--line-height-h6);
    color: var(--color-main);
}

p {
    margin: 0;
    font-size: var(--font-size-p3);
    font-weight: var(--font-weight-p3);
    line-height: var(--line-height-p3);
    letter-spacing: var(--letter-spacing-p3);
    color: var(--color-main);
}

.style-h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-h1);
    line-height: var(--line-height-h1);
}

.style-h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-h2);
    line-height: var(--line-height-h2);
}

.style-h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-h3);
    line-height: var(--line-height-h3);
}

.style-h4 {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-h4);
    line-height: var(--line-height-h4);
}

.style-h5 {
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-h5);
    line-height: var(--line-height-h5);
}

.style-h6 {
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-h6);
    line-height: var(--line-height-h6);
}

.style-p1 {
    font-size: var(--font-size-p1);
    font-weight: var(--font-weight-p1);
    line-height: var(--line-height-p1);
    letter-spacing: var(--letter-spacing-p1);
}

.style-p2 {
    font-size: var(--font-size-p2);
    font-weight: var(--font-weight-p2);
    line-height: var(--line-height-p2);
    letter-spacing: var(--letter-spacing-p2);
}

.style-p3 {
    font-size: var(--font-size-p3);
    font-weight: var(--font-weight-p3);
    line-height: var(--line-height-p3);
    letter-spacing: var(--letter-spacing-p3);
}

.style-p4 {
    font-size: var(--font-size-p4);
    font-weight: var(--font-weight-p4);
    line-height: var(--line-height-p4);
    letter-spacing: var(--letter-spacing-p4);
}

.style-p5 {
    font-size: var(--font-size-p5);
    font-weight: var(--font-weight-p5);
    line-height: var(--line-height-p5);
    letter-spacing: var(--letter-spacing-p5);
}

.wrapper {
    max-width: var(--site-width);
    margin: 0 auto;
}

.hedding-block {
    margin-bottom: var(--hedding-block-margin-bottom);
}

.hedding-block h2,
.hedding-block .intro,
.hedding-block .subtext {
    text-align: center;
}

.hedding-block h2.underline::after {
    content: "";
    display: block;
    width: 60px;
    height: 11px;
    background: var(--color-h2-underline);
    border-radius: 3px;
    margin: 32px auto 0;
}

.hedding-block h2.line-left {
    text-align: left;
}

.hedding-block h2.line-left::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.5em;
    background-color: var(--color-h2-line-left);
    margin-right: 12px;
    vertical-align: middle;
}

.hedding-block .intro {
    margin-bottom: var(--intro-margin-bottom);
}

.hedding-block .subtext {
    margin-top: var(--subtext-margin-top);
}

.summary-block {
    text-align: center;
}

.summary {
    color: var(--color-summary);
}

.sp-only {
    display: none;
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: var(--sp-font-size-h1);
        font-weight: var(--sp-font-weight-h1);
        line-height: var(--sp-line-height-h1);
    }

    h2 {
        font-size: var(--sp-font-size-h2);
        font-weight: var(--sp-font-weight-h2);
        line-height: var(--sp-line-height-h2);
    }

    h3 {
        font-size: var(--sp-font-size-h3);
        font-weight: var(--sp-font-weight-h3);
        line-height: var(--sp-line-height-h3);
    }

    h4 {
        font-size: var(--sp-font-size-h4);
        font-weight: var(--sp-font-weight-h4);
        line-height: var(--sp-line-height-h4);
    }

    h5 {
        font-size: var(--sp-font-size-h5);
        font-weight: var(--sp-font-weight-h5);
        line-height: var(--sp-line-height-h5);
    }

    h6 {
        font-size: var(--sp-font-size-h6);
        font-weight: var(--sp-font-weight-h6);
        line-height: var(--sp-line-height-h6);
    }

    p {
        font-size: var(--sp-font-size-p3);
        font-weight: var(--sp-font-weight-p3);
        line-height: var(--sp-line-height-p3);
        letter-spacing: var(--sp-letter-spacing-p3);
    }

    .style-h1 {
        font-size: var(--sp-font-size-h1);
        font-weight: var(--sp-font-weight-h1);
        line-height: var(--sp-line-height-h1);
    }
    
    .style-h2 {
        font-size: var(--sp-font-size-h2);
        font-weight: var(--sp-font-weight-h2);
        line-height: var(--sp-line-height-h2);
    }
    
    .style-h3 {
        font-size: var(--sp-font-size-h3);
        font-weight: var(--sp-font-weight-h3);
        line-height: var(--sp-line-height-h3);
    }
    
    .style-h4 {
        font-size: var(--sp-font-size-h4);
        font-weight: var(--sp-font-weight-h4);
        line-height: var(--sp-line-height-h4);
    }
    
    .style-h5 {
        font-size: var(--sp-font-size-h5);
        font-weight: var(--sp-font-weight-h5);
        line-height: var(--sp-line-height-h5);
    }
    
    .style-h6 {
        font-size: var(--sp-font-size-h6);
        font-weight: var(--sp-font-weight-h6);
        line-height: var(--sp-line-height-h6);
    }
    
    .style-p1 {
        font-size: var(--sp-font-size-p1);
        font-weight: var(--sp-font-weight-p1);
        line-height: var(--sp-line-height-p1);
        letter-spacing: var(--sp-letter-spacing-p1);
    }
    
    .style-p2 {
        font-size: var(--sp-font-size-p2);
        font-weight: var(--sp-font-weight-p2);
        line-height: var(--sp-line-height-p2);
        letter-spacing: var(--sp-letter-spacing-p2);
    }
    
    .style-p3 {
        font-size: var(--sp-font-size-p3);
        font-weight: var(--sp-font-weight-p3);
        line-height: var(--sp-line-height-p3);
        letter-spacing: var(--sp-letter-spacing-p3);
    }
    
    .style-p4 {
        font-size: var(--sp-font-size-p4);
        font-weight: var(--sp-font-weight-p4);
        line-height: var(--sp-line-height-p4);
        letter-spacing: var(--sp-letter-spacing-p4);
    }
    
    .style-p5 {
        font-size: var(--sp-font-size-p5);
        font-weight: var(--sp-font-weight-p5);
        line-height: var(--sp-line-height-p5);
        letter-spacing: var(--sp-letter-spacing-p5);
    }

    .wrapper {
        padding: 0 20px;
        overflow: hidden;
    }

    section {
        padding-top: var(--sp-section-padding-top);
        padding-bottom: var(--sp-section-padding-bottom);
    }

    .hedding-block {
        margin-bottom: var(--sp-hedding-block-margin-bottom);
    }

    .hedding-block .intro {
        margin-bottom: var(--sp-intro-margin-bottom);
    }

    .hedding-block .subtext {
        margin-top: var(--sp-subtext-margin-top);
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}



/* ボタン */
a.button-white,
a.button-red,
a.button-white-orange,
a.button-orange,
a.button-white-green,
a.button-green,
a.button-white-gold,
a.button-gold {
    width: 306px;
    padding: 19px;
    display: inline-block;
    box-sizing: border-box;
    position: relative;

    border-radius: 200px;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;

    transition: all 0.3s ease;
}

a.button-white {
    color: #C02;
    border: 2px solid #C02;
    background: #FFF;
}

a.button-red {
    color: #fff;
    border: 2px solid #C02;
    background: #C02;
}

a.button-white-orange {
    color: #f39800;
    background: #fff;
    border: 2px solid #fff;
}

a.button-orange {
    color: #fff;
    background: #f39800;
    border: 2px solid #f39800;
}

a.button-white-green {
    color: #85bb45;
    border: 2px solid #85bb45;
    background: #FFF;
}

a.button-green {
    color: #fff;
    border: 2px solid #85bb45;
    background: #85bb45;
}

a.button-white-gold {
    color: #bda72c;
    border: 2px solid #bda72c;
    background: #FFF;
}

a.button-gold {
    color: #fff;
    border: 2px solid #bda72c;
    background: #bda72c;
}

a.button-white::after,
a.button-red::after,
a.button-white-orange::after,
a.button-orange::after,
a.button-white-green::after,
a.button-green::after,
a.button-white-gold::after,
a.button-gold::after {
    content: "";
    position: absolute;
    top: calc(50% + 1px);
    right: 24px;
    translate: 0 -50%;
    width: 9px;
    height: 9px;
    transform: rotate(225deg);
    transition: all 0.3s ease;
}

a.button-white::after {
    border-bottom: 2px solid #C02;
    border-left: 2px solid #C02;
}

a.button-red::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

a.button-white-orange::after {
    border-bottom: 2px solid #f39800;
    border-left: 2px solid #f39800;
}

a.button-orange::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

a.button-white-green::after {
    border-bottom: 2px solid #85bb45;
    border-left: 2px solid #85bb45;
}

a.button-green::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

a.button-white-gold::after {
    border-bottom: 2px solid #bda72c;
    border-left: 2px solid #bda72c;
}
a.button-gold::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

a.button-white:hover {
    color: #fff;
    background: #c02;
}

a.button-white:hover::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

a.button-red:hover {
    color: #c02;
    background: #fff;
}

a.button-red:hover::after {
    border-bottom: 2px solid #c02;
    border-left: 2px solid #c02;
}

a.button-white-orange:hover {
    color: #fff;
    background: #f39800;
}

a.button-white-orange:hover::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

a.button-orange:hover {
    color: #f39800;
    background: #fff;
}

a.button-orange:hover::after {
    border-bottom: 2px solid #f39800;
    border-left: 2px solid #f39800;
}

a.button-white-green:hover {
    color: #fff;
    background: #85bb45;
}

a.button-white-green:hover::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

a.button-green:hover {
    color: #85bb45;
    background: #fff;
}

a.button-green:hover::after {
    border-bottom: 2px solid #85bb45;
    border-left: 2px solid #85bb45;
}

a.button-white-gold:hover {
    color: #fff;
    background: #bda72c;
}

a.button-white-gold:hover::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

a.button-gold:hover {
    color: #bda72c;
    background: #fff;
}

a.button-gold:hover::after {
    border-bottom: 2px solid #bda72c;
    border-left: 2px solid #bda72c;
}

/* 追従フッター */
.sticky-footer {
    background-color: rgba(95, 95, 95, 0.9);
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    display: none;
    box-sizing: border-box;
}

.sticky-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sticky-footer ul li a.button-white,
.sticky-footer ul li a.button-red {
    padding: 9px 19px;
}

.sticky-footer ul li a.button-white::after,
.sticky-footer ul li a.button-red::after {
    top: 13px;
}

@media screen and (max-width: 767px) {
    .sticky-footer {
        padding: 10px;
    }

    .sticky-footer ul {
        gap: 10px;
    }

    .sticky-footer ul li a.button-white,
    .sticky-footer ul li a.button-red {
        padding: 9px 0;
        width: 160px;
    }
    
    .sticky-footer ul li a.button-white::after,
    .sticky-footer ul li a.button-red::after {
        top: 14px;
        right: 14px;
        width: 8px;
        height: 8px;
    }
}

/* 以下共通パーツ */

/* 日立システムズの強み */

.parts-feature {
    background: var(--bg-color1);
}

.parts-feature .wrapper .hedding-block {
    margin-bottom: 50px;
}

.parts-feature .wrapper .content-block .image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 39px;
}

.parts-feature .wrapper .content-block .image-box .hitachi-logo {
    padding-right: 105px;
}

.parts-feature .wrapper .content-block .text-box {
    margin-top: 30px;
    text-align: center;
}

.parts-feature .wrapper .cta-block {
    margin-top: 50px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .parts-feature .wrapper {
        padding: 0 17px;
    }

    .parts-feature .wrapper .content-block .image-box {
        flex-direction: column;
        gap: .5rem;
        width: 80%;
        margin: 0 auto;
    }

    .parts-feature .wrapper .content-block .image-box .hitachi-logo {
        padding-right: 0;
        height: 40px!important;
    }

    .parts-feature .wrapper .content-block .image-box img:nth-child(2) {
        width: 30px;
    }
}

/* 導入事例・コラム */

.parts-column .content-block ul {
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.parts-column .content-block ul li a {
    padding: 30px;
    display: block;
    background: #f2f2f2;
    border-radius: 20px;
}

.parts-column .content-block ul li a:hover {
    opacity: .8;
}

.parts-column .content-block ul li a .label {
    padding: 6px 12px;
    display: inline-block;
    background: var(--bg-color2);
    color: #fff;
}

.parts-column .content-block ul li a .image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 331px;
    height: 186.5px;
}

.parts-column .content-block ul li a .image-box img {
    width: 100%;
    transition: all 0.3s ease;
}

.parts-column .content-block ul li a:hover .image-box img {
    transform: scale(1.05);
}

.parts-column .content-block ul li a .text-box {
    margin-top: 30px;
    max-width: 331px;
}

.parts-column .content-block ul li a .text-box p {
    color: #333;
}

.parts-column .content-block ul li a .link-box {
    margin-top: 30px;
    text-align: right;
}

.parts-column .content-block ul li a .link-box p {
    position: relative;
    padding-right: 18px;
    color: #333;
}

.parts-column .content-block ul li a .link-box p::after {
    content: "";
    position: absolute;
    top: calc(50% + 1px);
    right: 0;
    translate: 0 -50%;
    width: 7px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='17' viewBox='0 0 11 17' fill='none'%3E%3Cpath d='M2 1.55518L9 8.55518L2 15.5552' stroke='%23333333' stroke-width='2.4186' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media screen and (max-width: 767px) {
    .parts-column .content-block ul {
        flex-direction: column;
    }

    .parts-column .content-block ul li a {
        padding: 1rem;
    }

    .parts-column .content-block ul li a .image-box {
        width: 100%;
        height: auto;
    }
}

/* でじたる横丁 */

.parts-dejiyoko {
    background: var(--bg-color1);
}

.parts-dejiyoko .content-block {
    max-width: 864px;
    margin: 0 auto;
    padding: 60px;
    box-sizing: border-box;
    background: linear-gradient(0deg, #FFBB4A 0%, #FEDC1D 29.81%, #FFF1BC 100%);
    text-align: center;
}

.parts-dejiyoko .content-block p {
    margin-top: 50px;
}

.parts-dejiyoko .content-block .cta-block {
    margin-top: 50px;
}

.parts-dejiyoko .content-block .cta-block .button-white-orange {
    max-width: 224px;
    padding: 13px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

@media screen and (max-width: 767px) {
    .parts-dejiyoko .content-block {
        padding: 2rem 1rem;
        border-radius: 20px;
    }

    .parts-dejiyoko .content-block .cta-block .button-white-orange {
        width: 80%;
    }
}

/* リンクパーツ */

.parts-link-buttons .content-block ul {
    max-width: 778px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.parts-link-buttons .content-block ul li a {
    display: block;
    padding: 10px;
    width: 210px;
    border: 1px solid #c02;
    background: #fff;
    color: #c02;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    text-align: center;
    transition: all 0.3s ease;
}

.parts-link-buttons .content-block ul li a:hover {
    border: 1px solid #c02;
    background: #c02;
    color: #fff;
}

/* 下部注記 */

.parts-footnote {
    padding-top: 30px;
    padding-bottom: 30px;
}

.parts-footnote .content-block p {
    font-size: 12px;
    color: #666;
}

/* モーダル（共通） */

.open-modal {
    cursor: pointer;
}

.modal {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal .wrapper {
    /* width: var(--site-width); */
    max-height: 80vh;   /* 画面高さの80%まで */
    overflow-y: auto;   /* 縦スクロールを有効化 */
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal .modal-content {
    padding: 20px;
    position: relative;
    scrollbar-gutter: stable;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;

    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal .modal-content .top-right-close {
    position: absolute;
    top: -5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

.modal .modal-content .top-right-close:hover {
    opacity: .8;
}

.modal .modal-content .lead {
    color: #fff;
}

.modal .modal-content .card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.modal .modal-content .card img {
    width: 100%;
}

.modal .modal-content .button-modal-close {
    margin: 0 auto;
    width: 224px;
    height: 50px;
    background: #fff;
    color: #333;
    border: 2px solid #333;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal .modal-content .button-modal-close:hover {
    background: #333;
    color: #fff;
}

.modal .modal-content .button-modal-close::after {
    content: "\00D7";
    position: absolute;
    top: calc(50% - 1px);
    right: 24px;
    translate: 0 -50%;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.modal .modal-content .button-modal-close:hover::after {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .modal .wrapper {
        width: 100%;
        padding: 0;
    }

    .modal .modal-content .card {
        padding: 2rem 1rem;
    }
}

/* モーダル（cybermail Σ） */

#modal1 .modal-content .card .option-image {
    max-width: 768px;
    margin: 0 auto;
}

/* モーダル（communication one） */

#modal3 .modal-content .card .underline {
    text-align: center;
}

#modal3 .modal-content .card .underline::after {
    content: "";
    display: block;
    width: 60px;
    height: 11px;
    background: #f39800;
    border-radius: 3px;
    margin: 32px auto 0;
}

#modal3 .modal-content .card ul {
    max-width: 686px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 31px;
}

#modal3 .modal-content .card ul li {
    display: flex;
    align-items: center;
    gap: 25px;
}

#modal3 .modal-content .card ul li .image-box {
    width: 80px;
}

#modal3 .modal-content .card ul li .image-box img {
    width: 100%;
    height: auto;
}

#modal3 .modal-content .card ul li .text-box strong {
    color: #f39800;
}

#modal3 .modal-content .card .hedding-box {
    margin-top: 80px;
}

#modal3 .modal-content .card .service-image-box {
    margin-top: 50px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    #modal3 .modal-content .card ul li {
        display: grid;
        grid-template-columns: 80px 1fr;
        align-items: center;
        gap: .5rem;
    }
}

/* 共通CTA */

.parts-cta {
    background: url(/-/media/ind/cs/common/parts/image/cta_bg.png) no-repeat center center / cover;
}

.parts-cta .content-block p,
.parts-cta .content-block h2 {
    text-align: center;
    color: #fff;
}

.parts-cta .content-block h2 {
    margin-top: 20px;
}

.parts-cta .cta-block {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}