/* //基本設定 */
:root{
  --main-color:#FCD55D;
  --sub-main-color:#D2BA71;
  --accent-color:#5D7AFC;
  --black:rgb(0, 0, 0);
  --white:rgb(255, 255, 255);
  --gray:rgb(151, 151, 151);

  --bigtext:rgb(0, 0, 0);
  --stdtext:rgb(51, 51, 51);
  --subtext:rgb(102, 102, 102);
}

html{
  font-size: 10px;
  color: var(--stdtext);
  /* pc: 16px-18px
  タブレット: 15-17px
  スマホ: 14-16px */
}

html, body{
  /* font */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  /* end-font */
}

/* h1を70pxとする */
h1{
  font-size: 7rem;
}
/* h2を70pxとする */
h2{
  font-size: 2rem;
}
/* 以下は16pxとする */
p, ul, ol, span, label, input, textarea, summary, div{
  font-size: 1.6rem;
}
/* 中黒の非表示 */
ul, ol {
  list-style: none;
}
/* 下線の有無 */
a{
  text-decoration: none;
  color: inherit;
}
/* ////基本設定 */



/* //ローディング */
#splash {
  position: fixed;
  z-index: 999;


  width: 100%;
  height: 100vh;
  background:#333;
  text-align: center;
  color: var(--white);
  display: none;
}

/* Loading画像中央配置　*/
#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash-logo img {
  width: 300px;
}
/* ////ローディング */





/* スマホ用は非表示 */
#first-view--sp{
  display: none;
}

/* 横並びに配置する（３カラム） */
#first-view--pc{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  width: 100vw;
  height: 100vh;
}


/* 左側 */
#fv-left{
  display: flex;
  flex-direction: column;

  width: 35%;
  height: 95%;

  margin-top: auto;
  margin-bottom: auto;
  margin-left: 20px;
}

/* ロゴのコンテナ */
#logo-img{
  width: 100%;
  height: 45%;
  margin-bottom: 20px;
}

/* ロゴ */
.logo-img__bgi{
  width: 100%;
  height: 100%;
  background-image: url("../images/index/logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 15px;
}


/* タイトルの配置起点 */
.article-skill{
  position: relative;
  width: 100%;
  height: 80%;
}

/* 画像のコンテナ */
#skill-img{
  width: 100%;
  height: 100%;
}

/* 画像 */
.skill-img__bgi{
  width: 100%;
  height: 100%;
  background-image: url("../images/index/skills.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 15px;
}

/* タイトル英語（aタグ） */
.article-container .link{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;

  font-size: 6rem;
  -webkit-text-stroke: 0.25px var(--bigtext);
  color: var(--white);
  text-shadow:
    3px 3px 0 var(--bigtext),
    -1px -1px 0 var(--bigtext),  
    1px -1px 0 var(--bigtext),
    -1px 1px 0 var(--bigtext),
    1px 1px 0 var(--bigtext);
  line-height: .6;
  text-align: center;
}

/* タイトル英語（aタグ）ホバー時の処理 */
.article-container .link:hover{
  -webkit-text-stroke: 0.25px var(--white);
  color: var(--bigtext);
  text-shadow:
    3px 3px 0 var(--white),
    -1px -1px 0 var(--white),  
    1px -1px 0 var(--white),
    -1px 1px 0 var(--white),
    1px 1px 0 var(--white);

  transition: all .3s;
}


/* タイトル日本語（spanタグ） */
.article-container span{
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;

  font-size: 2rem;
  -webkit-text-stroke: 0.25px var(--bigtext);
  color: var(--white);
  text-shadow:
    3px 3px 0 var(--bigtext),
    -1px -1px 0 var(--bigtext),  
    1px -1px 0 var(--bigtext),
    -1px 1px 0 var(--bigtext),
    1px 1px 0 var(--bigtext);
}
/* //左側 */


/* センター部 */
#fv-center{
  display: flex;
  flex-direction: column;

  width: 39%;
  height: 95%;
  margin-top: auto;
  margin-bottom: auto;
}


/* タイトルの配置起点 */
.article-works {
  position: relative;
  width: 100%;
  height: 80%;
  margin-bottom: 20px;
}

/* 画像のコンテナ */
#works-img{
  width: 100%;
  height: 100%;
}

/* 画像 */
.works-img__bgi{
  width: 100%;
  height: 100%;
  background-image: url("../images/index/works.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 15px;
}


/* contact */
/* タイトルの配置起点 */
.article-contact{
  position: relative;
  width: 100%;
  height: 50%;
}

/* 画像のコンテナ */
#contact-img{
  width: 100%;
  height: 100%;
}

/* 画像 */
.contact-img__bgi{
  width: 100%;
  height: 100%;
  background-image: url("../images/index/contact.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 15px;
}
/* //センター部 */



/* 右側 */
#fv-right{
  display: flex;
  justify-content: center;
  align-items: center;

  width: 20%;
  height: 95%;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 20px;

  background-color: var(--sub-main-color);
  border-radius: 15px;
}


