@charset "UTF-8";

/*共通部分*/

html{
    font-size: 100%;/*ユーザーの設定した文字サイズを反映*/
}

body{
    font-family:"Noto Serif JP", sans-serif;
    font-style: medium;
    background-color: #000;
    color: #fff;
}

.stalker {
  background-color: rgba(255, 123, 200, 0.25); /* 本体も少し濃いめに */
  border-radius: 50%; 
  height: 15px;
  width: 15px;
  left: -7px;
  top: -7px;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: transform .15s ease-out;
  z-index: 999;

  /* ネオン風に光を強める（複数のシャドウを重ねる） */
  box-shadow: 
    0 0 20px rgba(255, 123, 200, 0.9),
    0 0 40px rgba(255, 123, 200, 0.8),
    0 0 80px rgba(255, 123, 200, 0.7),
    0 0 120px rgba(255, 123, 200, 0.6),
    0 0 180px rgba(255, 123, 200, 0.5);
}

/* display: flex;
/* justify-content: center;    横方向の中央揃え */
/* align-items: center;       縦方向の中央揃え */

.name-nen{
    display: flex;
    gap: 1rem;
    margin: 3rem;
    font-family:"Abril Fatface";
    font-weight: normal;
}
.name-nen a{
    color: #fff;
    text-decoration: none;
}
.name-nen div{
    display: flex;
    justify-content: flex-start;
}

.nen{
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* hbgメニュー */
.hbg-menu{
    display: flex;
    position: fixed;/*画面の特定の位置に固定される*/
    top: 4rem;
    right: 4rem;
    z-index: 99;
    cursor: pointer;
}
.hbg-menu:hover{
    box-shadow: 0 0 15px 15px rgba(255, 255, 255, 0.3) inset, 0 0 10px 10px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    z-index: 999;
}
.navmenu{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-100%);/*上から出てくるよ*/
    transition: transform 0.3s ease; /*0.3秒かけてmenuだすよ！*/
    z-index: 100;

    border-bottom: 1px solid #fff;
}
.nav-moji{
    height: 100%;
    display: flex;
    justify-content: center; 
    align-items: center;
}
.nav-in{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}
.nav-1{
    list-style: none;
    font-family:"Abril Fatface";
    font-size:2rem;
    display: flex;
    flex-direction: column; /* これで縦並び */
    justify-content: space-around;
    text-align: center;
    gap: 1rem;
}
.nav-1 a{
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}
.nav-2{
    list-style: none;
    font-family:"Abril Fatface";
    font-size: clamp(10px, 2vw, 15px);/**************/
    
    display: flex;
    flex-direction: column; /* これで縦並び */
    justify-content: space-around;
    text-align: center;

    gap: 0.5rem;
} 
.nav-2 a{
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.line {
    width: 3rem;           /* 幅いっぱい */
    height: 1px;           /* 高さ1pxで線に見せる */
    background-color: #fff; /* 線の色 */
}

/* チェックボックス（最初は非表示 */
.menu-toggle{
    display: none;
}  
  /* チェックされたらメニュー表示 */
.menu-toggle:checked ~ .navmenu {
    transform: translateX(0);
}


/*top*/
.kasane{
    display: flex;
    justify-content: center;
    padding-left: 5rem;
    padding-right: 10rem;
    margin: 8rem 0rem 10rem;
}
.main{
    display: flex;
    justify-content: center;
    
    max-width: 80%;
    
    z-index: 50;
}
.main-gazou{
    width: 50%;
    height: auto;
    display: block; /* インライン画像の余白を消す */
}
.main-rogo{
    display: flex;
    align-items: center;
    
    position: relative;
}
.main-moji{
    width: 50%;

    font-family:"Abril Fatface";
    font-size: 7rem;
    line-height: 0.8;/*行間*/

}
.main-dia{
    max-width: 100%;
    z-index: 49;
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -40%);
}

