@charset "UTF-8";

:root {
    /* font family */
    --font-family-main: "Zen Kaku Gothic New", sans-serif;
    --font-family-accent: "Jost", sans-serif;
    --font-family-sub: "Noto Sans JP", sans-serif;
    /* color */
    --color-main-text: #202020;
    --color-sub-text: #ffffff;
    --color-accent-1: #E62F2B;
    --color-title-gradient: linear-gradient(45deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    /* font size */
    --h1-font-size: 3rem;
    --h1-font-size-sp: 2.3rem;
    --h1-font-size-en: 1.1rem;
    --h1-font-size-en-sp: 0.8rem;
    --h2-font-size: 2.5rem;
    --h2-font-size-sp: 1.8rem;
    --h2-font-size-en: 1.3rem;
    --h2-font-size-en-sp: 0.9rem;
    --h3-font-size: 1.8rem;
    --h3-font-size-sp: 1.4rem;
    --h3-font-size-en: 0.9rem;
    --h4-font-size: 1.5rem;
    --main-text-font-size: 1rem;
    --small-text-font-size: 0.9rem;
    /* height */
    --main-text-line-height: 1.75;
    /* gradient */
    --vivid01: linear-gradient(45deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    --orange03: linear-gradient(to right, #F57504, #FBA55A);
}


/* ~~~~~~~~~~~~~~~~~~~~~~
共通
~~~~~~~~~~~~~~~~~~~~~~~*/
.service-home__section-title {
    font-size: var(--h2-font-size);
    font-weight: bold;
    text-align: center;
}
.service-home__section-title-en {
    background: linear-gradient(84deg, #DA3E3B 0%, #FF7341 43%, #FBA681 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: fit-content; 
    font-size: var(--h2-font-size-en);
    margin-inline: auto;
    font-family: var(--font-family-accent);
    font-weight: 500;
}
.link-font {
    display: inline;
    color: #0E87BB;
    text-decoration: underline;
}
/* ~~~~~~~~~~~~~~~~~~~~~~
TOPページ
~~~~~~~~~~~~~~~~~~~~~~~*/
.service-top .hero__content {
    padding-top: 0;
}

.service-top .hero {
    display: block;
}

.service-top__lead {
    margin: 0 auto 110px;
    text-align: center;
}
.service-top__lead--title {
    font-size: var(--h2-font-size);
    font-weight: bold;
}
.service-top__lead--text {
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    margin-top: 54px;
    font-weight: 500;
}
.service-top .service__item--title {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    height: 35px;
    margin-bottom: 20px;
}

.service__item--bar {
    color: #DA3E3B;
}
.service-top .service__item--title-en {
    font-size: var(--small-text-font-size);
    font-family: var(--font-family-accent);
    font-weight: 500;
}
.service__item--title-ja {
    font-size: clamp(1.2rem, 1.6vw, 1.5rem); 
    white-space: nowrap;
}

.service__link {
    border: 1px solid #DA3E3B;
    padding-block: 12.5px;
    width: 86%;
    border-radius: 24px;
    margin: 0 auto ;
    color: #DA3E3B;
    font-weight: bold;
    font-size: var(--main-text-font-size);
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
}

.service__content {
    margin: 0 auto 110px;
    max-width: 1100px;
    padding: 0 max(20px, 5%);
}
.service__items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
}
.service__list {
    font-size: var(--small-text-font-size);
    text-align: left;
    font-weight: 500;
    padding: 0;
}
.service__list li {
    position: relative;
    padding-left: 24px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #D6D6D6;
    font-size: var(--small-text-font-size);
}
.service__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background-image: url('../images/common_check.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
}

.service__item--text {
    display: flex;
    flex-direction: column;
    gap: 6%;
    padding-block: 24px;
    padding-inline: 6%;
    position: relative;
}

.service__item {
    width: 31%;
    max-width: 350px;
    text-align: center;
    padding: min(2.2vw, 32px) min(1.7vw, 24px) min(1.4vw, 20px);
    box-shadow: 0 4px 10px rgba(67, 67, 67, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #DA3E3B;
    padding: 0 0 110px 0;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .service__items {
        padding-inline: 20px;
        width: 100%;
    }
    .service__item {
        width: 30%;
    }
}


.service__item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service__icon {
    width: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service__icon img {
    aspect-ratio: 1 /1;
}

.service__subtitle {
    font-size: clamp(18px, 4vw, 20px);
    font-weight: bold;
    margin-bottom: 15px;
}


.service-top .service__item img {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}


.service-top .service__item--main {
    display: flex;
    gap: 24px;
}
.service-top .others__container {
    margin-block: 110px 100px;
}
.service-top .others__content {
    display: flex;
    align-items: center;
    gap: 10%;
    margin-bottom: 60px;
}
.service-top .others__content--reverse {
    flex-direction: row-reverse;
}
.service-top .others__image {
    max-width: 440px;
    width: 40%;
}

.service-top .others__text {
    width: 50%;
}

.service-top .others__title {
    font-size: var(--h3-font-size);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}
.service-top .others__title-en {
    background: linear-gradient(76deg, #F57504 0%, #FBA55A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: fit-content;
    font-size: var(--small-text-font-size);
}
.service-top .others__text--main {
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    font-weight: 500;
}
.service-top__contact {
    background-image: url(../images/home_bg_contact-pc.png);
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    /* ~~~~~~~~~~~~~~~~~~~~~~~~~
    TOPページ
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
    .service-top__lead--title {
        font-size: var(--h3-font-size-sp);
        text-align: left;
    }
    .service-top__lead--text {
        text-align: left;
    }

    .service__items {
        flex-direction: column;
        gap: 40px;
        padding-inline: 0;
    }
    
    .service__item {
        width: 100%;
        max-width: 100%;
    }
    .service__content {
        margin: 5.3% auto 7.4%;
    }
    .service-top .service__item--title {
        height: 35px;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    .service__item--text {
        flex-direction: column;
        gap: 16px;
    }
    .service__icon img {
        width: 100%;
    }
    .service__icon {
        margin-inline: auto;
    }
    .service__link {
        font-size: var(--small-text-font-size);
    }

    .service-top .others__content {
        flex-direction: column-reverse;
    }
    .service-top .others__image {
        width: 100%;
        max-width: 100%;
    }
    .service-top .others__text {
        width: 100%;
    }
    .service-top .others__title {
        flex-direction: column;
        align-items: flex-start;
    }
    .others__title-en {
        position: relative;
        padding-left: 20px;
    }
    .others__title-en::before {
        position: absolute;
        content: '';
        background-color: #E62F2B;
        width: 1px;
        height: 90%;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .service-top .others__text--main {
        margin-bottom: 20px;
    }
    .service-top .others__container {
        margin-block: 60px 33px;
    }
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
home-improvement 住宅設備ページ
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.service-home {
    background-image: url(../images/service-home_bg-top.png);
}
.service-home .service-top__lead--text {
    text-align: center;
}

.service-home .top-contents{
    padding-block: max(5%, 20px);
    margin: 147px auto 100px;
    max-width: 1100px;
    width: 100%;
}
.service-home .top-content{
    display: flex;
    gap: 10%;
    margin-bottom: 80px;
}
.service-home .top-content--reverse {
    flex-direction: row-reverse;
}
.service-home .top-content-image{
    max-width: 440px;
    width: 40%;
}
.service-home .top-content-texts{
    max-width: 550px;
    width: 50%;
}
.service-home .top-content-point{
    font-size: var(--small-text-font-size);
    font-weight: 500;
    font-family: var(--font-family-accent);
    margin-bottom: 20px;
    position: relative;
    padding-left: 18px;
}
.service-home .top-content-point::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 90%;
    background-color: #E62F2B;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
}
.service-home .top-content-heading{
    font-size: var(--h3-font-size);
    margin-bottom: 28px;
    line-height: 1.6;
}

.service-home .service-detail {
    background-color: #fff;
    padding-block: 100px 120px;
}
.service-home .top-content-text{
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
}

/* ~~~~~~~~~~~~
アコーディオンメニュー
~~~~~~~~~~~~~ */
.service-type__desc {
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}
.service-home .service-type {
    background:  linear-gradient(82deg, #F40808 0%, #FF836A 100%);
    display: block;
    color: #fff;
    font-size: var(--h3-font-size);
    line-height: 1.64;
    text-align: center;
    padding-block: 17px;
    margin-block: 70px 40px;
    border-radius: 5px;
}
.service-home .service-type02 {
    background:  linear-gradient(87deg, #F57504 0%, #FBA55A 100%);
}

/* アコーディオンメニューのスタイル */
.service-item {
    border: 1px solid #F61A16;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 4px 4px 10px rgba(36, 36, 36, 0.1)
}
.service-bg01 {
    background: linear-gradient(53deg, #FFFFFF 0%, #FFF8F6 100%);
}
.service-bg02 {
    background: linear-gradient(48deg, #FFFFFF 0%, #FFF4EA 100%);
}
.service-item__title {
    font-size: var(--h4-font-size);
    font-weight: bold;
    margin: 0 0 24px;
    position: relative;
    padding-left: 15px;
}

.service-item__title::before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #E62F2B;
    position: absolute;
    left: 0;
}

.service-item__flex {
    display: flex;
    justify-content: space-between;
    padding-block: 40px 60px;
    padding-inline: 10%;
}

.service-item__text {
    flex: 1;
    padding-right: 27px;
}

.service-item__description {
    margin: 0 0 40px;
    line-height: var(--main-text-line-height);
    font-size: var(--main-text-font-size);
    font-weight: 500;

}

.service-item__image {
    width: 300px;
    flex-shrink: 0;
}

.service-item__image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-item__button {
    cursor: pointer;
    transition: 0.2s ease;
}

.service-item__button img {
    width: auto;
    height: 56px;
    object-fit: contain;
}

.service-item__button-icon {
    margin-right: 10px;
    font-size: 18px;
}

/* ~~~細情報エリア~~~~~~ */
.service-item__details {
    display: none;
    padding: 20px 10% 60px;
}

.service-item__details--open {
    display: block; 
}

.service-item__detail-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D9D9D9;
}

.service-item__detail-row:first-child {
    border-top: 1px solid #D9D9D9;
}

.service-item__detail-label {
    width: 45%;
    padding-block: 20px;
    font-weight: 500;
}

.service-item__detail-value {
    width: 55%;
    padding-block: 20px;
}

.service-item__highlight {
    color: #ff6347;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-family-accent);
}
.service-item__highlight__orange {
    color: #F67A0D;
}
.service-item__detail-value--link {
    color: #F67A0D;
    text-decoration: underline;
}

.service-item__note {
    margin: 10px 0 0;
    font-size: 0.9em;
    color: #666;
}

.kitchen-service__list {
    display: flex;
    flex-wrap: wrap;
}
.kitchen-service__list li {
    width: 50%;
    position: relative;
    padding-left: 25px;
}
.service-item__list li {
    position: relative;
    padding-left: 25px;
}
.kitchen-service__list li::before, 
.service-item__list li::before {
    position: absolute;
    content: '';
    width: 17px;
    height: 14.5px;
    background-image: url(../images/check_orange.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    left: 0;
}

/* ~~~~~~~~~~~~~~~~~
実績・事例
~~~~~~~~~~~~~~~~ */
.service-home__cases .section__title {
    text-align: center;
    margin-bottom: 60px;
}
.cases__wrapper {
    background-image: url(../images/service-home_bg_archivement.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: bottom;
    background-color: #fff;
    width: 100%;
}
.cases {
    color: #fff;
    padding: min(6.9vw, 100px) max(20px, 4%) min(13vw, 190px);
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
}
.service-home .cases {
    padding-inline: 0;
}
.cases__title-en {
    font-size: var(--h2-font-size-en);
    display: block; 
    font-family: var(--font-family-accent);
    font-weight: 500;
}
.cases__desc {
    font-size: var(--main-text-font-size);
    line-height: 1.75;
    margin-block: 1.94% 2.22%;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}

.cases__sub-title--en {
    font-size: var(--h3-font-size-en);
    display: block; 
    font-family: var(--font-family-accent);
    font-weight: 500;
    position: relative; 
    padding-left: 20px;
}
.cases__sub-title--en::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%; 
    width: 1px; 
    background-color: #fff; 
}
.cases__sub-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cases__sub-desc {
    font-size: var(--main-text-font-size);
    line-height: 1.5;
    font-weight: 500;
}
.cases__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 6.94%;
}
.cases__item {
    width: 22%;
    margin-bottom: clamp(20px, 4%, 30px);
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.service-home .cases__item {
    border-radius: 0px;
    border: 0.7px solid #D9D9D9;
}
.cases__image {
    height: clamp(150px, 25vw, 200px);
    overflow: hidden;
}

.cases__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cases__text {
    padding: 5px 9px 13px;
    font-family: var(--font-family-sub);
    font-size: var(--small-text-font-size);
    color: var(--color-main-text);
    line-height: 2.3;
    font-weight: 400;
}


.cases__bottom-content {
    background-color: rgba(230, 230, 230, 0.3);
    padding: min(1.6vw, 24px) min(4.17vw, 60px) ;
    font-size: var(--main-text-font-size);
    line-height: 1.5;
    padding: 20px;
    margin-top: 20px;
    font-weight: 500;
}

.swiper-wrapper {
    gap: 20px;
    justify-content: space-around;
}
.swiper-pagination {
    opacity: 0;
}
.service-home__link--to-archivement {
    margin-left: auto;
}
.service-home__link--to-archivement img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-left: auto;
}

/* ~~~~~~~~~~~~~~~~~
取り扱い機器 
~~~~~~~~~~~~~~~~~~*/
.equipment {
    padding-block: 120px;
}
.equipment__container {
    margin-top: 40px;
    max-width: 1100px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-inline: auto;
}
.equipment__item--category {
    text-align: center;
    color: #E62F2B;
    font-size: 20px;
    margin-block: 20px 16px;
    font-weight: 500;
}
.equipment__item--name {
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    font-weight: 500;
}
.equipment__item {
    width: 345px;
}

/* ~~~~~~~~~~~~~~~~~~
流れ
~~~~~~~~~~~~~~~~~~ */
.service-home-flow {
    background-image: url(../images/service-home_bg-flow.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-block: 100px 120px;
}
.service-home-flow__wrapper {
    padding: 9% 15% 10%;
}
.service-home-flow__wrapper {
    padding: 100px 72px;
    max-width: 1100px;
    background-color: #fff;
    margin-inline: auto;
}
.service-home-flow__items{
    margin-bottom: 28px;
    margin-top: 40px;
}
.service-home-flow__item{
    box-shadow: 4px 4px 8px rgba(36, 36, 36, 0.1);
    padding: 20px 30px;
    display: flex;
    gap: 30px;
    margin-bottom: 28px;
}

.service-home-flow__item--icon{
    width: 100px;
    height: auto;
    aspect-ratio: 1/ 1;
    flex-shrink: 0;
}
.service-home-flow__item--texts-step {
    font-size: var(--small-text-font-size);
    font-family: var(--font-family-accent);
    font-weight: 500;
    padding-left: 16px;
    position: relative;
}
.service-home-flow__item--texts-step::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #E62F2B;
}
.service-home-flow__item--texts-title{
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 4px;
}
.service-home-flow__item--texts-desc{
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
}
.page-service-home .service-top__contact {
    background-image: none;
}

/* ~~~~~~~~~~~~~~~~~~~~
レスポンシブ対応
~~~~~~~~~~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    .service-top__lead {
        margin: 40px 0 28px ;
    }
    .service-home .service-top__lead--text {
        text-align: left;
        padding: 0 max(20px, 5%);
    }
    .service-home .top-contents {
        margin: 0 auto;
    }
    .service-home .service-detail {
        padding-block: 60px 80px;
    }
    .service-home .service-type {
        margin-block: 28px;
        font-size: var(--h3-font-size-sp);
    }
    .service-home .top-content {
        flex-direction: column-reverse;
        padding: 0 max(20px, 5%);
    }
    .service-home .top-content-image {
        width: 100%;
    }
    .service-home .top-content-texts {
        width: 100%;
    }
    .service-home .top-content {
        margin-bottom: 48px;
        gap: 28px;
    }
    .service-home__section-title {
        text-align: left;
        padding: 0 max(20px, 5%);
    }

    .service-home__section-title-en {
        margin-left: 0;
    }
    .service-home {
        background-image: url(../images/service-home_bg-top-sp.png);
    }
    .service-item__flex {
        flex-direction: column;
    }

    .service-home .top-content-heading{
        font-size: var(--h3-font-size-sp);
        line-height: 32px;
        margin-bottom: 16px;
    } 
    .service-item__text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .service-item__image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        margin-bottom: 28px;
    }
    
    .service-item__detail-row {
        flex-direction: column;
    }
    
    .service-item__detail-label {
        width: 100%;
        border-right: none;
        padding-block: 16px 0;
    }
    .service-item__title {
        font-size: 1.3rem;
        margin: 0 0 16px;
    }
    .service-item__flex {
        padding: 40px 5% ;
    }
    .service-type__desc {
        text-align: left;
    }
    .service-item__details {
        padding: 20px 5% 30px;
    }
    .service-item__detail-value {
        width: 100%;
        padding-block: 8px 16px;
    }
    .service-item__description {
        margin: 0 0 16px;
    }
    .service-item__text {
        margin-bottom: 0;
    }
    .kitchen-service__list li {
        width: 100%;
    }
    .equipment__item {
        width: 49%;
        margin-bottom: 28px;
    }
    .equipment {
        padding-block: 80px;
    }
    .equipment__container {
        gap: 5px;
        padding-inline: max(20px, 5%);
    }
    .equipment__item--category {
        font-size: 18px;
    }
    .cases__wrapper {
        background-image: url(../images/home_bg_red-sp.png);
        background-size: 100% auto;
        background-position: bottom;
    }
    .cases {
        padding: min(16vw, 60px) min(5.3vw, 20px) min(32vw, 120px);
    }
    .cases__title-en {
        font-size: var(--h2-font-size-en-sp);
    }
    .cases__desc {
        margin-bottom: 36px;
        font-size: 1rem;
        font-weight: 500;
    }
    .cases__list {
        display: block; 
        margin-bottom: 30px;
    }
    
    .cases__item {
        width: 260px; 
        height: 294px;
        margin: 0; 
    }
    
    .cases__image {
        height: 220px; 
    }
    
    .swiper-container {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: hidden;
        position: relative;
        padding-bottom: 30px;
    }
    
    .swiper-pagination {
        position: absolute;
        bottom: 0 !important;
        left: 0;
        right: 0;
        text-align: center;
        opacity: 1;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        display: inline-block;
        border-radius: 50%;
        background: #fff;
        margin: 0 4px;
        opacity: 1;
        border: 1px solid #ccc;
    }
    
    .swiper-pagination-bullet-active {
        background-color: #f5911e; 
        border: 2px solid #fff;
        height: 10px;
        width: 10px;
    }

    /* ~~~~~~
    流れ
    ~~~~~~~~~ */
    .service-home-flow {
        background-image: url(../images/service-home_bg-flow-sp.png);
        padding-block: 80px 100px;
        background-size: cover;
    }
    .service-home-flow__wrapper {
        width: 90%;
        max-width: 90%;
        padding: 60px 20px 12px;
    }
    .service-home__section-title {
        font-size: var(--h2-font-size-sp);
    }
    .service-home-flow .service-home__section-title {
        padding-inline: 0;
    }
    .service-home-flow__item {
        flex-direction: column;
        margin-bottom: 16px;
        padding: 28px 20px;
    }
    .service-home-flow__item--texts-step {
        margin-bottom: 8px;
    }
    .service-home-flow__item--texts-title {
        margin-bottom: 12px;
    }
    .service-home-flow__item--icon {
        width: 80px;
        margin-inline: auto;
    }

    .service-home__link--to-archivement img {
        margin-inline: auto;
    }
}
/* ~~~~~~~~~~~~~~~~~~
電気
~~~~~~~~~~~~~~~~~~~~*/
.electricity_content {
    width: 100%;
    padding-top: 70px;
}
.electricity__bg-wrapper {
    background-image: url(../images/service_electricity_bg.png);
    background-position: center top;
    background-size: 100%;
    padding-bottom: 140px;
}
.electricity__lead{
    font-size: var(--h2-font-size);
    font-weight: bold;
    text-align: center;
    margin-bottom: 70px;
}
.electricity__text {
    font-size: var(--main-text-font-size);
    margin-bottom: 70px;
    max-width: 830px;
    margin-inline: auto;
}
.electricity__strong {
    font-size: 1.3rem;
    color: #E62F2B;
    font-weight: bold;
    line-height: 1.4;
}
.electricity__note img {
    height: 78px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-inline: auto;
}
.electricity .contact {
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .electricity .contact {
        background-image: url(../images/service_electricity_bg-sp.png);
    }
    .electricity__bg-wrapper {
        background-image: none;
    }
    .electricity__lead {
        font-size: var(--h2-font-size-sp);
        text-align: left;
        padding-left: 20px;
    }
    .electricity_content {
        padding-top: 40px;
    }
    .electricity__text {
        padding-inline: 20px;
        margin-bottom: 40px;
    }
    .electricity__strong {
        font-size: var(--main-text-font-size);
    }
    .electricity__note img {
        padding-inline: 20px;
        height: 60px;
        width: auto;
    }
    .electricity__bg-wrapper {
        padding-bottom: 0;
    }
}

/*~~~~~~~~~~~~~~~~~
保険　insurance
~~~~~~~~~~~~~~~~~*/
.insurance__top{
    max-width: 840px;
    display: flex;
    gap: 6%;
    margin-inline: auto;
    padding-block: 70px 130px;
}
.insurance__top--wrapper {
    background-image: url(../images/service_insurance_bg.png);
    background-position: top;
    background-repeat: no-repeat;
}
.insurance__top--item{
    width: 30%;
}
.insurance__top--image{
    width: 220px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    margin-bottom: 28px;
}
.insurance__top--heading{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 28px;
}
.insurance__top--text{
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    text-align: left;
}
.insurance-type{
    max-width: 1095px;
    margin-inline: auto;
    margin-bottom: 140px;
}
.insurance-type__top{
    display: flex;
    gap: 8.5%;
    margin-bottom: 80px;
}
.insurance-type__top--left{
}
.insurance-type .service__item--title{
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}
.insurance-type .service__item--bar{
    font-size: 40px;
}
.insurance-type__title-en{
    font-size: 14px;
}
.service__item--title-en-orange {
    background: linear-gradient(68deg, #F57504 0%, #FBA55A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: fit-content;
}
.orange-bar {
    font-size: 40px;
    color: #FF8419;
}
.insurance-type__text{
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
}
.insurance-type__top--right{
    width: 437px;
}
.insurance-type__links{
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.insurance-type__link img{
    height: 60px;
    width: auto;
    object-fit: contain;
}
.insurance .contact {
    background-color: #FFF;
}
.insurance .hero__desc {
    width: 45%;
}

@media screen and (max-width: 768px) {
    .insurance .hero__desc {
        width: 100%;
    }
    .insurance__top--wrapper {
        background-image: url(../images/service_insurance_bg-sp.png);
    }
    .insurance__top {
        flex-direction: column;
        gap: 40px;
        padding-inline: 20px;
        padding-block: 60px 80px;
    }
    .insurance__top--item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
    .insurance__top--image {
        width: 80px;
    }
    .insurance__top--heading{
        text-align: left;
        margin-bottom: 8px;
    }
    .insurance-type__top {
        flex-direction: column;
        gap: 40px;
    }
    .insurance-type__top {
        margin-bottom: 65px;
    }
    .insurance-type__link img {
        height: 60.88px;
    }
    .insurance-type {
        padding-inline: 20px;
        margin-bottom: 50px;
    }
    .hero__desc {
        margin-bottom: 0;
    }
    .insurance-type .service__item--title-ja {
        font-size: var(--h3-font-size-sp);
    }
    .insurance-type .service__item--bar {
        font-size: 20px;
    }
    .orange-bar {
        font-size: 20px;
    }

}

/* ~~~~~~~~~~~~~~~~~~
service
~~~~~~~~~~~~~~~~~~ */
.lpgas-banner img {
    width: 840px;
    height: auto;
    margin: 60px auto 100px;
}
.lpgas-lead__title{
    font-size: var(--h2-font-size);
    text-align: center;
    margin-bottom: 40px;
}
.lpgas-lead__text{
    text-align: center;
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    font-weight: 500;
    margin-bottom: 100px;
}
.page-lp-gas .lpgas-point{
    background-image: url(../images/service_lpgas_bg01.png);
    background-position: center top;
    background-size: cover;
}
.lpgas-point__item{
    display: flex;
    gap: 10%;
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
    padding-bottom: 80px;
}
.lpgas-point__item--reverse {
    flex-direction: row-reverse;
}
.lpgas-point__item--image {
    width: 440px;
    height: 100%;
}

.page-lp-gas .top-content-point{
    font-size: var(--small-text-font-size);
    font-weight: 500;
    font-family: var(--font-family-accent);
    margin-bottom: 20px;
    position: relative;
    padding-left: 18px;
}
.page-lp-gas  .top-content-point::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 90%;
    background-color: #E62F2B;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
}
.lpgas-point__item--title{
    font-size: var(--h3-font-size);
    font-weight: bold;
    margin-bottom: 28px;
}
.lpgas-point__item--text{
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    font-weight: 500;
}
.lpgas-point__item--link img{
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-top: 36px;
}

.lpgas-characteristics {
    background-color: #fff;
    padding-block: 110px 120px;
    max-width: 100%;
    overflow-x: hidden;
}
.lpgas-characteristics__wrapper {
    max-width: 1070px;
    width: 100%;
    margin-inline: auto;
}
.lpgas-sub-title {
    font-size: var(--h2-font-size);
}
.lpgas-sub-title-en {
    font-size: 20px;
    font-family: var(--font-family-accent);
    font-weight: 500;
    background: linear-gradient(68deg, #DA3E3B 0%, #FF7341 43%, #FBA681 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: fit-content;
}
.lpgas-characteristics__container{
    display: flex;
    gap: 9%;
    margin-top: 48px;
    padding-inline: 30px;
}
.lpgas-characteristics__item{
    width: 29%;
    position: relative;
}
.lpgas-characteristics__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15%;
    bottom: 0;
    height: 45%; 
    width: 1px; 
    background-color: #e0e0e0; 
}
.lpgas-characteristics__image{
    width: 240px;
    aspect-ratio: 1 / 1;
    margin-bottom: 28px;
}
.lpgas-characteristics__heading{
    font-size: var(--h3-font-size);
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    margin-bottom: 28px;
}
.lpgas-characteristics__text{
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    font-weight: 500;
}
.lpgas-price__inner {
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
}
.lpgas-price__lead{
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    font-weight: 500;
    margin-bottom: 24px;
}
.lpgas-price__wrapper{
    background-color: #F7F7F7;
    padding: 40px;
}
.service__item--title{
    display: flex;
    align-items: center;
}
.lpgas-price__calc{
    font-size: 2rem;
    line-height: 1.4;
    color: #E62F2B;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px auto 60px;
}
.lpgas-price__symbol{
    font-size: var(--main-text-font-size);
    color: var(--color-main-text);
    line-height: 1.75;
    margin-inline: 12px;
}
.lpgas-price__cards{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.lpgas-price__cards img {
    width: 500px;
}
.lpgas-price-accordion__wrapper {
    background-color: #fff;
    padding-block: 80px 100px;
}
.lpgas-price-accordion {
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
}
.lpgas-price-accordion .item_open.open {
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    font-weight: 500;
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
}
.lpgas-accordion__content--figure img {
    padding-top: 28px;
}
.lpgas_bottom-bg {
    background-image: url(../images/service_lpgas_bg02.png);
    background-position: bottom;
}
.moving__lead, 
.moving__text{
    font-size: var(--main-text-font-size);
    line-height: var(--main-text-line-height);
    font-weight: 500;
}
.moving__lead {
    margin-block: 24px 32px;
}
.lpgas-moving {
    padding-block: 100px;
}
.moving__wrapper {
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
}
.moving__container{
    background-color: #fff;
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
    padding: 40px 70px;
}
.moving__items{
    display: flex;
    justify-content: center;
    gap: 6%;
}
.moving__item{
    width: 40%;
}
.moving__title{
    font-size: var(--h3-font-size);
    margin-bottom: 20px;
}
.moving__image {
    margin-bottom: 20px;
}
.faq__wrapper {
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
}
.faq-accordion__wrapper{
    border-top: 1px solid #D6D6D6;
    margin-block: 36px 100px;
}
.faq-accordion {
    border-bottom: 1px solid #D6D6D6;
}
.faq-accordion .item{
    padding: 20px 16px;
}
.faq-accordion .text {
    display: flex;
}
.faq-accordion .text img, 
.faq-accordion .item_open img {
    width: 32px;
    height: 32px;
}
.lpgas-accordion__button--closed {
    display: none;
}

.lpgas-accordion__button--open {
    display: inline;
}


.text img{
    margin-right: 16px;
}
.arrow {
    background-image: url('../images/faq_open.png');
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.item.open .arrow {
    background-image: url('../images/faq_close.png');
}
.faq-accordion .item_open.open {
    max-width: 972px;
    width: 100%;
    margin-inline: auto;
    padding-right: 6%;
    padding-left: 4%;
    margin-block: 20px;
    position: relative;
}

.faq-accordion .item_open.open img {
    position: absolute;
    left: 0;
    top: 0;
}

.faq-accordion .item_open.open a {
    text-decoration: underline;
    color: #E62F2B;
}
.lpgas-bottom-link {
    display: flex;
    justify-content: center;
    gap: 76px;
}
.lpgas-bottom-link img {
    height: 95px;
    width: 100%;
    aspect-ratio: 382 / 95;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
LPガスアコーディオン
~~~~~~~~~~~~~~~~~~~~~~~ */
.item_container {
    margin-bottom: 4.84vw;
}
.item_container:last-of-type {
    margin-bottom: 0;
}

.item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--main-text-font-size);
    font-weight: 500;
    line-height: var(--main-text-line-height);
    cursor: pointer;
}

.item_open {
    display: none;
    font-size: var(--main-text-font-size);
    font-weight: 500;
    line-height: 1.6;
}

.item_open.open {
    display: block;
}
/* 画像切り替え用のCSS */
.lpgas-accordion__button--closed {
    display: inline;
}

.lpgas-accordion__button--open {
    display: none;
}

.item.open .lpgas-accordion__button--closed {
    display: none;
}

.item.open .lpgas-accordion__button--open {
    display: inline;
}

.page-lp-gas .contact {
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .lpgas-point{
        background-image: url(../images/service_lpgas_bg01-sp.png);
    }
    .lpgas_bottom-bg {
        background-image: url(../images/service_lpgas_bg02-sp.png);
        background-position: bottom;
    }
    .lpgas-banner {
        width: 90%;
        box-shadow: 2px 3px 14px 3px rgba(0, 0, 0, 0.1);
        margin-inline: auto;
        display: block;
    }
    .lpgas-lead__title {
        font-size: var(--h2-font-size-sp);
        text-align: left;
        padding-inline: 5%;
    }
    .lpgas-lead__text {
        text-align: left;
        padding-inline: 5%;
    }
    .lpgas-point__item {
        flex-direction: column-reverse;
        padding-inline: 5%;
        gap: 20px;
        padding-bottom: 48px;
    }
    .lpgas-point__item--title {
        font-size: var(--h3-font-size-sp);
        margin-bottom: 16px;
    }
    .lpgas-point__item--link img {
        margin-top: 16px;
        min-height: 60px;
        width: 100%;
        height: auto;
    }
    .page-lp-gas .top-content-point {
        margin-bottom: 8px;
    }
    .lpgas-characteristics__container {
        flex-direction: column;
        padding: 0;
        gap: 24px;
        margin-top: 40px;
    }
    .lpgas-sub-title {
        font-size: var(--h2-font-size-sp);
    }
    .lpgas-sub-title-en {
        font-size: var(--h2-font-size-en-sp);
    }
    .lpgas-characteristics__item {
        width: 100%;
        display: flex;
        gap: 5%;
    }
    .lpgas-characteristics__image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
    .lpgas-characteristics__heading {
        font-size: var(--h3-font-size-sp);
        margin-bottom: 8px;
        text-align: left;
    }
    .lpgas-characteristics__wrapper {
        padding-inline: 5%;
    }
    .lpgas-price__inner {
        padding-inline: 5%;
    }

    .lpgas-price__lead {
        margin-block: 24px 28px;
    }
    .lpgas-price .service__item--title {
        flex-direction: column;
        align-items: flex-start;
    }
    .lpgas-price__wrapper {
        padding: 10% 5%;
    }
    .lpgas-price__calc {
        display: flex;
        font-size: 28px;
        margin: 24px auto 32px;
    }
    .lpgas-price__calc-item01 {
        display: flex;
        align-items: center;
        width: 55%;
    }
    .faq-accordion__wrapper {
        margin-block: 28px 0;
    }
    .lpgas-price__calc-item02 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .lpgas-price__symbol {
        width: 1%;
    }
    .lpgas-price__cards img {
        width: 100%;
    }
    .lpgas-point__item--image {
        width: 100%;
    }
    .moving__wrapper {
        padding-top: 60px;
        padding-inline: 5%;
    }
    .moving__lead {
        margin-block: 24px;
    }
    .moving__items {
        flex-direction: column;
        gap: 32px;
    }
    .moving__item {
        width: 100%;
    }
    .moving__container {
        padding: 24px 5%;
    }
    .lpgas-moving {
        padding-block: 0;
    }
    .faq__wrapper {
        padding: 80px 5% 60px;
    }
    .faq-accordion .item {
        align-items: center;
        gap: 12px;
    }
    .text img {
        margin-right: 12px;
    }
    .faq-accordion .item {
        padding-inline: 0;
    }
    .lpgas-bottom-link {
        flex-direction: column;
        gap: 24px;
        padding-inline: 20px;
    }
    .lpgas-bottom-link01 img {
        height: 66px;
        width: 100%;
        aspect-ratio: 335 / 66;
        object-fit: contain;
    }
    .lpgas-bottom-link02 img {
        height: 52px;
        width: 100%;
        aspect-ratio: 335 / 52;
        object-fit: contain;
    }
}


/* ~~~~~~~~~~~~~~~~~~
faq
~~~~~~~~~~~~~~~~~~ */
.faq {
    margin-bottom: 120px;
}

.faq__links-container {
    display: flex;
    justify-content: space-between;
}

.faq__links {
    position: relative;
    padding: 15px 28px;
    font-weight: 700;
    font-size: 14px;
    line-height: auto;
    color: #E62F2B;
    border-radius: 24px;
    border: 1px solid #E62F2B;
    display: inline-block;
    width: 260px;
}

.faq__links::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/faq__links-vector.png)no-repeat center center / contain;
}

.faq-accordion__title {
    margin-top: 80px;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    line-height: auto;
    background: linear-gradient(86deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-accordion__wrapper-2 {
    margin: 40px auto 0;
}

.faq-answer-section {
    padding: 20px 0 70px;
}

.faq-as-1-top {
    background-color: #F7F7F7;
    padding: 45px 68px;
}

.faq-as-1-top p {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.faq-as-1-top p span {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #E62F2B;
}

.faq-as-1-middle {
    margin-top: 40px;
    text-align: center;
}

.faq-as-1-middle p {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

.faq-as-1-under {
    margin: 25px auto;
    width: 95%;
    max-width: 550px;
    background: linear-gradient(78deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.faq-as-1-under-left {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

.faq-as-1-under-right {
    font-family: var(--font-family-accent);
    font-weight: 500;
    font-size: 48px;
    line-height: auto;

}

.faq-as-2-top {
    position: relative;
}

.faq-as-2-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.faq-as-2-text {
    margin-top: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

.faq-as-2-text span {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #E62F2B;
}

.faq-as-2-content {
    margin-top: 20px;
    background-color: #F7F7F7;
    padding: 12px 30px;
    display: inline-block;
}

.faq-as-2-content-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #E62F2B;
}

.faq-as-2-content-text {
    margin-top: 9px;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #000000;
}

.faq-as-2-img-1 {
    position: absolute;
    width: 217px;
    height: 194px;
    bottom: -19px;
    left: 66%;
}

.faq-as-2-img-1 img {
    width: 100% !important;
    height: 100% !important;
}

.faq-as-2-middle {
    margin-top: 40px;
}

.faq-as-2-flex {
    margin-top: 20px;
    display: flex;
    gap: 32px;
    align-items: flex-end;
}

.faq-as-2-img-2 {
    width: 220px;
    height: 118px;
    flex-shrink: 0;
}

.faq-as-2-img-2 img {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

.faq-as-2-text-2 {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.faq-as-2-text-2 span {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #E62F2B;
}

.faq-as-2-under {
    margin-top: 40px;
    background-color: #F7F7F7;
    padding: 32px 60px;
}

.faq-as-2-under-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
}

.faq-as-2-under-text:not(:first-child) {
    margin-top: 16px;
}

.faq-accordion__answer-img {
    margin-top: 40px;
}

.faq-accordion__answer-img img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
}


@media screen and (max-width: 768px) {
    .faq-accordion .item_open.open {
    padding-left: 13%;
    padding-right: 0;
}
.faq {
    margin-bottom: 100px;
}

.faq__links-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.faq__links {
    padding: 16.5px 0;
    font-size: 16px;
    border-radius: 28px;
    width: 100%;
    text-align: center;
}

.faq__links::after {
    display: none;
}

.faq-accordion__title {
    margin-top: 60px;
    font-size: 28px;
}

.faq-accordion__wrapper-2 {
    margin: 24px auto 0;
}

.faq-answer-section {
    padding: 20px 0 70px;
}

.faq-as-1-top {
    padding: 12px;
}

.faq-as-1-top p {
    line-height: 28px;
}

.faq-as-1-top p span {
    line-height: 28px;
}

.faq-as-1-middle {
    margin-top: 16px;
    text-align: left;
}

.faq-as-1-under {
    margin: 16px auto 21px;
    width: 100;
    max-width: auto;
    padding: 12px 0  4px;
    flex-direction: column;
}

.faq-as-1-under-left {
    font-size: 18px;
}

.faq-as-1-under-right {
    font-size: 40px;
}

.faq-as-2-title {
    font-size: 18px;
}

.faq-as-2-text {
    margin-top: 8px;
    font-size: 16px;
}

.faq-as-2-text span {
    font-size: 16px;
}

.faq-as-2-content {
    margin-top: 8px;
    padding: 12px;
}

.faq-as-2-content-title {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.faq-as-2-content-text {
    margin-top: 8px;
    line-height: 24px;
}

.faq-as-2-img-1 {
    position: relative;
    width: 291px;
    height: 260px;
    bottom: auto;
    left: auto;
    margin: 12px auto 0;
}

.faq-as-2-middle {
    margin-top: 16px;
}

.faq-as-2-flex {
    margin-top: 12px;
    gap: 12px;
    flex-direction: column;
    align-items: center;
}

.faq-as-2-under {
    margin-top: 16px;
    padding: 12px;
}

.faq-as-2-under-text {
    font-size: 16px;
    line-height: 28px;
}

.faq-as-2-under-text:not(:first-child) {
    margin-top: 8px;
}

.faq-accordion__answer-img source {
    display: block !important;
}
}


/* ~~~~~~~~~~~~~~~~~~
リセットCSS
~~~~~~~~~~~~~~~~~~~~ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-main);
    font-size: 100%;
    color: var(--color-main-text);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.7;
}