﻿/*全体*/
body,form,table,textarea{
	font-size:13pt;
	font-family: sans-serif;
}

h1{
    font-size:20pt;
}
h2{
    font-size:15pt;
    background: #f8f8ff;
    padding: 0.3rem 0.5rem;
    border: none;
    border-left: 0.3em solid #1e50a2;
    width: 950px;
    margin: 0 auto;
}

/*Form*/
input[type=text], input[type=password], input[type=number], input[type=url], input[type=tel] {
	height: 21px;
	font-size:100%;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    /*numberのスピンボタンを非表示*/
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance:textfield;
}

/*ラジオボタンstart*/
.radio-label {
  padding: 6px 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.radio-label:hover {
  background: rgba(0,0,0,0.05);
}
.col2{
  width: calc(100% / 2);
}
.col3{
  width: calc(100% / 3);
}
.col4{
  width: calc(100% / 4);
}
.col5{
  width: calc(100% / 5);
}
.radio-input {
  opacity: 0;
  width: 0;
  margin: 0;
}
.radio-input:focus + .radio-dummy {
  border: solid 2px #333333;
}
.radio-input:checked + .radio-dummy {
  border: solid 2px #007bbb;
}
.radio-input:checked + .radio-dummy::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #007bbb;
}
.radio-dummy {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: solid 2px #888;
}
.radio-text {
  margin-left: 12px;
  display: block;
  max-width: 90%;
}
/*ラジオボタンend*/

/*チェックボックスstart*/
.chkbox-label {
  padding: 6px 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.chkbox-input {
  margin: 0;
  width: 0;
  opacity: 0;
}

.chkbox-label:hover{
  background: rgba(0,0,0,.05) !important;
}

.chkbox-input:focus + .chkbox-dummy{
  border: solid 2px #007bbb;
}
.chkbox-input:checked + .chkbox-dummy::before {
  content: "";
  display: block;
  position: absolute;
  top: 43%;
  left: 50%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-135deg);
  transform-origin: 2px 2px;
  background: #007bbb;
}
.chkbox-input:checked + .chkbox-dummy::after {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  left: 55%;
  transform: translate(-6px, 5px) rotateZ(-45deg);
  width: 90%;
  height: 4px;
  border-radius: 2px;
  transform-origin: 2px 2px;
  background: #007bbb;
}
.chkbox-dummy {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #fff;
  border: solid 2px #888;
}
.chkbox-text {
  margin-left: 12px;
  display: block;
  max-width: 90%;
}
/*チェックボックスend*/

select{
    margin: 15px 0 0 0;
    font-size:100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    border-radius: 4px;
    padding: 0.5em 3.5em 0.5em 1em;
    background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
    background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
    background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
    background-repeat: no-repeat;
}
/*IE用セレクト矢印消去*/
select::-ms-expand {
    display: none;
}

textarea {
    margin-top: 15px;
	width:680px;
	height:100px;
}

.ime_d{
    /*IMEオフ*/
	ime-mode:disabled;
}
.text_100{
    /*テキストボックスの幅100%*/
	width:100%;
}
.text_95{
    /*テキストボックスの幅95%*/
	width:95%;
	margin-top:10px;
}
.text_num{
    /*テキストボックス数値入力用*/
    margin-top: 15px;
	width: 10em;
}
.sp_fa {
    /*FAテキストボックスの位置*/
    padding-left: 2em;
}
.text_fa{
    /*テキストボックスの幅FA*/
	width:20em;
}
.btn {
    /*ボタン基本*/
    -webkit-appearance: none;
    display: inline-block;
    width: 160px;
    padding: 0.8em;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -webkit-tap-highlight-color: transparent;
    transition: .2s ease-out;
    font-weight: bold;
    font-size:16px;
}
.btn:hover {
    cursor: pointer;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 3px 10px 0 rgba(0,0,0,0.12), 0 4px 7px -2px rgba(0,0,0,0.2);
}
.btn_normal {
    /*通常ボタン*/
    background-color: #5cbcf6;
    color: #ffffff;
    border: solid 1px #5cbcf6;
}
.btn_grey{
    /*グレーボタン*/
    background-color: #dcdcdc;
    color: #000000;
    border: solid 1px #dcdcdc;
}

.ul01 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
ul li, ol li{
	line-height:1.5;
}

