@charset "UTF-8";

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
PCサイズレスポンシブ*/
@media(min-width:960px) and (max-width:1200px){
/* 共通 */
body {
    min-width: 960px;
    max-width: 1200px;
    background-color: #F7EDDA;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.section-wrap {
    margin: 100px 0;
    width: 100%;
}

.container2 {
    margin-top: 40px;
}

a {
    text-decoration: none;
    color: #fff;
}

#tab__sp {
    display: none;
}

/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    right: 0;
    width: 20%;
    height: 50vh;
    /*ナビの高さ*/
    background: #99999990;
    /*動き*/
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

#top.LeftMove{
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
    from {
          opacity: 0;
          transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}
/*　右の動き　*/
  
#top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
  from {
      opacity: 1;
    transform: translateX(0);
  }
  to {
      opacity: 1;
    transform: translateX(100px);
  }
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 18%;
    height: 40vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}


/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    opacity: 0;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ヘッダー */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
}
.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
    font-family: 'Quicksand', sans-serif;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}

/* ==========
プロフィール
============= */
.letter {
    display: flex;
    justify-content: center;
}

.box-shadow img {
    width: 95%;
    box-shadow: 10px 10px 0px 0 #C89566;
    object-fit: scale-down;
}

.is-style-letter {
    position: relative;
    width: 50vw;
    padding-left: 2vw;
    font-size: 1.5vw;
}

.is-style-letter *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

タイピング
.typing {
    word-break: keep-all;
}

/*jsで生成されるspanタグ*/
.typing span{
    display: none;
}

@keyframes typingCursor {
  from {
    opacity:0;
  }
  to{
    opacity:1
  }
}

/* ==========
スキル
============= */
.skill__container {
    width: 100%;
    display: flex;
    position: relative;
}

.skill {
    background-color: #DAA095;
    width: 8%;
    height: 300px;
    z-index: 3;
}

.skill-ttl {
    transform: rotate(90deg);
    transform-origin: left top;
    font-size: 32px;
    position: absolute;
    top: -12%;
    left: 5%;
}

.skill-ttl a {
    position: relative;
    display: flex;
    width: 38vh;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.skill-pf {
    background-color: #fff;
    width: 85%;
    margin-top: 20px;
    position: absolute;
    top: 10px;
    left: 40px;
    padding: 3vw;
}

.text-en {
    color: #F7EDDA;
    font-size: 32px;
    font-family: 'Quicksand', sans-serif;
}
.text-c {
    color: #63534A;
    font-size: 32px;
}

.text-ja {
    color: #F7EDDA;
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* スキルアイコン */
/* グリッド */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-top: 6%;
}

.grid-item img {
    width: 60%;
}

.grid-icon {
    padding-top: 50px;
}

.skill-icon1 {
    margin-top: 0;
}

.skill-icon2 {
    padding-left: 5vw;
}

.box{
	opacity: 0;
}

/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* =================
好きなこと / Favorite
==================== */
.favorite {
    padding-top:  60px;
}

.favorite-ttl-detail {
    background-color: #DAA095;
    width: 350px;
    height: 50px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    margin-left: 10px;
}

.favorite-ttl {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    top: -15px;
    left: -25px;
}

.favorite-wrap {
    width: 100%;
    padding: 50px 0 30px 0;
}

.favorite-icon2 {
    padding-left: 7vw;
}

.favorite-icon2 .grid-item {
    text-align: center;
    margin-top: 0;
}

/* ==========
お問い合わせ
============= */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 10vw;
    font-family: 'Quicksand', sans-serif;
}