/*suraido*/
.wrap {
  width: min(40vw, 800px);
  height: min(60vh, 450px);
  margin: 3vh 0 5vh 0;
  display: grid;
  place-items: center;
  /*background: #000;*/
  overflow: hidden;
}
#wrap:hover{
    background-color: rgba(255, 255, 255, 0.9);
}
#slideshow1 {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像の縦横比を保ったままフィット */
  display: block;
}
#slideshow2 {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像の縦横比を保ったままフィット */
  display: block;
}
#slideshow3 {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像の縦横比を保ったままフィット */
  display: block;
}
/**/

.slideshow-container {
  position: relative;
  width: 45vw;     /* 固定したい幅 */
  height: 60vh;    /* 固定したい高さ */
  overflow: hidden; /* 枠からはみ出した部分を隠す */
}
.slideshow-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← これが超重要！ */
  display: block;
}
.slideshow-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(000, 000, 000, 0.8); /* 通常時の明るめ白 */
  transition: background-color 0.3s ease; /* ホバー時の切り替えを滑らかに */
  z-index: 1; /* テキストより下にしたい場合は後で調整 */
}
/* ホバー時：白レイヤーを濃くする */
.slideshow-container:hover::before {
    background-color: rgba(255, 255, 255, 0.8);
}
.slideshow-container:hover .overlay-text {
  color: #000; /* ← ホバー時に黒文字に変更！ */
}
/* テキストを中央に配置 */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.5rem;
  z-index: 2;
  text-align: center;
  transition: opacity 0.3s ease;
  pointer-events: none; /* 文字がクリックを邪魔しないように */
}
/* ホバー時：文字を表示、画像を少し暗く */
.slideshow-container:hover img {
  opacity: 0.7; /* 少し暗く */
}

/**/
.yoshino{
    display: flex;
    flex-direction: column;
}
.ho-moji{
    color: #fff;
    padding: 0.5vw 1vw 0.5vw 1vw;
    position: relative;
    background-color: rgba(255, 255, 255, 0.3);

    font-size: clamp(1rem,1.5vw,15rem);
    
}
.ho-moji:hover{
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
}
.ho{
    padding-bottom: 0.5rem;
    position: relative;
}
.ho:hover{
    border-bottom: 1px solid #fff;
}
.ho-moji-kuro{
    padding-bottom: 0.5rem;
    position: relative;
}
.ho-moji-kuro:hover{
    border-bottom: 1px solid #000;
}






.portfolio-h1{
    color: #000;
    -webkit-text-stroke: 0.25px #fff;/*Chrome,Edge,Safariのみ*/
    text-shadow:/*Chrome,Edge,Safari以外の時影を4方向にずらして縁に見せる*/
    -0.25px -0.25px 0 #fff,
    0.25px -0.25px 0 #fff,
    -0.25px  0.25px 0 #fff,
    0.25px  0.25px 0 #fff;
    
    font-family:"Abril Fatface";
    font-weight: normal;
    font-size: 5rem;
    text-align: center;

    padding: 15rem 0rem;
    margin-top: 10rem;
}





#profile{
    display: flex;
    flex-direction: column;
}
.koumoku{
    display: flex;
    margin-bottom: 10vh;
}
.koumoku-migi{
    display: flex;
    justify-content: flex-end;
}
.item{
    width: 15vw;
    font-family:"Abril Fatface";
    font-weight: normal;
    display: flex;
    align-items: center;
}
.left{
    display: flex;
    justify-content: flex-end;
}

.name-birth{
    width: 50%;/*:*/

    display: flex;
    gap: 2rem;

    padding: 2rem 0 2rem 0;
    padding-left: 11vw;
    margin-left: 4vw;
    border-left: 1px solid #fff;/*:*/
}
.name0{
    display: flex;
    gap: 0.5rem 2rem;
    flex-wrap: wrap;
}
.rubi{
    font-size: 0.75rem;
    display: flex;
    justify-content: center;

}
.hinichi{
    display: flex;
    align-items: center;
    padding-top: 1rem;
}