/*メイン*/
.div_title{
    width: 100%;
    padding:15px auto;
    text-align: center;
    background: -moz-linear-gradient(#1e50a2, 70%, #0095d9); /* Firefox */
    background: -webkit-linear-gradient(#1e50a2, 70%, #0095d9);/* safari Chrome */
    background: linear-gradient(to bottom, #1e50a2, #0095d9); /* IE */
    color: #ffffff;
    margin-bottom: 15px;
}
.div_title_k{
    width: 100%;
    padding:15px auto;
    text-align: center;
    background: -moz-linear-gradient(#ff6347, 70%, #ffa899); /* Firefox */
    background: -webkit-linear-gradient(#ff6347, 70%, #ffa899);/* safari Chrome */
    background: linear-gradient(to bottom, #ff6347, #ffa899); /* IE */
    color: #ffffff;
    margin-bottom: 15px;
}
.wrapper {
    width:1100px;
    /*margin: 0 auto;*/
    /*margin: 0 auto 3em auto;*/
	margin: 0 auto 3em 0;
}
.wrapper .enq_area{
    /*アンケート領域*/
    /*width: 950px;*/
	width: 1050px;
    margin: 20px auto 30px 5%;
}
.wrapper .enq_area .login_area{
    /*ログイン領域*/
    width: 500px;
    margin: 20px auto;
}

.box1 {
    /*お知らせボックス*/
    text-align: left;
    width: 850px;
    padding: 0.5em 1em;
    margin: 1em auto;
    font-weight: bold;
    background: #FFF;
    border: solid 3px #dcdcdc;/*線*/
    border-radius: 5px;/*角の丸み*/
}

.box2 {
    text-align: left;
    width: 500px;
    padding: 0.5em 1em;
    margin: 0 auto;
    background: #f8f8ff;
    border: none;
    border-radius: 10px;/*角の丸み*/
}

/*スタイル*/
.tbl_div {
    margin-bottom: 30px;
}
.q_div {
    display: table;
    width: 100%;
    border: 1px solid #1e50a2;
    border-radius: 4px;
}
.q_num {
    display: table-cell;
    width: 10%;
    vertical-align: middle;
    text-align: center;
    padding: 0.2em;
    background: #1e50a2;
    color: #fff;
}
.q_str {
    display: table-cell;
    width: 90%;
    vertical-align: middle;
    padding: 0.2em;
}
.area_help{
    float: right;
    border: 1px #ffec47 solid;
    background: #fef263;
    padding: 0.2em;
    font-size:11pt;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}
.area_help:hover {
  color: #fff;
  background: #fddea5;
  border-bottom: 1px solid #dcdcdc;
  cursor: pointer;
}
.ans_div {
    padding-left:5%;
}
/*flex（横並び）*/
.ans_div2 {
    display: flex;
}
.q_div_sub {
    display: table;
    width: 95%;
    margin-left: 5%;
    border: 1px solid #1e50a2;
    border-radius: 4px;
}
.ans_div_sub {
    padding-left:5%;
    margin-left: 5%;
}
.con_div{
    padding-left: 5%;
    margin-top: 10px;
    clear:both;
}
.con_div_sub{
    padding-left: 10%;
    margin-top: 10px;
    clear:both;
}
.con_qtext{
    float: left;
}
.area_mod{
    -webkit-appearance: none;/*safari用スタイルクリア*/
    border-radius: 0;;/*safari用スタイルクリア*/
    float: right;
    border: 1px #192f60 solid;
    background: #1e50a2;
    color: #fff;
    padding: 0.2em 1em;
    font-size:0.833em;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}
.area_mod:hover {
  color: #fff;
  background: #a0d8ef;
  border-bottom: 1px solid #dcdcdc;
  cursor: pointer;
}
.brpc::after{
    /*PCのみ改行*/
	content: "\A";
	white-space: pre ;
}
p.indent-1 {
    /*字下げ*/
    padding-left:1em;
    text-indent:-1em;
}
.req_text{
    /*必須*/
    font-size: 10pt;
    color: #fff;
    background: #d3381c;
    padding: 1px 3px;
}
.tx_cen{
    /*中央寄せ*/
	text-align:center;
}
.tx_s{
    /*フォントサイズ小さめ*/
	font-size:11pt;
}
.tx_red{
    /*赤文字*/
	color:#ff0000;
}
.tx_blue{
    /*青文字*/
	color:#00bfff;
}
.tx_b{
    /*太文字*/
	font-weight:bold;
}
.tx_l{
    /*フォントサイズ大きめ*/
	font-size:15pt;
}
.tx_under{
    /*アンダーライン*/
	text-decoration:underline;
}

/*進捗バー（プログレスバー）start*/
.step_area{
    width: 50%;
    margin: 0 auto 15px auto;
    text-align: center;
}
progress {
    width: 60%;
    height: 20px;
    background-color: #dcdcdc;
    border-radius: 15px;
}

progress::-webkit-progress-bar {
  background-color: #dcdcdc;
  border-radius: 15px;
}

progress::-webkit-progress-value {
  background-color: #00bfff;
  border-radius: 15px;
}

progress::-moz-progress-bar {
  background-color: #00bfff;
  border-radius: 15px;
}

progress::-ms-fill {
  background-color: #00bfff;
  border-radius: 15px;
}
/*進捗バー（プログレスバー）end*/

/*ハンバーガーメニューstart*/
#div_menu nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    padding-top: 50px;
    background:#333;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 3;
}
#div_menu nav ul li {
    display:block;
    padding: 20px 28px;
}
#div_menu nav ul li span {
    text-decoration: none;
    color: #ddd;
    cursor: pointer;
}
#div_menu .btn-gnavi {
    position: fixed;
    top: 10px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 4;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    background: #eaf4fc;
    border-radius: 3px;
}
#div_menu .btn-gnavi span {
    position: absolute;
    width: 26px;
    height: 4px;
    background: #4d4c61;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
#div_menu .btn-gnavi span:nth-child(1) {
    top: 2px;
    left: 2px;
}
#div_menu .btn-gnavi span:nth-child(2) {
    top: 10px;
    left: 2px;
}
#div_menu .btn-gnavi span:nth-child(3) {
    top: 18px;
    left: 2px;
}
#div_menu .btn-gnavi.open span {
    background: #fff
}
#div_menu .btn-gnavi.open span {
    width: 24px;
}
#div_menu .contents section p {
    position: absolute;
    top: 50%;
    width: 30%;
    line-height: 1.4;
    font-size: 20px;
    color: #fff;
}
#div_menu .contents section:nth-child(odd) p {
    left: 10%
}
#div_menu .contents section:nth-child(even) p {
    right: 10%
}
/*ハンバーガーメニューend*/