.contact-ja {
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* =================================-
フッター */
.footer {
    color: #000;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.footer-navi {
    display: flex;
    /* justify-content: center; */
    gap: 30px;
    margin-left: 10vw;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
}

.fmenu a {
    color: #000;
}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
PCサイズレスポンシブ*/
@media(min-width:1201px) {
/* 共通 */
body {
    min-width: 1201px;
    background-color: #F7EDDA;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.section-wrap {
    margin: 100px 0;
    width: 100%;
}

.container2 {
    margin-top: 40px;
}

a {
    text-decoration: none;
    color: #fff;
}

#tab__sp {
    display: none;
}

/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    right: 0;
    width: 20%;
    height: 50vh;
    /*ナビの高さ*/
    background: #99999990;
    /*動き*/
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

#top.LeftMove{
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
    from {
          opacity: 0;
          transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}
/*　右の動き　*/
  
#top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
  from {
      opacity: 1;
    transform: translateX(0);
  }
  to {
      opacity: 1;
    transform: translateX(100px);
  }
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 18%;
    height: 40vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}


/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    opacity: 0;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ヘッダー */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
}
.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
    font-family: 'Quicksand', sans-serif;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}

/* ==========
プロフィール
============= */
.letter {
    display: flex;
    justify-content: center;
}

.box-shadow img {
    width: 95%;
    box-shadow: 10px 10px 0px 0 #C89566;
    object-fit: scale-down;
}

.is-style-letter {
    position: relative;
    width: 50vw;
    padding-left: 2vw;
    font-size: 1.5vw;
}

.is-style-letter *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* タイピング */
.typing {
    word-break: keep-all;
}

/*jsで生成されるspanタグ*/
.typing span{
    display: none;
}

@keyframes typingCursor {
  from {
    opacity:0;
  }
  to{
    opacity:1
  }
}

/* ==========
スキル
============= */
.skill__container {
    width: 100%;
    display: flex;
    position: relative;
}

.skill {
    background-color: #DAA095;
    width: 5vw;
    height: 30vw;
    z-index: 3;
}
.skill-ttl {
    transform: rotate(90deg);
    transform-origin: left top;
    font-size: 4vw;
    position: absolute;
    top: -4vw;
    left: 3vw;
}

.skill-ttl a {
    position: relative;
    display: flex;
    width: 30vw;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.skill-pf {
    background-color: #fff;
    width: 85%;
    height: 30vw;
    margin-top: 20px;
    position: absolute;
    top: 10px;
    left: 40px;
    padding: 0px 0px 20px 100px;
}

.text-en {
    color: #F7EDDA;
    font-size: 32px;
    font-family: 'Quicksand', sans-serif;
}
.text-c {
    color: #63534A;
    font-size: 32px;
}

.text-ja {
    color: #F7EDDA;
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* スキルアイコン */
/* グリッド */
.grid {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-top: 6%;
}

.grid-item img {
    width: 60%;
}

.grid-icon {
    padding-top: 50px;
}
.skill-icon2 {
    padding-left: 100px;
}

.box{
	opacity: 0;
}

/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* =================
好きなこと / Favorite
==================== */
.favorite {
    padding-top:  60px;
}

.favorite-ttl-detail {
    background-color: #DAA095;
    width: 350px;
    height: 50px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    margin-left: 10px;
}

.favorite-ttl {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    top: -15px;
    left: -25px;
}

.favorite-wrap {
    width: 100%;
    margin-left: 10vw;
    padding: 50px 0 30px 0;
}

.favorite-icon2 {
    padding-left: 30px;
}

.favorite-icon2 .grid-item {
    text-align: center;
    margin-top: 0;
}



/* ==========
お問い合わせ
============= */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 10vw;
    font-family: 'Quicksand', sans-serif;
}

.contact-ja {
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* =================================-
フッター */
.footer {
    color: #000;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.footer-navi {
    display: flex;
    /* justify-content: center; */
    gap: 30px;
    margin-left: 10vw;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
}

.fmenu a {
    color: #000;
}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tabサイズレスポンシブ*/
@media(min-width:800px) and (max-width:959px) {
/* 共通 */
body {
    min-width: 630px;
    max-width: 959px;
    background-color: #F7EDDA;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.section-wrap {
    margin: 100px 0;
    width: 100%;
}

.container2 {
    margin-top: 40px;
}

a {
    text-decoration: none;
    color: #fff;
}

#tab__sp {
    display: none;
}

/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    right: 0;
    width: 20%;
    height: 50vh;
    /*ナビの高さ*/
    background: #99999990;
    /*動き*/
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

#top.LeftMove{
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
    from {
          opacity: 0;
          transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}
/*　右の動き　*/
  
#top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
  from {
      opacity: 1;
    transform: translateX(0);
  }
  to {
      opacity: 1;
    transform: translateX(100px);
  }
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 18%;
    height: 40vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}


/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    opacity: 0;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ===============-
ヘッダー
================= */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
}
.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
    font-family: 'Quicksand', sans-serif;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}

