
:root{
    --baseColor :#fbf7ef;
    --navColor :#FFFFFB;
    --mainFontColor :#3F260B;
    --pointFontColor :#FFA140;
    --titleFont : 'Yeseva One', cursive;
}

/* ↓フォント迷い中 */
/* font-family: 'Cabin Sketch', cursive; */

html{
    font-size: 62.5%;
}

body{
    background-color: var(--baseColor);
    font-family: serif;
    color: var(--mainFontColor);
}

a {
    text-decoration:none;
    color: var(--pointFontColor);
}

a:hover{
    opacity: 0.5;
}

h1{
    font-family: var(--titleFont);
    color: var(--pointFontColor);
}

h2{
    font-family: var(--titleFont);
    color: var(--pointFontColor);
}

h3{
    font-family: var(--titleFont);
    color: var(--pointFontColor);
}

/* ヘッダー */
.header{
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
}

.header__mainImg{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 80%;
    height: 80%;
}

.header__mainImg--backImg{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/header__img.jpg);
    background-color:rgba(242,233,223,0.2);
    background-blend-mode:lighten;
    background-size: cover;
    background-position: center;
    font-size: 24px;
    font-family: var(--titleFont);
    color: var(--pointFontColor);
    width: 100%;
    height: 100%;
}

.header__sideIcon{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	right: calc( 10% / 2 );
    transform: translateX(50%);
	bottom: 100px;
	width: 50px;
	height: auto;
}

.header__sideIcon--vertical{
    position: relative;
	writing-mode: vertical-rl;
	font-size: 20px;
    letter-spacing: 0.08em;
    padding-bottom:70px;
}

.header__sideIcon--vertical::after{
    position: absolute;
    bottom: 0px;
    right:50%;
	content: "";
	width: 1px;
	height: 64px;
	background: var(--mainFontColor);
}

.header__sideIcon--instagram img{
	width: 40px;
	height: auto;
	margin: 12px 0;
}

@media screen and (max-width: 991px) {
    .header__title{font-size: 40px;}
}

@media screen and (max-width: 767px) {
    .header__sideIcon{display: none;}
}

@media screen and (max-width: 575px) {
    .header{height: 100vh;}
    .header__title{font-size: 32px;width: 240px;}
    .header__mainImg--backImg{font-size: 18px;}
}   

/* グローバルナビ */
.nav{
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
	z-index: 100;
    background: var(--navColor);
    font-family: var(--titleFont);
	width: 100%;
    height: 80px;
}

.nav__pc{
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
}

.pcNavList{
    font-size: 2em;
    color: var(--pointFontColor);
}

@media screen and (max-width: 767px) {
    .pcNavList{font-size: 1.6em;}
}

@media screen and (max-width: 575px) {
    .nav{background-color: rgba(0,0,0,0);}
    .nav__pc{display: none;}
}

