@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");

/* リセットスタイル */
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, img, small, strong, b, dl, dt, dd, ol, ul, li,
form, label, legend, table, tbody, tfoot, thead, tr, th, td, footer, header, menu, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: bottom;
  background: transparent;
}

body {
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

ul li {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #333;
  text-decoration: none;
  vertical-align: baseline;
}

a:hover {
  opacity: 0.7;
}

p{
  word-break: auto-phrase;
}
.text{
  max-width: 650px;
  margin-left: auto;
  margin-right: auto
}


table {
  border-spacing: 0;
}

input[type=text],
input[type=tel],
input[type=email] {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "メイリオ", Meiryo, sans-serif;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

textarea {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "メイリオ", Meiryo, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

button,
input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

/* カスタムスタイル */
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "メイリオ", Meiryo, sans-serif;
  color: #333;
  font-size: 18px;
}

header {
  background: linear-gradient(to right, #75cb26, #10b45f);
  color: white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.header-content {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.box {
  border: 1px solid white;
  background: #fff;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 0 1rem;
  text-align: center;
  border-radius: 50px;
}

h1 {
  font-size: 1.5rem;
  color: #10b45f;
  margin: 0;
}

main{
  background: url(../img/enquete_back.png) no-repeat top center;
  background-size: cover;
  min-height: 100vh;
  padding-top: 1rem;
}

.container {
  max-width: 100%;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
}

h2 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-wrap: balance;
}
h2 img{
  max-width: 100%;
  margin-bottom: 0.3rem;
}

h2 span {
  font-size: 5rem;
  font-weight: bold; /* フォントを太くする */
  position: relative;
  display: inline-block;
  color: transparent; /* テキストの色を透明に */
}
.fire {
  display: inline-block;
  background: linear-gradient(135deg, #df2626 0%, #ff707c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.earth {
  display: inline-block;
  background: linear-gradient(135deg, #ffce54 0%, #f57600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.round{
  font-size: 2.5rem;
  color: #fff;
  border-radius: 50px;
  padding: 0.3rem;
  background: linear-gradient(to right, #75cb28, #10b35e);
  max-width: 80%;
  margin: 1rem auto 1.5rem;
}

.manual a{
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: #f57600;
}



h3{
  text-align: center;
  margin-bottom: 1rem;
  text-wrap: balance;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 1.5rem;
}
h3 .big{
  font-size: 3rem;
  color: #10b65e;
}
h3 .big::after {
  right: 1rem;
  padding-left: 0.2rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f058';
}

p {
  margin-bottom: 15px;
  text-align: center;
}
p span{
  display: inline-block;
}

form {
  margin-top: 2rem;
  margin-bottom: 20px;
}

/* フォームの質問タイトルのスタイル */
form fieldset legend {
  background-color: rgba(255, 242, 65, 0.9); /* 背景を白の半透明にする */
  padding: 10px 2rem; /* パディングを追加して余白を確保 */
  font-weight: bold;
  border-radius: 10px; /* 角を丸くする */
  font-size: 1.9rem; /* フォントサイズを調整 */
  color: #333; /* テキストカラーを濃いグレーにする */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 影を追加して浮き上がらせる */
  letter-spacing: 3px;
  display: block;
  width: calc(100% - 4rem); /* 余白を考慮した幅 */
  max-width: 100%;
  box-sizing: border-box; /* パディングとボーダーを含む幅の計算 */
  word-wrap: break-word; /* 長い単語の途中で折り返す */
  margin: 0 auto; /* 中央揃え */
  margin-bottom: 1rem;
}

form fieldset legend span{
  color: #10b35e;
}

form fieldset .Q1::after {
  right: 1rem;
  padding-left: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f015';
}
form fieldset .Q2::after {
  right: 1rem;
  padding-left: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f5a0';
}
form fieldset .Q3::after {
  right: 1rem;
  padding-left: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f784';
}
form fieldset .Q4::after {
  right: 1rem;
  padding-left: 0.5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: '\e4d8';
}
form fieldset .Q5::after {
  right: 1rem;
  padding-left: 0.5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: '\f6f1';
}






/* フォーム全体のスタイル調整 */
form fieldset {
  margin-bottom: 20px; /* フィールドセット間の余白を追加 */
  border: none; /* フィールドセットのデフォルトのボーダーを削除 */
  padding: 0; /* パディングを0に */
  overflow: hidden; /* はみ出しを隠す */
  text-align: center; /* 中央揃え */
  padding-bottom: 1rem;
}

/* ラジオボタンとラベルのスタイル調整 */
form fieldset label {
  display: inline-block; /* ラベルをインラインブロック要素に */
  margin: 10px; /* ラベル間の余白を追加 */
  text-align: center; /* 中央揃え */
  padding: 15px 25px; /* パディングを追加 */
  border: 2px solid #ccc; /* ボーダーを追加 */
  border-radius: 10px; /* 角を丸く */
  background: #fff; /* 背景色を白に */
  cursor: pointer; /* カーソルをポインターに */
  transition: all 0.3s ease; /* トランジションを追加 */
}

/* ラジオボタンのスタイル */
form fieldset input[type="radio"] {
  display: none; /* ラジオボタンを非表示に */
}

/* チェックされたラベルのスタイル */
form fieldset input[type="radio"]:checked + label {
  background: linear-gradient(to right, #fc4a1a, #f7b733); /* 背景色をグラデーションに */
  color: #fff; /* テキストカラーを白に */
  border-color: #fc4a1a; /* ボーダー色を変更 */
}

/* ラベルのホバー・フォーカス時のスタイル */
form fieldset label:hover, form fieldset label:focus {
  background: #f7b733; /* 背景色を変更 */
  color: #fff; /* テキストカラーを白に */
  border-color: #fc4a1a; /* ボーダー色を変更 */
}

fieldset {
  margin-bottom: 20px;
  border: 1px solid #10b35e;
  padding: 2rem 1rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.1rem;
}

input[type="text"], input[type="tel"], input[type="email"], button {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #10b35e;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type="text"]::placeholder, input[type="tel"]::placeholder, input[type="email"]::placeholder, button::placeholder {
  color: #bbb;
}


button {
  font-size: 14px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info div {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
hr{
  border-width: 0 0 1px;
  border-image: linear-gradient(
    90deg,
    hsla(0, 0%, 100%, 0),
    hsla(0, 0%, 100%, 0.5) 50%,
    hsla(0, 0%, 100%, 0) 100%) 0 0 100%;
  border-style: solid;
}

.contact-info label {
  width: 150px;
  margin-bottom: 0;text-shadow:
  3px 3px 2px #fff,
  -3px 3px 2px #fff,
  -3px -3px 2px #fff,
  3px -3px 2px #fff;
}

.contact-info input[type="text"], .contact-info input[type="tel"], .contact-info input[type="email"] {
  flex: 1;
  padding: 10px;
  margin-bottom: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-width: 100% !important;
  background: #fff;
  font-size: 1.4rem;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  display: inline-block;
  cursor: pointer;
  padding: 35px 50px;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 2px solid white;
  border-radius: 8px;
  width: 150px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #75cb26, #10b45f);
  color: white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

input[type="radio"]:hover + label,
input[type="radio"]:focus + label {
  background: linear-gradient(to right, #f7b733, #fc4a1a);
  border-color: white;
}

input[type="radio"]:active + label {
  background-color: #e0e0e0;
  border-color: #bbb;
}

input[type="radio"]:checked + label {
  background-color: #10b45f;
  border-color: #10b45f;
}

button {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #fc4a1a, #f7b733);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0px 2px 2px rgba(255, 255, 255, 0.2);
}

button:hover {
  background: linear-gradient(to right, #f7b733, #fc4a1a);
}
button::after {
  right: 1rem;
  padding-left: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f772';
}


/* 半透明の背景を追加 */
.contact-info, fieldset {
  background-color: rgba(255, 255, 255, 0.7); /* 白ベースの半透明 */
  border-radius: 8px; /* 角を丸める */
  padding: 1.5rem 2rem; /* 内側の余白 */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); /* 影をつける */
  margin-bottom: 20px; /* 下の余白 */
  border: 1px solid #10b35e;
}




.thanks fieldset {
  max-width: 800px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.9); /* 白ベースの半透明 */
}
.thanks h2{
  color: #fff;
  font-size: 1.8rem;
}
.thanks p{
  font-size: 1.5rem;
  margin-bottom: 0;
}
.thanks .pend{
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.thanks .small{
  font-size: 1rem;
}
.thanks h3{
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #10b65e;
}
.thanks .big{
  font-size: 6rem;
  color: #10b65e;
}
p .big, .thanks p .big{
  font-size: 1.5rem;
  color: #fa8428;
  font-weight: bold;
}
.thanks h3 span{
  vertical-align: baseline;
}
.thanks .big::after {
  display: none;
}
.thanks img{
  max-width: 100%;
  text-align: center;
}
.thanks .tw a{
  color: #fff !important;
}

.spbr{
  display: none;
}