/* ==========
プロフィール
============= */
.letter {
    display: flex;
    justify-content: center;
}

.box-shadow img {
    width: 95%;
    box-shadow: 10px 10px 0px 0 #C89566;
    object-fit: scale-down;
}

.is-style-letter {
    position: relative;
    width: 50vw;
    padding-left: 2vw;
    font-size: 1.7vw;
}

.is-style-letter *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* タイピング */
.typing {
    word-break: keep-all;
}

/*jsで生成されるspanタグ*/
.typing span{
    display: none;
}

@keyframes typingCursor {
  from {
    opacity:0;
  }
  to{
    opacity:1
  }
}

/* ==========
スキル
============= */
.skill__container {
    width: 100%;
    display: flex;
    position: relative;
}

.skill {
    background-color: #DAA095;
    width: 8vw;
    height: 45vh;
    z-index: 3;
    justify-content: space-between;
}

.skill-ttl {
    transform: rotate(90deg);
    transform-origin: left top;
    font-size: 32px;
    position: absolute;
    top: -12%;
    left: 6%;
}

.skill-ttl a {
    position: relative;
    display: flex;
    width: 38vh;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.skill-pf {
    background-color: #fff;
    width: 85%;
    height: 48vh;
    margin-top: 5vh;
    position: absolute;
    left: 3vw;
    padding: 0 0 0 5vw;
}

.text-en {
    color: #F7EDDA;
    font-size: 32px;
    font-family: 'Quicksand', sans-serif;
}
.text-c {
    color: #63534A;
    font-size: 32px;
}

.text-ja {
    color: #F7EDDA;
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* スキルアイコン */
/* グリッド */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-top: 8vh;
}

.grid-item img {
    width: 60%;
}

.grid-icon {
    padding-top: 50px;
}
.skill-icon2 {
    padding-left: 10vw;
}

.box{
	opacity: 0;
}

/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* =================
好きなこと / Favorite
==================== */
.favorite {
    margin: 200px 0 100px 0;
}

.favorite-ttl-detail {
    background-color: #DAA095;
    width: 350px;
    height: 50px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    margin-left: 10px;
}

.favorite-ttl {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    top: -15px;
    left: -25px;
}

.favorite-wrap {
    width: 100%;
    padding: 50px 0 30px 0;
}


.favorite-icon2 {
    padding-left: 7vw;
}

.favorite-icon2 .grid-item {
    text-align: center;
    margin-top: 0;
}


/* ==========
お問い合わせ
============= */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 10vw;
    font-family: 'Quicksand', sans-serif;
}

.contact-ja {
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* =================================-
フッター */
.footer {
    color: #000;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.footer-navi {
    display: flex;
    /* justify-content: center; */
    gap: 30px;
    margin-left: 10vw;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
}

.fmenu a {
    color: #000;
}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tabサイズレスポンシブ*/
@media(min-width:600px) and (max-width:799px) {
/* 共通 */
body {
    min-width: 600px;
    max-width: 799px;
    background-color: #F7EDDA;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.section-wrap {
    margin: 100px 0;
    width: 100%;
}

.container2 {
    margin-top: 40px;
}

a {
    text-decoration: none;
    color: #fff;
}

.pc {
    display: none;
}

/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    right: 0;
    width: 20%;
    height: 50vh;
    /*ナビの高さ*/
    background: #999;
    /*動き*/
    transition: all 0.3s;
}

#top.LeftMove{
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
    from {
          opacity: 0;
          transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}
/*　右の動き　*/
  
#top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
  from {
      opacity: 1;
    transform: translateX(0);
  }
  to {
      opacity: 1;
    transform: translateX(100px);
  }
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 18%;
    height: 40vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}


