@charset "UTF-8";


/*==========================
Article header
==========================*/
.article__header {
    background-image: url(../img/header2_SP.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 50px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 14px 24px;
}

.mainVisual {
    color: #2B200F;
    font-family: "Noto Serif JP";
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: -50px;
    max-width: 90%;
    opacity: 0; 
    transform: translateY(-20px); 
    transition: opacity 1.5s ease, transform 1.5s ease; 
}

.mainVisual.show {
    opacity: 1; 
    transform: translateY(0); 
}
.article__header {
    position: relative;
    padding: 20px;
}

.arrows {
    display: none;
}

/* Article pc */
@media screen and (min-width:769px) {
    .article__header {
        background-image: url(../img/header2_PC.png);
        background-position: center 35px;
        height: 796px;
        padding: 14px 70px;
    }

    .mainVisual {
        font-size: 4rem;
        font-weight: 600;
        margin-top: -50px;
        max-width: 90%;
    
    }
    
    .arrows {
        display: block;
        width: 60px;
        height: 72px;
        position: absolute;
        bottom: 10px;
        left: 55px; 
    }
    
    .arrows path {
        stroke: var(--primary-black, #171717);;
        fill: transparent;
        stroke-width: 1px;
        animation: arrow 2s infinite;
    }
    
    @keyframes arrow {
        0% {opacity: 0;}
        40% {opacity: 1;}
        80% {opacity: 0;}
        100% {opacity: 0;}
    }
    
    .arrows path.a1 {
        animation-delay: -1s;
    }
    
    .arrows path.a2 {
        animation-delay: -0.5s;
    }
    
    .arrows path.a3 {
        animation-delay: 0s;
    }
    

    .spBr {
        display: none;
    }
}

/*==========================
About
==========================*/

.section {
    padding: 40PX 10.6%;
}

.section--about {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.29) 75.96%, rgba(244, 200, 210, 0.29) 99.91%);

}

.section--about::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 74%;
    transform: translateX(-50%);
    width: 156px;
    height: 121px;
    background-image: url(../img/parts1.png);
    background-size: cover;
    z-index: -1;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 21px;
}

.title__sp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.title__en {
    color: var(--primary-gray, #282828);
    text-align: center;
    font-family: "Sorts Mill Goudy";
    font-size: 1.8rem;
    font-weight: 400;
}

.title__ja {
    font-size: 2.4rem;
    font-weight: 400;
    font-family: "Noto Serif JP";
}

.title__txt {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.65;
}

.link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 43px;
    transition: transform 0.4s ease;
}

.link:hover {
    transform: translateY(-3px);
    /* 全体を少し上に移動 */
}

.btn__txt {
    color: #CD3939;
    font-family: "Sorts Mill Goudy";
    font-size: 1.6rem;
    font-weight: 400;
    margin-right: 7px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.btn__line {
    position: relative;
    display: inline-block;
    width: 27px;
    height: 1px;
    margin-top: 0.8px;
    border-radius: 9999px;
    background-color: #cd3939;
    z-index: 1;
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.btn__line::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 7px;
    height: 1px;
    border-radius: 9999px;
    background-color: #cd3939;
    transform: rotate(32deg);
    transform-origin: calc(100% - 1px) 50%;
}

.btn__circle {
    position: relative;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #FFFAF9;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    right: 15px;
    top: -2px;
    transition: 0.4s ease;
}

.link:hover .btn__circle {
    background: #F7CDD2;
}

/* About pc */
@media screen and (min-width:769px) {
    .section {
        padding: 80pX 9.7% 60px;
    }

    .section--about::before {
        top: 47px;
        left: 89%;
        width: 261px;
        height: 202px;
    }

    .title {
        gap: 32px;
    }

    .title__sp {
        gap: 19px;
    }

    .title__en {
        font-size: 2.4rem;
    }

    .title__ja {
        font-size: 2.8rem;
        font-weight: 500;
        text-align: center;
    }

    .title__txt {
        margin: 0 auto;
        width: 698px;
    }

    .link {
        margin-top: 67px;
    }

    .btn__txt {
        font-size: 2rem;
        margin-right: 14px;
    }

    .btn__line {
        width: 34px;
    }

    .btn__line::before {
        width: 10px;
    }

    .btn__circle {
        width: 40px;
        height: 40px;
    }
}

/*==========================
Service
==========================*/
.section--service {
    background-color: #FFFCFB;
}

.title__txt--service {
    font-size: 1.5rem;
}

.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: stretch;
    gap: 21px;
}

