@charset "UTF-8";

/* =================================
   common
==================================== */

html{
    font-size: 62.5%;
    scroll-behavior: smooth; /* スムーススクロールを有効にする */
}

body {
    font-family:
    "Playfair Display","Hiragino Mincho ProN";
    font-weight:400;
    font-style:normal;
    color: #fff;
    background-color: #69A0CA;
    line-height: 1.5;
    margin: 0;
}

.inner{
    max-width: 1160px;
    margin: auto;
}

img {
    width: 100%;
    height: auto;
}

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

/*==========================
slick
==========================*/

.slick-slider{
    overflow:hidden;
    margin: 0 auto 64px;
}

/* slick-slider pc */

@media screen  and (min-width:769px){
    .slick-slider{
        padding: 4.2%;
    }
    .slider__item{
        margin: 0 10px;
    }

    .cursor-dot,
    .cursor-follower {
       display: none; /* デフォルトは非表示 */
}
}
/* pc 769px */

/*==========================
scrollTop
==========================*/
.page_top_btn {
font-size: 1.4rem;
position: fixed;
bottom: 10px;
right: 10px;
padding: 0.7em;
text-align: center;
color: #fff;
transition: 0.3s;
writing-mode:vertical-rl;
}


/* マウスオーバー時 */
.page_top_btn:hover {
color:#696969;
}

