@charset "utf-8";
html {
    scroll-behavior: smooth;
}
/* common */
* {
    margin: 0;
    padding: 0;
    color: #4A4438;
    font-family: "Hina Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

img {
    width: 100%;
}
body{
    background-image: url(../images/photo_9.jpeg);
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
/* common */
/* ============================
header
=============================== */
.logo_top {
    color: #4A4438;
    font-family: "Libre Caslon Display";
    font-size: 18px;
    text-decoration: none;
    margin-left: 8%;
}
.header {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #BEC599;
    height: 100px;
    z-index: 2;
    position: fixed;
    top: 0;
    width: 100%;
}

.nav{
    background-color: #BEC599;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;

}

.nav_list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    padding-left: 50%;
    margin-top: 50%;
    transform: translate(-25%, -25%);
}
.nav.active{
    transform: translateX(0);
}

.nav_item{
    list-style: none;
}
.nav_item a {
    color: #000;
    text-align: center;
    font-family: "Libre Caslon Display";
    font-size: 30px;
    text-decoration: none;
    transition: 0.3s;
}
.nav_item a:hover {
    color: #fff;
}

.close_btn{
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    display: inline-block;
    margin-top: 70px;
    margin-left: 80%;
    transition:0.3s;
    filter: brightness(0%);
}
.close_btn:hover {
    filter: opacity(0.1);
}
.nav_list_footer{
    display: none;
}
.header_btn {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    margin-right: 10%;
    transition: 0.3s;
}

.header_btn:hover {
    filter: opacity(0.1);
}
.logo_top{
font-size: 18px;
}
/* header pc */
@media screen and (min-width:769px) {
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
        
    }
    
    .nav_list{
        display: flex;
        flex-direction: row;
        gap: 70px;
        width: 100%;
        align-items: center;
        margin: 0 100px 0 auto;
    }

    .logo_pc{
        display: none;
    }

    .nav_item {
        display: flex;
        margin-right: 40px;
    }

    .nav_item a {
        color: #000;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        font-size: 16px;
        font-style: normal;
    }
    .nav_item a:hover {
        color: #f5f5f5;
    }

    .header_btn {
        display: none;
    }
    .close_btn{
        display: none;
    }
    .logo_top{
        font-size: 30px;
        }
}
@media screen and (min-width:1200px) {
    .nav_item a{
        font-size:22px;
    }}

/* nav */
/* profile */
.title {
    text-align: center;
    font-family: "Libre Caslon Display";
    font-size: 22px;
    margin-top: 150px;
    color: #f5f5f5;
}
.about_group{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(241, 244, 245, 0.7);
    height: 240px;
    margin-top: 50px;
    gap: 20px;
    padding: 0 20px;
}
.about_bun{
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.warabinochan{
    background-image: url(../images/photo_10.jpeg);
    background-position: center;
    background-size: 250px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-repeat: no-repeat;
}
.warabinochan_waku{
    background-color: #E3D6BA;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.name_ja{
    font-size: 20px;
}
.name_en{
    font-size: 18px;
}
.name_bun{
    font-size: 12px;
}
.name{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}
.about_introduce{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

/* profile */
/* bun */
.sentence_bun{
    line-height: 48px;
    width: 300px;
    margin-top: 44px;
    margin-bottom: 44px;
}
.about_sentence{
    margin-top: 100px;
    background: rgba(241, 244, 245, 0.7);
    display: flex;
    justify-content: center;
}
/* bun */
/* photo */
.photo{
    width: 50%;
    max-width: 500px;
    flex-shrink: 0;
}
.photos{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1000px;
}
/* photo */
/* rireki */
.rireki_nen,.rireki_bun{
    font-size: 14px;
    line-height: 18px; 
    padding-top: 10px;
    vertical-align: top;
}
.rireki_bun{
    padding-left: 10px;
    width: 212px;
}
.rireki_list{
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    
}
.rireki{
    background: rgba(241, 244, 245, 0.7);
}
/* rireki */
/* footer */
.top_position {
    background-image: url(../images/top_btn_2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    bottom: 100px;
    right: 40px;
    width: 52px;
    height: 46px;
}

.topbtn {
    text-decoration: none;
    display: flex;
    font-family: "Libre Caslon Display";
    font-size: 12px;
    line-height: normal;
    padding-top: 24px;
    justify-content: center;
}
.insta{
    display: flex;
    justify-content: center;
}
.instagram {
    width: 50px;
    height: 50px;
    margin: 50px;
}
.footer {
    background-color: #BEC599;
    padding-bottom: 20px;
}

.footer a {
    text-decoration: none;
    font-family: "Libre Caslon Display";
    font-size: 18px;
    line-height: normal;
    padding-top: 10%;
    padding-left: 10%;
    display: block;
}
.copy{
    padding-left: 74%;
    font-size: 14px;
}
@media screen and (min-width:1024px) {
    .about_group{
        height: 440px;
        margin-top: 80px;
    }
    .warabinochan_waku{
        width: 340px;
        height: 340px;
    }
    .warabinochan{
        background-size: 370px;
        width: 280px;
        height: 280px;
    }
    .title{
        font-size: 30px;
        margin-top: 200px;
    }
    .name{
        width: 200px;
    }
    .name_ja{
        font-size: 38px;
    }
    .name_bun{
        font-size: 14px;
    }
    .about_bun{
        width: 200px;
    }
    .sentence_bun{
        width: 70%;
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .rireki_list{
        padding-top: 60px;
        padding-bottom: 60px
    }
    .copy{
        padding-left: 80%;
    }
    .photos{
        margin: 80px auto;
    }
    
    
}
@media screen and (min-width:1200px) {
    .instagram{
        margin: 100px;
    }
    .footer a{
        font-size: 30px;
    }
    .top_position{
        bottom: 100px;
        right: 80px;
        width: 102px;
        height: 90px;
    }
    .topbtn{
        font-size: 20px;
        padding-top: 50px;
    }
    }