/*========= ハンバーガーメニュー ===============*/
.nav__sp{
    display: none;
    position: fixed;
    top: 0;
    z-index: 110; 
    opacity: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.nav__sp.panelactive{
    display: block;
    opacity: 1;
    animation-name:gnaviAnime;
    animation-duration:1s;
    animation-delay:.2s;
    animation-fill-mode:forwards;
    opacity:0;
    }
@keyframes gnaviAnime{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
}

/*ハンバーガーメニュー開いた後のレイアウト*/
.navSpInner{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.navSpInner__title{
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 2em;
    color: var(--pointFontColor);
}

.navSpInner__list{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3em;
    line-height: 3em;
    margin-top: 120px;
}

.navSpInner__list li a{
    color: var(--mainFontColor);
}

.navSpSns{
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    line-height: 12px;
    text-align: center;
    width: 180px;
    margin: 40px auto;
}

.navSpSns__list{
    color: var(--mainFontColor);
}

.navSpSns__list img{
    width: 56px;
}

.navSpInner--close{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2em;
    color: var(--pointFontColor);
}

.navSpInner--close::after{
    content: "×";
}

@media screen and (max-width: 575px) {
    .navSpInner__list{line-height: 2em;}
}

/* グローバルナビ以下はhiddenを設定 */
.hidden{
	overflow: hidden;
    max-width: 1366px;
	margin: 0 auto;
}

/* profile＝＝プロフィール */
.section{
    position: relative;
    width: 100%;
    margin-top: 200px;
    padding-top: 156px;
}

.section__title--right{
    position: absolute;
    top: 80px;
    right: 40px;
    font-size: 96px;
}

.section__title--left{
    position: absolute;
    top: 80px;
    left: 40px;
    font-size: 96px;
}

.section__profile{
    position: relative;
    line-height: 2em;
    width: 1024px;
    margin: 0 auto;
}

.mainProfile{
    position: relative;
    display: flex;
    justify-content: end;
    align-items: flex-end;
    height: 320px;  
    margin-bottom: 96px;
}

.faceImg{
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-right: 24px;
    z-index: -10;
}

.aboutMe{
    width: 50%;
    font-size: 1.5em;
    line-height: 2em;
}

.aboutMe__inner{
    margin-top: 15px;
}

.secondryProfile{
    display: flex;
    justify-content: space-around;
    margin-bottom: 96px;
}

.summaryMine{
    width: 320px;
    font-size: 1.2em;
}

.summaryMine__title{
    font-size: 1.5em;
    margin: 0.8em 0;
}

.skill{
    position: relative;
    border: solid 1px #FFA140;
    width: 70.3%;
    height: auto;
    margin: 0 auto;
}

.skill__title{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 4em;
}

.skill__list{
    width: 42%;
    margin: 16px 0;
}

.skill__list--graph{
    font-size: 1.2em;
    padding: 5px;
    margin-left: 16px;
}

.a{ background: linear-gradient(90deg,  var(--pointFontColor) 0%, var(--pointFontColor) 90%,#d6cec4 90%,#d6cec4 100%); padding-left: 16px;}
.b{ background: linear-gradient(90deg,  var(--pointFontColor) 0%, var(--pointFontColor) 70%,#d6cec4 70%,#d6cec4 100%); padding-left: 16px;}
.c{ background: linear-gradient(90deg,  var(--pointFontColor) 0%, var(--pointFontColor) 75%,#d6cec4 75%,#d6cec4 100%); padding-left: 16px;}
.d{ background: linear-gradient(90deg,  var(--pointFontColor) 0%, var(--pointFontColor) 90%,#d6cec4 90%,#d6cec4 100%); padding-left: 16px;}
.e{ background: linear-gradient(90deg,  var(--pointFontColor) 0%, var(--pointFontColor) 80%,#d6cec4 80%,#d6cec4 100%); padding-left: 16px;}
.f{ background: linear-gradient(90deg,  var(--pointFontColor) 0%, var(--pointFontColor) 10%,#d6cec4 10%,#d6cec4 100%); padding-left: 16px;}
.g{ background: linear-gradient(90deg,  var(--pointFontColor) 0%, var(--pointFontColor) 30%,#d6cec4 30%,#d6cec4 100%); padding-left: 16px;}
.h{ background: linear-gradient(90deg,  var(--pointFontColor) 0%, var(--pointFontColor) 10%,#d6cec4 10%,#d6cec4 100%); padding-left: 16px;}
.i{ background: linear-gradient(90deg,  var(--pointFontColor) 0%, var(--pointFontColor) 60%,#d6cec4 60%,#d6cec4 100%); padding-left: 16px;}
.j{ background: linear-gradient(90deg,  var(--pointFontColor) 0%, var(--pointFontColor) 60%,#d6cec4 60%,#d6cec4 100%); padding-left: 16px;}

.skill__comment{
    position: absolute;
    top: 50%;
    right: 15%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1023px) {
    .section__profile{width: 100%;}
}

@media screen and (max-width: 767px) {
    .section__title--right{right: 0;}
    .section__title--left{left: 0;}
    .section__profile{width: 320px;}
    .mainProfile{justify-content: center;height: auto;}
    .faceImg{top: -10px;right: unset;width:100vw;margin: 0;}
    .faceImg__movie{object-fit: cover;width: 100vw;height: 200px;}
    .aboutMe{width: 100%;margin-top: 240px;}
    .aboutMe__inner{font-size: 0.78em;}
    .secondryProfile{flex-direction: column;}
    .summaryMine{width: 100%;font-size: 1.2em;}
    .summaryMine:first-child{margin-bottom: 32px;}
    .summaryMine__title{margin-bottom: 1em;}
    .skill{width: 100%;}
    .skill__title{top: 32px;}
    .skill__list{width: 90%;margin: 80px auto 12px;}
    .skill__list--graph{margin-left: 0;}
    .skill__comment{top: 53px;left: 50%;right: unset;transform: translateX(-50%);}
}

@media screen and (max-width: 575px) {
    .section{margin-top: 100px;}
    .section__title--right{font-size: 100px;}
    .section__title--left{font-size: 100px;}
    .faceImg{top: -40px;}
    .aboutMe{margin-top: 180px;}
}

/* works==トレース・作成作品 */
.worksTitle{
    font-size: 1.8em;
    text-align: center;
    padding-top: 64px;
}

.worksList{
    margin-top: 40px;
}

.items{
    display: flex;
    flex-direction: column;
    font-size: 1.2em;
    margin: 0 40px;
}

.items__title{
    order: 0;
    line-height: 3em;
    padding-left: calc((100% - 200px)/2);
}

.items__link{
    order: -1;
}

.items__link a img{
    width: 200px;
    height: 100%;
    margin: 0 auto;
}

.items__lead{
    order: 1;
    line-height: 1.3em;
    width: 200px;
}

.items__lead ul li{
    padding-left: 1.3em;
    text-indent: -1.3em;
}

.items__lead ul li::before{
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--mainFontColor);
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0.3em;
}

.worksList--imgOnly{
    display: flex;  
    justify-content: space-around;
    margin-top: 40px;
}

.items__banner img{
    width: 150px;
}

.worksList--other{
    display: flex;
    justify-content: space-around;
    font-size: 1.2em;
    margin: 40px auto 0;
    width: 400px;
}

.items--other{
    display: flex;
    flex-direction: column;
    line-height: 2em;
}

.items__title--other{
    order: 0;
}

.items__link--other{
    order: -1;
}

.items__link--other a img{
    width: 150px;
}

@media screen and (max-width: 767px) {
    .worksList--imgOnly{display: block;}
    .items__banner{margin: 0 20px;}
}

@media screen and (max-width: 575px) {
    .worksList--other{display: block;width: 100%;}
    .items--other{margin: 0 20px;}
}


/* photograph==趣味・撮影作品 */
.section__summary{
    font-size: 1.5em;
    text-align: center;
    padding-top: 64px;
    margin-bottom: 104px;
}

.photoWrapper{
    width: 74%;
    margin: 0 auto;
    font-size: 1.3em;
    line-height: 3em;
}

.photoTitle:nth-of-type(even){
    text-align: end;
}

.photoList{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.photoList__img img{
    width: 120px;
}

@media screen and (max-width: 810px) {
    .section__summary{margin-bottom: 64px;}
    .photoList__img img{width: 100px;}
}

@media screen and (max-width: 674px) {
    .section__summary{font-size: 1.2em;}
    .photoWrapper{width: 100%;}
    .photoTitle{font-size: 0.8em;}
    .photoList__img img{width: 80px;}
}

@media screen and (min-width:320px) and ( max-width:400px){
    .photoList{justify-content: flex-start;}
    .photoList:nth-of-type(even){justify-content: flex-end;}
}

/* スライドショーのボタンのデザイン変更 */
.flickity-button{
    background: rgba(242,233,223,0.7);
    color: var(--pointFontColor);
    width: 30px;
    height: 30px ;
}

/* contact==お問い合わせ */
.contactWrapper{
    max-width: 420px;
    margin: 0 auto 120px;
}

.formLabel{
    font-size: 1.5em;
    letter-spacing: 0.05em;
    padding: 12px 0;
}
  
.formLabel__input{
    border: none;
    border-radius: 6px;
	box-sizing: border-box;
    background-color: var(--navColor);
    font-size: 16px;
    width: 100%;
    height: 48px;
    margin-bottom: 24px;
}

.formLabel__input::placeholder{
    color: #ead6c0;
    padding-left: 5px;
}

.formLabel__input:focus{
    border: solid 1px var(--pointFontColor);
}

.formLabel--Textarea:focus{
    border: solid 1px var(--pointFontColor);
}

.formBtn{
    display: block;
    border: solid 2px var(--pointFontColor);
    border-radius: 6px;
    background-color: var(--pointFontColor);
    box-shadow:  2px 2px 4px burlywood;
    font-family: serif;
    color: var(--navColor);
    font-size: 1.5em;
    width: 180px;
    margin: 0 auto;
    padding: 12px 0;
}

.formBtn:hover{
    color: var(--mainFontColor);
    background-color: var(--navColor);
}

.formBtn:active{
    transform: translateY(2px);
    box-shadow: none;
}

@media screen and (max-width: 575px) {
    .contactWrapper{width: 90%;}
}


/* フッター */
footer{
	display: flex;
	align-items:center; 
    height: calc(100vh - 80px);
}

footer .section{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	margin-top: -80px;
    padding-top: 80px;
}

.footer__img{
    opacity: 0.7;
    width: 200px;
    height: 200px;
}

.footer__msg{
    font-size: 2em;
    font-family: var(--titleFont);
    color: var(--pointFontColor);
    padding: 24px 0 32px;
}

@media screen and (max-width: 575px) {
    .footer{height: 100vh;}
    .footer__msg{font-size: 1.5em;}
    .footer__text{width: 80%;}
    .footer__text br{display: none;}
}

.formLabel--Textarea{
    border: none;
    border-radius: 6px;
    background-color: var(--navColor);
    font-size: 13px;
    width: 100%;
    height: 216px;
    margin-bottom: 24px;
}
