@charset "utf-8";

* {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #393431;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.gMenu {
    list-style: none;
}

.gMenu ul {
    display: flex;
}

.gMenu li {
    margin: 0 15px;
    padding: 10px 0;
}

.gMenu .current:hover {
    font-weight: 600;

}

.header-inner .gMenu .contactBtn {
    width: 140px;
    background-color: #f76204;
    font-weight: 600;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.contactBtn:hover {
    background-color: #f0f0f0;
}

.contactBtn a {
    align-items: center;
    margin-left: 20px;
}

.contactBtn a:hover {
    color: #e88c0a;
}

.fv {
    background-color: rgb(241, 177, 85);

}

.fv-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 24px 110px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.fv-text {
    flex: 1;
    padding-right: 20px;
}

.fv-image {
    flex: 1;
    padding-left: 20px;
}

.fv-concept {
    font-size: 24px;
    margin: 0 0 10px;
}

.fv-title {
    font-size: 42px;
    font-weight: bold;
    color: #393431;
    line-height: 1.5;
    margin-bottom: 20px;
}

.fv-description {
    font-size: 18px;
    line-height: 1.6;
}

.fv-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.scroller {
    overflow: hidden;
    width: 100%;

}

.scroller-inner {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.scroller img {
    width: 400px;
    height: auto;
    margin: 10px 20px 0 0;
    border-radius: 5px;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin: 68px 0;
}

/* お悩み */
.problems {
    background-color: #fff;
    padding: 60px 0;
}

.problems .container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}


.problems-list li {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.problems-list li {
    font-size: 18px;
}

.problems-description {
    font-size: 25px;
    font-weight: 500;
    line-height: 2;
    margin: 72px auto;
    width: 700px;
}

.problems-img img {
    width: 135px;
    margin: 20px 10px;
}

/* サービス */
.service {
    height: 530px;
}

.service h2 {
    padding-top: 60px;
    font-weight: 500;

}

.service .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
    padding: 0 20px 60px;
}

.service-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    margin: 30px 0 100px;
    flex: 1;
}

.service-item::before {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background-color: #f76204;
    border-radius: 4px 4px 0 0;
    margin-bottom: 12px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-title {
    font-size: 28px;
    margin: 20px auto;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
}

.works-note {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin: 10px 0;
}

.about-us-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

/* 制作の流れ */
.process {
    padding: 60px 0;
    background-color: rgb(241, 177, 85);
}

.process step span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #fcf5df;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-right: 15px;
    font-weight: 500;
}

.process-description {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 15px;
}


.scroll-block {
    opacity: 0.1;
    transition: all 1.5s;
}

.blockIn {
    opacity: 1;
}

.process-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 100%;
    background: #ddd;
}

.box {
    transform: translateX(-400%);
    transition: transform 0.8s ease-in-out;
    height: 130px;
    margin-bottom: 30px;
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 16px;
    border-left: 4px solid #f76204;
    position: relative;
}

.box:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease-in-out;
}

.box {
    transform: translateX(-100%);
    transition: transform 0.8s ease-in-out;
}

.box:nth-of-type(even) {
    transform: translateX(100%);
}

.box.show {
    transform: translateX(0%);
}

.process .section-title {
    position: relative;

}

.process-step {
    margin-right: 35px;
    font-size: 28px;
    width: 320px;
}

.box span {
    font-size: 40px;
}

.process-description {
    font-size: 17px;
    line-height: 1.6;
    margin-top: 15px;
}

.process h4 {
    text-align: center;
    margin-bottom: 10px;
}

/* faq */
.faq {
    margin: 105px 0;
    background: #f7f5f1;
}

.faq-list {
    margin: 60px auto 0;
    max-width: 800px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 17px 30px 7px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-question {
    position: relative;
    font-size: 25px;
    margin: 20px 0;
    font-size: 20px;
    color: #f76204;

}

.faq-question h3 {
    display: inline-block;
    margin: 0;
}

.faq-question::after {
    content: "+";
    float: right;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    transition: max-height 0.3s ease-in-out;
}

/* contact */
.contact-cta {
    height: 400px;
    padding: 30px;
    margin: 30px 0;
    background: #edeccf;
    text-align: center;
}

.contact-cta.section-title {
    margin: 68px 0;
}

.contact-cta-description {
    font-size: 20px;
    margin: 40px;
}

.contact-cta-button {
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    margin: 30px auto;
    padding: 15px;
    width: 220px;
    height: 60px;
    background-color: #e88c0a;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-cta-button::after {
    content: "";
    animation: 2s 0s shine linear infinite;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 75%);
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-15deg);
    width: 100%;
}


.contact-cta-button a {
    font-size: 25px;
    font-weight: 500;
    color: #eee;
}

.contact-cta-button:hover {
    color: #eee;
    transform: scale(1.05);
}

@keyframes shine {
    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* フッター */
.footer-inner {
    display: flex;
    justify-content: space-between;
    padding: 25px 50px;
    height: 100px;
    background-color: #e86500;

}

.footer-inner .gMenu {
    align-items: center;
}

.footer-inner .gMenu a {
    color: #eee;
}

.footer-inner .contactBtn {
    width: 175px;
    background-color: #eee;
    border-radius: 40px;


}

.footer-inner .contactBtn a {
    color: #e86500;
    font-weight: 600;
    margin-left: 37px;

}

@media(max-width: 768px) {
    .fv-inner {
        display: block;
        align-items: center;
    }

    .fv-text,
    .fv-image {
        text-align: center;
        width: 100%;
        margin: 20px 0;
    }

    .service .container {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 80%;
        margin-bottom: 20px;
    }

    .box {
        flex-direction: column;
        text-align: center;
        transform: translateX(-100%);
        transition: transform 0.8s ease-in-out;
    }

    .box:nth-of-type(even) {
        transform: translateX(100%);
    }

    .box.show {
        transform: translateX(0%);
    }

    .process-list::before {
        display: none;
    }
}