.about__item {
    min-height: 378px;
    padding: 20px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 5.5px 0px rgba(159, 67, 0, 0.25);
}

.about__item:first-child {
    margin-top: 21px;
}

.about__item:first-child img {
    width: 159px;
    height: 145.943px;
}

.about__item:nth-child(2) img {
    width: 199px;
    height: 131px;
}

.about__item:nth-child(3) img {
    width: 138px;
    height: 155px;
}

.about__item h3 {
    margin-top: 18px;
    font-size: 2rem;
    font-weight: 500;
}

.about__item p {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: justify;
}

.link--service .btn__circle {
    background-color: #fffcfb;
}

.link--service:hover .btn__circle {
    background-color: #FFE7E3;
}

/* Service pc */
@media screen and (min-width:769px) {
    .section--service {
        padding: 80pX 9.7% 60px;
    }

    .title__txt--service {
        font-size: 1.8rem;
        text-align: center;
    }

    .about {
        display: flex;
        flex-direction: row;
        gap: 71px;
        margin-top: 62px;
    }

    .about__item {
        padding: 20px 30px;
        min-height: 0;
        width: 100%;
    }

    .about__item:first-child {
        margin-top: 0;
    }

    .about__item img {
        margin-bottom: 18px;
    }

    .about__item:first-child img {
        width: 168px;
        height: 154px;
    }

    .about__item:nth-child(2) img {
        width: 231px;
        height: 151px;
    }

    .about__item:nth-child(3) img {
        width: 152px;
        height: 170px;
        margin-bottom: 0;
    }

    .about__item h3 {
        font-weight: 500;
    }

    .about__item p {
        font-size: 1.8rem;
    }

}

/*==========================
Works
==========================*/
.section--works,
.section--price,
.section--faq {
    text-align: center;
}

.section--works {
    position: relative;
}

.section--works::before {
    content: "";
    position: absolute;
    top: -96px;
    left: 5%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    background-image: url(../img/parts2.png);
    background-size: cover;
}

.works {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: stretch;
    gap: 21px;
}

.works__item {
    position: relative;
    padding: 30px 22px;
    border-radius: 20px;
    background: #EEE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.works__item:first-child {
    margin-top: 21px;
}

.works__img-container {
    width: 211px;
    height: 211px;
    padding: 50px 31px 45px 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
}

.works__item:nth-child(2) .works__img-container {
    padding: 50px 31px 45px 27px;
}

.works__txt {
    margin-top: 21px;
    display: flex;
    padding: 42px 16px 30px 16px;
    flex-direction: column;
    border-radius: 20px;
    background: #FFF;
}

.works__txt h3 {
    text-align: center;
    color: #CE4646;
    font-size: 2rem;
    font-weight: 400;
}

.works__item:nth-child(2) .works__txt h3 {
    text-align: left;
}


.text__red {
    color: #CE4646;
    font-weight: 500;
}

.text__medium {
    font-size: 2.6rem;
}

.works__txt p {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: left;
}

.corporation {
    position: absolute;
    top: 230px;
    left: 20px;
    width: 64px;
    height: 67px;
    background-image: url(../img/speech-bubble.svg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #FFF;
    text-align: center;
}

/* Works pc */
@media screen and (min-width:769px) {
    .section--works {
        padding: 80pX 16.3% 60px;
    }

    .works {
        gap: 32px;
    }

    .works__item:first-child {
        margin-top: 62px;
    }

    .works__item {
        flex-direction: row;
        align-items: center;
        padding: 35px 67px;
        gap: 35px;
    }

    .works__img-container {
        flex-shrink: 0;
        width: 223px;
        height: 223px;
    }

    .works__txt {
        padding: 35px 30px 30px 85px;
        margin-top: 0;
        text-align: left;
        flex: 1;
    }

    .works__txt h3 {
        text-align: left;
        font-size: 2.4rem;
    }

    .text__medium {
        font-size: 3rem;
    }

    .works__txt p {
        font-size: 1.8rem;
    }

    .corporation {
        top: 32px;
        left: 304px;
        width: 80px;
        height: 84px;
        font-size: 2.4rem;
    }
}

/*==========================
Price
==========================*/
.section--price {
    background-color: #FFFBFA;
    position: relative;
}

.section--price::before {
    content: "";
    position: absolute;
    bottom: -5%;
    right: -66px;
    transform: translateX(-50%);
    width: 150px;
    height: 196px;
    background-image: url(../img/parts3.png);
    background-size: cover;
}

.price__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: stretch;
    gap: 21px;
}

.price__item:first-child {
    margin-top: 21px;
}

