/* ---------- 共通部分 ------------- */

html{
    font-size: 100%;
    scroll-behavior: smooth;

}
body{
    color: #544C40;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.7;
    position: relative;
}
a{
    text-decoration: none;
    color: #544C40;
}
img{
    max-width: 100%;
}
p{
    color: #544C40;
}
/* 数字 */
.font_number{
    font-family: "Open Sans", sans-serif;
}

/* 見出しとかの英語 */
.font_cormorant {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    color: #544C40;
}

/* フェードアップ */
.fadeup_anime{
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
  }
   
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
        transform: translateY(100px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }






/* ---------- トップページ ------------- */
.home_content{
    display: flex;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
}
.home_content .flex_left{
    background: #EAE6E1;
    width: 50%;
}
.home_content .flex_right{
    background: #E4C1B5;
    width: 50%;
}
.home_content .flex_left a , .home_content .flex_right a{
    display: block;
    width: 100%;
    height: 100vh;
    text-align: center;
}
.home_content .flex_left a:hover , 
.home_content .flex_right a:hover{
    opacity: 0.5;
    background-color: #fff;
}
.home_content .link_txt{
    font-size: 1.5rem;
    position: absolute;
    bottom: 12.5vh;
    display: block;
    width: 50%;
    opacity: 1;
}
h1{
    position: absolute;
    top: 20vh;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 10px;
    font-size: 3rem;
    font-weight: normal;
}
#home .center_box{
    /* background: #fff; */
    background-image: url(../img/top/top_img.jpg);
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30vh;
    height: 40vh;
    margin-left: -15vh;
    margin-top: -20vh;
    text-align: center;
    border-radius: 200px 200px 0 0;
}
#home .center_box::after{
    content: '';
    background-image: url(../img/top/top_circle.png);
    position: absolute;
    right: -45%;
    bottom: -20%;
    background-size: contain;
    display: block;
    width: 200px;
    height: 200px;
    animation: rotateCircle 20s linear infinite;
}
@keyframes rotateCircle{
    0%{
        transform: rotate(0)
    }
    100%{
        transform: rotate(360deg);
    }
}


/* ------------ header -------------- */
header{
    margin-top: 30px;
}

/* ------------ ナビ -------------- */
.nav_pc ul{
    display: flex;
    list-style-type: none;
}
.nav_pc ul li{
    margin: 0 20px ;
}
.nav_pc ul a:hover{
    opacity: 0.7;
}


/* ------------ ハンバーガーメニュー -------------- */
.menu_btn{
    position: fixed;
    top: -27px;
    right: -22px;
    display: flex;
    height: 120px;
    width: 120px;
    justify-content: center;
    align-items: center;
    z-index: 100;
    border-radius: 50%;
}
.menu_btn span,
.menu_btn span::before,
.menu_btn span::after {
    content: '';
    display: block;
    height: 1px;
    width: 20px;
    background: #544C40;
    position: absolute;
    transition: all 0.5s;
}
/* ↑の位置から8pxずらして３本線をつくる */
.menu_btn span::before{
    bottom: 8px;
}
.menu_btn span::after{
    top: 8px;
}

/* ↓　クリック後　↓ */

#menu_btn_check:checked ~ .menu_btn span {
    background-color: #ffffff00;
    /*メニューオープン時　三本線の真ん中の線を透明にする*/
}
#menu_btn_check:checked ~ .btn_bg1 span::before {
    bottom: 0;
    background: #fff;
    transform: rotate(45deg);
}
#menu_btn_check:checked ~ .btn_bg1 span::after {
    top: 0;
    background: #fff;
    transform: rotate(-45deg);
}
/* 色違い↓ */
#menu_btn_check:checked ~ .btn_bg2 span::before {
    bottom: 0;
    background: #544C40;
    transform: rotate(45deg);
}
#menu_btn_check:checked ~ .btn_bg2 span::after {
    top: 0;
    background: #544C40;
    transform: rotate(-45deg);
}
#menu_btn_check{
    display: none;
}
/* メニュー内 */
.nmenu_content {
    width: 100%;
    height: 100vh;
    position: fixed; /* メニューの固定 */
    top: 0;
    left: 100%;
    z-index: 80;
    transition: all 0.5s;
}
.nmenu_content ul{
    position: absolute;
    top: 30%;
    left: 15%;
    list-style-type: none;
}
.nmenu_content li{
    margin: 30px 0;
    padding-bottom: 30px;
    width: 200px;
}
.nmenu_content ul li a {
    display: block;
    width: 100%;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.05rem;
}
.nmenu_content ul li a:hover{
    opacity: 0.7;
}
.nmenu_content li:nth-child(1),.nmenu_content li:nth-child(2){
    background-size: 20px 1px;
    background-repeat: repeat-x; 
    background-position: left bottom;
   }

