@charset "utf-8";

/*========================================
  ▼ ページタイトル（そのまま移植）
========================================*/
#page-title {
  width: 100%;
  font-size: 30px;
  padding: 150px 0 30px 0;
  text-align: center;
}

#page-title h1 {
 font-weight: 300;
}

#page-title p {
  padding-top: 50px;
  font-size: 20px;
  line-height: 2.0;
}

/*========================================
  ▼ ヘッダー（そのまま移植）
========================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
}

.header-inner {
  color: #000000;
}

.form {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}

.iframe {
  max-width: 100%;
  width: 640px;
  height: 1165px;
  border: none;
}

.feedback-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-image: linear-gradient(to right, #aad1e3, #817ce0);
  color: rgb(0, 0, 0);
  font-weight: 300;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  z-index: 60;
  display: inline-flex;   /* 横並びを確実にする */
  align-items: center;
  gap: 0.4rem;            /* アイコンと文字の隙間を少し小さめに */
  text-decoration: none;
  white-space: nowrap;    
  font-size: 20px;  
}

.feedback-button:hover {
  background-image: linear-gradient(to right, #5b9cbc, #5851a4);
  transform: scale(1.05);
}

.feedback-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px #a5b4fc;
}

.feedback-icon {
  width: 25px;   /* アイコンを少し小さく */
  height: 25px;
}

.footer {
  color: #000000;
    padding-bottom: 30px;
    display: flex;
    background-color: #ffffff;
}