/*==========================
fadeIn
==========================*/
.fadeIn{
    transform: translate(0,50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated{
    transform: translate(0,0);
    opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* =================================
   header
==================================== */


.header {
    padding: 20px 24px 30px 24px;
    justify-content: center;
    align-items: flex-start;
    gap: 207px;
    align-self: stretch;
}

.header__tittle{
    display: flex;
    justify-content: space-between;
}

.main_picture1{
    width:100px;
}
.main_picture2{
    width:100px;
}
.main_picture3{
    width:70px;
}

.hamburger {
    position: fixed;
    cursor: pointer;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 25px;
    z-index: 101;
    display: flex;
    justify-content: space-between;
}
.hamburger span {
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #fff;
    width:100%;
    z-index: 101;
}
.hamburger span:nth-of-type(1) {
    top: 4px;
}
.hamburger span:nth-of-type(2) {
    top: 12px;
}
.hamburger span:nth-of-type(3) {
    top: 20px;
}
.hamburger.active span:nth-of-type(1) {
    top: 10px;
    transform: translateY(6px) rotate(-33deg);
}
.hamburger.active span:nth-of-type(2) {
    opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
    top: 22px;
    transform: translateY(-6px) rotate(33deg);
}

/* .nav */

.nav {
    background: #69A0CA;
    width: 100%;
    height: 100vh;
    padding: 24px 6.4%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}


.nav__list {
    margin-top: 60px;
    margin-left: 24px;
    list-style: none;
}

.nav__item {
    font-size: 1.4rem;
    font-weight:lighter;
    line-height: 1;
    letter-spacing: 1.4px;
    margin-top: 30px;
    transition-duration: 0.4s;
    text-transform:uppercase; 


}

.nav__item::first-letter{
    margin-top: 0%;
}

/* .nav.active */

.nav.active {
    transform: translateX(0);
}


/* .header pc */

@media screen and (min-width:769px) {
    .page_top_btn{
        font-size: 2rem;
    }
    .header {
        max-width: 1160px;
        display: flex;
        margin: 0 auto;
        align-items: center;
        text-align: center;
        justify-content: space-between;
    }

    .header_tittle{
        flex-shrink: 0;
    }
     .hamburger{
            display: none;
        }

    .mainLogo{
    padding: 0 ;
    display:block;
    width: 100px;
    
    }    


    .nav{
        background: transparent;
        width: auto;
        height: auto;
        transform: translate(0);
        padding: 20px;
        right: 20px;
        padding: 4px 6.4%;
        position: static;
    }



        .nav__list{
            display: flex;
            text-align: center;
            justify-content: flex-end;
            gap: 20px;
            flex-wrap: wrap;
            margin: 0;
        }

        .nav__item{
        font-size: 1.8rem;
        line-height: 1.3;
        margin-top: 0;
        
        }

        .nav__header{
            display: none;
        }
     
    
}
/* pc 769px */

/*==========================
main
==========================*/

/* .Portfolio */

.Main{
    text-align: center;
    font-size: 1.4rem;
    align-items: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.stack-container{
  position: relative;
  margin-right: 20px;
}

.stack-container img{
  position: absolute;
  width: 100px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.img1_pc { top: 0; right: 28px; z-index: 1; }
.img2_pc { top: 50px; left: -47px; z-index: 2; }
.img3_pc { top: 93px; right: 16px; z-index: 3; }


.section-header{
    font-size: 1.8rem;
    text-align: center;
    width: fit-content;
    position: absolute;
    margin-left: 64px;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.section-portfolio{
    margin: 100px 0;
    display: flow-root;
}

.portfolio_content{
    display: flex;
    justify-content:space-between;
    gap: 60px;
    margin: 84px;
}

.portfolio_txt{
    font-size: 2.4rem;
    margin-top: 74px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.4);
    width: fit-content;
    margin-right: 20px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 10;
}

.portfolio_txt::first-letter {
    font-size: 4.8rem;  
    font-weight: bold;    
    float: left;         
    margin-right: 2px;   
    line-height: 0.4;       
}

/* .Portfolio pc */
@media screen and (min-width:769px) {
   
    .Main{
        text-align: center;
        font-size: 2rem;
        align-items: center;
        
    }

    .stack-container{
    position: relative;
    transform: scale(2);
    }

    .stack-container img{
    position: absolute;
    width: 124px;
    
    }

    .img1_pc { top: 0; right: 50px; z-index: 1; }
    .img2_pc { top: 50px; left: -70px; z-index: 2; }
    .img3_pc { top: 100px; right: 20px; z-index: 3; }

    .section-header{
        display: none;
    }

    .section-portfolio{
        margin: 100px 0 ;
        
    }

    .portfolio_content{
        display: flex;
        margin: 84px;
        padding: 150px 26px;
    }

    .portfolio_txt{
        font-size: 9.6rem;
        margin: 0px;
        letter-spacing: 5%;
        font-weight: 600;
    }

    .portfolio_txt::first-letter {
    font-size: 28.4rem;  
    font-weight: bold;    
    float: left;         
    margin-right: 2px;   
    line-height: 0.01;       
    }
}
/* pc 769px */


/* .Profile */

.section-profile{ 
    padding-top: 100px ;
    
}

.section_topicProfile{
    font-size: 2.4rem;
    text-align: center;
    display: block;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: 64px;
}

.section_topicProfile::first-letter {
    font-size: 4.8rem;  
    font-weight: bold;    
    float: inherit;         
    margin-right: -4px;   
    line-height: 0.4;       
}

.profile_set{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 90px 24px 90px;
}

.profile_content{
    margin-left: 10px;
    margin-top: 74px;
    text-align: center;

}

.profile_name{
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.profile_namesub{
    font-size: 1.1rem;
    font-weight: lighter;
    margin-bottom: 48px;
    letter-spacing: initial;
    white-space: nowrap;
}

.profile_birth{
    font-family: "Hiragino Mincho ProN";
    font-size: 1.2rem;
    margin-bottom: 72px;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.profilephoto{
    border-radius: 50%;
    max-width: 400px;
    width: 80%;
}

.profile_list{
    font-family:Hiragino Mincho ProN ;
    font-size: 1rem;
    margin: 48px 48px 48px 72px;
    padding: 12px;
   

}

.list_content{
    display: flex;
    margin-bottom: 32px;
}
.list_time{
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em; 
}
.list_txt{
    margin-left: 10px;
    align-items: center;
    flex-shrink: 0; /* 指定した幅を絶対に維持し、縮ませない */
    white-space: nowrap;
    line-height: 1.5;
    letter-spacing: 0.1em; 
}


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

   
    .section_topicProfile{
        font-size: 9.6rem;
        letter-spacing: normal;
        margin-right: 74px;
    }
    .section_topicProfile::first-letter{
        font-size: 28.4rem;  
        font-weight: bold;    
        float: inherit;         
        margin-right: -48px;   
        line-height: 0.01;       
    }

    .profile_set{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .profile_content{
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 40px;
        padding: 24px;
        margin-top: 0;
        
    }

    .profile_name{
        font-size: 3.6rem;
    }
    .profile_namesub{
        font-size: 1.4rem;
        font-weight: lighter;
        margin-bottom: 48px;
    }

    .profile_birth{
        font-family: Hiragino Mincho ProN;
        font-size: 2rem;
        margin-bottom: 72px;
    }

    .profilephoto_sp{
        border-radius: 50%;
        width: auto;
    }

    .profilephoto_pc{
        display: none;
        margin: 0;
    }

    .profile_list{
        font-family:Hiragino Mincho ProN ;
        font-size: 1.4rem;
        justify-items: center;
    }

    .list_content{
        display: flex;
    }
    
    .list_time{
    font-size: 1.4rem;

}
    .list_txt{
        margin-left: 10px;
        align-items: center;
        flex-shrink: 0; /* 指定した幅を絶対に維持し、縮ませない */
        white-space: nowrap;
    }
}


/* pc 769px */

/* .Skill */

.section-skill{
    margin-top: 60px;
    padding-bottom: 80px;
    display: flow-root;
}

.section__topicSkill{
    font-size: 2.4rem;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.skill_list{
    margin:auto;
    padding: 36px 64px;
    display: flex;        
    flex-direction: column;
    align-items: center;
}

.skill_set{
    display: block;
}
.skill_a{
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    object-fit: cover;
    gap: 32px;
    margin-bottom: 28px;
}

.skill_b{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

.skill_list .skill_a img,
.skill_list .skill_b img {
    width: 40px !important;   /* 強制的に40pxにする */
    height: 40px !important;  /* 強制的に40pxにする */
    object-fit: contain;      /* 画質をそのまま綺麗に収める */
}

.skill_txt{
    font-size: 1rem;
    font-family: Hiragino Mincho ProN;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    margin: 84px 60px;
    line-height: 2;
    letter-spacing: 0.1em;
}
/* .Skill pc */
@media screen and (min-width:769px) {

    
    .section__topicSkill{
        font-size: 3.6rem;
    }
    .skill_content{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .skill_set{
        width: 100%;
        padding: 20px;
    }
    .skill_list{
        margin-top: 32px;
    }

    .skill_a{
    gap: 20px;
}

.skill_b{
    margin-top: 20px;
    gap: 20px;
}


    .skill_txt{
        width: 100%;
        font-size: 1.6rem;
        margin: 0 40px 0 40px;
    }
}    

/* pc 769px */

/* .Work */

.section-work{
    margin-top: 120px;
    display: flow-root;
}

.section_topicWork{
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.section_topicWork::first-letter {
    font-size: 4.8rem;  
    font-weight: bold;    
    float: inherit;         
    margin-right: -4px;   
    line-height: 0.4;       
}

.workphoto_sp{
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 24px;
}

.workphoto_pc{
    display: none;
}

.work_tittle{
    font-size: 1.4rem;
    margin-top: 6px;
    font-weight: 300;
    text-align: center;
    display: flex;
    justify-content: center;
    transition: color 0.3s ease;
}
.work_tittle:hover {
  color: #283036;
  text-decoration: underline;
}


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

   
    .section_topicWork{
        font-size: 9.6rem;
        display: block;
        margin-left: 42px;
        margin-bottom: 64px;
        margin-top: 160px;
    }

    .section_topicWork::first-letter {
        font-size: 28.4rem;  
        font-weight: bold;    
        float: inherit;         
        margin-right: -48px;   
        line-height: 0.01;        
    }

     .workphoto_sp{
      display: none;
    }
    .workphoto_pc{
        display: flex;
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto; 
    }

    .work_tittle{
        font-size: 3rem;
        margin-top: 90px;
    }
}

/* pc 769px */


/* .Contact */

.section-Contact{
    padding: 150px 24px 60px 24px;
}

.section_topicContact{
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 0;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact_item{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}
.contact_item:last-of-type{
    content: ""; 
    margin-bottom: 84px;
}
.contact_icon{
   width: fit-content;
}

.contact_link {
    display: flex !important;       /* 横並びにする */
    align-items: center !important; /* ★上下の真ん中をぴったり揃える */
    text-decoration: none;          /* リンクの下線を消す */
    color: inherit;                 /* 文字の色を元の色に合わせる */                   /* アイコンと文字の間のすき間（お好みで調整） */
}

.contact_txt{
    font-size: 1.4rem;
    font-weight: 300;
    margin-left: 10px;
    font-family: Hiragino Mincho ProN;
}
.contactphoto{
    width: fit-content;
    margin: auto;
    max-width: 150px;
    display: flex;

}


/* .Contact pc */
@media screen and (min-width:769px) {
.section-Contact{
    padding: 200px 24px 300px 24px;
}

.section_topicContact{
    font-size: 3.6rem;
    text-align: center;
    display: flex;
    margin-left: 54px;
    margin-bottom: 0;
}
.contact_content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;

}

.contact_list{
    padding: 20px 8px 20px 36px;
    width: 616px;
}
.contact_item{
    justify-content: left;
    margin-bottom: 0px;
}



.contact_txt{
    font-size: 2.4rem;
    font-weight: 300;
    padding: 10px;
}
.contactphoto{
    max-width: 400px;
    display: block;
    

}



}



/* pc 769px */


/*==========================
footer
==========================*/
.footer {
    padding: 0 40px 12px 40px ;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin: 0 auto;
}
.copy {
    font-family: "Hiragino Mincho Pro";
    text-align: center;
    font-size: 1.2rem;
    line-height:1.5;
}


/* footer pc */

@media screen and (min-width: 769px) {
 .footer {
    display: block;
    padding: 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.copy {
    margin: 21px 0;
    white-space: nowrap;
}

    
}/* pc 769px */