@charset "utf-8";
/* CSS Document */

#header{
text-align:left;/*（テキスト左寄せ）*/
height: auto;
margin:0 auto;/*（外側の空白：上下0px 左右自動）*/
	background-color: rgba(250,250,250,1);
	background-image:
	 radial-gradient(closest-side,
		 transparent 99.9%, rgba(236,236,236,0.8) 100%),
	 radial-gradient(closest-side,
		 transparent 99.9%, rgba(236,236,236,0.8) 100%);
	background-position: 0 0, 30px 30px;
	background-size: 60px 60px;
}

/* ヘッダー
------------------------------------------------------------ */
/*（ヘッダーブロック内にあるH1タグ）*/
#header h1{
font-size:140%;/*（フォントサイズ：140%）*/
margin: 0 0 0;/*（外側の空白：すべて0px）*/
padding:10px 20px;/*（内側の空白：上下10px 左右20px）*/
color:#383838;/*（フォントカラー：＃FFF（白））*/
}
/*（概要文のpブロック（クラス名：intro））*/
.intro{
font-size:110%;/*（フォントサイズ：）*/
padding:10px;/*（内側の空白：上下左右10px）*/
color:#383838;/*（フォントカラー：＃FFF（白））*/
margin:10px 20px;/*（外側の余白：上下10px 左右20px）*/
}

body {
font-family:Arial, sans-serif;
}

#formWrap {
	color:#555;
	line-height:120%;
	width:95%;
	max-width: 1500px;
	margin:0 auto;
}
#thanks {
  width:95%;
  margin:0 auto;
  background: #eeeeee;;
  padding: 10px;
  text-align: center;
  border: 1px solid #cccccc;
}

form{
  width: 100%;
}
/*テーブルここから*/
table.formTable{
  width: 100%;
  border-collapse: collapse;
}


table.formTable th{
  width:auto;
  display:block;
  position: relative;
  background-color: #D9F1F4;
  color: #3A3A3A;
  text-align: left;
  padding: 15px;
  border-bottom: solid 2px white;
}
table.formTable td{
  width:auto;
  display:block;
  text-align: left;
  padding: 10px 25px;
	border-bottom: solid 2px white;
}
/*テーブルここまで*/

/*テキストボックス*/
formTable {
	position: relative;
	width: 80%;
	margin: 40px 3%;
}
.formTable input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	padding: 0.5em;
	transition: 0.3s;
	letter-spacing: 1px;
	color: #000000;
	border: 1px solid #858585;
	border-radius: 4px;
}
.ef input[type='text']:focus {
	border: 1px solid #3C57DA;
	outline: none;
	box-shadow: 0 0 5px 1px rgba(218,60,65, .5);
}


/*テキストボックス*/
h2 {
  border-bottom: 3px dotted #000;
  font-size: 1.1em;
}
h3 {
  /*線の種類（二重線）太さ 色*/
  border-bottom: double 5px #52c2d0;
}
h4 {
	clear: both;
	margin-bottom: 5px;
	padding: 2px 15px;	/*上下、左右への余白*/
}
 p {
	padding: 2px 20px 14px;	/*上、左右、下への余白*/
}

.must {
	color:#ff0000;
	font-size: 1.2em;
}

p.Sname{
	text-align: right;
}
.b {
	font-weight: bold;
}
.arart{
	color: red;
	padding-left: 10px;
}

/*ボタン*/
.button1 {
	display: inline-block; 
	width: 160px;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	color: #52c2d0;
	border: 2px solid #52c2d0;
	border-radius: 3px;
	transition: .4s;
	font-size     : 12pt;        /* 文字サイズ */
	background-color: #eee;
	font-weight: bold;
}
.button1:hover {
	background: #52c2d0;
	color: #fff;
}

.button2 {
	display: inline-block; 
	width: 160px;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	color: #52c2d0;
	border: 2px solid #CDEDF1;
	border-radius: 3px;
	transition: .4s;
	font-size     : 12pt;        /* 文字サイズ */
	background-color: #eee;
	font-weight: bold;
}
.button2:hover {
	background: #52c2d0;
	color: #fff;
}

/*ラジオボタンのラベル文字が長い時の回り込み　ここから　*/

.divWrapperID_4 input[type="checkbox"] {
	float: left; 
}

.divWrapperID_4 label {
  margin-top:-25px;
  margin-bottom: 10px;
  margin-left: 20px;
  padding-left: 20px;
  display: block;
 }

/*ここまで　*/

fs1{
	font-size:95%;
}
fs2{
	font-size:90%;
}

input[type="radio"]{
 margin: 5px 2px 10px 20px;

}


/*ラジオボタン*/
.radio-2 {
    display: flex;
    flex-wrap: wrap;
    gap: .3em 2em;
    border: none;
}

.radio-2 label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}

.radio-2 label::before,
.radio-2 label::after {
    border-radius: 50%;
    content: '';
}

.radio-2 label::before {
    width: 18px;
    height: 18px;
    border: 2px solid #dee5eb;
    box-sizing: border-box;
}

.radio-2 label::after {
    position: absolute;
    top: 50%;
    left: 9px;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background-color: #dee5eb;
}

.radio-2 label:has(:checked)::after {
    background-color: #1abbd1;
    animation: anim-radio-2 .3s linear;
}

@keyframes anim-radio-2 {
    0% {
        box-shadow: 0 0 0 1px transparent;
    }
    50% {
        box-shadow: 0 0 0 10px #1abbd133;
    }
    100% {
        box-shadow: 0 0 0 10px transparent;
    }
}

.radio-2 input {
    display: none;
}
/*ラジオボタンここまで*/

/*チェックボックス*/
.checkbox-2 {
    border: none;
}

.checkbox-2 label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    margin-bottom: .5em;
    cursor: pointer;
}

.checkbox-2 label::before {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 2px solid #d6dde3;
    content: '';
}

.checkbox-2 label:has(:checked)::after {
    position: absolute;
    top: 5px;
    left: 7px;
    transform: rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid #63d4e3;
    border-width: 0 3px 3px 0;
    content: '';
}

.checkbox-2 input {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  border: 0;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

/*チェックボックスここまで*/


li.indent {
	padding-left:40px;
}

.thxmessage {
	font-size: large;
}


