@charset "UTF-8";

/* ======================================
common
=========================================*/

:root {
    /* color */
    --primary-white: #FFFFFF;
    --primary-lightGray: #EEEEEE;
    --primary-lineGray: #DEDEDE;
    --primary-black: #000000;
    --primary-gray: #BABABA;
    /* コンテンツの幅、余白*/
    --contentPaddingSP: 0 8.5%;
    --contentPaddingPC: 0 4.7%;
}


html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Serif JP',Arial, sans-serif;
    color: var(--primary-black);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; 
    background-color: var(--primary-lightGray, #EEEEEE);
}

.wrap{
    overflow: hidden;
}

/* ロゴ */
.sitelogo{
    font-family: 'Eb Garamond', serif;
    text-align: center;
}

.sitelogo__name{
    line-height: 1.2;
    font-size: 2rem;
}

.sitelogo__siteName{
    font-size: 1.4rem;
}

/* ローディング */
.loading{
    background-color: var(--primary-lightGray);
    width: 100vw;
    height: 100vh;
    inset: 0;
    z-index: 9999;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 3s;
}

.sitelogo__loading{
    display: none;
}

.sitelogo__loading p
{
    text-align: center;
    color: var(--primary-black);
}

.sitelogo__name--loading{
    font-size: 3.6rem;
    line-height: 1.2
}

.sitelogo__siteName--loading{
    font-size: 2.4rem;
    line-height: 1.2
}

.wrap{
    display: none;
}

/* loading PC */
@media screen and (min-width: 769px) {
    .sitelogo__name{
        font-size: 4rem;
    }
    
    .sitelogo__siteName{
        font-size: 3.2rem;
    }
    .sitelogo__name--loading{
        font-size: 9rem;
    }
    
    .sitelogo__siteName--loading{
        font-size: 5.8rem;
    }


}/* 769px PC */
/* ======================================
header
=========================================*/
.header{
    position: fixed;
    top: 0;
    display: flex;
    width: 100%;
    height: 65px;
    padding: 12px 16px 8px 16px;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    mix-blend-mode: difference;
}

.header.active{
    background-color: var(--primary-lightGray);
    backdrop-filter: blur(5px);
    mix-blend-mode: normal;
}

.header__btn{
    width: 46px;
    height: 21px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    cursor: pointer;
}

.header__btn span {
    height: 1px;
    width: 100%;
    background-color: var(--primary-white);
    will-change: transform;
    pointer-events: none;
    transition: 0.4s;
}


/* バツ印に変化するスタイル */
.header__btn.active span:nth-child(1) {
    transform: rotate(30deg) translate(7.5px, 7.5px);
    background-color: var(--primary-black);
}
  
.header__btn.active span:nth-child(2) {
    opacity: 0;
}
  
.header__btn.active span:nth-child(3) {
    transform: rotate(-30deg) translate(7px, -7px);
    background-color: var(--primary-black);
}

.sitelogo__header{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.sitelogo__header.active{
    opacity: 1;
}

.nav {
    position: fixed;
    top: -150%; /* 初期状態でメニューを画面の外に */
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-lightGray);
    box-sizing: border-box;
    z-index: 9;
    transition: top 0.3s ease; /* スライドアニメーション */
    padding: 114px 0 0;
}
  
  /* メニューが表示される時 */
.nav.open {
    top: 65px; /* メニューが表示される位置 */
}

.nav__item{
    color: var(--primary-black);
    font-family: "EB Garamond";
    font-size: 3.2rem;
    line-height: 1.2;
    margin-top: 44px;
    padding: 0 50px;
    position: relative;
}

.nav__item::before{
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--primary-black);
}

.nav__item a span svg{
    margin-left: 8px;
    width: 32px;
    padding-bottom: 5px;
}


