@charset "UTF-8";
/* フォーム送信後 */
.thankyou {
  font-family: 'Arial', sans-serif;
  background-color: #fffafc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}


.back-to-top {
  display: inline-block;
  background-color: #ffe3ec;
  color: #c4709a;
  padding: 10px 20px;
  font-size: 16px;
  border: 2px solid #c4568d;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: #fadadd;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.message-box {
  text-align: center;
  background-color: #ffe3ec;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: #d63384;
  max-width: 500px;
  margin: auto;
}
/* ヘッダーを固定してるから少し余裕をもって */
#contact {
  scroll-margin-top: 150px;
}

.message-box h1 {
  margin-bottom: 15px;
  font-size: 24px;
}

.message-box p {
  font-size: 16px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin: 60px 0 10px;
  color: #333333;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* 自己紹介 */
.top-spese {
  margin: 80px auto;
}

.text-box {
  position: relative;
  width: 500px;
  background: #fff0cd;
  box-shadow: 0px 0px 0px 5px #fff0cd;
  border: dashed 2px #ffffff;
  padding: 0.2em 0.5em;
  color: #454545;
}

.text-box:after {
  position: absolute;
  content: '';
  right: -7px;
  top: -7px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #ffdb88 #f7f4f8 #ffdb88;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

.about-text {
  padding: 20px;
  font-size: 16px;

}

.about-row {
  display: flex;
  margin-bottom: 8px;
  border-bottom: 1px dotted #aaa;
  padding-bottom: 4px;
}

.about-row dt {
  min-width: 120px;
  font-weight: bold;
  color: #333;
}

.about-row dd {
  margin: 0;
  color: #444;
}

/* すきる */
.skill-stars {
  margin-top: 5px;
}

.star {
  font-size: 20px;
  color: #ffe4e1;
  margin-right: 3px;
}

.star.filled {
  color: #ff8fab;
}

.skills {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.skills-list li {
  background-color: #ffffff;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 16px;
}

/* タイムライン */
.timeline {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 20px;
  border-left: 4px solid #deb6b6;
}

.timeline-entry {
  margin-bottom: 30px;
  padding-left: 20px;
  position: relative;
}

.timeline-entry::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #deb6b6;
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: 5px;
}

.timeline-entry h4 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #333333;
}

.timeline-entry p {
  margin: 0;
  font-size: 14px;
  color: #666666;
}

/* お問い合わせ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff8f0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form input, .contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form button {
  background-color: #deb6b6;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #c89b9b;
}

/* スライド画像のしたの文字 */
.caption {
  margin-top: 10px;
  font-size: 14px;
  color: #333333;
}

/* スライド(横) */
.slide-wrapper {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.slide {
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}

.slide div {
  width: 33.33%;
  height: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.slide1 { transform: translateX(0); }
.slide2 { transform: translateX(-33.33%); }
.slide3 { transform: translateX(-66.66%); }

.slide div:nth-of-type(1) { background-color: #ffffff; }
.slide div:nth-of-type(2) { background-color: #ffffff; }
.slide div:nth-of-type(3) { background-color: #ffffff; }

/* スライドボタン */
.next, .prev {
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000000;
  border-right: solid 3px #000000;
}

.next {
  right: 10px;
  transform: rotate(45deg) translateY(50%);
}

.prev {
  left: 25px;
  transform: rotate(-135deg) translateY(-50%);
}

/* インジケーター */
.indicator {
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: flex;
  column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.indicator li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  list-style: none;
  background-color: #ffffff;
  border: 2px #000000 solid;
  cursor: pointer;
}

.indicator li:first-of-type {
  background-color: #000000;
}

.button-right { 
  text-align: right;
}

/* pop関係 */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
footer img {
  transition: transform 0.3s ease;
}
footer img:hover {
  transform: translateY(-10px) scale(1.05);
}
.contact-form button {
  position: relative;
  overflow: hidden;
}
.contact-form button::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: #ffffff66;
  display: block;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}
/* 最初のがめんアニメーション */
.logo_fadein {
	background: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo_fadein p {
	opacity: 0;
	transition: opacity 1s ease;
	z-index: 2000;
	text-align: center;
  justify-content: center;
}