<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
#contents.form .chart_inner {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  padding: 3%;
  background: #fff;
}
#contents.form .chart h3 {
  color: #191919;
  margin-bottom: .2em;
}
.required-note {
  display: block; /* 改行して見やすく */
  color: red; /* 必須を強調 */
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 1.5em;
  text-align: center;
  margin-left: -1em;
}
#contents.form .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap; /* エラーを下に回り込ませる */
}
#contents.form label {
  width: 20%;
  font-weight: bold;
  font-size: 1.6em;
}
#contents.form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.6em;
  box-sizing: border-box;
}
#contents.form .error {
  color: red;
  font-size: 1.4em;
  margin-top: 5px;
  width: 100%; /* 入力欄の下に配置 */
  font-weight: bold;
  margin-bottom: 0;
  margin-left: 20%;
}
#contents.form button {
  width: 100%;
  padding: 10px;
  background-color: #e8093f;
  color: white;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  font-size: 2em;
  margin-top: 1em;
}
#contents.form button:hover {
  background-color: #999;
}
#contents.form #step .chart {
  margin-bottom: 4em;
}
/*確認ページ*/
#contents.form .confirm-value {
  padding: 10px 0;
  font-size: 1.6em;
}
#contents.form .button-group {
  display: flex;
  justify-content: space-between;
}
#contents.form .button-group button:first-child {
  background: #0941e8;
  margin-right: 10px;
}
#contents.form .button-group button:first-child:hover {
  background-color: #999;
}
/*確認ページ*/
/*完了ページ*/
#contents.form .chart_inner &gt; p {
  text-align: center;
  line-height: 1.6;
  font-size: 1.6em;
}
#contents.form .chart_inner .top-button {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}
#contents.form .chart_inner .top-button a {
	display: inline-block;
	padding: 15px 20px;
	background-color: #e8093f;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	/*font-size: 1.6em;*/
	font-size: 2em;
	width: 100%;
	text-align: center;
}
#contents.form .chart_inner .top-button a:hover {
  background-color: #999;
}
/*完了ページ*/
@media screen and (max-width:1200px) {}
@media screen and (max-width:1023px) {}
/* モバイル対応（768px以下） */
@media screen and (max-width: 768px) {
  #contents.form .form-group {
    display: block;
  }
  #contents.form label {
    width: 100%;
    display: block;
    margin-bottom: 5px;
  }
  #contents.form input {
    width: 100%;
    font-size: 1.4em;
  }
  #contents.form .error {
    margin-left: 0%;
  }
  #contents.form button {}
  /*完了ページ*/
  #contents.form .chart_inner &gt; p {
    text-align: left;
    line-height: 1.6;
    font-size: 1.4em;
  }
  /*完了ページ*/
}
@media screen and (max-width:667px) {}
@media screen and (max-width:568px) {}
@media screen and (max-width:520px) {}
@media screen and (max-width:380px) {}
@media screen and (max-width:1120px) and (min-height:1025px) {}</pre></body></html>