/* header PC */
@media screen and (min-width: 769px) {

    .header{
        width: 100%;
        padding: 32px 3.4%;
        height: 128px;
    }
    
    .header__btn{
        width: 69px;
        height: 31.5px;
        gap: 15px;
    }
    
    .header__btn.active span:nth-child(1) {
        transform: rotate(30deg) translate(6.5px, 11.7px);
        background-color: var(--primary-black);
    }
      
    .header__btn.active span:nth-child(2) {
        opacity: 0;
    }
      
    .header__btn.active span:nth-child(3) {
        transform: rotate(-30deg) translate(7.8px, -15px);
        background-color: var(--primary-black);
    }

    .sitelogo__header {
        opacity: 0;
        transition: opacity 0.3s ease;
        color: var(--primary-black);
    }

    .nav{
        padding: 32px 5.4%;
    }

    .nav.open {
        top: 125px;
    }

    .nav__item{
        margin-top: 85px;
        padding: 0;
        position: relative;
    }

    .nav__item a {
        font-size: 3.6rem;
    }
   
    .nav__item::before{
        left: -120px;
        width: 100px;
    }

}/* 769px PC */

/* ======================================
topic
=========================================*/
.topic{
    font-family: 'Eb Garamond', serif;
    font-size: 4rem;
    line-height: 1;
}

.topic__txt{
    font-size: 1.8rem;
    margin-top: 26px;
    text-align: left;
}

.topic.topic--left{
    text-align: left;
    position: relative;
}

.topic.topic--left::before{
    content: '';
    width: 40px;
    height: 1px;
    display: block;
    position: absolute;
    top: -12px;
    background-color: #000000;
}

/* loading PC */
@media screen and (min-width: 769px) {
    .topic{
        font-size: 6rem;
    }

    .topic__txt{
        font-size: 2.4rem;
        margin-top: 40px;
    }

    .topic.topic--left::before{
        content: '';
        width: 80px;
        top: -20px;
    }
}/* 769px PC */

/* ======================================
top
=========================================*/
/* mainVisual */
.top {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}