.name-in{
    font-size: 1.5rem;
}
.activity{    
    width: 50%;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    padding: 2rem 0 2rem 0;
    padding-right: 11vw;
    margin-right: 4vw;
    border-right: 1px solid #fff;/****************/
}
.activity-in{
    margin-left: 1rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hosi{
    height: 1rem;
    margin-right: 0.5rem;
}
.syousai{
    font-size: 0.75rem;
    margin-left: 1rem;
}

.skill-in{
    width: 50%;/*:*/

    display: flex;
    flex-direction: row;
    gap: 1rem 7rem;/* 行間 列間*/
    flex-wrap: wrap;

    padding: 2rem 0 2rem 0;
    padding-left: 11vw;
    margin-left: 4vw;
    border-left: 1px solid #fff;/*:*/
}
.skill-in-hidari,
.skill-in-migi{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-ko{
    display: flex;
}
.icon{
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 1rem;
}
.dia{
    display: flex;
    margin-top: 0.5vw;
}
.sikaku{
    font-size: 0.75rem;
}

.design-setsu{    
    width: 50%;
    padding: 2rem 0 2rem 0;
    padding-right: 11vw;
    margin-right: 4vw;
    border-right: 1px solid #fff;/****************/
}

.mail{
    width: 50%;/*:*/

    padding: 2rem 0 2rem 0;
    padding-left: 11vw;
    margin-left: 4vw;
    border-left: 1px solid #fff;/*::*/
}





#works{
    display: flex;
    flex-direction: column;
    margin-bottom: 15rem;
}
.item0{
    width: 20vw;
    display: flex;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-left: 2vw;
}
.item-in{
    font-size: 0.75rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;

    padding: 2rem;
    padding-left: 4vw;
    margin-left: 4vw;
    border-left: 1px solid #fff;/*::*/
}
.setumei-in{
    display: flex;
    flex-direction: column;

    gap: 0.5rem;
    margin-left: 1rem;
}




.footer{
    display: flex;
    justify-content: space-between;

    color: #000;
    background-color: #fff;
    font-family:"Abril Fatface";
    font-weight: normal;

    position: relative;
}
.contact-bottom{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem;
}
.hbg-bottom{
    list-style: none;
    margin: 3rem;

    display: flex;
    flex-direction: column; /* 縦並びにする */
    align-items: flex-end;   /* li全体を右寄せ */
    gap: 1rem; 
}
.hbg-bottom a{
    text-decoration: none;
    color: #000;
    cursor: pointer;
}
.©{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}








/*works子ページ*/
.works-h1{
    color: #fff;
    
    font-family:"Abril Fatface";
    font-weight: normal;
    font-size: 5rem;
    text-align: center;

    padding: 15rem 0rem;
}
#lesson{
    display: flex;
    flex-direction: column;
    margin-bottom: 15rem;
}
.works-item0{
    font-size: 1.5rem;
    padding: 5rem 0rem;

    display: flex;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-left: 1.5vw;
}


.icon-in{
    width: 50%;
    display: flex;
}

.sitayose{
    display: flex;
    align-items: flex-end;
}
.item-in0{
    font-size: 1.5vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;

    padding: 2rem 0rem 2rem 2rem;
    padding-left: 4vw;
    margin-left: 4vw;
    border-left: 1px solid #fff;/*::*/
}