/* 画像とテキストのコンテナ */
.profile{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 画像 */
.profile > img{
  width: 55%;
}

/* リンク（aタグ） */
.profile a{
  display: inline-block;
  margin-top: 15px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;

  font-size: 6rem;
  -webkit-text-stroke: 0.25px var(--bigtext);
  color: var(--white);
  text-shadow:
    3px 3px 0 var(--bigtext),
    -1px -1px 0 var(--bigtext),  
    1px -1px 0 var(--bigtext),
    -1px 1px 0 var(--bigtext),
    1px 1px 0 var(--bigtext);
  line-height: .6;
  text-align: center;

  transition: all .3s;
}

/* タイトル英語（aタグ）ホバー時の処理 */
.profile a:hover{
  -webkit-text-stroke: 0.25px var(--white);
  color: var(--bigtext);
  text-shadow:
    3px 3px 0 var(--white),
    -1px -1px 0 var(--white),  
    1px -1px 0 var(--white),
    -1px 1px 0 var(--white),
    1px 1px 0 var(--white);

  transition: all .3s;
}

/* //右側 */




/* SP表示ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 850px){

  /* PC用は非表示 */
  #first-view--pc {
    display: none;
  }

  /* スマホ用の表示 */
  #first-view--sp {
    display: block;
    width: 90%;
    margin: 25px auto;
  }

  /* ロゴのコンテナ */
  .logo-img--sp{
    height: 30vh;
    margin-bottom: 20px;
  }

  /* 各画像のコンテナ */
  .article-container--sp{
    position: relative;
    height: 30vh;
    margin-bottom: 20px;
  }

  /* タイトル英語（aタグ） */
  .article-container--sp .link{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 5rem;
    -webkit-text-stroke: 0.25px var(--bigtext);
    color: var(--white);
    text-shadow:
      3px 3px 0 var(--bigtext),
      -1px -1px 0 var(--bigtext),  
      1px -1px 0 var(--bigtext),
      -1px 1px 0 var(--bigtext),
      1px 1px 0 var(--bigtext);
    line-height: .6;
    text-align: center;

    transition: all .3s;
  }
  /* タイトル英語（aタグ）ホバー時の処理 */
  .article-container--sp .link:hover{
    -webkit-text-stroke: 0.25px var(--white);
    color: var(--bigtext);
    text-shadow:
      3px 3px 0 var(--white),
      -1px -1px 0 var(--white),  
      1px -1px 0 var(--white),
      -1px 1px 0 var(--white),
      1px 1px 0 var(--white);

    transition: all .3s;
  }

  /* タイトル日本語（spanタグ） */
  .article-container--sp span{
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 2rem;
    -webkit-text-stroke: 0.25px var(--bigtext);
    color: var(--white);
    text-shadow:
      3px 3px 0 var(--bigtext),
      -1px -1px 0 var(--bigtext),  
      1px -1px 0 var(--bigtext),
      -1px 1px 0 var(--bigtext),
      1px 1px 0 var(--bigtext);
  }


  .logo-img__bgi {
    background-image: url("../images/SP/SP-logo.png");
  }
  .works-img__bgi {
    height: 30vh;
    background-image: url("../images/SP/SP-works.png");
  }
  .skill-img__bgi {
    height: 30vh;
    background-image: url("../images/SP/SP-skills.png");
  }
  .contact-img__bgi{
    height: 30vh;
    background-image: url("../images/SP/SP-contact.png");
  }


  /* profile */
  #about-container{
    position: relative;

    width: 100%;
    height: 30vh;

    background-color: var(--sub-main-color);
    border-radius: 15px;
  }


  .profile--sp{
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  /* about画像 */
  .profile--sp img{
    width: 20%;
  }

  /* about（aタグ） */
  .profile--sp a{
    margin-top: 15px;
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;
  
    font-size: 5rem;
    -webkit-text-stroke: 0.25px var(--bigtext);
    color: var(--white);
    text-shadow:
      3px 3px 0 var(--bigtext),
      -1px -1px 0 var(--bigtext),  
      1px -1px 0 var(--bigtext),
      -1px 1px 0 var(--bigtext),
      1px 1px 0 var(--bigtext);
    line-height: .6;

    transition: all .3s;
  }

  /* about（aタグ）ホバー時の処理 */
  .profile--sp a:hover{
    -webkit-text-stroke: 0.25px var(--white);
    color: var(--bigtext);
    text-shadow:
      3px 3px 0 var(--white),
      -1px -1px 0 var(--white),  
      1px -1px 0 var(--white),
      -1px 1px 0 var(--white),
      1px 1px 0 var(--white);

    transition: all .3s;
  }

  /* about（spanタグ） */
  .profile--sp span{
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 2rem;
    -webkit-text-stroke: 0.25px var(--bigtext);
    color: var(--white);
    text-shadow:
      3px 3px 0 var(--bigtext),
      -1px -1px 0 var(--bigtext),  
      1px -1px 0 var(--bigtext),
      -1px 1px 0 var(--bigtext),
      1px 1px 0 var(--bigtext);
  }
}