body {
  background: linear-gradient(135deg, #FFEFBA, #FFFFFF);
  background-repeat: no-repeat;
  /* 繰り返しをしない */
  background-attachment: fixed;
  /* スクロールしても背景が動かない */
  background-size: cover;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin: 0;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#header-title {
  background-color: #ffb700;
  margin: 0;
  padding: 10px;
  text-align: center;
  width: 100vw;
}

#header-title span {
  font-size: 40px;
  color: #fff;
}

#header-title a {
  color: #fff;
  text-decoration: none;

}

#header-title a:visited {
  color: #fff;
}

#header-title a:hover {
  color: #fff;
}

/*SNSシェア*/
.sns-share {
  margin-top: 2rem;
  text-align: center;
  user-select: none;
  margin-bottom: 3rem;
}

.sns-share p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FF6F61;
}

.sns-share a {
  display: inline-block;
  margin: 0 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.btn-twitter {
  background-color: #1DA1F2;
}

.btn-twitter:hover {
  background-color: #0d8ddb;
}

.btn-line {
  background-color: #00c300;
}

.btn-line:hover {
  background-color: #00a600;
}

.btn-facebook {
  background-color: #1877F2;
}

.btn-facebook:hover {
  background-color: #105dbf;
}

.footer {
  text-align: center;
  padding: 10px 0;
  font-size: 0.9em;
  color: #666;
  border-top: 1px solid #ddd;
  margin-top: 30px;
}

h1 {
  font-size: 2rem;
  color: #FF6F61;
  text-shadow: 2px 2px 5px #FFC1B6;
  margin: 1.5rem 0;
  text-align: center;
}

h2 {
  color: #FF6F61;
  margin-bottom: 0.5rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 5px #FFC1B6;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

h4 {
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 2px 2px 5px #FFC1B6;
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: center;
}

h5 {
  color: #FF6F61;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1.5rem;
}

h6 {
  color: #FF6F61;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1.3rem;
}

form {}



swer-input {
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border: 2px solid #FF6F61;
  border-radius: 8px;
  width: 120px;
  transition: border-color 0.3s ease;
}

input[type="text"] {
  margin-top: 3rem;
  margin-bottom: 3rem;
  width: 23rem;
  height: 8rem;
  padding: 0.5rem 1rem;
  border: 2px solid #FF6F61;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  color: #2b2b2b;
  font-size: 14px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

input[type="text"]:focus {
  border-color: #FF3B2F;
  outline: none;
}

button {
  background-color: #FF6F61;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #FF3B2F;
}

ul {
  list-style-type: none;
  padding: 0;
  max-width: 320px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(131, 131, 131, 0.2);
}

li {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #cbcbcb;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
}

li:last-child {
  border-bottom: none;
}

.nav-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn-requesttons {
  background-color: #FF6F61;
  color: white;
  border: none;
  border-radius: 8px;
  margin-top: 3rem;
  margin-bottom: 10rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* 下部TOPボタン */
#header {
  width: 100vw;
  padding: 1.3rem 0;
  text-align: center;
  background: #ff6f61;
  position: sticky;
  bottom: 0;
  box-shadow: 0 -4px 12px rgba(255, 111, 97, 0.6);
  user-select: none;
  position: fixed;

}

#header span {
  font-size: 1.4rem;
  font-weight: 700;
}

#header a {
  color: white;
  text-decoration: none;
}

#header a:hover {
  color: #ffd54f;
}

/* スマホ向け調整*/
@media (pointer: coarse) {

  #header-title {
    background-color: #ffb700;
    margin: 0;
    padding: 1rem;
    text-align: center;
    width: 100vw;
  }

  #header-title span {
    font-size: 1.5rem;
    color: #fff;
  }


  /*SNSシェア*/
  .sns-share {
    margin-top: 2rem;
    text-align: center;
    user-select: none;
    margin-bottom: 1.5rem;
  }

  .sns-share p {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    font-weight: 600;
    color: #FF6F61;
  }

  .sns-share a {
    display: inline-block;
    margin: 0 0.3rem;
    padding: 0.5rem 0.7rem;
    border-radius: 7px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    font-size: 0.7rem;
  }

  .footer {
    text-align: center;
    padding: 10px 0;
    font-size: 0.7rem;
    color: #666;
    border-top: 1px solid #ddd;
    margin-top: 1.5rem;
    margin-bottom: 5rem;
  }

}