/* クリックしたらメニュー全体を左へ */
#menu_btn_check:checked ~ .nmenu_content {
    left: 0;/*メニューを画面内へ*/
}

/* aboutとworkの色違い */
/* .btn_bg1{
    border:1px solid #EAE6E1;
} */
.btn_bg1 , .nmenu_bg1 , .nmenu_bg1 ul li a{
    background: #E4C1B5;
    color:#ffffff;
}
/* .btn_bg2{
    border:1px solid #E4C1B5;
} */
.btn_bg2 , .nmenu_bg2 , .nmenu_bg2 ul li a{
    background: #EAE6E1;
    color:#544C40;
}
.nmenu_bg1 li:nth-child(1),.nmenu_bg1 li:nth-child(2){
    background-image : linear-gradient(to right, #fff 10px, transparent 10px);
}
.nmenu_bg2 li:nth-child(1),.nmenu_bg2 li:nth-child(2){
    background-image : linear-gradient(to right, #544C40 10px, transparent 10px);
}



/* ----------- footer -------------- */
footer{
    position: relative;
    width: 280px;
    height: 280px;
    margin-left: 50px;
    background: #544C40;
    border-radius: 50% 50% 0 0;
    text-align: center;
}
footer ul{
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translateY(-50%) translateX(-50%);
}
footer li{
    padding: 3px 0;
    list-style: none;
}
footer li a{
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.05rem;
}
footer li a:hover{
    opacity: 0.5;
}
.copyright{
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%);
    margin-bottom: 5px;
    color: #fff;
    font-weight: 100;
    text-transform: lowercase;
}

/* ----------- page top -------------- */
.page_top{
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2;
    letter-spacing: 0.1rem;
    background-color: #544C40;
    transition: 0.3s;
    margin: auto;
}
.page_top:hover{
    transform: translateY(-5px);
}
.page_top a{
    display: grid;
    width: 100%;
    height: 100%;
}
.page_top p{
    color: #fff;
    font-weight: 400;
}
.arrow{
    width: 1px;
    height: 45px;
    margin: auto auto 10px;
    line-height: 1;
    position: relative;
    background: #fff;
}
.arrow::before {
    content: "";
    width: 10px;
    border: 1px solid #fff;
    position: absolute;
    box-sizing: border-box;
    border-right: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top left;
    top: 0;
    left: 1px;
}

/* ----------- スクロールのやつ -------------- */

/*スクロールダウン全体の場所*/
.scrolldown{
	position:absolute;
	left:3%;
    top:85vh;
    /*全体の高さ*/
	height:100px;
}

/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -50px;
    /*テキストの形*/
	color: #544C40;
	font-size: 1.2rem;
    font-family: "Cormorant Garamond", serif;
	letter-spacing: 0.05em;
    writing-mode: vertical-rl;
}

/* 線の描写 */
.scrolldown::after{
	content: "";
	position: absolute;
	top: 0;
    margin-top: 10px;
    /*線の形*/
	width: 1px;
	height: 100px;
	background: #544C40;
	animation: pathmove 1.7s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:50px;
		opacity: 1;
	}
	100%{
		height:0;
		top:100px;
		opacity: 0;
	}
}


/* ---------- 共通 ------------- */
.wrapper{
    width: 1200px;
    margin: 0 auto;
}
h2{
    font-size: 9rem;
    width: fit-content;
    line-height: 1;
    opacity: 0.8;
    /* 点線の設定↓ */
    background-image : linear-gradient(to right, #544c40 10px, transparent 10px);
    background-size: 20px 1px;
    background-repeat: repeat-x; 
    background-position: left bottom;
}
h3{
    font-size: 1rem;
    margin: 20px 10px;
}
.content_inner{
    padding-top: 100px;
    padding-bottom: 200px;
}
.bg_pk{
    background-color: #E4C1B5;
}

/* ---------- #about ------------- */
#about{
    background-color: #EAE6E1;
}
#about .ttl_right h2{
    margin-right: 0;
    margin-left: auto;
}
#about .ttl_right h3{
    text-align: right;
}