.fade-slide.mainVisual__sp {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.fade-slide.mainVisual__sp img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* メインビジュアルのロゴの配置 */
.sitelogo__top {
    position: absolute;
    bottom: 29px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    /* color: var(--primary-white);
    mix-blend-mode: difference; */
    will-change: transform;
    white-space: nowrap; 
    z-index: 1;
    padding: 0 20px;
    transition: color 0.3s ease-in-out;
}

.sitelogo__name--top {
    font-size: 9vw;
    line-height: 1.2;
    white-space: nowrap; 
}

.sitelogo__siteName--top {
    font-size: 7vw;
    line-height: 1.2;
    white-space: nowrap; 
}

.mainVisual__pc{
    display: none;
}


/* top PC */
@media screen and (min-width: 769px) {
    .mainVisual__pc{
        display: block;
    }

    .fade-slide.mainVisual__pc {
        position: absolute;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
    }
    
    .fade-slide.mainVisual__pc img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    .mainVisual__sp{
        display: none;
    }

    /* ロゴ */
    .sitelogo__top {
        bottom: 32px;
        left: 50%;
        display: flex;
        align-items: flex-end;
        gap: 32px;
    }
    
    .sitelogo__name--top {
        font-size: 6.5vw;
        line-height: 1.2;
        white-space: nowrap; 
    }
    
    .sitelogo__siteName--top {
        font-size: 4.5vw;
        line-height: 1.5;
        white-space: nowrap; 
    }
}/* 769px PC */

/* ======================================
about
=========================================*/

.aboutMe{
    margin-top: 100px;
    padding: var(--contentPaddingSP);
    text-align: center;
}

.aboutMe__img{
    margin: 20px auto 0;
    width: 100%;
    max-width: 380px;
    height: 335px;
    position: relative;
}

.aboutImg__1{
    width: 82%;
    position: absolute;
    top: 0;
    right: 0;
}
.aboutImg__2{
    width: 54.3%;
    position: absolute;
    top: 37px;
    left: 0;
}
.aboutImg__3{
    width: 54.6%;
    position: absolute;
    top: 165px;
    right: 12px;
}

.aboutMe__txt{
    text-align: left;
    margin-top: 28px;
}

.aboutMe__txt h3{
    font-size: 1.8rem;
}

.profile{
    margin-top: 32px;
    font-size: 1.4rem;
}

.profile__item{
    margin-top: 4px;
}

/* aboutMe PC */
@media screen and (min-width: 769px) {
    .aboutMe__contents{
        height: 676px;
        display: flex;
        gap: 54px;
        margin-top: 40px;
        align-items: center;
    }

    .aboutMe__img{
        flex: 1;
        max-width: 649px;
        height: 679px;
    }
    
    .aboutImg__1{
        width: 78.5%;
        top: 0;
        right: 0;
    }
    .aboutImg__2{
        width: 52%;
        position: absolute;
        top: 15%;
        left: 0;
    }
    .aboutImg__3{
        width: 52%;
        position: absolute;
        top: 339px;
        right: 18px;
    }

    .aboutMe__txt{
        flex: 1;
        margin-top: 0;
    }

    .aboutMe__txt h3{
        font-size: 2.8rem;
    }
    
    .profile{
        margin-top: 78px;
        font-size: 2rem;
    }
}/* 769px PC */

/* ======================================
Voice Sample
=========================================*/

.voiceSample{
    margin-top: 80px;
    padding: var(--contentPaddingSP);
    padding-top: 12px;
    overflow: hidden;
}

.audio__item{
    margin: 28px auto;
    text-align: center;
}

.audio__item p{
    margin-top: 10px;
    font-size: 1.6rem;
    text-align: center;
}

.induction{
    width: 160px;
    margin-top: 26px;
    margin-left: auto;
    position: relative;
    flex-direction: row;
    font-size: 1.8rem;
    line-height: 1;
    display: block;
    padding: 4px 6px 8px;
    border-bottom: 1px solid #000;
}

.induction:hover{
    color: var(--primary-gray);
}

.induction:hover svg {
    filter: invert(94%) sepia(10%) saturate(143%) brightness(70%) contrast(100%);
}

.arrow{
    display: inline-block;
    color: var(--primary-black);
    margin-left: 4px;
    margin-bottom: 3px;
}

/* Voice Sample PC */
@media screen and (min-width: 769px) {
    .voiceSample{
        margin-top: 96px;
        padding: var(--contentPaddingPC);
        padding-top: 20px;
        overflow: hidden;
    }
    
    .audio{
        display: flex;
        justify-content: center;
        gap: 100px;
    }

    .audio__item{
        margin: 60px 0 0 0;
    }
    
    .audio__item p{
        font-size: 2rem;
    }
    
    .induction{
        margin-top: 40px;
        font-size: 2.4rem;
        width: 203px;
    }
}/* 769px PC */

/* ======================================
works
=========================================*/

.works{
    padding: var(--contentPaddingSP);
    margin-top: 80px;
    padding-top: 12px;
}

.skill{
    margin-top: 32px;
    padding: 0 0 32px;
    display: flex;
    gap: 8px 10px;
    flex-wrap: wrap;
}

.skill.skill--group{
    position: relative;
}

.skill.skill--group::after{
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--primary-lineGray);
    position: absolute;
    bottom: 0;
}

.skill__item{
    padding: 2px 6px;
    border-radius: 22px;
    border: 1px solid #000;
    font-size: 1.8rem;
    font-family: 'Tinos', serif;
    line-height: 1.2;
}

.swiper-container {
    overflow: visible;
}

.swiper{
    margin-top: 26px;
    overflow: visible;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
    width: 100vw;
    max-width: 100%;
    height: 450px;
    position: relative;
}

.swiper-wrapper{
    height: 100%;
    overflow: visible !important;
    margin-left: 12%;
}

.swiper-slide{
    width: 302px;
}

.swiper-slide__box{
    width: 100%;
    display: block;
    height: auto;
    padding: 24px;
    border-radius: 20px;
    background-color: var(--primary-white);
    text-align: center;
}

.swiper-slide__box:hover{
    background-color: var(--primary-lineGray);
}

.swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    background: transparent;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #000;
}