/*マトリクス用テーブルstart*/
.tbl1 {
	border-collapse:collapse;
	width:100%;
	margin-top: 10px;
}
.tbl1 .tr1{
	background: #d6e9ca;
}
.tbl1 .tr2{
	background-color: #fff;
}
.tbl1 .tr3{
	background-color: #ffffe5;
}
.mttr:focus, .mttr:hover {
	background-color: #d6e9ca;
}
.tbl1 .td1{
	padding:7px;
	line-height:120%;
	border:1px #c0c0c0 solid;
	position: relative;
}
.bg01{
    background: #ffcc99;
}
.td1 .lbl1 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}
_:-ms-lang(x)::-ms-backdrop, .td1 .lbl1 {/*IE11対応*/
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2.0em;
    margin: 0;
}
.td1 .lbl1:hover {
    cursor: pointer;
}
.td1 .mtradio {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: 0;
    margin: 0;
}
.td1 .mtradio:focus + .mtradio-dummy {
  border: solid 2px #a9a9a9;
}
.td1 .mtradio:checked + .mtradio-dummy {
  border: solid 2px #007bbb;
}
.td1 .mtradio:checked + .mtradio-dummy::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #007bbb;
}
.mtradio-dummy {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: solid 2px #888;
}
/*マトリクス用テーブルend*/

/*ファイルアップロード用 start*/
.up_div {
  position: relative;
  left: 5%;
}

#preview_field {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 5em;
}

#drop_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 5em;
  cursor: pointer;
  color: #696969;
  border: 1px dashed #aaa;
}
#drop_area:before {
  content: "こちらに画像ファイルをドラッグ＆ドロップ、またはクリックして画像を選択";
}

#icon_clear_button {
  display: none;
  position: absolute;
  top: -4px;
  right: -8px;
  width: 24px;
  height: 24px;
  border: 1px solid #777;
  border-radius: 50%;
  cursor: pointer;
}

.input_file {
  width: 90%;
  height: 5em;
  opacity: 0;
}

.input_file:focus {
  opacity: 1;
}

#btn_fileclear {
    -webkit-appearance: none;
    display: inline-block;
    width: 100px;
    padding: 0.4em;
    text-decoration: none;
    border-radius: 2px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -webkit-tap-highlight-color: transparent;
    transition: .2s ease-out;
    font-weight: bold;
    font-size:12px;
    background-color: #dcdcdc;
    color: #000000;
    border: solid 1px #dcdcdc;
}
#btn_fileclear:hover {
    cursor: pointer;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 3px 10px 0 rgba(0,0,0,0.12), 0 4px 7px -2px rgba(0,0,0,0.2);
}
/*ファイルアップロード用 end*/


/*保留*/
/*
fieldset{
	border:none;
}
legend{
	display:none;
}
a:focus, a:hover{
	background-color: #dbffff;
}
input[type=checkbox][disabled] + label, input[type=radio][disabled] + label{
	background-color: #d3d3d3;
}
*/

.text_post{
    margin-top: 15px;
	width: 4em;
}

.div01{
    /*width: 60%;*/
	width: 95%;
    /*margin: 10px 25%;*/
	margin: 10px auto 10px 3%;
}

/*logo*/
.title_flex{
    display: flex; /*横並び*/
}
.title_image {
  height:40pt; /*画像サイズ指定*/
  margin: 5px 20px 5px 10px;
  /*padding: 0;*/
  overflow: hidden;
  position: relative;
}
.title_text {
  margin: 15px 0 0 20px;
  /*padding: 0;*/
}
.logo{
  height:40pt;
}

/*推奨環境*/
.Reco_box{
	display: flex;
}
.Reco_box .box01{
	overflow: hidden;
	position: relative;
	width:30%;
}
.Reco_box .box02{
	width:30%;
}

.btn_area{
	margin: 0 auto 0 10%;
}