:root {
    --theme-color: #00995b;
    --theme-color-light: #94efcc;
    --white: #fff;
    --black: #000;
    --gray: #d6e8e2;

    --border-radius: 10px;
}

/* 共通 */
.sol main {
    font-size: 1.2em;
    letter-spacing: 0.02em;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
}

.sol p {
    line-height: 2em;
}

.sol a:hover {
    color: var(--theme-color-light);
}

.problem-list li,
.solution-package-lists li,
.expand-lists li,
.merit-lists li {
    background: #fff1e9;
    padding: 20px;
    border-radius: 30px;
}

[id^="main"] {
  scroll-margin-top: 40px;
}

 @media screen and (max-width: 768px) {
    [id^="main"] {
        scroll-margin-top: 10px;
    }
 }

/* 配置 */
.contents {
    width: 94%;
    max-width: 90rem;
    margin: 0 auto;
}

.contents-half-left {
    width: 94%;
    max-width: 90rem;
    margin: 0 auto;
}

.contents-half-right {
    width: 94%;
    max-width: 90rem;
    margin: 0 auto;
}

.text-right {
    text-align: right;
}

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

.display-inline-block {
    display: inline-block;
}

.flex-2col-parent {
    padding: 2% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.flex-2col-child {
    width: 92%;
    margin: 2%;
}

@media screen and (min-width: 426px) {
    .contents {
        width: 84%;
    }
    
    .contents-half-left {
        width: 84%;
    }
    
    .contents-half-right {
        width: 84%;
    }
}

@media screen and (min-width: 769px) {
    .contents-half-left {
        width: 84%;
        max-width: 45rem;
        margin: 0;
        margin-left: auto;
        padding-right: 4%;
        box-sizing: border-box;
    }
    
    .contents-half-right {
        width: 84%;
        max-width: 45rem;
        margin: 0;
        margin-right: auto;
        padding-left: 4%;
        box-sizing: border-box;
    }

    .flex-2col-parent {
        padding: 1%;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-around;
    }

    .flex-2col-child {
        width: 48%;
        margin: 0.5%;
    }
}

/* 装飾 */
.sol h2 {
    position: relative;
    padding-left: 1.6em;
    font-size: 1.2rem;
}

.sol h2::before {
    content: "";
    display: block;
    width: 1em;
    height: 0.7em;
    position: absolute;
    top: 0.2em;
    left: 0;
    background-image: url("../img/common/triangle.svg");
    background-repeat: no-repeat;
}

@media screen and (min-width: 426px) {
    .sol h2 {
        font-size: 1.4rem;
    }
}

.box {
    border-radius: var(--border-radius);
    box-sizing: border-box;
}

.anchor-viewmore {
    width: 2em;
    height: 2em;
    margin-left: 0.2em;
    vertical-align: middle;
}

/* 背景色 */
.background-theme {
    background-color: var(--theme-color);
}

.background-gray {
    background-color: var(--gray);
}

.background-white {
    background-color: var(--white);
}

/* フォント */
.font-size-zero {
    font-size: 0;
}

.font-size-small {
    font-size: 1.2rem;
}

.font-size-medium {
    font-size: 1.6rem;
}

.font-size-large {
    font-size: 2.2rem;
}

.font-style-bold {
    font-weight: bold;
}

.font-color-white,
.font-color-white:visited {
    color: var(--white);
}

.font-color-black,
.font-color-black:visited {
    color: var(--black);
}

.font-color-theme,
.font-color-theme:visited {
    color: var(--theme-color);
}

.line-height-140 {
    line-height: 1.4em;
}

.text-decoration-none {
    text-decoration: none;
}

@media screen and (min-width: 426px) {
    .font-size-small {
        font-size: 1.4rem;
    }

    .font-size-medium {
        font-size: 2rem;
    }

    .font-size-large {
        font-size: 3rem;
    }
}

@media screen and (min-width: 769px) {
    .font-size-large {
        font-size: 4rem;
    }
}

/* 余白 */
.triangle-padding {
    padding: 0 1.6rem;
}

.margin-0-auto {
    margin: 0 auto !important;
}

.margin-right-100 {
    margin-right: 1em;
}

.margin-top-150 {
    margin-top: 8em;
}

.margin-top-900 {
    margin-top: 9em;
}

.margin-bottom-040 {
    margin-bottom: 0.4em;
}

.margin-bottom-100 {
    margin-bottom: 1.0em;
}

.margin-bottom-160 {
    margin-bottom: 1.6em;
}

.margin-bottom-300 {
    margin-bottom: 3em;
}

.margin-bottom-400 {
    margin-bottom: 4em;
}

.padding-200 {
    padding: 1.4em;
}

.padding-top-400 {
    padding-top: 4em;
}

.padding-bottom-400 {
    padding-bottom: 4em;
}

@media screen and (min-width: 426px) {
    .margin-top-150 {
        margin-top: 15em;
    }

    .padding-200 {
        padding: 2em;
    }
}

/* 改行 */
.br-pc {
    display: block;
}

.br-sp {
    display: none;
}

 @media screen and (max-width: 768px) {
    .br-pc {
        display: none;
    }

    .br-sp {
        display: block;
    }
 }

/* 特殊 */
.item-list-ul {
    margin: 0;
    padding: 0;
}

.item-list-li {
    list-style: none;
    padding: 0.5em 0em;
    padding-right: 1em;
}

.item-list-a {
    padding-top: 0.5em;
    padding-right: 1em;
}

.main-visual-background {
    width: 85vw;
    height: auto;
    min-height: 10em;
}

.scroll {
    width: 4em;
    letter-spacing: 0.2em;
}

.scroll-icon {
    width: 2.4em;
    animation: fadeInDown 2.4s ease-in-out infinite;
}

@keyframes fadeInDown {
    0% {
        opacity: 0.2;
        transform: translateY(-0.4em);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.wrap-first-message {
    padding-top: 10rem;
}

.wrap-first-message::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 100rem;
    height: 6rem;
    background-color: var(--white);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin: 0 auto;
}

.second-message {
    margin-top: 3.4em;
    margin-bottom: 1.2em;
    letter-spacing: 0.2em;
}

.heading-product {
    min-width: 1.2em;
    min-height: 1.2em;
    max-width: 1.2em;
    max-height: 1.2em;
    margin: 0em 0.2em;
    vertical-align: bottom;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.service-grid-item1 {
    grid-column-start: 1;
    grid-column-end: 2;
}

.service-title {
    display: flex;
}

.product-list-ul {
    margin: 1em 0;
    padding: 0;
}

.product-list-li {
    list-style: none;
    padding: 0.6em 0em;
}

.product-list-a {
    padding: 1em 1.4em;
    background-color: var(--theme-color);
    border-radius: var(--border-radius);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--black);
    transition: 0.3s;
    width: 100%;
    max-width: 23em;
    box-sizing: border-box;
}

.product-list-a::before {
    content: "";
    display: block;
    width: 1.6em;
    height: 1.6em;
    margin-right: 1em;
    background-image: url("../img/common/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.product-list-a:hover {
    border-bottom:  2px solid var(--white);
}

@media screen and (min-width: 426px) {
    .wrap-first-message::after {
        width: 94%;
    }
}

@media screen and (min-width: 769px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-grid-item1 {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

.case-text {
    width: 100%;
    margin: 0;
    margin-bottom: 1.6em;
    padding-right: 5%;
    box-sizing: border-box;
    font-size: 0.8em;
}

.wrap-case-img {
    width: 100%;
    max-width: 20rem;
    height: max-content;
    border: 1px solid var(--gray);
    box-sizing: border-box;
    border-radius: var(--border-radius);
    font-size: 0;
    overflow: hidden;
    display: block;
    margin: 0 auto;
}

@media screen and (min-width: 1025px) {
    .case-text {
        width: calc(70% - 1em);
    }

    .wrap-case-img {
        width: 30%;
        display: inline-block;
        vertical-align: top;
    }
}

.news-list-ul {
    margin: 0;
    padding: 0;
}

.new-list-li {
    list-style: none;
    border-bottom: 1px solid var(--gray);
}

.news-list-category {
    min-width: 7em;
    padding: 0.2em 1.6em;
    border-radius: var(--border-radius);
}

/* ======================================= */
.sol-page .contents {
    max-width: 70rem;
}

.sol-page h1 {
    font-size: 2.2rem;
}

.sol-page h3 {
    font-size: 1.4em;
}

.sol-page h4 {
    font-size: 1.2em;
}

.sol-page .font-color-theme a,
.sol-page .font-color-theme a:visited {
    color: var(--theme-color);
}

.sol-page .box-height {
    height: calc(100% - 4em);
}

.sol-page .hardware-box {
    border: 2px solid var(--theme-color);
}

/* table */
.sol-normal table {
    width: 100%;
    min-width: 500px;
    margin-bottom: 40px;
    border-collapse: separate;
    table-layout: fixed;
    border-spacing: 0 4px;
  }
     
  .sol-normal table tr {
    background-color: rgb(246 248 247);
  }
     
  .sol-normal table tr:nth-child(even) {
    background-color: rgb(251, 251, 251);
  }
     
  .sol-normal table th,
  .sol-normal table td {
    padding: 20px;
    border: none;
    line-height: 1.5em;
  }
     
  .sol-normal table th:first-child {
    width: 20%;
    border: none;
    border-right: 10px solid var(--white);
    background-color: var(--theme-color);
    border-radius: 5px;
    color: var(--white);
    font-weight: 500;
    box-sizing: border-box;
  }

  /* =================現状の課題===================== */
.sc-rn_lGrid .problem-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-content: space-between;
    counter-reset: number 0;
    margin-top: 70px;
  }

.sc-rn_lGrid .problem-list li {
    counter-increment: number 1;
    list-style-type: none;
    padding-top: 80px;
    position: relative;
    box-sizing: border-box;
}

.sc-rn_lGrid .problem-list li figure {
    position: relative;
    width: 90%;
    margin: 0 auto 42px;
    display: flex;
    aspect-ratio: 1 / 1;
  }

.sc-rn_lGrid .problem-list li::before {
    content: counter(number, decimal-leading-zero);
    font-weight: 300;
    font-size: 4rem;
    line-height: 1rem;
    letter-spacing: 0em;
    position: absolute;
    right: 20px;
    top: 40px;
    color: #ec5b13;
  }

.sc-rn_lGrid .problem-list li figure img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    margin: auto;
    line-height: 1;
    vertical-align: bottom;
}

.sc-rn_lGrid .problem_detail {
    padding-top: 20px;
}

.sc-rn_lGrid .problem_detail figure {
    float: left;
    width: 40%;
    padding-right: 20px;
}

 @media screen and (max-width: 768px) {
   .sc-rn_lGrid .problem-list {
    grid-template-columns: 1fr;
    margin-top: auto;
    gap: 20px;
   } 

   .sc-rn_lGrid .problem-list li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
   }

   .sc-rn_lGrid .problem-list li::before {
    font-size: 3rem;
    right: auto;
    top: 20px;
   }

   .sc-rn_lGrid .problem-list li figure {
    width: 100px;
    margin: 10px 0 0 10px;
    padding-top: 30px;
   }

   .sc-rn_lGrid .problem-list li figure::after {
    font-size: 3.5rem;
    line-height: 1rem;
    letter-spacing: -0.04em;
    right: auto;
    left: -10px;
    top: -8px;
   }

    .sc-rn_lGrid .problem-list li div {
        width: calc(100% - 100px);
        padding-left: 10px;
        justify-content: space-around;
        display: flex;
        flex-direction: column;
    }

    .sc-rn_lGrid .problem-list li strong {
        text-align: left;
    }

    .sc-rn_lGrid .problem-list li p {
        line-height: 1.7em;
        letter-spacing: -0.03em;
        margin-top: 10px;
    }

    .sc-rn_lGrid .problem_detail {
        padding-top: 0px;
    }

    .sc-rn_lGrid .problem_detail figure {
        width: 100%;
        padding: 20px 0;
    }
 }

   /* =================解決するパッケージの紹介===================== */
#main2 {
    display: block;
    clear: both;
}

.sc-rn_lGrid .subheading-title {
    color: #333;
    border-left: 5px solid #ec5b13;
    position: relative;
    font-weight: bolder;
    font-size: 22.5px;
    padding: 10px;
    margin-bottom: 20px;
}

.subheading-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #ec5b13 0%, rgb(165 91 0 / 20%) 50%, transparent 100%);
}

