:root {
    --white: #fff;
    --bg: #fffded;
    --base1: #fffadb;
    --yellow__lite: #fbffd3;
    --yellow__heavy: #f1eaa7;
    --yellow__bg: #f5eeb8;
    --green__lite: #fbffd3;
    --green1: #ccdcae;
    --green2: #ccdc91;
    --green3: #c3d58d;
    --green4: #83a991;
    --green5: #4a957e;
    --green__con: #004500;
    --orange: #ea4f18;
    --orange__lite: #ff9777;
    --font__color: #3d3125;
    --box__shadow: rgba(0, 0, 0, 0.1);
    --button__gradient: linear-gradient(135deg, #fed395 0%, #ea4f18 40%, #ea4f18 100%);
    --gray: #585858;
}

/* メニュー部分＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.menu {
    width: 100%;
    height: 160px;
    background: var(--yellow__bg);
    box-shadow: 0px 0px 10px var(--box__shadow);
    position: relative;
    z-index: 5;
}

.menu ul {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.menu ul li {
    position: relative;
    cursor: pointer;
}


.menu ul li img {
    width: 100%;
    max-width: 200px;

}

.normal__img {
    transition: all 0.3s;
}

.menu ul .hover__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.3s;
}

.menu ul li:hover .hover__img {
    opacity: 1;
}

.menu ul li:hover .normal__img {
    opacity: 0;
}

/* コンティニュームのセクション ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/

.eco__item__section {
    width: 100%;
    max-width: 1980px;
    margin: 0 auto;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

/* 背景の装飾 */
.continewm__bg1 {
    position: absolute;
    top: 2rem;
    right: 104px;
    z-index: -1;
    width: 100%;
    max-width: 500px;
    animation: continewm__bg 8s ease-in-out infinite;
}

.continewm__bg2 {
    position: absolute;
    bottom: 0;
    left: 104px;
    z-index: -1;
    width: 100%;
    max-width: 500px;
    animation: continewm__bg 8s ease-in-out infinite;
}

@keyframes continewm__bg {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.eco__item__contents {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.eco__item__contents h3 {
    display: flex;
    flex-direction: column;
    letter-spacing: 0.1em;
    color: var(--green__con);
    font-weight: 800;
}

.continewm__logo {
    width: 100%;
    max-width: 400px;
}

/* エアコンの無駄をなくす... */

.eco__item__info {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.eco__item__info__wrap {
    display: flex;
    flex-direction: column;
}

.eco__item__main__img {
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
}

/* シートだけで... */

.eco__item__info__inner {
    width: 100%;
    max-width: 650px;
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5em 2em;
    box-shadow: 0px 0px 10px var(--box__shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin: -2em 0 0 auto;
}

.eco__item__info__inner h4 {
    position: absolute;
    top: -1em;
    left: 0;
    right: 0;
    margin: auto;
}

.eco__item__info__inner__list {
    width: fit-content;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1em;
    align-items: center;
}

.eco__item__info__inner__list img {
    width: 100%;
    border-radius: 100%;
    box-shadow: 0px 0px 10px var(--box__shadow);
}

.eco__item__info__inner__list ul {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.eco__item__info__inner__list ul li {
    font-size: clamp(1.2rem, 0.982rem + 1.09vw, 1.8rem);
    padding-left: 1.3em;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.eco__item__info__inner__list ul li::before {
    content: "";
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 0.8em;
    height: 0.8em;
    background: var(--green3);
    border-radius: 100%;
}

.eco__item__info__inner__list ul li .strong {
    font-size: clamp(1.4rem, 1.182rem + 1.09vw, 2rem);
}

.eco__item__info__inner__list ul li .under__line {
    font-weight: 700;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, var(--yellow__bg) 60%, var(--yellow__bg) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}

/* 3つのメリット */

.eco__item__merit__wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.eco__item__merit__inner {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    gap: 3rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.eco__item__merit__inner li {
    width: 100%;
    height: auto;
    max-width: 389px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
    background: var(--base1);
    border-radius: 1rem;
    padding: 1rem;
    position: relative;
}

.merit__number {
    position: absolute;
    top: -0.6em;
    left: 1rem;
    font-size: 4rem;
    font-weight: 900;
    color: var(--green3);
}

.eco__item__merit__inner li img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    border-radius: 1rem;
}

.eco__item__merit__inner li h5 {
    color: var(--orange);
}

/* エネルギーリフォーム＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.energy__section {
    width: 100%;
    background: linear-gradient(180deg, var(--base1), var(--bg));
    position: relative;
    z-index: 0;
    padding: 0 1em;
}

/* 次世代の。。。 */

.energy__section__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.energy__section__inner .energy__system {
    width: 100%;
    max-width: 1000px;
    background: var(--white);
    margin: 2em auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 1rem;
    box-shadow: 0px 0px 10px var(--box__shadow);
    padding: 0 1em 1em 1em;
    align-items: center;
}

.energy__section__inner .info__caption {
    margin: -1em 0 0 0;
}

.energy__system__images {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 1em;
    align-items: center;
}

.energy__system__images img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 100%;
}

.energy__system__images .img__inner {
    position: relative;
}

.energy__system__images .img__inner h5 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.1em 0;
    text-align: center;
    border-radius: 0.3em;
    background: var(--green5);
    color: var(--white);
    letter-spacing: 0.1em;
}

.energy__system__list {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.energy__system__list li {
    font-size: clamp(1.2rem, 0.982rem + 1.09vw, 1.8rem);
    padding-left: 1.3em;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.energy__system__list li::before {
    content: "";
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 0.8em;
    height: 0.8em;
    background: var(--green3);
    border-radius: 100%;
}

.energy__system__list li .strong {
    font-size: clamp(1.4rem, 1.182rem + 1.09vw, 2rem);
}

.energy__system__list li .under__line {
    font-weight: 700;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, var(--yellow__bg) 60%, var(--yellow__bg) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}

.energy__system p {
    width: fit-content;
    max-width: 800px;
}

/* まとめて導入。。。 */

.energy__info {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 1rem;
}

.energy__info__illust {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: -1;
    margin-bottom: -0.2em;
}

.energy__info__inner {
    background: var(--green__lite);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2em 1em;
    position: relative;
    margin-bottom: 2rem;
}

.energy__info__inner::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--green1);
    z-index: -1;
}

.energy__info__inner .info__caption {
    background: var(--green4);
    margin: 0 auto;
    color: var(--white);
}

.energy__info__inner .energy__info__images {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 3em;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
}

.energy__info__inner .energy__info__images img {
    width: 100%;
    margin: 0 auto;
    border-radius: 100%;
    box-shadow: 0px 0px 10px var(--box__shadow);
}

.energy__info__images .img__inner {
    position: relative;
}

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

.energy__info__images h5 {
    background: var(--orange);
    color: var(--white);
    width: 100%;
    text-align: center;
    border-radius: 2em;
    padding: 0.1em 0;
    position: absolute;
    bottom: 0;
}

.energy__info__inner p {
    width: fit-content;
    max-width: 800px;
    margin: 0 auto;
}

/* 省エネリフォーム＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.eco__reform__section {
    padding: 2em 1em;
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.eco__reform__section .info__caption {
    margin: 0 auto;
}

.eco__reform__content {
    display: flex;
    align-items: center;
    position: relative;
    background: var(--base1);
    border-radius: 1rem;
    margin-top: 2rem;
}

.eco__reform__section .content2 img {
    border-radius: 0 1rem 1rem 0;
}

.eco__reform__content__number {
    position: absolute;
    line-height: 1em;
    top: -0.6em;
    left: 1rem;
    font-size: 4rem;
    color: var(--orange);
    font-weight: 900;
}

.eco__reform__content__number.number2 {
    right: 1rem;
    left: auto;
}

.eco__reform__content img {
    width: 100%;
    max-width: 500px;
    border-radius: 1em 0 0 1em;
}

.eco__reform__content__text {
    padding: 1em 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.eco__reform__content__text h5 {
    color: var(--orange);
    padding-left: 1.2em;
    position: relative;
}

.eco__reform__content__text h5::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 0.8em;
    height: 0.8em;
    background: var(--green3);
    border-radius: 100%;
}

/* グラフ */

.eco__reform__graph {
    width: 100%;
    max-width: 800px;
    margin: 1em auto 0 auto;
    background: var(--white);
    padding: 0 1em 2em 1em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
    border-radius: 1rem;
    box-shadow: 0px 0px 10px var(--box__shadow);
}

.graph__title {
    width: fit-content;
    margin: -0.6em auto 0 auto;
    background: var(--green4);
    padding: 0.1em 1em;
    color: var(--white);
    border-radius: 2em;
    letter-spacing: 0.1em;
    text-align: center;
}

.eco__reform__graph img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.eco__reform__graph p {
    text-align: center;
    line-height: 1.3em;
}

/* zehについて＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.zeh__wrap {
    width: 100%;
}

.zeh__section__wrap {
    width: 100%;
    background: var(--base1);
}

.zeh__section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 0 1em;
}

.zeh__info {
    width: 100%;
    max-width: 1200px;
    margin: 1em auto 0 auto;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 2em;
    border-radius: 1rem;
    padding: 0 1em 1em 1em;
    align-items: center;
    box-shadow: 0px 0px 10px var(--box__shadow);
}

.zeh__info .info__caption {
    margin-top: -1em;
}

.zeh__info__images {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr;
    gap: 1em;
    align-items: center;
}

.zeh__info__images img {
    width: 100%;
    border-radius: 100%;
}

.zeh__info__images .images__inner {
    position: relative;
}

.zeh__info__images h5 {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    background: var(--green4);
    color: var(--white);
    padding: 0.1em 0;
    border-radius: 2em;
    ;
}

.what__zeh {
    padding-left: 1.2em;
    position: relative;
    letter-spacing: 0.1em;
}

.what__zeh::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 0.8em;
    height: 0.8em;
    background: var(--green3);
    border-radius: 100%;
}

.what__zeh .orange {
    color: var(--orange);
}

.zeh__info p {
    width: fit-content;
    max-width: 900px;
    margin: 0 auto;
}

/* リフォームで実現するには */

.zeh__howto h4 {
    width: fit-content;
    background: var(--green4);
    color: var(--white);
    padding: 0.2em 1em;
    border-radius: 0.2em;
    letter-spacing: 0.1em;
}

.zeh__howto__inner {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2em;
    background: var(--bg);
    padding: 2em 0;
    overflow: hidden;
}

.zeh__howto__inner img {
    width: 100%;
    max-width: 400px;
    border-radius: 0 200px 200px 0;
}

.howto__text {
    padding: 0 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.howto__text h5 {
    padding-left: 1.2em;
    position: relative;
    color: var(--orange);
}

.howto__text h5::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 0.8em;
    height: 0.8em;
    background: var(--green3);
    border-radius: 100%;
}

/* 省エネリフォームが注目されている理由。。。 */

.zeh__why__inner {
    width: 100%;
    max-width: 1200px;
    margin: 2em auto 0 auto;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    border-radius: 1rem 1rem 0 0;
    padding: 0 1em;
}

.zeh__why__title {
    text-align: center;
}

.zeh__why__title .info__caption {
    margin: -1em auto 0 auto;
}

.zeh__why__title img {
    width: 100%;
    max-width: 500px;
    border-radius: 0 0 1rem 1rem;
}

.zeh__why ul {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.zeh__why ul li {
    font-size: clamp(1.2rem, 0.982rem + 1.09vw, 1.8rem);
    letter-spacing: 0.1em;
    padding-left: 1.2em;
    position: relative;
}

.zeh__why ul li::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 0.8em;
    height: 0.8em;
    background: var(--green3);
    border-radius: 100%;
}

.zeh__why ul li .under__line {
    font-weight: 700;
    color: var(--orange);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, var(--yellow__bg) 60%, var(--yellow__bg) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}

.zeh__why .contact__announce {
    font-size: clamp(1.2rem, 0.982rem + 1.09vw, 1.8rem);
    letter-spacing: 0.1em;
    background: var(--orange);
    padding: 0.2em 1em;
    border-radius: 3em;
    color: var(--white);
}

/* お問い合わせ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.contact {
    padding: 2em 1em;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.form__wrap {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--base1);
    border-radius: 1rem;
    padding: 2em 1em;
    box-shadow: 0px 0px 10px var(--box__shadow);
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.form__title {
    font-size: clamp(1rem, 0.709rem + 1.45vw, 1.8rem);
    background: var(--green4);
    color: var(--white);
    font-weight: 500;
    line-height: 1.3em;
    padding: 0.2em 2em 0.2em 0.5em;
    width: fit-content;
    border-radius: 0 3em 3em 0;
    letter-spacing: 0.1em;
    margin-left: -1rem;
}

.tel {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
    padding: 1em;
    border-radius: 1rem;
}

.tel h5 {
    letter-spacing: 0.1em;
    padding-left: 0.8em;
    position: relative;
}

.tel h5::before {
    content: "";
    background: var(--orange);
    width: 0.5em;
    height: 1em;
    position: absolute;
    top: 0.1em;
    left: 0;
}

.tel a {
    display: flex;
    gap: 0.5em;
    align-items: center;
    font-size: clamp(1.2rem, 0.982rem + 1.09vw, 1.8rem);
    color: var(--orange);
}

.tel a .tel__number {
    letter-spacing: 0.1em;
}

.tel a i {
    color: var(--white);
    background: var(--green3);
    font-size: 0.8em;
    padding: 0.3em;
    border-radius: 2em;
}

.form__wrap .info__caption {
    margin: 0 auto;
}

.form__wrap form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.form__wrap form .orange {
    color: var(--orange);
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    background: var(--white);
    padding: 0.5em;
    border-radius: 0.2em;
    margin-bottom: 0.5em;
}

.submit__button {
    width: fit-content;
    padding: 0.2em 1em;
    background: var(--button__gradient);
    font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
    letter-spacing: 0.1em;
    border-radius: 2em;
    box-shadow: 0px 0px 10px var(--box__shadow);
    margin: 0 auto;
    transition: all 0.3s;
    color: var(--white);
}

.submit__button:hover {
    color: var(--gray);
    box-shadow: none;
}

/* レスポンシブ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

@media screen and (max-width: 768px) {

    /* お問い合わせボタン */
    .contact__button {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: 1rem auto;
    }

    .menu {
        height: 100%;
        padding: 0.5rem 0 0 0;
    }

    .menu ul {
        position: static;
        height: 100%;
    }

    /* コンティニューム */

    .continewm__bg1,
    .continewm__bg2 {
        width: 50%;
    }

    /* 背景の装飾 */
    .continewm__bg1 {
        right: 10%;
    }

    .continewm__bg2 {
        left: 10%;
    }

    .continewm__logo {
        max-width: 200px;
    }

    .eco__item__section {
        padding: 2rem 1rem;
        gap: 1em;
    }

    .eco__item__contents {
        padding: 0;
        gap: 1rem;
    }

    .eco__item__info__wrap {
        gap: 2rem;
    }

    .eco__item__info {
        gap: 1rem;
    }

    .eco__item__main__img {
        width: 80%;
        margin: 0 auto;
    }

    .eco__item__info__inner {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .eco__item__info__inner__list {
        display: flex;
        flex-direction: column;
    }

    .eco__item__info__inner__list img {
        width: 50%;
    }

    /* メリット */

    .eco__item__merit__wrap {
        gap: 1rem;
    }

    .eco__item__merit__inner {
        margin: 2rem 0 0 0;
    }

    /* リンク */

    .link__to__detail h4 i {
        top: 0;
        bottom: 0;
        margin: auto;
    }


    /* エネルギーリフォーム */
    .energy__system__images {
        grid-template-columns: 1fr 40px 1fr;
    }

    /* まとめて導入。。。 */

    .energy__info__inner .energy__info__images {
        display: flex;
        gap: 1em;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .energy__info__inner .energy__info__images .img__inner {
        width: 40%;
    }

    .energy__info__inner .energy__info__images .bottom {
        margin-bottom: 0;
    }

    .energy__info__inner .info__caption {
        width: 100%;
    }

    /* 断熱リフォームの効果 */
    .eco__reform__content {
        flex-direction: column;
    }

    .eco__reform__content.content2 {
        flex-direction: column-reverse;
    }

    .eco__reform__content.content2 img {
        border-radius: 1rem 1rem 0 0;
    }

    .eco__reform__content img {
        border-radius: 1rem 1rem 0 0;
    }

    /* エネルギーリフォーム */

    .energy__section__inner {
        padding: 0;
        gap: 1em;
    }

    /* 省エネリフォーム */

    .eco__reform__section {
        gap: 1em;
    }

    .eco__reform__content__text {
        padding: 1em;
    }

    /* zeh */

    .zeh__info__images {
        display: flex;
        flex-direction: column;
        gap: 1em;
        width: 60%;
        max-width: 150px;
    }

    .zeh__info__images .plus__img {
        width: 50px;
    }

    .howto__text {
        padding: 0 1em;
    }

    .zeh__why__title .info__caption {
        margin: -1em auto 0 auto;
    }

    /* お問い合わせ */

    .contact {
        gap: 1em;
    }
}