/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    opacity: 0;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* =========================
ヘッダー
========================= */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
}
.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
    font-family: 'Quicksand', sans-serif;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}

/* ==========
プロフィール
============= */
.box-shadow img {
    width: 90%;
    box-shadow: 10px 10px 0px 0 #C89566;
    object-fit: scale-down;
    display: block;
    margin: 0 auto;
}

.name p{
    padding-left: 5vw;
}

.is-style-letter {
    width: 90%;
    position: relative;
    padding-left: 5vw;
    font-size: 2vw;
}

.is-style-letter *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* タイピング */
.typing {
    word-break: keep-all;
}

/*jsで生成されるspanタグ*/
.typing span{
    display: none;
}

@keyframes typingCursor {
  from {
    opacity:0;
  }
  to{
    opacity:1
  }
}

/* tab__sp */
.prf-txt {
    width: 85%;
    position: relative;
    padding-left: 5vw;
    font-size: 2vw;
}
/* ==========
スキル
============= */
.skill__container {
    width: 100%;
    display: flex;
    position: relative;
}

.skill {
    background-color: #DAA095;
    width: 8vw;
    height: 40vh;
    z-index: 3;
}

.skill-ttl {
    transform: rotate(90deg);
    transform-origin: left top;
    font-size: 32px;
    position: absolute;
    top: -12%;
    left: 6vw;
}

.skill-ttl a {
    position: relative;
    display: flex;
    width: 38vh;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.skill-pf {
    background-color: #fff;
    width: 85%;
    margin-top: 3vh;
    position: absolute;
    left: 3vw;
    padding: 0 0 3vh 4vw;
    margin-bottom: 50px;
}

.text-en {
    color: #F7EDDA;
    font-size: 32px;
    font-family: 'Quicksand', sans-serif;
}
.text-c {
    color: #63534A;
    font-size: 32px;
}

.text-ja {
    color: #F7EDDA;
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* スキルアイコン */
/* グリッド */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    margin-top: 3vh;
    gap: 3vw;
}

.grid-item img {
    width: 60%;
}

.grid-icon {
    padding-top: 50px;
}
.skill-icon2 {
    padding-left: 10vw;
}

.box{
	opacity: 0;
}

/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* =================
好きなこと / Favorite
==================== */
.favorite {
    margin: 200px 0 100px 0;
}

.favorite-ttl-detail {
    background-color: #DAA095;
    width: 350px;
    height: 50px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    margin-left: 10px;
}

.favorite-ttl {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    top: -15px;
    left: -25px;
}

.favorite-wrap {
    width: 100%;
    padding: 5vh 0;
}


.favorite-icon2 {
    padding-left: 30px;
}

.favorite-icon2 .grid-item {
    text-align: center;
    margin-top: 0;
}


/* ==========
お問い合わせ
============= */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 10vw;
    font-family: 'Quicksand', sans-serif;
}

.contact-ja {
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* =================================-
フッター */
.footer {
    color: #000;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.footer-navi {
    display: flex;
    /* justify-content: center; */
    gap: 30px;
    margin-left: 10vw;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
}

.fmenu a {
    color: #000;
}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SPサイズレスポンシブ*/
@media(max-width:599px) {
/* 共通 */
body {
    max-width: 599px;
    background-color: #F7EDDA;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.section-wrap {
    margin: 100px 0;
    width: 100%;
}

.container2 {
    margin-top: 40px;
}

a {
    text-decoration: none;
    color: #fff;
}

.pc {
    display: none;
}

/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

/* ************* */
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    right: 0;
    width: 30vw;
    height: 40vh;
    /*ナビの高さ*/
    background: #99999990;
    /*動き*/
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}
    
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}
    
