#page_showroom {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  
  .showroom-section-01,
  .showroom-section-02,
  .showroom-section-03,
  .showroom-section-04,
  .showroom-section-05 {
    padding: 50px 0px;
  }
  
  .showroom-content-top {
    margin-top: 50px;
    text-align: center;
  }
  
  .showroom-content-top h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
  }
  
  .showroom-content-top p {
    text-align: center;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 32px;
  }
  
  .showroom-content-top span {
    font-size: 18px;
    display: inline-block;
    color: var(--green);
    font-style: italic;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* showroom list */
  .showroom-container {
    margin-top: 70px;
  }
  
  .showroom-container .showroom-container-list {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .showroom-container .showroom-container-list .showroom-item {
    width: calc(25% - 10px);
    transition: 0.4s;
  }
  
  .showroom-container .showroom-container-list .showroom-item:hover {
    -webkit-box-shadow: 3px 3px 11px #00000029;
    box-shadow: 3px 3px 11px #00000029;
    opacity: 0.8;
  }
  
  .showroom-container .showroom-container-list .showroom-item .showroom__image {
    height: 200px;
    overflow: hidden;
  }
  
  .showroom-container .showroom-container-list .showroom-item .showroom__image img {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .showroom-container .showroom-container-list .showroom-item .showroom__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 5px;
  }
  
  .showroom-container .showroom-container-list .showroom-item .showroom__heading {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .showroom-container .showroom-container-list .showroom-item .showroom__desc {
    text-align: center;
    font-size: 16px;
    margin: 5px 0px;
  }
  
  .showroom-container .showroom-container-list .showroom-item .showroom__btn {
    display: flex;
    margin: 10px;
    height: 40px;
    max-width: 200px;
    width: 100%;
    color: var(--text);
    border: 1px solid var(--green);
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  
  .showroom-content-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .showroom-content-title h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
  }
  
  .showroom-content-title>span {
    font-size: 18px;
    display: inline-block;
    color: var(--green);
    font-style: italic;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .about-showroom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .about-showroom .items {
    width: calc(33.33% - 20px);
    margin: 10px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-showroom .items figure {
    height: 150px;
    width: 150px;
    display: flex;
    margin-bottom: 10px;
    overflow: hidden;
  }
  
  .about-showroom .items figure img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  
  .as-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .as-dec {
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 27px;
    color: var(--text);
  }
  
  
  .showroom-exp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .showroom-exp-item {
    padding: 10px;
    border: 1px solid rgb(221, 221, 221);
  }
  
  .showroom-exp-info {
    padding: 0px 5px;
  }
  
  .showroom-exp-info .showroom-h4-heading {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0px;
  }
  
  /* 
  
  /* voice */
  .showroom-voive__list {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .showroom-voice__image {
    position: relative;
    height: auto;
  }
  
  .showroom-voive__item {
    flex: 1;
  }
  
  .showroom-voice__desc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4%;
    max-width: 50%;
  }
  
  .showroom-voive__item:last-child .showroom-voice__desc {
    left: 48%;
  }
  
  .read-more-wrap {
    margin: 50px auto;
  }
  
  .read-more-link a {
    display: flex;
    border: 1px solid #449948;
    position: relative;
    max-width: 300px;
    font-size: 18px;
    padding: 10px;
    width: 100%;
    text-align: center;
    align-items: center;
    flex-direction: column;
  }
  
  .read-more-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }
  
  .read-more-link a:after {
    content: '';
    position: absolute;
    right: -35%;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 50%;
    color: #449948;
    background-color: #449948;
    transition: right 0.5s ease;
  }
  
  .read-more-link a:hover {
    position: relative;
    transition: right 0.5s ease;
  }
  
  .read-more-link a:hover:after {
    right: -45%;
    transition: right 0.5s ease;
  }
  
  /* Q&A */
  /* FAQパーツ */
  .fqa-box-main {
    margin: 30px auto;
  }
  
  .pageSubTitle2 {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
    font-style: normal;
    color: #fff;
  }
  
  .contentText {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    font-style: normal;
    color: #4d4d4d;
  }
  
  .qa {
    padding-top: 180px;
    padding-bottom: 278px;
  }
  
  .qa__box {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  
  .qa__box>dl>dt {
    background-color: #449948c7;
    display: flex;
    padding: 10px 40px 10px 20px;
    position: relative;
  }
  
  .qa__box>dl>dt .crossBar {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  
  .qa__box>dl>dt .crossBar::before {
    content: "";
    display: inline-block;
    width: 2.4px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: center center;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  .qa__box>dl>dt .crossBar::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2.4px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .qa__box>dl>dt>span {
    font-size: 1.75rem;
    line-height: var(--bs-body-line-height);
    font-weight: 500;
    font-style: normal;
    color: #fff;
    margin-right: 23px;
  }
  
  .qa__box>dl>dd {
    margin: 12px;
    background-color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 0px 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  }
  
  .qa__box>dl>dd>span {
    font-size: 28px;
    line-height: 1.7;
    font-weight: 500;
    font-style: normal;
    color: #5fb1de;
    margin-right: 23px;
  }
  
  .qa__box>dl>dd.is-open {
    max-height: 100%;
    padding: 10px 30px;
    transition: all 0.2s ease-in-out;
  }
  /* ＋ button*/
  .qa__box > dl > dt.is-open .crossBar::before {
    transform: translateX(-50%) rotate(90deg);
  }
  
  @media (max-width: 992px) {
    .showroom-container .showroom-container-list .showroom-item {
        width: calc(50% - 10px);
    }
  
    .showroom-voice {
        max-width: 768px;
        width: 100%;
        margin: 0 auto;
    }
  
    .showroom-voive__list {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .showroom-content-top h2 {
        font-size: 36px;
    }
  
    .about-showroom .items {
        width: calc(50% - 20px);
    }
  
    .showroom-exp {
        gap: 15px;
    }
    .qa__box>dl>dt {
        padding: 10px 40px 10px 10px;
    }
    .qa__box>dl>dt>span{
        font-size: 20px;
        margin-right: 15px;
    }
    .qa__box>dl>dt .crossBar{
        right: 10px;
        width: 20px;
        height: 20px;
    }
  
  }
  
  @media (max-width: 576px) {
  
    .showroom-section-01,
    .showroom-section-02,
    .showroom-section-03,
    .showroom-section-04,
    .showroom-section-05 {
        padding: 30px 0px;
    }
  
    .showroom-content-top {
        margin-top: 30px;
    }
  
    .showroom-content-top h2 {
        font-size: 30px;
    }
  
    .showroom-content-title h2 {
        font-size: 25px;
    }
  
  }
  
  @media (max-width: 480px) {
    .showroom-container .showroom-container-list {
        gap: 30px;
    }
  
    .showroom-container .showroom-container-list .showroom-item {
        width: 100%;
    }
  
    .showroom-container .showroom-container-list .showroom-item .showroom__image {
        height: 100%;
    }
  
    .about-showroom .items {
        width: 100%;
    }
  
    .showroom-voive__item {
        margin-bottom: 50px;
    }
  
    .showroom-exp {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        grid-template-columns: 1fr;
        gap: 30px;
    }
  
    .showroom-voive__item:last-child .showroom-voice__desc {
        left: 41%;
    }
  
    .showroom-voice__desc {
        position: absolute;
        top: 54%;
        transform: translateY(-50%);
        left: 3px;
        max-width: 59%;
        background-color: white;
        height: 100%;
        padding-top: 5px;
    }
  
    .fqa-box-main {
        margin-bottom: 5px;
    }
  }