@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

header {
  width: 100%;
  height: 70px;
  background: #ffffff00; /*透明*/
  /*本来の background: #f86d57; */
  position: fixed; /* ヘッダーを固定する */
  top: 0; /* 上部から配置の基準位置を決める */
  left: 0; /* 左から配置の基準位置を決める */
  z-index: 1000;
}

.logo h1 {
  font-size: 70px;
  font-family: "blanch", sans-serif;
  color: #0993b2;
  margin: 0px 0 0 20px;
}

.header-flex-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.pc-global-navi {
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
}

.pc-global-navi-items {
  margin: 0 1em; /*メニューの間余白指定*/
  letter-spacing: 1.2px; /*字間1.5px指定*/
  font-size: 15px;
  color: #0993b2;
}

.pc-global-navi-items a {
  border-radius: 20px 20px 0 0;
  padding: 10px 10px;
}

.pc-global-navi-items a:link {
  color: #0993b2;
}

.pc-global-navi-items a:visited {
  color: #0993b2;
}

.pc-global-navi-items a:hover {
  color: #046e86;
}

.pc-global-navi-items a:active {
  color: #046e86;
}

main a {
  text-decoration: none;
  color: #e9489b;
  font-weight: 900;
  font-family: "blanch", sans-serif;
  font-size: 20px;
  .pc-global-navi-items a:link {
    color: #e9489b;
  }

  main a:visited {
    color: #e9489b;
  }

  main a:hover {
    color: #e9489b;
  }

  main a:active {
    color: #e9489b;
  }
}
html,
css {
  width: 100%;
  height: 100%;
}

.position {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 15%;
}

#workarea {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1e1a3ec8;
}

#personal {
  color: white;
  text-decoration: none;
  position: absolute;
  bottom: 30px;
  right: 2%;
}

.spot {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.svg-wrapper {
  margin-top: 0;
  position: relative;
  width: 150px;
  height: 40px;
  display: inline-block;
  border-radius: 3px;
  margin-left: 5px;
  margin-right: 5px;
}

#shape {
  stroke-width: 6px;
  fill: transparent;
  stroke: #0993b2;
  stroke-dasharray: 85 400;
  stroke-dashoffset: -220;
  transition: 1s all ease;
}

#text {
  margin-top: -35px;
  text-align: center;
  font-size: 30px;
  font-family: "blanch", sans-serif;
}

#text a {
  color: #e5f87c;
  text-decoration: none;
  font-weight: 900;
}

.svg-wrapper:hover #shape {
  stroke-dasharray: 50 0;
  stroke-width: 3px;
  stroke-dashoffset: 0;
  stroke: #f931ca;
}

ul.sp-global-navi {
  display: none;
}
/****************************************/
@media screen and (max-width: 767px) {
  .pc-global-navi {
    display: none;
  }
  header {
    height: 130px;
    background-color: rgba(79, 75, 109, 0.367);
  }
  .header-flex-container {
    display: block;
  }
  .logo {
    text-align: center;
  }
  .logo h1 {
    margin: 0 auto;
    font-size: 80px;
    color: #5a57f8;
  }
  .line01 img {
    display: none;
  }
  ul.sp-global-navi {
    display: flex;
  }
  li.sp01 a {
    color: #f86d57;
    text-decoration: none;
    font-weight: 700;
    font-family: "blanch", sans-serif;
    font-size: 35px;
  }
  li.sp02 a {
    color: #f931ca;
    text-decoration: none;
    font-weight: 700;
    font-family: "blanch", sans-serif;
    font-size: 35px;
  }
  .graphic {
    margin: 150px 0 0;
  }
}

.sp-global-navi {
  display: flex;
  justify-content: center;
}
.sp-global-navi-items {
  margin: -15px 5px 0;
}