/**************ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 26%;
    height: 40vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
    
/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 39%;
    transform: translate(-50%, -50%);
}
    
#g-nav.panelactive ul {
    display: block;
}
    
/*リストのレイアウト設定*/
    
#g-nav li {
    list-style: none;
    text-align: center;
}
    
#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}
    
/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}
    
/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}
    
.openbtn span:nth-of-type(1) {
    top: 15px;
}
    
.openbtn span:nth-of-type(2) {
    top: 23px;
}
    
.openbtn span:nth-of-type(3) {
    top: 31px;
}
    
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
    
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
    
.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/* =========================
ヘッダー
========================= */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.header ul {
    display: none;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
}
.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
    font-family: 'Quicksand', sans-serif;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}

/* ==========
プロフィール
============= */

.box-shadow img {
    width: 100%;
    box-shadow: 10px 10px 0px 0 #C89566;
    object-fit: scale-down;
    display: block;
    margin: 0 auto;
}

.name p{
    padding-left: 3vw;
    font-family: 'Quicksand', sans-serif;
}

.is-style-letter {
    width: 90%;
    position: relative;
    padding-left: 5vw;
    font-size: 4vw;
    font-family: 'Quicksand', sans-serif;
}

.is-style-letter *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* タイピング */
.typing {
    word-break: keep-all;
}

/*jsで生成されるspanタグ*/
.typing span{
    display: none;
}

@keyframes typingCursor {
  from {
    opacity:0;
  }
  to{
    opacity:1
  }
}

/* tab__sp */
.prf-txt {
    width: 95%;
    position: relative;
    padding-left: 3vw;
    font-size: 3.5vw;
}
/* ==========
スキル
============= */
.skill__container {
    width: 100%;
    display: flex;
    position: relative;
}

.skill {
    background-color: #DAA095;
    width: 8vw;
    height: 40vh;
    z-index: 3;
}

.skill-ttl {
    transform: rotate(90deg);
    transform-origin: left top;
    font-size: 32px;
    position: absolute;
    top: -12%;
    left: 8vw;
}

.skill-ttl a {
    position: relative;
    display: flex;
    width: 38vh;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.skill-pf {
    background-color: #fff;
    width: 85%;
    margin-top: 3vh;
    position: absolute;
    left: 3vw;
    padding: 0 0 3vh 4vw;
    margin-bottom: 50px;
}

.text-en {
    color: #F7EDDA;
    font-size: 32px;
    font-family: 'Quicksand', sans-serif;
}
.text-c {
    color: #63534A;
    font-size: 32px;
}

.text-ja {
    color: #F7EDDA;
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* スキルアイコン */
/* グリッド */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    margin-top: 3vh;
    gap: 3vw;
}

.grid-item img {
    width: 60%;
}

.grid-icon {
    padding-top: 50px;
}
.skill-icon2 {
    padding-left: 10vw;
}

.box{
	opacity: 0;
}

/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* =================
好きなこと / Favorite
==================== */
.favorite {
    margin: 20px 0 80px 0;
}

.favorite-ttl-detail {
    background-color: #DAA095;
    width: 280px;
    height: 12px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    margin-left: 10px;
}

.favorite-ttl {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    top: -30px;
    left: -25px;
}

.favorite-wrap {
    width: 100%;
    padding: 3vh 0;
}


.favorite-icon2 {
    padding-left: 30px;
}

.favorite-icon2 .grid-item {
    text-align: center;
    margin-top: 0;
}


/* ==========
お問い合わせ
============= */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 10vw;
    font-family: 'Quicksand', sans-serif;
}

.contact-ja {
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* =================================-
フッター */
.footer {
    color: #000;
    width: 100%;
    align-items: center;
}


.footer-navi {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
    font-family: 'Quicksand', sans-serif;
}

.fmenu a {
    color: #000;
}
small {
    display: block;
    text-align: center;
    padding: 10px;
    font-family: 'Quicksand', sans-serif;
}
}