.works-icon{
    width: 3rem;
    height: 3rem;
}
.itu{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.works-hinichi{
    font-size: 1.5rem;
}
.sagyou{
    display: flex;
    gap: 1rem;
}
.imnrb{
    display: flex;
    gap: 0.5rem;
}
/* .sakuhin-in{
    width: 50%;
    padding: 2rem;
    padding-left: 4vw;
    margin-left: 4vw;

    display: flex;
    flex-direction: column;
    gap: 1rem;
} */
.sakuhin-ni{
    width: 50vw;
    background-color: #000;
    margin-left: 4vw;
}
.sakuhin-in{
    width: 50vw;
    height: 100vh;
    background-color: #000;
    margin-left: 4vw;
    /* 縦スクロールの設定 */
    overflow-y: scroll;
}
/* スクロールバー全体 */
::-webkit-scrollbar {
  width: 12px; /* 太さ */
}
/* スクロールバーのトラック（背景） */
::-webkit-scrollbar-track {
  /* background: rgba(255, 255, 255, 0.3); */
  background: #000;
  box-shadow:inset 1px 0 0 #fff;
  border-left:solid 6px #000;
}
/* スクロールバーのつまみ（スクロールする部分） */
::-webkit-scrollbar-thumb {
  background: rgba(255, 123, 200, 0.7);
  border-left:solid 6px #000;
}
.scroll{
    height: 3vh;
    transform: rotate(90deg);
    margin: 10vw 0 0 -3vh;
    color: rgba(255, 123, 200);
}

.kukan{
    margin: 2vw 0;
}


.saku-gazou1{
    width: 100%;
}
.saku-gazou2{
    width: 100%;
    display: flex;
    gap: 1rem;
}
.saku-gazou3{
    max-width: 100%;
    display: flex;
    gap: 1rem;
}
.mobile{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw;
}
.cafe2-tame{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    
}
.link{
    list-style: none;
    color: #fff;
    text-align: center;

    margin: 2vw 5vw 2vw 5vw;
}
.link a{
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}
.link a:hover{
    color: #000;
}
.miyasu{
    background: rgba(255, 255, 255, 0.9)
}
.momonga{
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    /* background: rgba(255, 255, 255, 0.3); */
}
.e{
    width: 15vw;
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
}



#other{
    display: flex;
    flex-direction: column;
    margin-bottom: 15rem;
}


#drawing{
    display: flex;
    flex-direction: column;
    margin-bottom: 15rem;
}



























@media screen and (max-width: 700px){

.hbg-menu{
    width: 2.3rem;
    height: 1rem;
}

.nav-1{
    font-size:6vw;
}

.kasane{
    padding-left: 3.5rem;
    padding-right: 7rem;
}
.main-moji{
    font-size: 16vw;
}

/**/
.itu{
    display: flex;
    flex-direction: column;
}
.sagyou{
    display: flex;
    flex-direction: column;
}

h1{
    font-size: 10vw;

    -webkit-text-stroke: 0.125px #fff;/*Chrome,Edge,Safariのみ*/
    text-shadow:/*Chrome,Edge,Safari以外の時影を4方向にずらして縁に見せる*/
    -0.25px -0.25px 0 #fff,
    0.25px -0.25px 0 #fff,
    -0.25px  0.25px 0 #fff,
    0.25px  0.25px 0 #fff;
    
}
.footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: #000;
    background-color: #fff;
    font-family:"Abril Fatface";
    font-weight: normal;

    position: relative;
}
.hbg-bottom{
    margin: 0rem 3rem 5rem 3rem;
}

.©{
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*サーバに挙げてから追加したやつ*/
.stalker{
    display: none;
}
.hbg-menu:hover{
    box-shadow: 0 0 15px 15px rgba(255, 255, 255, 0.3) inset, 0 0 10px 10px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    z-index: 999;
}
.slideshow-container {
  position: relative;
  width: 55vw;     /* 固定したい幅 */
  height: 30vh;    /* 固定したい高さ */
  overflow: hidden; /* 枠からはみ出した部分を隠す */
}

.sakuhin-ni{
    width: 60vw;
    background-color: #000;
    margin-left: 4vw;
}
.sakuhin-in{
    width: 60vw;
    height: 65vh;
    background-color: #000;
    margin-left: 4vw;
    /* 縦スクロールの設定 */
    overflow-y: scroll;
}
.icon-in{
    width: 60%;
    display: flex;
}
.item0{
    width: 15vw;
    display: flex;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-left: 2vw;
    font-size: 2.25vw;
}
.works-item0{
    font-size: 3.5vw;
    padding: 5rem 0rem;

    display: flex;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-left: 1.5vw;
}
.item-in0{
    font-size: 2vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;

    padding: 2rem 0rem 2rem 2rem;
    padding-left: 4vw;
    margin-left: 4vw;
    border-left: 1px solid #fff;/*::*/
}

}