/* about */
.about .profile{
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}
.profile img{
    width: 400px;
    margin-top: -100px;
    border: #fff 5px solid;
    border-radius: 50% 50% 0 0;
    box-shadow: 26px 20px 0px 0px #fff;
}
.profile .prof_img{
    position: relative;
}
.profile .prof_img::after{
    content: '';
    background-image: url(../img/about/about_circle.png);
    position: absolute;
    right: -23%;
    bottom: -20%;
    background-size: contain;
    display: block;
    width: 200px;
    height: 200px;
    animation: rotateCircle 20s linear infinite;
}
@keyframes rotateCircle{
    0%{
        transform: rotate(0)
    }
    100%{
        transform: rotate(360deg);
    }
}
.profile .prof_txt{
    font-size: 0.9rem;
    margin-left: 150px;
}
.profile .prof_txt p{
    margin-top: 35px;
    font-weight: 400;
}
.profile .prof_txt .name{
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 500;
}

/* skills */
.skills .skills_inner{
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding-top: 100px;
}
.skills .skills_inner img{
    width: 110px;
    height: 110px;
}
.skill_item{
    width: 340px;
    padding: 0 20px;
}
.skill_item h4{
    margin: 30px 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
}
.skill_item .tool{
    min-height: 80px;
}
.skill_item .txt{
    font-size: 0.9rem;
    text-align: left;
}

/* experience */
.timeline {
    list-style: none;
    margin-top: 50px;
}
.timeline > li {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    position: relative;
}
.timeline_date {
    width: 110px;
    font-family: "Forum", serif;
    font-weight: 500;
    letter-spacing: 0.1rem;
    padding: 30px 40px 30px 0;
}
.timeline_content {
    width: 75%;
    padding: 30px 0 30px 60px;
    font-weight: 400;
    border-left: 1px #544C40 solid;
}
.timeline_content:before {
    content: '';
    width: 16px;
    height: 16px;
    background: #E4C1B5;
    position: absolute;
    left: 293px;
    top: 35px;
    border-radius: 100%;
    border: 1px #fff solid;
}


/* ---------- #works ------------- */
#works{
    background-color: #E4C1B5;
}
.works{
    margin: 100px 0;
}
.work_category{
    display: flex;
    justify-content: center;
    height: 100px;
    margin: 50px 0 70px;
    text-align: center;
}
.work_category a{
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 20px; 
    background-color: #fff;
    border-radius: 50%;
    line-height: 100px;
    width: 100px;
    height: 100px;
    padding: 0;
    transition: .2s;
}
.work_category a:hover{
    transform: translateY(-5px);
    color: #E4C1B5;
}
.work_list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 70px 0;
}
.work_list li{
    list-style:none;
}
.work_list .cate{
    font-size: 0.9rem;
}
.work_list .ttl{
    margin-bottom: 1rem;
    font-weight: bold;
}
.work_list img{
    width: 400px;
}
.work_list a{
    transition: 0.2s;
}
.work_list a:hover{
    opacity: 0.6;
}


/* ---------- 作品集　共通 ------------- */
h5{
    font-size: 1.2rem;
    width: fit-content;
    margin: 70px auto 40px;
}
.works_content .top_img{
    width: 60%;
    margin: 0 auto;
}
.works_content .works_detail{
    width: 90%;
    margin: 100px 0 100px auto;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 50px 0px;
}
.works_detail dt{
    text-align: center;
    position: relative;
    font-weight: bold;
}
.works_detail dt::after{
    content: '';
    width: 130px;
    height: 15px;
    position: absolute;
    top: 1rem; 
    left: 50%; 
    transform: translateX(-50%);
    background-color: #E4C1B5;
    border-radius: 2px;
    z-index: -100;
}
.works_detail a{
    text-decoration: underline;
}
.works_detail a:hover{
    opacity: 0.7;
}
.works_process{
    width: 90%;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
}
.works_process .ttl{
    margin-bottom: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    border-bottom: 1px #E4C1B5 solid;
}
.works_process .txt{
    width: 85%;
    margin: 50px auto 100px;
    text-align: left;
}
.works_process .img_edit img{
    width: 800px;
}
.works_process .colorfont img{
    width: 430px;
}

/* 下部の作品一覧 */
.works_foot{
    margin-top: 100px;
    padding-top: 50px;
}
h6{
    font-size: 4.5rem;
    width: fit-content;
    line-height: 1;
    opacity: 0.8;
    /* 点線の設定↓ */
    background-image : linear-gradient(to right, #544c40 10px, transparent 10px);
    background-size: 20px 1px;
    background-repeat: repeat-x; 
    background-position: left bottom;
}
.works_foot .work_list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    gap: 50px;
    margin: 50px 0 100px;
}
.works_foot .work_list img{
    width: 300px;
}




