@charset "utf-8";

/*
  File Name   : form.css
  Description : お問い合わせフォームのスタイル
*/

html {
  font-size: 62.5%;
}
a.over:hover,
a:hover img.over,
input.over:hover,
button.over:hover {
  filter: alpha(opacity=70);
           -moz-opacity: .7;
                opacity: .7;
  text-decoration: none;
  -webkit-transition: ease all .3s;
  transition: ease all .3s;
}
#top-main h1 {
  background: #3aafdb;
  color: #fff;
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  height: 195px;
  line-height: 1;
  padding-top: 80px;
  text-align: center;
}
#top-main h1 span {
  font-size: 14px;
  font-size: 1.4rem;
}
.breadcrumbs {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 20px 0;
}
.breadcrumbs a {
  color: #555;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.red {
  color: #f00;
}
form p {
  margin-top: 1em;
}
.form-flowList {
  margin: 3em 0;
}
.form-flowList > ol {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.form-flowList > ol > li {
  position: relative;
  width: 190px;
  padding-top: 45px;
  color: #707070;
  text-align: center;
}
.form-flowList > ol > li:nth-child(1):before {
	content: "1";
}
.form-flowList > ol > li:nth-child(2):before {
	content: "2";
}
.form-flowList > ol > li:nth-child(3):before {
	content: "3";
}
.form-flowList > ol > li:after {
	content: "";
	position: absolute;
	top: 18px;
	left: -63px;
	display: inline-block;
	width: 126px;
	height: 2px;
	margin-top: -1px;
	border-top: 2px dotted #c0c0c0;
}
.form-flowList > ol > li:first-child:after {
	display: none;
}
.form-flowList > ol > .is-current {
  color: #116caf;
}
.form-flowList > ol > .is-current::before {
    border-color: #116caf;
    color: #116caf;
}
.form-flowList > ol > li::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-left: -17px;
    border: 1px solid #707070;
        border-top-color: rgb(112, 112, 112);
        border-right-color: rgb(112, 112, 112);
        border-bottom-color: rgb(112, 112, 112);
        border-left-color: rgb(112, 112, 112);
    border-radius: 50%;
    line-height: 32px;
    font-size: 1.3rem;
    color: #707070;
    text-align: center;
}
.require {
  display: inline-block;
  margin-right: 5px;
  padding: 3px 5px;
  background-color: #c43137;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
}
.is-w25 {
  width: 25%!important;
}
.is-w75 {
  width: 75%!important;
}
.is-w100px {
  width: 100px !important;
}
.is-w200px {
  width: 200px !important;
}
.is-w500px {
  width: 500px !important;
}
.form-table {
  border: 1px solid #e0e0e0;
  margin-top: 2em;
  width: 100%;
}
.form-table th, .form-table td {
  font-size: 1.4rem;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  padding: 1.5em;
  position: relative;
}
.form-table th {
  background: #f5f5f5;
  font-weight: bold;
}
.form-table th > span {
  display: block;
  position: relative;
  padding-right: 3.5em;
}
.form-table .required span::before {
  content: "必須";
  background-color: #c43137;
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 5px;
  position: absolute;
  right: 0;
  top: 0.3em;
  vertical-align: middle;
}
.form-table .optional > span::before {
  content: "任意";
  background-color: #fff;
  border: 1px solid #ddd;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 5px;
  position: absolute;
  right: 0;
  top: 0.3em;
  vertical-align: middle;
}
.checkboxList, .radioList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inputBox {
  -webkit-appearance: none;
  padding: 0 12px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1.4rem;
}
.textareaBox {
  -webkit-appearance: none;
  padding: 5px;
  height: 140px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1.4rem;
  width: 100%;
}
.textareaBox2 {
  -webkit-appearance: none;
  padding: 5px;
  height: 70px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1.4rem;
  width: 100%;
}
.inputBox[disabled], .textareaBox[disabled], .textareaBox2[disabled], .selectBox[disabled] {
  background-color: #eee !important;
  color: #999 !important;
}
.form-table .inner__table {
  width: auto;
  margin-left: -0.3em;
}
.form-table .inner__table td {
  border: none;
  padding: .3em;
}
.submitBlock {
  margin-top: 3em;
  margin-bottom: 3em;
}
.submitBlock .is-submit {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0;
}
.submitBlock .btnLink > li > span > input[disabled] {
  background-color: #ccc;
  color: #999;
}
.submitBlock .btnLink > li > span > input {
  padding: 2em 5em;
  border: none;
  border-radius: 0;
  color: #0b88b7;
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 0.4s;
  font-size: 1.6rem;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-decoration: none;
}

.old-select {
  display: none;
}

.top .search__area input, .detail .search__area input {
  border: 1px solid #c5dada;
  color: #888;
  font-size: 18px;
  font-size: 1.8rem;
  height: 40px;
  width: calc(100% - 178px);
}

