@charset "utf-8";
.fadeIn {
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* ==================
concept
================== */
.pageConcept__fv {
    position: relative;
}
.pageConcept__section{
    padding: 0 10%;
}

.pageConcept__lead {
    font-size: 1.4rem;
    font-family: 'Zen Old Mincho';
    margin-top: 50px;
    line-height: 2.0;
    text-align: justify;
}

.pageConcept__mainImg-pc {
    display: none;
}

.pageConcept__fv-title {
    font-size: 2.4rem;
    font-family: 'Cormorant Garamond';
    position: absolute;
    bottom: 100px;
    left: 25px;
}

.pageConcept__fv-subtitle {
    font-size: 1.4rem;
    font-family: 'Zen Old Mincho';
    position: absolute;
    bottom: 80px;
    left: 30px;
}

.pageConcept__inner {
    margin-top: 80px;
    position: relative;
}

.pageConcept__number {
    font-size: 1.6rem;
    font-family: 'Zen Old Mincho';
}

.pageConcept__heading {
    font-size: 1.6rem;
    font-family: 'Zen Old Mincho';
    position: relative;
    padding-left: 30px; 
}

.pageConcept__heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    width: 56px;
    height: 1px;
    background: #000;
    transform: rotate(-45deg);
}

.pageConcept__heading.is-visible::after {
  animation: lineIn 3.5s linear forwards;
}

@keyframes lineIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}


.spBr {
    display: block;
}

.pageConcept__txt {
    font-size: 1.4rem;
    line-height: 2.2;
    margin-top: 30px;
    text-align: justify;
}

.pageConcept__img-sp {
    width: 70%;
    margin: 30px auto 0;
}

.pageConcept__img-pc {
    display: none;
}

/* concept pc */
@media screen and (min-width: 769px) {

    .pageConcept__lead {
        font-size: 1.8rem;
        margin-top: 100px;
        line-height: 2.4;
        text-align: justify;
    }

    .pageConcept__mainImg-pc {
        display: block;
    }

    .pageConcept__mainImg-sp {
        display: none;
    }

    .pageConcept__fv-title {
        font-size: 5.6rem;
        position: absolute;
        bottom: 90px;
        left: 60px;
    }

    .pageConcept__fv-subtitle {
        font-size: 1.6rem;
        position: absolute;
        bottom: 60px;
        left: 65px;
    }

    .pageConcept__item {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-top: 165px
    }

    .pageConcept__item:nth-of-type(2) {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .pageConcept__inner {
        width: 50%;
        margin-top: 0;
    }

    .pageConcept__heading::before {
        top: 0;
        left: -16px;
        width: 110px;
    }

    .pageConcept__img-pc {
        width: 40%;
    }

    .pageConcept__number {
        font-size: 4.0rem;
    }

    .pageConcept__heading {
        font-size: 4.0rem;
        position: relative; /* ← 必須！ */
        padding-left: 30px; /* ← 斜線＋余白のスペース */
    }

    .pageConcept__img-sp {
        display: none;
    }

    .pageConcept__txt {
        font-size: 1.6rem;
        line-height: 2.6;
        margin-top: 80px;
        text-align: justify;
    }

    .pageConcept__img-pc {
        display: block;
    }
    
}
