@charset "utf-8";

/* ---------------------  common  --------------------- */
p{
    font-family:  "baskerville",serif;
}

/* ------------------------------------------------------------------------------------
   fadeUp
------------------------------------------------------------------------------------ */
@media (width>743px){
    /*==================================================
    スタート時は要素自体を透過0にするためのopacity:0;を指定する
    ===================================*/
    
    .box{
        opacity: 0;
    }
    
    /*==================================================
    動かしたい動き（今回は” ふわっ” を採用）
    ===================================*/
    
    .fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
        transform: translateY(100px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    }
        
/* ------------------------------------------------------------------------------------
    header
------------------------------------------------------------------------------------ */

.aboutLogo a{
    margin: 10px auto 5px;
    width: 25%;
}
#about .header h1{
    text-align: center;
    font-weight: normal;
    font-size: 0.7rem;
    line-height: 1.5;
}

/* ---------------------  media query  --------------------- */
@media (width>743px){
.aboutHeader {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}
#about .header h1{
    width: 100%;
    text-align: left;
    white-space: pre-line;
    line-height: 1.5;
}
#about .header .aboutLogo a{
    margin: 20px 20px 5px  0;
    width:78%;
}
.aboutLogo{
    /* display: flex;
    align-items: flex-end; */
    width: 45%;
}
.pcNav{
    display: flex;
}
} 
/* ------------------------------------------------------------------------------------

about

------------------------------------------------------------------------------------ */
#about .about_aboutWrap{
    margin-bottom: 80px;
}
#about h2{
    margin-block: 100px 50px;
    text-align: center;
    font-size: 2.25em;
    font-family: "Trajan Pro 3",serif;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
    #about h2{
        margin-bottom: 0px;
    }
}
/* ---------------------  
about h3  
--------------------- */
#about .about_aboutWrap h3{
    margin-bottom: -70px;
    font-size: 2em;
    font-weight: 600;
    text-align: center;
    line-height: 240px;
    background-size: contain;
}
#about .story h3{
    background: url(../../img/about_circle01.svg) no-repeat center;
}
#about .policy h3{
    background: url(../../img/about_circle02.svg) no-repeat center;
}
#about .cuisine h3{
    background: url(../../img/about_circle03.svg) no-repeat center;
}
#about .about_aboutWrap p{
    font-size:1.1em;
    line-height: 1.6;
}
#about .about_aboutWrap p+p{
    margin-top: 20px;
}
#about .about_aboutWrap img{
    margin-top: 20px;
    height: 400px;
    width: 100%;
    object-fit: cover;
}

/* ---------------------  media query  --------------------- */
@media (width>743px){
#about .about_aboutWrap h3{
    margin-top: -40px;
    line-height: 210px;
}
#about .about_aboutWrap p{
    font-size:1em;
    line-height: 1.75;
}
#about .about_aboutWrap .aboutImg{
    height: 300px;
    width: 40%;
}
/* ---------------------
  about h3  
  --------------------- */
#about .about_aboutWrap h3{
    background-size: 25%;
}
#about .story h3,
#about .cuisine h3{
    text-align: left;
    background-position: left;
}
#about .policy h3{
    text-align: right;
    background-position: right;
}
}
/* ---------------------
  aboutBox
    --------------------- */
@media (width>743px){
#about .about_aboutBox{
    display: flex;
    gap: 5%;
}
#about .about_aboutBox .about_aboutImg{
    flex: 0 0 40%; /* width: 40%に相当 */
}
#about .about_aboutBox .about_aboutTxt{
    flex: 0 0 55%; /* width: 55%に相当 */
}
#about .policy .about_aboutBox{
    flex-direction: row-reverse;
}
#about .about_aboutWrap img{
    margin-top: 0;

}
}

/* ------------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------------ */
#about .footerBox{
    margin-inline: auto;
    display: block;
    margin-bottom:50px;
}
#about .footerBox h3{
    margin-bottom: 10px;
    font-size: 1.5rem;
}
#about .footerBox p{
    font-size: 1.1rem;
    line-height: 2;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
#about .footerWrap{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
#about .footerBox h3{
    margin-bottom: 10px;
    font-size: 1rem;
}
#about .footerBox p{
    font-size: 0.9rem;
    line-height: 1.5;
}

}
