header {
    height: 10%;
    width: 100%;
    z-index: 10;
    opacity: 0.7;
    background-color: #047622;
    color: aliceblue;
    position: fixed;
    top: 0px;
    display: flex;
    align-items: center;
}

.header-left {
    font-size: larger;
    width: 40%;
    display: flex;
    text-align: right;
    align-items: center;
}

.header-left a {
    text-decoration: none;
    padding-left: 8%;
    color: white;
}

.header-left img {
    height: 50px;
    padding-left: 40%;
    padding-right: 5%
}

.header-left p {
    font-weight: bolder;
    text-align: center;
    font-size: 120%;
}

.header-right {
    width: 60%;
    text-align: right;
    padding-right: 5%;
}

.header-right nav a {
    padding-right: 2%;
    text-decoration: none;
    color: white;
    font-size: 100%;
    font-weight: bold;
    font-family: serif;
}

.Instagram-icon {
    width: 23px;
    height: auto;
}

.btn {
    padding: 1% 5%;
    background-color: rgb(49, 159, 159);
    color: white;
    border-radius: 8px;
}

.container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

/* メインイメージのカルーセル */

.slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.slider__content {
    min-width: 100%;
    animation: sliderAnime 12s ease-in-out infinite;
}

@keyframes sliderAnime {
    0% {}

    16.6% {
        transform: translateX(0);
    }

    33.3% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(-100%);
    }

    66.6% {
        transform: translateX(-200%);
    }

    83.2% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}

.slider__img {
    width: 100%;
    max-height: 600px;
    height: auto;
}




/* ハンバーガーメニュー非表示 */
.hamburger-morph {
    display: none;
}

.nav-morph {
    display: none;
}

/* ハンバーガーメニューのCSS */

.hamburger-morph {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger-morph__icon {
    width: 100%;
    height: 100%;
}

.hamburger-morph__line {
    fill: none;
    stroke: white;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.nav-morph {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(1, 59, 5);
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
}

.nav-morph.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
}

.nav-morph__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.nav-morph__list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.nav-morph__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-morph.active .nav-morph__item:nth-child(1) {
    transition-delay: 0.3s;
}

.nav-morph.active .nav-morph__item:nth-child(2) {
    transition-delay: 0.4s;
}

.nav-morph.active .nav-morph__item:nth-child(3) {
    transition-delay: 0.5s;
}

.nav-morph.active .nav-morph__item:nth-child(4) {
    transition-delay: 0.6s;
}

.nav-morph.active .nav-morph__item:nth-child(5) {
    transition-delay: 0.6s;
}

.nav-morph.active .nav-morph__item:nth-child(6) {
    transition-delay: 0.6s;
}

.nav-morph__link {
    position: relative;
    display: inline-block;
    padding: 20px;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.nav-morph__text,
.nav-morph__hover {
    display: block;
    transition: transform 0.3s ease;
}

.nav-morph__hover {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(0%);
}

.nav-morph__link:hover .nav-morph__text {
    transform: translateY(-100%);
}

.nav-morph__link:hover .nav-morph__hover {
    transform: translateY(-100%);
}


/* 各項目共通部分 */

/* body {
    max-width: 2000px;
    width:100%;
} */

.flex-section {
    display: flex;
}

.flex-section img {
    width: 45%;
    height: auto;
}

.msg {
    padding: 15% 0 5% 0;
}

.msg h2 {
    font-size: xx-large;
    font-family: serif;
    font-weight: bolder;
}


/* お悩み部分 */
.question-coment {
    padding-left: 5%;
    width: 55%;
    text-align: left;
}

.question-coment p {
    height: 20%;
    font-size: 150%;
    font-family: serif;
}

/* その悩み、弊社が解決します！の部分 */

.advantage-coment {
    padding-left: 5%;
    width: 55%;
    text-align: left;
}

.advantage-coment p {
    height: 25%;
    font-size: 150%;
    font-family: serif;
}

/* 「一度相談してみたいけど、相談は無料なの？」の相談の流れ部分 */

.cost-coment {
    padding-left: 5%;
    width: 55%;

}

.cost-coment p {
    text-align: left;
    font-size: 140%;
    font-family: serif;
    height: 6%;
}

.cost-button {
    display: inline-block;
    text-decoration: none;
    background-color: rgb(49, 159, 159);
    color: white;
    border-radius: 8px;
    padding: 3% 35%;
    margin: 7% auto;
    font-weight: bold;
}

.tel {
    font-size: 45px;
    color: black;
    text-decoration: none;
    font-family: serif;
    font-weight: bold;
}

/* 無料相談後から契約、工事実施までの具体的な流れを知りたい！ */

.flow-coment {
    padding-left: 5%;
    width: 55%;
    text-align: left;
}

.flow-coment p {
    text-align: left;
    font-size: 140%;
    font-family: serif;

}

.flow-button {
    text-decoration: none;
    font-size: large;
}

.flow-coment a {
    display: inline-block;
    background-color: rgb(49, 159, 159);
    color: white;
    border-radius: 8px;
    padding: 3% 25%;
    margin: 7% auto;
    font-weight: bold;
}

/* 新着情報の部分 */

.News-wrapper p {
    width: 100%;
    padding: 1% 0;
    text-align: left;
    border-bottom: 0.1px solid rgb(210, 195, 195);
}



.News-wrapper span {
    padding-right: 10%;
}

.News-topics p {
    font-family: serif;
    font-size: 120%;
}

.news-button {
    width: 90%;
}

.News-button p {
    /* padding-top: 2%;
    font-family: serif;
    font-size: 120%; */
    font-size: 140%;
    text-align: center;
    font-family: serif;
}


span {
    padding-right:10px;
}

.link {
    text-decoration: none;
    display:inline-flex;
    align-items: center;
    background-color: rgb(49, 159, 159);
    color: white;
    border-radius: 8px;
    padding: 1% 15%;
    margin: 2% auto;
}

.IG-icon {
    width:25px;
    height: 25px;

}

/* Googlemap部分 */

.googlemap iframe {
    width: 100%;
}


/* footer部分 */
footer {
    padding-top: 2%;
    padding-bottom: 2%;
    margin: 0 auto;
    background-color: #29a83a;
    opacity: 0.7;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.company-logo {
    width: 30%;
    margin: 0 auto;
}

.company-name {
    width: 30%;
    margin: 0 auto;
}

.footer-wrapper {
    color: white;
    display: inline-flex;
    flex-direction: column;

}

.footer-wrapper p {
    font-size: 20px;
    font-family: serif;
    margin: 5px 0px;
}

.footer-tel {
    font-size: 30px;
    color: white;
    text-decoration: none;
    font-family: serif;
    font-weight: bold;
}

.footer-contact-button {
    display: inline-block;
    border-radius: 4%;
    padding: 15px 40px;
    font-size: 20px;
    background-color: rgb(49, 159, 159);
    text-decoration: none;
    color: white;
    font-family: serif;
}

.privacy-policy {
    text-decoration: none;
    font-size: 20px;
    color: white;
    font-family: serif;
}