@charset "utf-8";

/* common
---------------------------------------------*/
* {margin:0;padding:0;}

a:link,a:visited {
	color: #ffffff;
	text-decoration:underline;
}
a:hover,a:active {
	color: #d90909;
	text-decoration:underline;
}

.impact   {font-size:20pt; font-weight:bold;}
.impact2  {color:red;}
.impact3  {background:yellow; color:#000;}
#impact4  {underline;}
.impact5  {background:#173B50; padding:2px 5px; color:#fff;}
.impact6  {background:#f4f4f4; padding:3px; line-height:1.1;}
.impact7  {background: #B60000; padding:2px 5px; color:#fff;}
.style2   {color: #FF0000}
.style3   {color: #333333}
.style4   {color: #000000}


img{ border: none;}

/* ボタンのマウスオーバーで明るくする */
.btn:hover {
  filter: brightness(120%);
}


/* animation
---------------------------------------------*/
.feedInUp {
	opacity: 0;
	transform: translate(0,30px); 
	-webkit-transform: translate(0,30px); 
	transition: 1.5s;
}
.feedInUp_On {
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}

/* layout
---------------------------------------------*/


/*TopIntro-Start*/
body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	min-width: 1002px;
	
  background-image: url(../images/bg.jpeg);
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: top center;
	
-webkit-text-size-adjust:none;
	
  text-align:center;
  font-size:18px;
  font-family: 'meiryo', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    color: #383d5c;
}
#head1_1 { background: url("../images/header_01_1.png") no-repeat top center; height:    25px; }
#formtell1 { background: url("../images/formtell1.png") no-repeat top center; height:    57px; }
#head1 { background: url("../images/header_01.png") no-repeat top center; height:    1377px; } 
#head2 { background: url("../images/header_02.png") no-repeat top center; height:    535px; }
#form1 { background: url("../images/form1.png") no-repeat top center; height:    177px; }
#head4 { background: url("../images/header_04.png") no-repeat top center; height:    1705px; } 
#head5 { background: url("../images/header_05.png") no-repeat top center; height:    1371px; }
#head6 { background: url("../images/header_06.png") no-repeat top center; height:    1922px; } 
#head7 { background: url("../images/header_07.png") no-repeat top center; height:    1275px; } 
#head8 { background: url("../images/header_08.png") no-repeat top center; height:    1154px; } 
#head9 { background: url("../images/header_09.png") no-repeat top center; height:    921px; }
#head10 { background: url("../images/header_10.png") no-repeat top center; height:    949px; }
#head11 { background: url("../images/header_11.png") no-repeat top center; height:    916px; }
#head12 { background: url("../images/header_12.png") no-repeat top center; height:    1045px; }
#head13 { background: url("../images/header_13.png") no-repeat top center; height:    862px; }
#head13_1 { background: url("../images/header_13_1.png") no-repeat top center; height:    141px; }
#form1 { background: url("../images/form1.png") no-repeat top center; height:    177px; }
#head13_2 { background: url("../images/header_13_2.png") no-repeat top center; height:    104px; }
#head14 { background: url("../images/header_14.png") no-repeat top center; height:    878px; }
#head15 { background: url("../images/header_15.png") no-repeat top center; height:    573px; }
#head16 { background: url("../images/header_16.png") no-repeat top center; height:    853px; }
#head17 { background: url("../images/header_17.png") no-repeat top center; height:    1075px; }
#head18 { background: url("../images/header_18.png") no-repeat top center; height:    915px; }
#head19 { background: url("../images/header_19.png") no-repeat top center; height:    514px; }
#formtell2 { background: url("../images/formtell2.png") no-repeat top center; height:    115px; }
#head19_1 { background: url("../images/header_19_1.png") no-repeat top center; height:    48px; }
#head20 { background: url("../images/header_20.png") no-repeat top center; height:    274px; }



	background-image: url("../images/wrap.png");
	background-repeat: repeat-y;
	background-position: center top;
	background-position:50% 0%;
}

#wrapform {

	background-image: url("../images/wrapform.png");
	background-repeat: repeat-y;
	background-position: center top;
	background-position:50% 0%;
}




#container {

	text-align:left;
	width:1000px;
	margin:0 auto;
}


#container2{
    text-align: left;
    width: 600px;
	margin: 0 auto;
}


.form-container {
  max-width: 900px;
	margin: 0px auto;
  padding: 50px;
  background-color: #fcdcbc; /* フォーム背景 */
}

 .form-group {
  width: 90%;        /* ラベルと入力欄の幅 */
  margin: 0 auto 20px; /* 上下余白20px、左右自動で中央 */
}

.form-group label {
  display: block;    /* 上に配置 */
  font-weight: bold;
  text-align: left;  /* 左揃え */
  margin-bottom: 5px;
	font-size: 36px;
}

.form-group input,
.form-group textarea {
  width: 100%;       /* ラベルと同じ幅の中で100% */
  height: 100px;      /* テキストは高さ50px */
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 30px;
  box-sizing: border-box;
}

.form-group textarea {
  height: 300px;     /* テキストエリアの高さは大きめ */
  resize: vertical;
}

.required {
  color: red;
}


.form-submit {
  text-align: center;
  margin-top: 20px;
}

/* ボタン用CSS */
.form-submit input[type="submit"] {
  width: 680px;       /* 横幅 */
  height: 160px;      /* 縦幅 */
  background-color: #F77F40; 
  color: #ffffff;     /* 文字色（白に設定） */
  font-size: 60px;    /* 文字サイズ */
  font-weight: bold;
  border: none;       /* 枠線なし */
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
	margin-top: 60px;
}

/* ホバー時の効果 */
.form-submit input[type="submit"]:hover {
  transform: scale(1.05);    /* 少し拡大 */
}


.container {

	text-align:left;
	width:1000px;
	margin:0 auto;
}

#container2{
    text-align: right;
    width: 1000px;
	margin:0 auto;
}

.white {
  color: #fff;
}

.text-center {
　text-align: center;
}


#footer {  
	background-color: #ED5B14;
}
--------------------------- */

ol,
ul{
	list-style-position: inside;
	padding-left:10px;
}
ol li,
ul li{
	text-align:left;
}