.price__item h3 {
    display: flex;
    height: 76px;
    padding: 18px 0;
    justify-content: center;
    align-items: center;
    background: #E7B191;
    color: #FFF;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}

.price__content {
    display: flex;
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-self: stretch;
    border: 1px solid #E7B191;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(159, 130, 25, 0.25);
}

.data-label {
    font-size: 1.8rem;
    font-weight: 400;
}

.price {
    margin-top: 10px;
    font-family: "Noto Serif", serif;
    font-size: 3.2rem;
    font-weight: 400;
}

.price__text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

.commission {
    font-size: 1.8rem;
    font-weight: 400;
}

.btn__txt--brown {
    color: #975920;
    font-family: "Noto Sans JP";
}

.btn__line--brown {
    background-color: #975920;
}

.btn__circle--white {
    background: #FFF;
}

.link--contant:hover .btn__circle--white {
    background: #e2bc99;
}

/* Price pc */
@media screen and (min-width:769px) {
    .section--price {
        padding: 60px 10% 108px;
    }

    .section--price::before {
        bottom: -13%;
        right: -110px;
        width: 226px;
        height: 300px;
    }

    .price__container {
        display: flex;
        flex-direction: row;
        gap: 32px;
        margin-top: 64px;
    }

    .price__item:first-child {
        margin-top: 0;
    }

    .price__item {
        padding: 20px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .price__item h3 {
        flex-shrink: 0;
        height: 78px;
        font-size: 2rem;
    }

    .price__content {
        flex-grow: 1;
        display: flex;
        padding: 30px 29px 13px;
        flex-direction: column;
        align-items: center;
        gap: 45px;
    }

    .price__container li:last-child .price__content {
        gap: 18px;
    }

    .data-label {
        font-size: 2rem;
    }

    .price {
        font-size: 3.6rem;
    }

    .price__text {
        font-size: 1.8rem;
    }

    .btn__txt--brown {
        color: #975920;
        font-family: "Noto Sans JP";
    }

    .btn__line--brown {
        background-color: #975920;
    }
}

/*==========================
FAQ
==========================*/
.section--faq {
    background-color: #F5F5F5;
}

.section--faq .title {
    margin-bottom: 21px;
}

.faq__txt {
    max-width: 500px;
    margin-bottom: 21px;
    border: none;
    border-radius: 25px;
    border-bottom: 1px solid #E5E5E5;
    background: #FDFDFD;
}

.faq__txt summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    padding: 1.5em 2em 1em 3em;
    font-weight: 400;
    font-size: 1.5rem;
    cursor: pointer;
}

.faq__txt summary::before,
.faq__txt p::before {
    position: absolute;
    left: 10px;
    font-weight: 400;
    font-size: 1.5rem;
}

.faq__txt summary::before {
    position: absolute;
    top: 22px;
    left: 20px;
    font-weight: 400;
    font-size: 1.5rem;
    color: #41A4ED;
    content: "Q.";
}

.faq__txt summary::after {
    content: '';
    background-image: url(../img/top.svg);
    width: 18px;
    height: 18px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 25px;
    right: 17px;
    transition: 0.5s;
}

.faq__txt[open] summary::after {
    transform: rotate(-180deg);
}

.faq__txt p {
    position: relative;
    text-align: left;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1.5em 2em 1em 3em;
    font-weight: 400;
    font-size: 1.5rem;
    transition: 0.5s;
    border-top: 1px solid #E5E5E5;
}

.faq__txt[open] p {
    transform: none;
    opacity: 1;
}

.faq__txt p::before {
    left: 22px;
    font-weight: 400;
    font-size: 1.5rem;
    color: #F63535;
    content: "A.";
}

/* FAQ pc */
@media screen and (min-width:769px) {
    .section--faq {
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 60px 16.1%;
    }

    .section--faq .title {
        margin-bottom: 32px;
    }

    .home__icon02 {
        width: 280px;
        right: 1px;
        top: 430vh;
    }

    .faq__txt {
        max-width: none;
        margin-bottom: 32px;
        text-align: center;
    }

    .faq__txt summary {
        padding: 1em 4em;
        font-size: 2rem;
    }

    .faq__txt summary::before {
        top: 20px;
        left: 40px;
        font-size: 2rem;
    }

    .faq__txt summary::after {
        width: 24px;
        height: 24px;
        top: 24px;
        right: 38px;
    }

    .faq__txt p {
        padding: 1em 4em;
        font-size: 2rem;
    }

    .faq__txt p::before {
        left: 44px;
        font-size: 2rem;
    }
}