.thumb{
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
}

.workInfo__title{
    font-size: 2rem;
    font-family: 'Tinos', serif;
    margin-top: 12px;
    text-align: left;

}

.skill.skill--workInfo{
    margin-top: 12px;
    padding: 0;
}

.induction--works{
    margin-top: 63px;
}

/* Works PC */
@media screen and (min-width: 769px) {
    .works{
        padding: var(--contentPaddingPC);
        margin-top: 80px;
        padding-top: 12px;
    }

    .skill{
        margin-top: 40px;
        padding: 0 0 40px;
        gap: 8px 24px;
    }

    .skill__item{
        font-size: 2.4rem;
    }

    .swiper{
        margin: 40px auto 0;
        overflow: visible;
        max-width: 1000px;
    }

    .swiper-slide{
        width: 605px;
        margin-right: 20px;
    }

    .swiper-slide__box{
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .thumb{
        flex: 1;
        width: 18%;
    }

    .workInfo__txt{
        flex: 1;
    }

    .workInfo__title{
        font-size: 2.6rem;
    }

    .swiper-pagination-bullet{
        width: 24px;
        height: 24px;
    }
    
}/* 769px PC */

/* ======================================
contact
=========================================*/

.contact{
    margin-top: 80px;
    padding: var(--contentPaddingSP);
    text-align: center;
}

.post__group{
    margin: 26px 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.instagram-media{
    box-sizing: border-box!important;
    max-width: 88vw!important;
    min-width: 0!important;
    width: 100%!important;
    height: 300px!important;
}

.instagram-media a div{
    display: none;
}

.contact__btn a{
    margin: 26px auto 0;
    font-size: 1.4rem;
    padding: 2px 6px;
    width: 149px;
    height: 28px;
    border-radius: 50px;
    border: 1px solid #000;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    background-color: var(--primary-white);
}

.contact__btn a:hover{
    background-color: var(--primary-lineGray);
}

.contact__btn svg{
    width: 19.5px;
    height: 19.5px;
    display: block;
}

/* Contact PC */
@media screen and (min-width: 769px) {
    .contact{
        margin-top: 96px;
    }

    .spBr{
        display: none;
    }

    .post__group{
        margin: 40px 0 auto;
        gap: 12px;
    }
    
    .instagram-media{
        max-width: 400vw!important;
    }

    .contact__btn a{
        margin: 40px auto 0;
        font-size: 2.4rem;
        padding: 12px;
        width: 280px;
        height: 72px;
        gap: 8px;
    }
    
    .contact__btn svg{
        width: 40px;
        height: 40px;
        display: block;
    }
}/* 769px PC */

/* ======================================
footer
=========================================*/

.footer{
    margin-top: 44px;
    position: relative;
    text-align: center;
    background-image: url(../image/footer.jpg)!important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 22px 8.5%;
    font-family: "EB Garamond", serif;
}

.footerNav__list{
    display: flex;
    padding: 0px 50px;
    justify-content: center;
    align-items: center;            
    align-content: center;
    gap: 12px 40px;
    flex-wrap: wrap;
    font-size: 1.6rem;
}

.footerNav__item.footerNav__item--contact a{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    padding-top: 5px;
}

.footerNav__item svg{
    width: 16px;
    margin-left: 3px;
    display: block;
}

.sitelogo.sitelogo__footer{
    margin-top: 28px;
}

.copyright{
    margin-top: 28px;
    font-size: 1.4rem;
}

/* footer PC */
@media screen and (min-width: 769px) {
    .footer{
        margin-top: 72px;
        padding: 48px 8.5% 32px;
        background-position: center;
    }
    
    .footerNav__list{
        padding: 0px 16px;
        gap: 64px;
        font-size: 3.6rem;
    }
    
    .footerNav__item svg{
        width: 38px;
        margin-left: 4px;
    }
    
    .sitelogo.sitelogo__footer{
        margin-top: 150px;
    }
    
    .copyright{
        margin-top: 150px;
        font-size: 2.4rem;
    }
    
}/* 769px PC */