/* reset css */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
  list-style: none;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
  height: auto;
  vertical-align: baseline;
}

html,
body {
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  background-color: rgb(247, 240, 232);
}

a:link {
  color: #252525;
}

a:visited {
  color: #252525;
}

a:hover {
  color: #252525;
}

/* Loding */

.Loding {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dad8d2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
}

.loading-content {
  text-align: center;
  font-size: 1.6rem;
}

body.loading {
  overflow: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.hourglass {
  display: block;
  background: #dad8d2;
  margin: 3em auto;
  width: 2em;
  height: 4em;
  -webkit-animation: hourglass 1s linear infinite;
  animation: hourglass 1s linear infinite;
}

.outer {
  fill: #00b7c6;
}

.middle {
  fill: #dad8d2;
}

@-webkit-keyframes hourglass {
  0% {
    transform: rotate(0deg);
    box-shadow: inset #00b7c6 0 0em 0 0, inset #dad8d2 0 -2em 0 0,
      inset #00b7c6 0 -4em 0 0;
  }
  80% {
    transform: rotate(0deg);
    box-shadow: inset #00b7c6 0 -2em 0 0, inset #dad8d2 0 -2em 0 0,
      inset #00b7c6 0 -2em 0 0;
  }
  100% {
    transform: rotate(180deg);
    box-shadow: inset #00b7c6 0 -2em 0 0, inset #dad8d2 0 -2em 0 0,
      inset #00b7c6 0 -2em 0 0;
  }
}

@keyframes hourglass {
  0% {
    transform: rotate(0deg);
    box-shadow: inset #00b7c6 0 0em 0 0, inset #dad8d2 0 -2em 0 0,
      inset #00b7c6 0 -4em 0 0;
  }
  80% {
    transform: rotate(0deg);
    box-shadow: inset #00b7c6 0 -2em 0 0, inset #dad8d2 0 -2em 0 0,
      inset #00b7c6 0 -2em 0 0;
  }
  100% {
    transform: rotate(180deg);
    box-shadow: inset #00b7c6 0 -2em 0 0, inset #dad8d2 0 -2em 0 0,
      inset #00b7c6 0 -2em 0 0;
  }
}

/*========= 1文字ずつ出現させるためのCSS ===============*/

.AniTxt {
  display: block;
  opacity: 0;
  font-size: 16px;
}

.AniTxt span {
  opacity: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.AniTxt01 span {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.AniTxt02 span {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.AniTxt03 span {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.AniTxt03 span {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.AniTxt04 span {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.AniTxt05 span {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.AniTxt06 span {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.AniTxt07 span {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.AniTxt08 span {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.AniTxt09 span {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.AniTxt10 {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

/* スマホ用ヘッダー */

.header-pc {
  display: none;
}

.header-sp {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  z-index: 999;
  width: 100%;
  height: 100px;
  /* margin-top: 2.5em; */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 30px;
  position: relative;
  z-index: 9999;
}

header img {
  position: fixed;
  margin-top: 0px;
  width: 175px;
  z-index: 9999;
}

/* スマホ版では表示する */
.l-sp-header {
  display: block;
}
/* スマホ版では表示しない */
.l-pc-header {
  display: none;
}

/* ヘッダー用モバイルレスポンシブ */
@media screen and (min-width: 768px) {
  .header-pc {
    display: block;
  }

  .header-sp {
    display: none;
  }

  .l-sp-header {
    /* 表示しない */
    display: none;
  }

  .l-pc-header {
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: fixed;
    z-index: 999;
  }

  .main-menu {
    display: flex;
    gap: 4em;
    position: absolute;
    top: 40px;
    right: 50px;
  }

  header img {
    position: fixed;
    margin-left: 5%;
    width: 175px;
  }
}

@media screen and (min-width: 1200px) {
  header img {
    margin-left: 10%;
    width: 200px;
  }
}

/* ハンバーガーメニュー */

.open {
  z-index: 18;
  position: fixed;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s linear;
}
.open:hover {
  opacity: 0.8;
}
.open span {
  display: block;
  float: left;
  clear: both;
  height: 4px;
  width: 40px;
  border-radius: 40px;
  background-color: #252525;
  position: absolute;
  right: 3px;
  top: 3px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.open span:nth-child(1) {
  margin-top: 10px;
  z-index: 9;
}
.open span:nth-child(2) {
  margin-top: 25px;
}
.open span:nth-child(3) {
  margin-top: 40px;
}

.sub-menu {
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 0;
  width: 0;
  right: 0;
  top: 0;
  position: absolute;
  background-color: rgba(113, 113, 113, 0.622);
  border-radius: 50%;
  z-index: 18;
  overflow: hidden;
}
.sub-menu li {
  display: block;
  float: right;
  clear: both;
  height: auto;
  margin-right: -160px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.sub-menu li:first-child {
  margin-top: 180px;
}
.sub-menu li:nth-child(1) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.sub-menu li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.sub-menu li:nth-child(3) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.sub-menu li:nth-child(4) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.sub-menu li:nth-child(5) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.sub-menu li a {
  color: #fff;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-size: 16px;
  width: 100%;
  display: block;
  float: left;
  line-height: 40px;
}

.oppenned .sub-menu {
  opacity: 1;
  height: 400px;
  width: 400px;
}
.oppenned span:nth-child(2) {
  overflow: visible;
}
.oppenned span:nth-child(1),
.oppenned span:nth-child(3) {
  z-index: 100;
  transform: rotate(45deg);
}
.oppenned span:nth-child(1) {
  transform: rotate(45deg) translateY(12px) translateX(12px);
}
.oppenned span:nth-child(2) {
  height: 400px;
  width: 400px;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background-color: #0a0a0a;
}
.oppenned span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px) translateX(10px);
}
.oppenned li {
  margin-right: 168px;
}

.button {
  display: block;
  float: left;
  clear: both;
  padding: 20px 40px;
  background: #0a0a0a;
  border-radius: 3px;
  border: 2px solid #ffffff;
  overflow: hidden;
  position: relative;
}
.button:after {
  transition: transform 0.3s ease;
  content: "";
  position: absolute;
  height: 200px;
  width: 400px;
  transform: rotate(45deg) translateX(-540px) translateY(-100px);
  background: #4e4e4e;
  z-index: 1;
}
.button:before {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  z-index: 2;
  text-align: center;
  padding: 20px 40px;
  transform: translateY(200px);
}
.button:hover {
  text-decoration: none;
}
.button:hover:after {
  transform: translateX(-300px) translateY(-100px);
}
.button:hover:before {
  transform: translateY(0);
}

.container {
  display: flex;
  max-width: 80%;
  justify-content: center;
  margin: 0 auto;
}

.card {
  position: relative;
  z-index: 10;
  width: 380px;
  border-radius: 4px;
  padding-bottom: 40px;
  background: #2d2d2d;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
}
.card figcaption {
  position: absolute;
  bottom: 0;
  padding: 10px;
  color: #fff;
}
.card img {
  max-width: 100%;
  border: 1px solid #222;
  transition: 0.4s;
}
.card:hover img {
  transform: scale(1.1);
}

.yt-card {
  position: absolute;
  bottom: 5%;
  right: 5%;
  text-align: center;
  color: #191919;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.03);
  width: 320px;
  overflow: hidden;
  -webkit-animation: updown 3s ease 6;
  animation: updown 3s ease 6;
}
.yt-card::before {
  content: "";
  border-width: 20px;
  border-color: transparent;
  border-style: solid;
  border-left-color: rgba(255, 255, 255, 0.9);
  border-left-width: 30px;
  display: block;
  position: absolute;
  top: 55%;
  left: 50%;
  z-index: 2;
  transform: translatex(calc(-50% + 15px));
  filter: drop-shadow(5px 5px 4px #252525);
  pointer-events: none;
}
.yt-card h1 {
  margin: 0;
  padding: 10px;
  font-size: 16px;
}
.yt-card img {
  max-width: 100%;
  bottom: -14px;
  position: relative;
}
@-webkit-keyframes updown {
  0%,
  50%,
  100% {
    transform: translatey(0);
  }
  20% {
    transform: translatey(5px);
  }
  25% {
    transform: translatey(-20px);
  }
  30% {
    transform: translatey(20px);
  }
  35% {
    transform: translatey(-5px);
  }
}
@keyframes updown {
  0%,
  50%,
  100% {
    transform: translatey(0);
  }
  20% {
    transform: translatey(5px);
  }
  25% {
    transform: translatey(-20px);
  }
  30% {
    transform: translatey(20px);
  }
  35% {
    transform: translatey(-5px);
  }
}

/* main */

main {
  padding-top: 130px;
}

/* 名前 */
.hero-about h2 {
  font-size: 40px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: fit-content;
  margin: 4em auto 2em;
}

/* scroll down */
.scroll_down {
  position: relative;
  width: 100%;
  height: 20vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(
    180deg,
    rgba(#252525, 0) 0,
    rgba(#252525, 0.8) 80%,
    rgba(#252525, 0.8) 100%
  );
}

.scroll_down p {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  z-index: 2;
  width: 13px;
  padding: 5px 5px 60px;
  color: #252525;
  transition: 0.2s;
  overflow: hidden;
  margin: 0 auto;
}

.scroll_down p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #ddd;
}

.scroll_down p:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #252525;
}

#type01 p:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (min-width: 768px) {
  /* main */
  main {
    padding-top: 130px;
  }

  /* 名前 */
  .hero-about h2 {
    font-size: 50px;
  }
}

/* 縦書き理念設定 */

.hero-text {
  position: relative;
  justify-content: center;
  width: 100%;
  height: 270vh;
}
.hero-text p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/* 理念内容 */
.text1 {
  position: absolute;
  right: 43%;
  top: 0;
}

.text1-2 {
  position: absolute;
  right: 53%;
  top: 0;
}

.text2 {
  position: absolute;
  left: 30px;
  top: 20vh;
}

.text2-2 {
  position: absolute;
  left: 60px;
  top: 20vh;
}

.text3 {
  position: absolute;
  right: 70px;
  top: 40vh;
}

.text3-2 {
  position: absolute;
  right: 100px;
  top: 40vh;
}

.text4 {
  position: absolute;
  left: 110px;
  top: 60vh;
}

.text4-2 {
  position: absolute;
  left: 80px;
  top: 60vh;
}

.text5 {
  position: absolute;
  left: 190px;
  top: 90vh;
}

.text5-2 {
  position: absolute;
  left: 160px;
  top: 90vh;
}

.text6 {
  position: absolute;
  right: 60px;
  top: 110vh;
}

.text6-2 {
  position: absolute;
  right: 90px;
  top: 110vh;
}

.text7 {
  position: absolute;
  left: 50%;
  top: 140vh;
}

.text7-2 {
  position: absolute;
  left: 40%;
  top: 140vh;
}

.text8 {
  position: absolute;
  left: 80px;
  top: 160vh;
}

.text8-2 {
  position: absolute;
  left: 50px;
  top: 160vh;
}

.text9 {
  position: absolute;
  right: 70px;
  top: 180vh;
}

.text9-2 {
  position: absolute;
  right: 100px;
  top: 180vh;
}

.text10 {
  position: absolute;
  left: 50%;
  top: 210vh;
}

.text10-2 {
  position: absolute;
  left: 40%;
  top: 210vh;
}

@media screen and (min-width: 500px) {
  /* 縦書き理念設定 */

  .hero-text {
    width: 95%;
    height: 1200px;
    margin: 0 auto;
  }

  /* 理念内容 */
  .text1 {
    right: 44%;
    top: 0;
  }

  .text1-2 {
    right: 52%;
    top: 0;
  }

  .text2 {
    right: 5%;
    top: 300px;
  }

  .text2-2 {
    right: 10%;
    top: 300px;
  }

  .text3 {
    right: 25%;
    top: 300px;
  }

  .text3-2 {
    right: 30%;
    top: 300px;
  }

  .text4 {
    right: 45%;
    top: 300px;
    left: auto;
  }

  .text4-2 {
    right: 50%;
    top: 300px;
    left: auto;
  }

  .text5 {
    right: 65%;
    top: 300px;
    left: auto;
    /* width: fit-content; */
  }

  .text5-2 {
    right: 70%;
    top: 300px;
    left: auto;
    /* width: fit-content; */
  }

  .text6 {
    right: 85%;
    top: 300px;
  }

  .text6-2 {
    right: 90%;
    top: 300px;
  }

  .text7 {
    left: auto;
    right: 20%;
    top: 600px;
    width: auto;
  }

  .text7-2 {
    left: auto;
    right: 25%;
    top: 600px;
    width: auto;
  }

  .text8 {
    right: 45%;
    top: 600px;
    height: auto;
  }

  .text8-2 {
    right: 50%;
    top: 600px;
    height: auto;
  }

  .text9 {
    position: absolute;
    right: 70%;
    top: 600px;
  }

  .text9-2 {
    position: absolute;
    right: 75%;
    top: 600px;
  }

  .text10 {
    position: absolute;
    right: 44%;
    top: 900px;
  }

  .text10-2 {
    position: absolute;
    right: 52%;
    top: 900px;
  }
}

@media screen and (min-width: 1200px) {
  .hero-text {
    height: 600px;
  }

  /* 理念内容 */
  .text1 {
    right: 48%;
    top: 0;
  }

  .text1-2 {
    right: 52%;
    top: 0;
  }

  .text2 {
    right: 10%;
    top: 300px;
  }

  .text2-2 {
    right: 13%;
    top: 300px;
  }

  .text3 {
    right: 20%;
    top: 300px;
  }

  .text3-2 {
    right: 23%;
    top: 300px;
  }

  .text4 {
    right: 30%;
    top: 300px;
    left: auto;
  }

  .text4-2 {
    right: 33%;
    top: 300px;
    left: auto;
  }

  .text5 {
    right: 40%;
    top: 300px;
    left: auto;
    /* width: fit-content; */
  }

  .text5-2 {
    right: 43%;
    top: 300px;
    left: auto;
    /* width: fit-content; */
  }

  .text6 {
    right: 50%;
    top: 300px;
  }

  .text6-2 {
    right: 53%;
    top: 300px;
  }

  .text7 {
    left: auto;
    right: 60%;
    top: 300px;
    width: auto;
  }

  .text7-2 {
    left: auto;
    right: 63%;
    top: 300px;
    width: auto;
  }

  .text8 {
    right: 70%;
    top: 300px;
    height: auto;
  }

  .text8-2 {
    right: 73%;
    top: 300px;
    height: auto;
  }

  .text9 {
    right: 80%;
    top: 300px;
  }

  .text9-2 {
    right: 83%;
    top: 300px;
  }

  .text10 {
    right: 90%;
    top: 300px;
    left: auto;
  }

  .text10-2 {
    right: 93%;
    top: 300px;
    left: auto;
  }
}

/* 自己紹介 */

.info-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info h2 {
  width: 140px;
  margin: 2em 0 2em 1em;
}

.info h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.ayumi_ueda {
  display: block;
  width: 50%;
  margin: 2em auto;
  border-radius: 4em;
}

.info-box p {
  text-align: center;
  margin-bottom: 2em;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .ayumi_ueda {
    width: 300px;
    margin: 2em auto;
  }

  .info-box p {
    margin-bottom: 4em;
  }
}

@media screen and (min-width: 1200px) {
  .info-box {
    width: 800px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .info-box h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .info-box p {
    margin-bottom: 2em;
  }
}

/* できること */

.Skill h2 {
  width: 180px;
  margin: 0 0 0 1em;
}

/* できることbox */

.box {
  position: relative;
  width: 100%;
  height: 1650px;
  margin: 0;
}

/* Ai skill */

.Ai_Skill_box {
  position: absolute;
  top: 30px;
  width: 175px;
  height: 200px;
  display: flex;
  justify-content: center;
}

.percent {
  position: absolute;
  top: 0;
  left: 15px;
  width: 100%;
  height: 100%;
}

.percent .line {
  transition: stroke-dashoffset 1s ease-out;
}

.percent:not(.animated) .line {
  stroke-dashoffset: 440 !important;
}

.percent svg {
  width: 150px;
  height: 150px;
}

.Ai_skill {
  position: absolute;
  top: 53px;
  left: 55px;
  width: 60px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.box .text {
  padding: 20px 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}

.percent svg circle {
  display: block;
  width: 40%;
  fill: none;
  stroke-width: 10;
  stroke-dasharray: 440;
  stroke-dashoffset: 0;
  stroke-linecap: round;
}

.Ai_Skill_box svg circle.line {
  stroke-dashoffset: calc(440 - (440 * 70) / 100);
  stroke: #252525;
}

.box .percent svg {
  transform: rotate(-90deg);
}

.text {
  position: absolute;
  top: 120px;
  text-align: center;
}

/* Ps skill */

.Ps_Skill_box {
  position: absolute;
  top: 200px;
  right: 0;
  width: 175px;
  height: 200px;
  display: flex;
  justify-content: center;
}

.Ps_skill {
  position: absolute;
  top: 53px;
  left: 60px;
  width: 60px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.Ps_Skill_box circle.line {
  stroke-dashoffset: calc(440 - (440 * 65) / 100);
  stroke: #252525;
}

/* XD */

.XD_Skill_box {
  position: absolute;
  top: 400px;
  left: 0;
  width: 175px;
  height: 200px;
  display: flex;
  justify-content: center;
}

.XD_skill {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 60px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.XD_Skill_box circle.line {
  stroke-dashoffset: calc(440 - (440 * 60) / 100);
  stroke: #252525;
}

/* Pr */

.Pr_Skill_box {
  position: absolute;
  top: 600px;
  right: 0;
  width: 175px;
  height: 200px;
  display: flex;
  justify-content: center;
}

.Pr_skill {
  position: absolute;
  top: 53px;
  left: 55px;
  width: 60px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.Pr_Skill_box circle.line {
  stroke-dashoffset: calc(440 - (440 * 45) / 100);
  stroke: #252525;
}

/* HTML */
.HTML_Skill_box {
  position: absolute;
  top: 800px;
  left: 0;
  width: 175px;
  height: 200px;
  display: flex;
  justify-content: center;
}

.HTML_skill {
  position: absolute;
  top: 70px;
  left: 60px;
  width: 60px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.HTML_Skill_box circle.line {
  stroke-dashoffset: calc(440 - (440 * 80) / 100);
  stroke: #252525;
}

/* CSS */
.CSS_Skill_box {
  position: absolute;
  top: 1000px;
  right: 0;
  width: 175px;
  height: 200px;
  display: flex;
  justify-content: center;
}

.CSS_skill {
  position: absolute;
  top: 65px;
  left: 57px;
  width: 60px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.CSS_Skill_box circle.line {
  stroke-dashoffset: calc(440 - (440 * 75) / 100);
  stroke: #252525;
}

/* JS */
.JS_Skill_box {
  position: absolute;
  top: 1200px;
  left: 0;
  width: 175px;
  height: 200px;
  display: flex;
  justify-content: center;
}

.JS_skill {
  position: absolute;
  top: 55px;
  left: 55px;
  width: 60px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.JS_Skill_box circle.line {
  stroke-dashoffset: calc(440 - (440 * 55) / 100);
  stroke: #252525;
}

/* MS */
.MS_Skill_box {
  position: absolute;
  top: 1400px;
  right: 0;
  width: 175px;
  height: 200px;
  display: flex;
  justify-content: center;
}

.MS_skill {
  position: absolute;
  top: 55px;
  left: 60px;
  width: 60px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.MS_Skill_box circle.line {
  stroke-dashoffset: calc(440 - (440 * 70) / 100);
  stroke: #252525;
}

.line {
  animation: circleAnim 1s forwards;
}
@keyframes circleAnim {
  0% {
    stroke-dasharray: 0 440;
  }
  99.9%,
  to {
    stroke-dasharray: 440 440;
  }
}

@media screen and (min-width: 500px) {
  /* できること */

  /* Ai skill */

  .Ai_Skill_box {
    left: 15%;
  }

  /* Ps skill */

  .Ps_Skill_box {
    right: 15%;
  }

  /* XD */

  .XD_Skill_box {
    left: 15%;
  }

  /* Pr */

  .Pr_Skill_box {
    right: 15%;
  }

  /* HTML */
  .HTML_Skill_box {
    left: 15%;
  }

  /* CSS */
  .CSS_Skill_box {
    right: 15%;
  }

  /* JS */
  .JS_Skill_box {
    left: 15%;
  }

  /* MS */
  .MS_Skill_box {
    right: 15%;
  }
}

@media screen and (min-width: 1200px) {
  /* できること */
  .box {
    position: relative;
    width: 100%;
    height: 1900px;
    margin: 0;
  }

  .percent {
    position: absolute;
    top: 0;
    left: 15px;
    width: 100%;
    height: 100%;
  }

  .percent svg {
    width: 250px;
    height: 250px;
  }
  /* Ai skill */

  .Ai_Skill_box {
    width: 350px;
    margin: 0 auto;
    left: 22%;
  }

  .Ai_skill {
    position: absolute;
    top: 90px;
    left: 85px;
    width: 95px;
  }

  .box .text {
    position: absolute;
    top: 220px;
    left: 40%;
    transform: translateX(-50%);
    width: 400px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
  }

  /* Ps skill */

  .Ps_Skill_box {
    width: 350px;
    margin: 0 auto;
    right: 22%;
  }

  .Ps_skill {
    position: absolute;
    top: 85px;
    left: 90px;
    width: 95px;
  }

  /* XD */

  .XD_Skill_box {
    width: 350px;
    margin: 0 auto;
    left: 22%;
  }

  .XD_skill {
    position: absolute;
    top: 100px;
    left: 90px;
    width: 100px;
  }

  /* Pr */

  .Pr_Skill_box {
    width: 350px;
    margin: 0 auto;
    right: 22%;
  }

  .Pr_skill {
    position: absolute;
    top: 85px;
    left: 80px;
    width: 100px;
  }

  /* HTML */
  .HTML_Skill_box {
    width: 350px;
    margin: 0 auto;
    left: 22%;
  }

  .HTML_skill {
    position: absolute;
    top: 115px;
    left: 80px;
    width: 120px;
  }

  /* CSS */
  .CSS_Skill_box {
    width: 350px;
    margin: 0 auto;
    right: 22%;
  }

  .CSS_skill {
    position: absolute;
    top: 105px;
    left: 85px;
    width: 100px;
  }

  /* JS */
  .JS_Skill_box {
    width: 350px;
    margin: 0 auto;
    left: 22%;
  }

  .JS_skill {
    position: absolute;
    top: 95px;
    left: 90px;
    width: 85px;
  }

  /* MS */
  .MS_Skill_box {
    width: 350px;
    margin: 0 auto;
    right: 22%;
  }
  .MS_skill {
    position: absolute;
    top: 90px;
    left: 90px;
    width: 100px;
  }
}

/* WORKS */
/* Wrapper */

.wrapper h2 {
  margin: 0 0 30px;
  width: 120px;
}

.wrapper {
  width: 95%;
  margin: 1em auto;
}

.works-items {
  width: fit-content;
  margin: 0 auto;
}

.Works li {
  position: relative;
}

.Works li div {
  width: 300px;
  height: 250px;
}

.Works li div a {
  width: 300px;
  height: 175px;
}

.Works li div a img {
  width: 300px;
  height: 175px;
  object-fit: cover;
  box-shadow: 4px 5px #5a5a5a;
}

/* Works写真装飾 */

.Works-item {
  position: relative;
}

.Works-item::before,
.Works-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  z-index: 1;
}

.Works-item::before {
  top: -10px;
  right: -10px;
  border-top: 20px solid #3a3a3a;
  border-right: 20px solid #3a3a3a;
}

.Works-item::after {
  top: -10px;
  left: -10px;
  border-bottom: 20px solid #3a3a3a;
  border-left: 20px solid #3a3a3a;
}

/* works p */

.Works li p {
  font-size: 13px;
  position: absolute;
  left: 25px;
  bottom: 35px;
  width: 250px;
  height: fit-content;
  text-align: center;
  padding: 0 1em 0;
  background: #fff;
  box-shadow: 2px 4px #5a5a5a;
}

/* .Works li p::before {
  position: absolute;
  top: -3px;
  left: -5px;
  width: 100%;
  height: 100%;
  content: "";
  border: 2px solid #5a5a5a;
} */

/* Contact */

.Contact {
  position: relative;
  height: 200px;
}

.Contact h2 {
  width: 120px;
}

.mail_txt {
  font-size: 14px;
  text-align: center;
}

.mail_info {
  font-size: 13px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
  height: fit-content;
  text-align: center;
  padding: 0 1em 0;
  background: #fff;
  box-shadow: 2px 4px #5a5a5a;
}

@media screen and (min-width: 768px) {
  /* WORKS */
  /* Wrapper */

  .Works {
    height: 1900px;
    position: relative;
    margin: 0 0;
  }

  .works-items li {
    margin-top: 100px;
    position: absolute;
  }

  .Psite {
    left: 5%;
    top: 0;
  }

  .Msite {
    right: 5%;
    top: 0;
  }

  .PLsite {
    left: 5%;
    top: 300px;
  }

  .TARAbaner {
    right: 5%;
    top: 300px;
  }

  .Cmeishi {
    left: 5%;
    top: 600px;
  }

  .REtou {
    right: 5%;
    top: 600px;
  }

  .C01 {
    left: 5%;
    top: 900px;
  }

  .C02 {
    right: 5%;
    top: 900px;
  }

  .C03 {
    left: 5%;
    top: 1200px;
  }

  .C04 {
    right: 5%;
    top: 1200px;
  }

  .C05 {
    right: 5%;
    top: 1500px;
  }

  .C06 {
    left: 5%;
    top: 1500px;
  }

  .Works-item div {
    width: 300px;
    height: 250px;
  }
}

@media screen and (min-width: 1200px) {
  /* WORKS */
  /* Wrapper */

  .Works {
    height: 1400px;
    position: relative;
    margin: 0 0;
  }

  .works-items {
    width: 1000px;
    height: 1300px;
  }

  .works-items li {
    margin-top: 100px;
    position: absolute;
  }

  .Psite {
    left: 5%;
    top: 0;
  }

  .Msite {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    right: auto;
  }

  .PLsite {
    right: 5%;
    top: 0;
    left: auto;
  }

  .TARAbaner {
    left: 5%;
    top: 300px;
  }

  .Cmeishi {
    left: 50%;
    transform: translateX(-50%);
    top: 300px;
  }

  .REtou {
    right: 5%;
    top: 300px;
  }

  .C01 {
    left: 5%;
    top: 600px;
    right: auto;
  }

  .C02 {
    left: 50%;
    transform: translateX(-50%);
    top: 600px;
    right: auto;
  }

  .C03 {
    right: 5%;
    top: 600px;
    left: auto;
  }

  .C04 {
    left: 5%;
    top: 900px;
    right: auto;
  }

  .C05 {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 900px;
  }

  .C06 {
    left: auto;
    right: 5%;
    top: 900px;
  }

  .Works-item div {
    width: 300px;
    height: 250px;
  }
  .Contact {
    position: relative;
    height: 200px;
  }

  .Contact h2 {
    width: 120px;
  }

  .mail_txt {
    font-size: 18px;
    text-align: center;
  }

  .mail_info {
    font-size: 18px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: fit-content;
    text-align: center;
    padding: 0 1em 0;
    background: #fff;
    box-shadow: 2px 4px #5a5a5a;
  }
}

@media screen and (min-width: 1500px) {
  .works-items {
    margin: 0 auto;
    width: 1400px;
    height: 1300px;
  }

  .Psite {
    left: 250px;
    top: 0;
  }

  .Msite {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    right: auto;
  }

  .PLsite {
    right: 250px;
    top: 0;
    left: auto;
  }

  .TARAbaner {
    left: 250px;
    top: 300px;
  }

  .Cmeishi {
    left: 50%;
    transform: translateX(-50%);
    top: 300px;
  }

  .REtou {
    right: 250px;
    top: 300px;
  }

  .C01 {
    left: 250px;
    top: 600px;
    right: auto;
  }

  .C02 {
    left: 50%;
    transform: translateX(-50%);
    top: 600px;
    right: auto;
  }

  .C03 {
    right: 250px;
    top: 600px;
    left: auto;
  }

  .C04 {
    left: 250px;
    top: 900px;
    right: auto;
  }

  .C05 {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 900px;
  }

  .C06 {
    left: auto;
    right: 250px;
    top: 900px;
  }
}

/* footer */

footer {
  text-align: center;
  padding: 2em 0;
}
