
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      overflow: hidden;
    font-family: "Shippori Mincho", serif;
      background: #ffffff;
    }

    /* 拡大背景はローダー外で画面全体固定 */
    .expanding-bg {
      position: fixed;
      top: 50%;
      left: 50%;
      width: 80px;
      height: 80px;
      background: #dcc2ff9d;
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(1);
      z-index: 0;
      transition: transform 0.8s ease-in-out, opacity 0.3s ease;
      opacity: 0;
    }

    .expand {
      transform: translate(-50%, -50%) scale(30);
      opacity: 1;
    }

    /* ローダー本体 */
    .loader-wrapper {
      position: fixed;
      width: 100%;
      height: 100%;
      background: transparent; /* 背景は透明 */
      z-index: 9999;
    }

    .ball {
      width: 80px;
      height: 80px;
      background: #DCC2FF;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 50%;
      animation: bounceOnce 1.2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
      z-index: 2;
    }

    @keyframes bounceOnce {
      0%   { top: 50%; }
      40%  { top: 85%; }
      100% { top: 50%; }
    }

    /* コンテンツ */
    .content {
      opacity: 0;
      transition: opacity 0.8s ease;
      text-align: center;
      position: relative;
      z-index: 10;
    }

    .content.show {
      opacity: 1;
    }
    header {
    text-align: center;
    display: flex;
    height: 100px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
header img {
    width: 350px;
    height: 100px;
    align-items: center;
}
/* fade-styles.css */
.hamburger-fade {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-fade__wrapper {
  position: relative;
  width: 30px;
  height: 20px;
  margin: 20px auto;
}

.hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-fade__line:nth-child(1) { top: 0; }
.hamburger-fade__line:nth-child(2) { top: 9px; }
.hamburger-fade__line:nth-child(3) { top: 18px; }

.hamburger-fade.active .hamburger-fade__line {
  background-color: #000000;
}

.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 900;
}

.nav-fade__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(233 217 255);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade.active {
  visibility: visible;
}

.nav-fade.active .nav-fade__bg {
  opacity: 1;
}

.nav-fade__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5vh 10vw;
  font-family: sans-serif;
}

.nav-fade__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-fade__item {
  position: relative;
  margin-bottom: 2vh;
  padding-left: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade.active .nav-fade__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade.active .nav-fade__item:nth-child(1) { transition-delay: 0.2s; }
.nav-fade.active .nav-fade__item:nth-child(2) { transition-delay: 0.3s; }
.nav-fade.active .nav-fade__item:nth-child(3) { transition-delay: 0.4s; }
.nav-fade.active .nav-fade__item:nth-child(4) { transition-delay: 0.5s; }

.nav-fade__number {
  position: absolute;
  left: 0;
  color: #666;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.nav-fade__link {
  display: inline-block;
  color: #000000;
  font-size: 32px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-fade__link:hover {
  color: #4a90e2;
}

.nav-fade__info {
  margin-top: auto;
  padding-left: 60px;
  color: #666;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
}

.nav-fade.active .nav-fade__info {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade__address,
.nav-fade__tel {
  margin: 5px 0;
}
.intro-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 250px;
  padding-bottom: 150px;
}

.image-section {
  animation: slideUp 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.profile-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

/* 線とテキストの全体 */
.text-section {
  display: flex;
  margin-left: 50px;
  gap: 30px;
}

/* 縦線 */
.line {
  width: 2px;
  height: 250px;
  background-color: black;
  margin-right: 30px;
  opacity: 0;
  animation: slideLeft 1s ease-out forwards;
  animation-delay: 1s;
}

/* テキスト */
.text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  opacity: 0;
  animation: slideText 1s ease-out forwards;
  animation-delay: 2s;
}

.portfolio {
text-align: start;
  font-size: 100px;
  font-family: 'Dancing Script', cursive;
  margin: 0;
}

.name {
  font-size: 70px;
  font-family: 'Dancing Script', cursive;
  margin: 0;
}

/* アニメーション */
@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideText {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.sliderContainer {
      position: relative;
      width: 100%;
      margin: 50px auto;
      overflow: hidden;
    }

    .sliderTrack {
      display: flex;
      gap: 30px; /* 画像の間隔 */
      transition: transform 0.5s ease-in-out;
      margin-left: 525px;
    }

    .slide {
      flex-shrink: 0;
    }

    .slide img {
      width: 300px;
      height: 200px;
      display: block;
    }

    .indicators {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 10px;
      gap: 60px;
    }

    .dotsWrapper {
      display: flex;
      gap: 80px;
    }
    .dot {
      width: 20px;
      height: 20px;
      background: #bbb;
      border-radius: 50%;
      cursor: pointer;
    }
    .dot.active {
      background: #000000;
    } 
    .indicators img {
      width: 40px;
      height: 40px;
    }
    .about img {
      width: 250px;
      border-radius: 50%;
    }
    .about {
      display: flex;
      justify-content: center;
      margin: 200px 0;
      align-items: center;
      gap: 100px;
    }
    .title2 {
      gap: 20px;
    font-size: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Klee One', sans-serif;
    }
    .about2 {
      font-family: klee one, sans-serif;
      justify-self: center;
    }
    .about2Display {
      width: 900px;
    }
    .about2Title,.about2text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid;
    } 
 .head-border {
  display: flex;
  align-items: center;
  font-size: 32px;
  justify-content: center;
}
.head-border::after {
  content: '';
  display: block;
  width: 800px;
  height: 1px;
  background: #053D69;
}
.head-border::after {
  margin-left: 15px;
}
.about2Title p{
  font-size: 24px;
  margin: 10px;
}
.about2text h2 {
  font-size: 20px;
}
.about3 {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}
.skill {
    font-family: 'Klee One';
    width: 900px;
    background-color: lavender;
    padding: 0 30px;
}
.skill h2 {
    display: flex;
    font-size: 32px;
    margin: 20px 0;
}
.skill ul li {
    font-size: 24px;
    display: flex;
    justify-content: space-between;

}
.skill ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
}
.about4 {
  font-family: klee one, sans-serif;
}
.hobby {
    justify-self: center;
}
.hobby h2 {
  display: flex;
  font-size: 32px;
  width: 900px;
}
.hobby ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}