/*CSS 書くぞ！*/

@charset "utf-8";

@font-face {
  font-family: 'GRyumin';
  src: url('./fonts/G-OTF-GRyuminPro-Light.otf') format('opentype');
}

body {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

html, body {
  overflow-x: hidden;
  overflow-y: auto;

  width: 380px;
  margin: 0 auto;
}

.title a {
  position: fixed;
  top: 2px;
  left: 10px;

  font-family: 'GRyumin', serif;
  font-size: 35px;

  color: black;
  text-decoration: none;
}

.midashi {
  position: absolute;
  margin: 280px 100px 100px 2px;
}

.midashi a {
  display: block;
  position: relative; /* ← 追加 */

  font-family: 'GRyumin', serif;
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: black;
  text-decoration: none;
  font-feature-settings: "palt";
}

/* 下線 */
.midashi a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 0;
  height: 1.5px;
  background: #000;

  transition: width 0.2s ease;
}

/* ホバーで出る */
.midashi a:hover::after {
  width: 100%;
}


.line-bottom {
  position: absolute;
  top: 410px;
  left: 6px;

  width: 373px;
  height: 1.3px;
  background-color: #000;
}

.log-label {
  color: black;
}

.log {
  font-family: 'GRyumin', serif;
  font-size: 9px;
  line-height: 1.3;
  color: #0000ff;
  margin: 400px 100px 100px 2px;
  text-align: justify;
  text-align-last: left;
  position: absolute;
  letter-spacing: -0.05em;
  width: 373px;;
  font-feature-settings: "palt";
}

.line-svg {
  position: absolute;
  top: 60px;
  left: 80px;

  width: 300px;
  height: auto;

  z-index: -1;
  pointer-events: none;
}

.line-svg path {
  fill: none;
  stroke: #0000ff;
  stroke-width: 2.5;

  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;

  animation: draw ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.top_tag {
  position: fixed;
  top: 23px;
  left: 320px;

  width: 373px;

  font: 11px/1.3 'GRyumin', serif;
  letter-spacing: -0.05em;
  font-feature-settings: "palt";

  color: #000;
  text-align: justify;
  text-align-last: left;
}

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



/*about css*/

.about_text {
    font-family: 'GRyumin', serif;
    font-size: 12px;
    line-height: 1.3;
    color: #0000ff;
    margin: 300px 100px 100px 2px;
    text-align: justify;
    text-align-last: left;
    position: absolute;
    letter-spacing: -0.05em;
    width: 270px;
    font-feature-settings: "palt";
}

.abour-label {
   font-size: 9px;
}

.about_midashi {
  position: fixed;
  top: 80px;
  left: 10px;

  display: block;

  font: 35px 'GRyumin', serif;
  line-height: 1;
  letter-spacing: -0.05em;
  font-feature-settings: "palt";

  color: #000;
  text-decoration: none;
}

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

.line-bottom_02 {
  position: fixed;
  top: 70px;
  left: 6px;

  width: 373px;
  height: 1.3px;
  background-color: #000;
}

.about_image {
    margin-left: 200px;
    margin-top: 100px;
  width: 150px;
  height: auto;
}

/*contact css*/

.contact_text {
    font-family: 'GRyumin', serif;
    font-size: 12px;
    line-height: 1.3;
    color: #0000ff;
    margin: 300px 100px 100px 2px;
    text-align: justify;
    text-align-last: left;
    position: absolute;
    letter-spacing: -0.05em;
    width: 270px;
    font-feature-settings: "palt";
}