/* スタイル全リセット================================================================= */

* {
    margin: 0;
    padding: 0;
}

/* ============================================================================

    ページ基本

============================================================================ */

body {
    background-color: #ffffff; /* 画面の背景色 */
     /* 画面の背景画像（デフォルト：none　指定がある場合はurl("～")でファイル指定） */
    background-repeat: repeat; /* 画面の背景画像の繰り返し（デフォルト：repeat） */
    padding: 0px 20px;
    text-align: center; /* ページ全体の表示位置（IE向け） */
    font-family: 'ＭＳ Ｐゴシック', sans-serif, Tahoma, Verdana, Arial, Geneva, Helvetica;
}

h1 {
    margin: 0px 0px 20px auto;
    text-align: left;
}

h2 {
    margin: 15px 0px;
    font-size: 12px;
    font-weight: bold;
    color: #383838;
}

form {
    text-align: center; /* ページ全体の表示位置（IE向け） */
    margin: 0 auto 0 auto; /* ページ全体の表示位置（IE以外のモダンブラウザ向け） */
}

img {vertical-align: middle;}

input {padding: 0px 1px;}
textarea {padding: 0px 1px;}

/* ============================================================================

    ヘッダー

============================================================================ */

/* アンケートヘッダー ====================================================== */

.enq_header {
    width: 1000px; /* ページ幅 */
    text-align: center; /* ページ全体の表示位置（IE向け） */
    margin: 0 auto 0 auto; /* ページ全体の表示位置（IE以外のモダンブラウザ向け） */
}

/* アンケートヘッダー ====================================================== */
.enq_header .header {
    font-size: 14px; /* 設問欄の文字サイズ（デフォルト：14px） */
    color: #000000; /* 設問欄の文字色 */
    font-weight: normal; /* アンケートヘッダのスタイル（デフォルト：normal、太字を使用時のみbold） */
    font-style: normal; /* アンケートヘッダのスタイル2（デフォルト：normal、斜体を使用時のみitalic） */
    text-align: center; /* ページ全体の表示位置（IE向け） */
    margin: 20px auto 0 auto; /* ページ全体の表示位置（IE以外のモダンブラウザ向け） */
}

/* ヘッダコメント ========================================================== */
.enq_comment {
    font-size: 14px; /* 設問欄の文字サイズ（デフォルト：14px） */
    color: #000000; /* 設問欄の文字色 */
    font-weight: normal; /* 文字のスタイル（デフォルト：normal、太字を使用時のみbold） */
    font-style: normal; /* 文字のスタイル2（デフォルト：normal、斜体を使用時のみitalic） */
    text-align: left; /* ページ全体の表示位置（IE向け） */
    margin: 15px auto 15px 0; /* ページ全体の表示位置（IE以外のモダンブラウザ向け） */
}

/* ============================================================================

カスタマイズ関連

============================================================================ */
/* 説明 */
#box{
    border: 6px solid #ff6347;
    line-height: 24px;
    margin: 10px auto;
    text-align: left;
    width: 988px;
}
#box_cont{
	margin: 20px;
}
#box_p1{
    background-color: #ff6347;
    color: #fff;
    font-size: 24px;
    padding: 10px;
    text-align: center;
}
.txt_waku{
    background-color: #fff4f2;
    border: 1px solid #ff6347;
    margin: 2px;
    padding: 2px;
}
.txt_b{
	font-weight:bold;
}

/* メニュー */
#menu{
    margin: 0px auto;
}
#menu_p1{
    background-color: #ff6347;
    color: #fff;
    font-size: 24px;
    padding: 10px;
    text-align: center;
}
#menu ul{ 
    list-style:none;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 530px;
}
#menu li{ 
display: inline; 
padding: 0; 
margin: 0; 
}
#menu li a{
    background-color: #fff1db;
    border: 1px solid #ff8747;
    color: #333;
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0;
    padding: 30px;
    text-align: center;
    text-decoration: none;
	border-radius: 5px;
	box-shadow: 5px 5px 5px #aaa;
}
#menu li a:hover{
	border: 1px solid #FFC55B;
	background-color: #FFC55B;
    color: #333;
}

.btn{
  margin: .4em;
  padding: 1em;
  cursor: pointer;
  background: #e1e1e1;
  text-decoration: none;
  color: #666;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFD697;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn:hover, .btn:focus, .btn:active {
  color: white;
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}