@charset "utf-8";
:root{
    --primary-blown: #710C21;
    --primary-green: #9CC4B2;
    --primary-pink: #F8DCDB;
    --primary-white: #fdfdfd;
    --primary-whiteLow: #ecf5f5;
    --primary-black: #333a3a;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

.article{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.article__header{
    background-image: url(../1x/about_main.png);
    background-position: center;
    background-size: cover;
    width: 160%;
    height:  500px;
    border-radius: 0 0 320px 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: 1s fadeinmain 0.5s forwards;
	opacity: 0;
}
@keyframes fadeinmain {
	0% {
		height:  0px;
  }
	100% {
		height:  500px;
		opacity: 1;
  }
}

.about__txt{
    text-align: center;
    font-family: "Fleur De Leah";
    font-size: 6rem;
    display: flex;
    justify-content: center;
    padding-bottom: 1px;
    margin-left: 6%;
    margin-top: 0px;
    text-shadow: 6px 6px 6px rgba(139, 110, 110, 0.9);
    animation: 1s fadeintxt 1.2s forwards;
    opacity: 0;
}
@keyframes fadeintxt {
	0% {
        margin-left: 0%;
        margin-top: -30px;}
	100% {
        margin-left: 6%;
        margin-top: 0px;
		opacity: 1;
  }
}

@media screen and (min-width: 769px){


    .article{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .article__header{
        background-image: url(../1x/about_main.png);
        background-position: center;
        background-size: cover;
        width: 120%;
        height:  800px;
        border-radius: 0 0 300% 300%;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: 1.2s fadeinmain 0.5s forwards;
	    opacity: 0;
}
@keyframes fadeinmain {
	0% {
		height:  0px;
  }
	100% {
		height:  800px;
		opacity: 1;
  }
    }
    
    .about__txt{
        text-align: center;
        font-family: "Fleur De Leah";
        font-size: 8rem;
        display: flex;
        justify-content: center;
        padding-left: 0%;
        text-shadow: 6px 6px 6px rgba(139, 110, 110, 0.9);
        animation: 1s fadeintxt 1.2s forwards;
        opacity: 0;
}
@keyframes fadeintxt {
	0% {
        margin-left: 0%;
        margin-top: -60px;}
	100% {
        margin-left: 6%;
        margin-top: 0px;
		opacity: 1;
  }
    }
}
/* ==========================
    concept
    =========================== */
.section--about{
    width: 100%;
    padding: 100px 0 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainCaption{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.maincaption{
    font-family: "Fleur De Leah";
    font-size: 3.2rem;
    opacity: 0.8;
}

.mainCaption__txt1{
    text-align: center;
    font-size: 1.8rem;
    line-height: 4rem; 
}

.mainCaption__txt2{
    text-align: center;
    font-size: 1.5rem;
    line-height: 3rem; 
}

.sep{
    width: 85%;
    margin-top: -130%;
    margin-left: auto;
    margin-bottom: -40px;
    z-index: 100;
}

@media screen and (min-width: 769px){
    .section--about{  
        width: 100%;
        padding: 160px 0 200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .spBr{
        display: none;

    }
    
    .mainCaption{
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }
    
    .maincaption{
        font-family: "Fleur De Leah";
        font-size: 6rem;
        opacity: 0.8;
    }
    
    .mainCaption__txt1{
        text-align: center;
        font-size: 3rem;
        line-height: 4rem; 
    }
    
    .mainCaption__txt2{
        margin-top: 20px;
        text-align: center;
        font-size: 2rem;
        line-height: 3rem; 
    }

    .sep{
        width: 90%;
        margin-top: -130%;
        margin-right: -40%;
        margin-left: auto;
        margin-bottom: -40%;
        z-index: 100;
    }
}
/* ==========================
    philosophy
=========================== */

.section--philosophy{
    width: 100%;
    padding: 60px 0 180px 0;
    background-image: url(../1x/philo.jpg);
    background-size: cover;
    background-position: center;
}

.leadCaption{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leadcaption{
    font-family: "Fleur De Leah";
    font-size: 3.2rem;
    margin-bottom: 60px;
    opacity: 0.8;
}

.story{
    border: 1px solid #9CC4B2;
    background: rgba(248, 220, 219, 0.80);
    display: flex;
    margin:  0 0 -10%;
    z-index: 100;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 2px 2px 3px 2px rgba(248, 220, 219, 0.80);
}

.story_top{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.plogo__img{
    width: 44px;
    opacity: 0;
}

.plogo__img.animated {
    animation: kurukuru 1.2s ease-out;
    opacity: 1;
}

/* kurukuru */
@keyframes kurukuru {
    0%{
      transform: rotateY(0) translateY(40px);
      opacity: 0;
    }
    100%{
      transform: rotateY(360deg) translateY(0);
      opacity: 1;
    }
}

.story__title{
    text-align: center;
    font-size: 1.6rem;
}

.story__Txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    gap: 10px;
}

.leadCaption__txt1{
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5rem; 
}

.leadCaption__txt2{
    font-size: 1.2rem;
    line-height: 1.5rem;
}

.name{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.Logo__txt{
    color: var(--primary-green);
    text-align: center;
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: rgba(248, 220, 219, 0.10);
    font-family: "Fleur De Leah";
    font-size: 1.4rem;
}

.name__txt{
    text-align: right;
    font-size: 1.2rem;
}

.name__lead{
    text-align: right;
}

.profile{
    margin-top: 30px;
    width: 250px;
    margin-left: 30%;
    z-index: 10;
    box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
}

.square{
    opacity: 0.8;
    content: '';
    display: block;
    width: 80%;
    height: 200px;
    background: var(--primary-green);
    margin-top: -250px;
    margin-left: auto;
    box-shadow: 2px 2px 3px 2px rgba(#9CC4B2F2);
}

.StoA1{
    margin-top: -60px;
}

.StoA2{
    margin-left: auto;
    width: 62%;
    transform: rotateY(180deg);
}

.section--gallery{
    margin-top: -60px;
}


.semi__deco{
    height: 120px;
    margin: 80px 0 50px;
    animation: infinity-scroll-left 30s  linear infinite;
}

@keyframes infinity-scroll-left {from{
    transform: translateX(0);
}
to {
    transform: translateX(-70%);
}
}

@media screen and (min-width: 769px){
    .section--philosophy{
        width: 100%;
        padding: 80px 0 200px;
        background-image: url(../1x/philo.jpg);
        background-size: cover;
        background-position: center;
    }
    
    .leadCaption{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .leadcaption{
        font-family: "Fleur De Leah";
        font-size: 4.8rem;
        margin: 80px auto;
    }
    
    .story{
        border: 1px solid #9CC4B2;
        background: rgba(248, 220, 219, 0.80);
        display: flex;
        margin:  0 0 -100px 16%;
        z-index: 100;
        padding: 40px 50px;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .story_top{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    
    .plogo__img{
        width: 70px;
    }
    
    .story__title{
        font-size: 3.2rem;
    }
    
    .story__Txt{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .leadCaption__txt1{
        justify-content: center;
        font-size: 2rem;
        font-weight: 500;
        line-height: 5rem; 
    }
    
    .leadCaption__txt2{
        font-size: 2rem;
        line-height: 3rem;
    }
    
    .name{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .Logo__txt{
        opacity: 0.8;
        color: var(--primary-green);
        text-align: center;
        -webkit-text-stroke-width: 1;
        -webkit-text-stroke-color: rgba(248, 220, 219, 0.10);
        font-family: "Fleur De Leah";
        font-size: 4rem;
    }
    
    .name__txt{
        text-align: right;
        font-size: 2rem;
    }
    
    .name__lead{
        text-align: right;
        font-size: 1.6rem;
    }
    
    .profile{
        margin-top: 30px;
        width: 500px;
        margin-left: 32%;
        z-index: 10;
    }

    .square{
        opacity: 0.8;
        content: '';
        display: block;
        width: 75%;
        height: 500px;
        background: var(--primary-green);
        margin-top: -550px;
        margin-right: auto;
        margin-left: 0;
    }
    

    .StoA1{
        margin-top: -60px;
        width: 64%;
        margin-right: auto;
    }

    .StoA2{
        display: none;
    }
    
    .semi__deco{
        height: auto;
        width: 100%;
        margin: 200px 0 120px;
    }
    
}

/* Access */
@media screen and (min-width: 769px) {
.section--access{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 200px 0 0px;
    margin-top: 200px;
}
}