/* アイドル　チラシ */
.works_process .idol_create img{
    width: 500px;
    box-shadow: 6px 6px 10px 0px #544c4013;}
.works_process .logo_create img{
    width: 200px;
    margin-right: 30px;
}

/* youtube */
.works_process iframe{
    width: 704px;
    height: 396px;
}









/* PC版 ★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆ */

@media(min-width:769px){
}

/* モバイル版 ★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆ */

@media (max-width:768px){

    html{
        font-size: 0.9rem    
    }
.nav_pc{
    display: none;
}
.menu_btn{
    right: -10px;
    height: 100px;
    width: 100px;
}

/*----------- top --------------- */
h1{
    top: 20svh;
}
.home_content .flex_left a , .home_content .flex_right a{
    height: 100svh;
}
.home_content {
    height: 100svh;
}
.home_content .link_txt{
    font-size: 1.2rem;
    /* bottom: 17.5vh; */
}
#home .center_box{
    width: 26svh;
    height: 36svh;
    margin-left: -13svh;
    margin-top: -18svh;
}
#home .center_box::after{
    right: -34%;
    bottom: -14%;
    width: 140px;
    height: 140px;
}

/* ----------- footer -------------- */
footer{
    height: 3rem;
    margin: 0 auto;
    background: none;
}
footer ul{
display: none;
}
.copyright{
    color: #544C40;
}
.page_top{
    position: static;
}

/* ---------- 共通 ------------- */
.wrapper{
    width: 90%;
}
h2{
    font-size: 3.5rem;
}
h3{
    font-size: 1rem;
    margin: 20px 10px;
}
.content_inner{
    padding-top: 50px;
    padding-bottom: 100px;
}
.scrolldown{
    display: none;
}
/* about */
.about .profile{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.profile img{
    width: 200px;
    margin-top: 0px;
}
.profile .prof_img{
    position: relative;
    margin: 0 auto;
}
.profile .prof_img::after{
    content: '';
    right: -48%;
    bottom: -28%;
    width: 150px;
    height: 150px;
}
.profile .prof_txt{
    margin: 0px 10px;
}

/* skills */
.skills .skills_inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 30px;
}
.skill_item{
    width: 100%;
    padding: 0 10px 50px;
}
.skill_item h4{
    margin: 20px 0;
    font-size: 1rem;
}
.skill_item .tool{
    min-height: 0px;
    margin-bottom: 1rem;
}


/* experience */
.timeline {
    list-style: none;
    margin-top: 50px;
}
.timeline > li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}
.timeline li{
    width: 90%;
    margin: 0 auto 30px;
}
.timeline_date {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 0 1rem;
}
.timeline_content {
    width: 100%;
    padding: 0 0 0 10px;
    font-weight: 400;
    border-left: none;
}
.timeline_content:before {
    display: none;
}

/* ---------- #works ------------- */
.work_category{
    display: flex;
    justify-content: center;
    height: 100%;
    margin: 50px 0;
    text-align: center;
}
.work_category a{
    font-size: 1rem;
    font-weight: bold;
    margin: 0; 
    background: none;
    line-height: 0px;
    width: 100%;
    height: 100%;
    padding: 0;
}
.work_category a:hover{
    transform: translateY(-5px);
    color: #E4C1B5;
}
.work_list{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
}
.work_list li{
    width: 85%;
    margin: 0 auto 50px;
}
.work_list img{
    width: 100%;
}

/* ---------- 作品集　共通 ------------- */
h5{
    font-size: 1.1rem;
    margin: 100px auto 40px;
}
.works_content .top_img{
    width: 95%;
}
.works_content .works_detail{
    width: 85%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.works_detail dt{
    text-align: left;
    position: relative;
    font-weight: bold;
}
.works_detail dt::after{
    content: '';
    width: 50%;
    height: 15px;
    position: absolute;
    top: 1rem; 
    left: 0; 
}
.works_detail dd{
    margin-bottom: 50px;
    letter-spacing: 0.1rem;
}
.works_process{
    width: 100%;
    padding: 50px 10px;
}
.works_process .txt{
    width: 90%;
    letter-spacing: 0.1rem;
}
.works_process .img_edit img{
    width: 100%;
}
.works_process .colorfont img{
    width: 100%;
}

/* 下部の作品一覧 */
h6{
    font-size: 2rem;
}
.works_foot .work_category{
    display: none;
}
.works_foot .work_list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-content: end;
    gap: 5px;
    margin: 50px 0 100px;
    font-size: 0.9rem;
}
.works_foot .work_list .ttl{
    height: 2rem;
}
.works_foot .work_list img{
    width: 100%;
    margin-top: 1rem;
}

/* アイドル　チラシ */
.works_process .idol_create img{
    width: 100%;
}
.works_process .logo_create img{
    width: 200px;
    margin: 0 auto 20px;
}

/* youtube */
.works_process iframe{
    width: 100%;
    height: 100%;
}











}