@charset "utf-8";
/*===============================================
main
=================================================  */
.mv {
    position: relative;
    height: 30vw;
}

.mv::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}


.mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv h2 {
    position: absolute;
    color: var(--primary-white);
    font-size: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    inset: 0;
    z-index: 2;
}
/* .section-flow */
.section-flow {
    padding:0 8.5%;
    background-color: var(--primary-lightGray);
}

.flow-container h2 {
    font-size: 2rem;
    font-weight: 500;
    padding: 20px 0;
    position: relative;
    margin: 48px 0; 
}

.flow-container h2::before {
    position: absolute;
    content: "";
    left: 0; 
    top: 0;
    border-top: 4px solid var(--primary-green); 
    height: 4px;
    width: 32px; 
    
}

.flow-item:last-child::before {
    display: none;
}

.flow-list {
  padding-bottom: 96px;
}

.js-fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .8s ease-out, 
                transform .8s cubic-bezier(0.22,1,0.36,1);
}

.js-fade-up.is-show {
    opacity: 1;
    transform: scaleY(1);
}

.flow-item:nth-child(1) { transition-delay: 0s;}
.flow-item:nth-child(2) { transition-delay: .15s;}
.flow-item:nth-child(3) { transition-delay: .3s;}
.flow-item:nth-child(4) { transition-delay: .45s;}




.flow-item {
    position: relative;
    padding-left: 18%;
    padding-bottom: 32px;
    display: grid;
    grid-template-columns: 1fr;
   
}
.flow-item_number {
    position: absolute;
    left: -1.5em;
    padding: 0.5rem;
    width: 5rem;
    height: 5rem;
    background: var(--primary-green);
    border-radius: 100%;
}

.flow-item_icon {
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-green);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.en {
    font-weight: 700;
    color: var(--primary-white);
}

.flow-item_detail {
    padding-bottom: 24px;
}

.flow-item_title {
    font-size: 2rem;
    padding: 1em 0;
    color: var(--primary-green);
   
}

.flow-item_txt {
    line-height: 2.2;
}

.flow-item::before {
    content: "";
    display: block;
    width: 0.2rem;
    height: 100%;
    position: absolute;
    left: 0;    
    z-index: 1;
    background-position: left top;
    background: var(--primary-green);
    top: 5rem;
}

.flow-item_img {
    margin-top: 1.5rem;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--primary-green);
}

.flow-item_img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* .mv pc */
@media screen and (min-width: 769px) {
.mv h2 {   
    font-size: 3.8rem;
}
}/* pc 769px */

/* .section-flow pc */
@media screen and (min-width: 769px) {
.flow-container {
    padding: 80px 5.5% 96px;
}  

.flow-container h2 {
    font-size: 2.4rem;  
}

.flow-item {
    gap: 32px;
    grid-template-columns: 2fr 1.3fr;
}

.flow-item_detail {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--primary-green);
}

.flow-item_title {
    font-size: 2.4rem;
}

.flow-item_txt {
    font-size: 1.8rem;
}

.flow-item_img {
    border-bottom: none;
}

}