@charset "UTF-8";
/* CSS Document */
html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
body {
  background-color: #EEEEEE;
  overflow-x: hidden;
  color: #4a4a4a;
  font-family: "a-otf-ryumin-pr6n", serif;
}
@media screen and (min-width: 800px) {
  body {
    max-width: 400px;
    margin: 0 auto;
  }
}
.form-topic-main .form-topic-main-wrap
.sf-form-cover{
	display: none;
	background-color: none;
}
/*Form*/
.form {
  text-align: center;
	margin-top: 60px;
  margin-bottom: 100px;
}
.form-topic {
  padding: 20px;
  margin-bottom: 60px;
}
.form-topic-ttl {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
}
.form-topic-txt {
  line-height: 1.6em;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.form-topic-txt__date {
  font-size: 18px;
  font-weight: 600;
}

.form-topic-tan {
	display: block;
	margin: 0 auto;
	width:240px;
	height: 240px;
}
.form-topic-tan__in{
	width: 100%;
	object-fit: cover;
}
.form-topic-main {
  background-color: #FFF;
  width: 80%;
  margin: 0 auto;
  display: block;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.form-topic-main-wrap {
  padding:40px 20px;
}
.form-topic-main-wrap-ttl {
  margin-bottom: 60px;
}
.form-topic-main-wrap-ttl__in {
  font-size: 24px;
  font-family: "regina", sans-serif;
}

.form-topic-main-ttl {
  margin-bottom:20px;
	font-size: 16px;
}
.form-topic-main-ttl__en {
	font-size: 10px;
	letter-spacing: 0.1em;
	padding-top: 3px;
	color: #ABABAB;
}
.form-topic-main-item {}
.form-topic-main-item::after {
  content: "";
  display: block;
  background-color: rgba(100,100,100,0.2);
  width: 100%;
  height: .5px;
  margin: 40px auto;
}
.form-topic-main-input {}
form {
  padding: 0 10px;
}
label {
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
input, select, textarea {
  width: 100%;
  padding: 10px 5px;
  margin-top: 5px;
  margin-bottom: 15px;
  background-color: #f8f8f8;
  border-radius: 2px;
  border: 1px solid #f3f3f3;
}
.radio-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.radio-group-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.radio-group-label {
  margin: 0;
  text-align: left;
}
/* デフォルトのラジオボタンのスタイルを解除 */
.radio-group-input {
  padding: 0;
  margin-bottom: 0;
  margin-top: 1px;
  margin-right: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 14px;
  height: 14px;
  background-color: #f8f8f8;
  border: .5px solid #d1d1d1;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* チェックされた時のスタイル */
.radio-group-input:checked {
  background-color: #8D53E9; /* 好みの色に変更 */
  border-color: #8D53E9; /* 好みの色に変更 */
}

/* チェックされた時の中の点を表示 */
.radio-group-input:checked::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #fff; /* 好みの色に変更 */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ラベルのスタイル */
.radio-group-label {
  margin-left: 10px;
  cursor: pointer;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #c09853;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "a-otf-ryumin-pr6n", serif;
}
button:hover {
  background-color: #a8794c;
}