.new-select{
  color: #888;
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  height: 40px;
  line-height: 40px;
  position: relative;
  width: 806px;
  -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.new-select .selection:active{
    transform:         rotateX(42deg);
    -o-transform:      rotateX(42deg);
    -ms-transform:     rotateX(42deg);
    -moz-transform:    rotateX(42deg);
    -webkit-transform: rotateX(42deg);
    transform-style:         preserve-3d;
    -o-transform-style:      preserve-3d;
    -ms-transform-style:     preserve-3d;
    -moz-transform-style:    preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform-origin:         top;
    -o-transform-origin:      top;
    -ms-transform-origin:     top;
    -moz-transform-origin:    top;
    -webkit-transform-origin: top;
    transition:         transform         200ms ease-in-out;
    -o-transition:      -o-transform      200ms ease-in-out;
    -ms-transition:     -ms-transform     200ms ease-in-out;
    -moz-transition:    -moz-transform    200ms ease-in-out;
    -webkit-transition: -webkit-transform 200ms ease-in-out;
}

.new-select .selection{
  border: 1px solid #c5dada;
    width: 100%;
    height: 100%;
    background-color: #fff;
    
    cursor: pointer;
    position: relative;
    z-index: 20; /* Doit etre superieur au nombre d'option */
    
    transform:         rotateX(0deg);
    -o-transform:      rotateX(0deg);
    -ms-transform:     rotateX(0deg);
    -moz-transform:    rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    transform-style:         preserve-3d;
    -o-transform-style:      preserve-3d;
    -ms-transform-style:     preserve-3d;
    -moz-transform-style:    preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform-origin:         top;
    -o-transform-origin:      top;
    -ms-transform-origin:     top;
    -moz-transform-origin:    top;
    -webkit-transform-origin: top;
    transition:         transform         200ms ease-in-out;
    -o-transition:      -o-transform      200ms ease-in-out;
    -ms-transition:     -ms-transform     200ms ease-in-out;
    -moz-transition:    -moz-transform    200ms ease-in-out;
    -webkit-transition: -webkit-transform 200ms ease-in-out;
  padding-left: 10px;
}

.new-select .selection p{
    transition:         all 200ms ease-in-out;
    -o-transition:      all 200ms ease-in-out;
    -ms-transition:     all 200ms ease-in-out;
    -moz-transition:    all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.new-select .selection:hover p, .new-select .selection.open p{
    color: #bdc3c7;
}

.new-select .selection i{
    display: block;
    width: 1px;
    height: 70%;
    position: absolute;
    right: -1px; top: 15%; bottom: 15%;
    border: none;
    /*background-color: #bbb;*/
}

form .new-select p{
  margin-top: 0;
}
.new-select .selection > span{
  background: url(../img/public_standard/btn-arrow-d.png) left top no-repeat;
  height: 8px;
  position: absolute;
  right: 5px;
  top: 16px;
  width: 11px;
}

.new-select .selection.open > span{
  background: url(../img/public_standard/btn-arrow-d.png) left top no-repeat;
  height: 8px;
  position: absolute;
  right: 5px;
  top: 16px;
  width: 11px;
}

.new-option{
  padding: 0 10px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    position: absolute;
    left: 0; right: 0;
    
    transition:         all 300ms ease-in-out;
    -o-transition:      all 300ms ease-in-out;
    -ms-transition:     all 300ms ease-in-out;
    -moz-transition:    all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}

.new-option.reveal:hover{
    background-color: #3aafdb;
    color: #fff;
}

form a {
  color: #0b88b7;
}

.attention__box {
  margin: 30px auto 0px;
  border: 2px solid #e83820;
  background-color: #fff;
}

.attention__box h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  padding: 1% 0;
  background-color: #e83820;
  color: #fff;
  text-align: center;
}

.attention__box h4 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin: 30px 0;
  color: #e83820;
}
.attention__box ul {
  list-style-type: disc;
  margin: 30px 0;
  padding: 0 20px 0 40px;
  line-height: 1.8;
}
.form-table input[type="text"], .form-table textarea  {
  font-size: 22px;
  font-size: 2.2rem;
}
.attention__box #agree2  {

}
.checkbox-input{
  display: none;
}
.checkbox-parts{
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
}
.checkbox-parts::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 4px;
  margin-top: 3px;
}
.checkbox-input:checked + .checkbox01-parts{
  color: #009a9a;
}
.checkbox-input:checked + .checkbox-parts::after{
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #e83820;
  border-right: 3px solid #e83820;
  margin-top: 3px;
}
.attention__box .required {
  background-color: #c43137;
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 5px;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}


/* ---------------------------------------------
  991px以下
 ----------------------------------------------  */
@media print, screen and (max-width: 991px) {
	form p {
		margin-left: 5px;
	}
	
	.form-table {
		width: 100%;
	}
	
	.form-table tbody {
		width: 100%;
	}

	.form-table th {
		display: block;
		width: 100%;
	}

	.form-table td {
		display: block;
		width: 100%;
	}
	.is-w500px {
    	width: 90% !important;
	}
	.new-select {
		width: 90%;
	}

	.form-flowList > ol > li:after {
	    left: -32px;
	    width: 63px;
	}
}

/* ---------------------------------------------
  767px以下
 ----------------------------------------------  */
@media print, screen and (max-width: 767px) {

}

/* ---------------------------------------------
  499px以下
 ----------------------------------------------  */
@media print, screen and (max-width: 499px) {

}