.sc-rn_lGrid .solution_attention {
    font-size: smaller;
    font-weight: bold;
}

.sc-rn_lGrid .solution-package .main_image {
    padding: 40px 0;
    width: 70%;
    margin: auto;
}

.sc-rn_lGrid .solution-package-lists {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.sc-rn_lGrid .solution-package-list {
    list-style-type: none;
}

.sc-rn_lGrid .solution-package-list strong {
    min-height: 68px;
    display: flex;
    align-items: flex-start;
    overflow-wrap: anywhere;
}

.sc-rn_lGrid .solution-package-list .solution-package-content {
    display: flex;
    flex-direction: column;
}

.sc-rn_lGrid .solution-package-list .solution-package-content figure {
    width: 70%;
    margin: auto;
    padding-bottom: 10px;
}

 @media screen and (max-width: 768px) {
    .sc-rn_lGrid .solution_attention {
        margin-bottom: 20px;
    }

    .sc-rn_lGrid .solution-package {
        flex-direction: column;
    }

    .sc-rn_lGrid .solution-package .main_image {
        padding: 0 0 20px 0;
        width: 100%;
    }

    .sc-rn_lGrid .solution-package-lists {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .sc-rn_lGrid .solution-package-list {
        padding: 10px;
    }

    .sc-rn_lGrid .solution-package-list strong {
        min-height: auto;
    }

    .sc-rn_lGrid .solution-package-list div {
        padding-top: 10px;
    }

    .sc-rn_lGrid .solution-package-list img {
        width: 100px;
    }

    .sc-rn_lGrid .solution-package-list p {
        width: calc(100% - 100px);
        margin-left: 10px;
    }

    .sc-rn_lGrid .solution-package-list .solution-package-content {
        flex-direction: row;
        align-items: center;
    }
 }

 /* =================拡張機能・オプション===================== */

.sc-rn_lGrid .expand-lists{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sc-rn_lGrid .expand-list {
    list-style-type: none;
}

.sc-rn_lGrid .expand-list strong {
    min-height: 68px;
    display: flex;
    align-items: flex-start;
}

.sc-rn_lGrid .expand-list .expand-content {
    padding: 0 10px;
}

.sc-rn_lGrid .expand-list .expand-content figure {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
}

.sc-rn_lGrid .expand-list .expand-content p {
    padding-top: 25px;
}

 @media screen and (max-width: 768px) {
    .sc-rn_lGrid .expand-lists {
        grid-template-columns: 1fr;
    }

    .sc-rn_lGrid .expand-list {
        margin: 0px;
    }

    .sc-rn_lGrid .expand-list strong {
        min-height: auto;
    }

    .sc-rn_lGrid .expand-list .expand-content {
        display: flex;
        align-items: center;
        padding: 10px 0 0 0;
    }

    .sc-rn_lGrid .expand-list .expand-content figure {
        width: 100px;
    }

    .sc-rn_lGrid .expand-list .expand-content p {
        width: calc(100% - 100px);
        padding-top: 0px;
        padding-left: 10px;
    }
 }

  /* =================パッケージ紹介動画===================== */

/* PC: 幅70%、中央寄せ */
.sc-rn_lGrid .youtube-container {
  width: 70%;
  margin: 0 auto;
  padding-bottom: 40px;
}

.sc-rn_lGrid .youtube-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
}

/* スマホ: 幅100% */
@media (max-width: 768px) {
  .sc-rn_lGrid .youtube-container {
    width: 100%;
    padding-bottom:unset;
  }
}

  /* =================導入のメリット===================== */
.sc-rn_lGrid .merit-lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sc-rn_lGrid .merit-list {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.sc-rn_lGrid .merit-list strong {
    min-height: 58px;
}

.sc-rn_lGrid .merit-list .merit-content figure {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    margin: 10px;
}

.sc-rn_lGrid .merit-list .merit-content img {
    max-height: 100%;
    margin: auto;
}

 @media screen and (max-width: 768px) {
    .sc-rn_lGrid .merit-lists {
        grid-template-columns: 1fr;
    }

    .sc-rn_lGrid .merit-list strong {
        min-height: auto;
    }

    .sc-rn_lGrid .merit-list .merit-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding-top: 10px;
    }

    .sc-rn_lGrid .merit-list .merit-content figure {
        width: 100px;
    }

    .sc-rn_lGrid .merit-list .merit-content p {
        width: calc(100% - 100px);
        padding-left: 10px;
    }


 }
  /* =================業界別活用例===================== */
.sc-rn_lGrid .industry-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sc-rn_lGrid .industry-list {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.sc-rn_lGrid .industry-list .industry-content img {
    aspect-ratio: 480/294;
}

 @media screen and (max-width: 768px) {
    .sc-rn_lGrid .industry-lists {
        grid-template-columns: 1fr;
    }
 }

  /* =================導入までのステップ===================== */
.sc-rn_lGrid .intro_flowchart {
    display: flex;
    gap: 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.sc-rn_lGrid .step {
    position: relative;
    flex: 1;
    padding: 35px 45px 35px 30px;
    color: white;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%, 25px 50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: slideInRight 0.6s ease forwards;
    box-sizing: border-box;
}

.sc-rn_lGrid .step:first-child {
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%);
    padding-left: 30px;
}

.sc-rn_lGrid .step:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25px 50%);
}

.sc-rn_lGrid .step:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.sc-rn_lGrid .step:nth-child(1) {
    background: linear-gradient(135deg, #4d2b1a 0%, #a8552c 100%);
    animation-delay: 0.1s;
}

.sc-rn_lGrid .step:nth-child(2) {
    background: linear-gradient(135deg, #a8552c 0%, #d85514 100%);
    animation-delay: 0.2s;
}

.sc-rn_lGrid .step:nth-child(3) {
    background: linear-gradient(135deg, #d85514 0%, #fb6e28 100%);
    animation-delay: 0.3s;
    color: black;
}

.sc-rn_lGrid .step:nth-child(4) {
    background: linear-gradient(135deg, #fb6e28 0%, #ff9763 100%);
    animation-delay: 0.4s;
    color: black;
}

.sc-rn_lGrid .step:nth-child(5) {
    background: linear-gradient(135deg, #ff9763 0%, #ffe3d5 100%);
    animation-delay: 0.5s;
    color: black;
}

.sc-rn_lGrid .step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.sc-rn_lGrid .step-number {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

.sc-rn_lGrid .step-title {
    font-size: larger;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 58px;
    display: flex;
    align-items: center;
}

.sc-rn_lGrid .step-description {
    font-weight: 500;
    line-height: 1.7;
    opacity: 0.95;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1200px) {
    .sc-rn_lGrid .intro_flowchart {
        padding: 30px;
    }

    .sc-rn_lGrid .step {
        padding: 30px 35px 30px 25px;
    }
}

@media (max-width: 1200px) {
    .sc-rn_lGrid .intro_flowchart {
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
    }

    .sc-rn_lGrid .step {
        min-width: 100%;
        width: 100%;
        padding: 25px 25px 35px 25px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 50% 100%, 0 calc(100% - 20px));
    }

    .sc-rn_lGrid .step:first-child {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 50% 100%, 0 calc(100% - 20px));
        padding: 25px 25px 35px 25px;
    }

    .sc-rn_lGrid .step:last-child {
        clip-path: polygon(0 20px, 50% 0, 100% 20px, 100% 100%, 0 100%);
        padding: 35px 25px 25px 25px;
    }

    .sc-rn_lGrid .step:hover {
        transform: scale(1.01);
    }
}

  /* =================価格===================== */
.btn-inquiry-4 { 
    display: inline-block; 
    padding: 14px 40px; 
    margin-left: 10px;
    background-color: white; 
    color: #ec5b13; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: bold; 
    font-size: 16px; 
    border: 2px solid #ec5b13;
    transition: all 0.3s ease; 
} 

.btn-inquiry-4:hover { 
    background-color: #ec5b13; 
    color: white; 
    transform: scale(1.05); 
}

.pricing-plans {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    justify-content: center;
}

.plan-box {
    flex: 1;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e8f5e9;
}

.plan-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 155, 111, 0.2);
    border-color: #4a9b6f;
}

.plan-box.featured {
    background: linear-gradient(135deg, #00995b 0%, #06eb8e 100%);
    border: none;
    transform: scale(1.05);
}

.plan-box.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-box.featured .plan-name {
    color: white;
}

.plan-box.featured .plan-desc {
    color: white;
}

.plan-name {
    font-weight: bold;
    color: #2d5f4a;
    font-size: 1.4em;
    margin-bottom: 12px;
    text-align: center;
}

.plan-desc {
    color: #666;
    font-size: 0.95em;
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    .plan-box {
        max-width: 100%;
    }
    .plan-box.featured {
        transform: scale(1);
    }
}

  /* =================サポート体制===================== */

.sc-rn_lGrid .support-system {
    padding-bottom: 40px;
}

.sc-rn_lGrid .phone {
    font-size: large;
}

.sc-rn_lGrid .phone::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5em;
  vertical-align: -0.2em;
  background-image: url("./phone.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}