@charset "UTF-8";
/* Shutter In Horizontal */
/*!form*/
/* ==========================================================================

	form

========================================================================== */
/*--------------------------------
	フォーム基本レイアウト
--------------------------------*/
form {
  width: 100%;
}

form .required {
  font-size: 1.1rem;
  margin: 0 0 15px 0;
}

form dl {
  margin-bottom: 30px;
}

form dl dt {
  width: 100%;
  float: none;
  margin: 0 0 2px 0;
  font-size: 18px;
  font-size: 1.8rem;
}

form dl dt i {
  color: #FF0000;
  font-size: 13px;
  font-style: normal;
  padding-left: 1em;
}

form dl dd {
  width: 100%;
  float: none;
  margin: 0 0 1.6em 0;
}

@media print, screen and (min-width: 812px) {
  form {
    width: 800px;
    min-width: 0;
    margin: 0 auto;
  }
  form .required {
    margin: 0 0 40px 0;
    text-align: left;
    font-size: 1.2rem;
    color: #999;
  }
  form dl {
    width: 100%;
    text-align: left;
    margin-bottom: 60px;
  }
  form dl:after {
    content: "";
    display: block;
    clear: both;
  }
  form dl dt {
    width: 14em;
    float: left;
    clear: both;
    margin: 0 2em 2em 0;
    font-size: 1.5rem;
  }
  form dl dt:last-of-type {
    margin-bottom: 0;
  }
  form dl dt i {
    margin: 0 0 0 5px;
    font-size: 1.4rem;
    font-style: normal;
  }
  form dl dd {
    width: calc(100% - 16em);
    float: right;
    margin: 0 0 2em 0;
    font-size: 1.6rem;
    text-align: left;
  }
  form dl dd:last-of-type {
    margin-bottom: 0;
  }
}

/*--------------------------------
    フォーム要素スタイル
--------------------------------*/
@media print, screen and (max-width: 812px) {
  form input {
    /*&[type="file"]{
				font-size:13px!important;
			}*/
  }
  form input[type="text"], form input[type="email"], form input[type="tel"], form input[type="url"], form input[type="number"], form input[type="date"] {
    width: 100%;
    padding: 4px 2%;
    /* iOSの拡大阻止 */
    font-size: 16px;
    /* デフォルトスタイルリセット */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  form input.zip, form input.num {
    width: 12em;
  }
  form input[type="radio"], form input[type="checkbox"] {
    top: -2px;
  }
  form input[type="radio"]:checked, form input[type="checkbox"]:checked {
    background-color: #666 !important;
  }
  form input[type="submit"] {
    /* デフォルトスタイルリセット */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
  }
  form textarea {
    width: 100%;
    padding: 4px 2%;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  form .extra input[type="text"] {
    width: 100% !important;
    margin-left: 0 !important;
  }
  form .selectWrapper {
    width: 100%;
  }
  form .selectWrapper select {
    font-size: 16px;
    /* transform: scale(0.9); */
    /* transform-origin: top left; */
    /* width: 111%; */
  }
}

form input[type="text"], form input[type="email"], form input[type="tel"], form input[type="url"], form input[type="number"], form input[type="date"] {
  width: 100%;
  display: inline-block;
  border: solid 1px #ccc;
  background-color: #fff;
  padding: 6px 10px;
  outline: none;
}

form input.zip, form input.num {
  width:12em;
}

form input[type="file"] {
  outline: none;
  font-size: 14px;
  line-height: 1;
}

form input[type="radio"], form input[type="checkbox"] {
  display: inline-block;
  border: solid 1px #ccc;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 5px;
  cursor: pointer;
}

form input[type="submit"] {
  outline: 0;
}

form button {
  outline: 0;
}

form textarea {
  width: 100%;
  height: 200px;
  border: solid 1px #ccc;
  background-color: #fff;
  padding: 6px 10px;
  outline: none;
  resize: none;
}

form label {
  margin: 0 20px 0.5em 0;
  cursor: pointer;
}

form label:last-of-type {
  margin-right: 0;
}

form .extra input[type="text"] {
  width: 72%;
  margin-left: 2%;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

form .extra input[type="text"]:disabled {
  background-color: #eee;
}

form .selectWrapper {
  width: 50%;
  display: inline-block;
  border: 1px solid #ccc;
  margin: 0 auto;
  position: relative;
}

form .selectWrapper::after {
  content: '';
  width: 6px;
  height: 6px;
  border-bottom: solid 2px #666;
  border-right: solid 2px #666;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -5px;
  z-index: 2;
  pointer-events: none;
}

form .selectWrapper select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0px;
  position: relative;
  z-index: 1;
  border: none;
  outline: none;
  width: 100%;
  height: 2.5em;
  padding: 0 40px 0 10px;
  background-color: #fff;
  font-size: 1.4rem;
  color: #000;
}

form .selectWrapper select::-ms-expand {
  display: none;
}

form .uploadedFile {
  font-size: 14px;
  text-align: left;
}

form .uploadedFile .buttonClearFile {
  display: inline-block;
  font-size: 13px;
  text-align: center;
  background-color: #efefef;
  border: 1px solid #000;
  padding: 0 0.3em;
  border-radius: 2px;
  margin-left: 0.5em;
}

@media print, screen and (min-width: 812px) {
  form .uploadedFile .buttonClearFile:hover {
    font-size: 13px;
    background-color: #ddd;
    cursor: pointer;
  }
}

form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: #ccc;
}

form input::placeholder,
form input::-webkit-input-placeholder form input:-ms-input-placeholder form input::-ms-input-placeholder, form textarea::placeholder,
form textarea::-webkit-input-placeholder form input:-ms-input-placeholder form input::-ms-input-placeholder,
form input::-webkit-input-placeholder form textarea:-ms-input-placeholder form input::-ms-input-placeholder,
form textarea::-webkit-input-placeholder form textarea:-ms-input-placeholder form input::-ms-input-placeholder,
form input::-webkit-input-placeholder form input:-ms-input-placeholder form textarea::-ms-input-placeholder,
form textarea::-webkit-input-placeholder form input:-ms-input-placeholder form textarea::-ms-input-placeholder,
form input::-webkit-input-placeholder form textarea:-ms-input-placeholder form textarea::-ms-input-placeholder,
form textarea::-webkit-input-placeholder form textarea:-ms-input-placeholder form textarea::-ms-input-placeholder {
  color: #ccc;
}

/*--------------------------------
    メッセージ
--------------------------------*/
.message {
  margin: 0 0 3em;
  text-align: center;
}

@media only screen and (max-width: 812px) {
  .message {
    margin: 0 0 20px;
    text-align: left;
  }
}

/*--------------------------------
    プライバシーポリシー
--------------------------------*/
#privacypolicy {
  margin-bottom: 4em;
}

@media only screen and (max-width: 812px) {
  #privacypolicy .privacypolicy_cnt {
    font-size: 13px;
  }
  #privacypolicy .privacypolicy_cnt h3 {
    font-size: 16px;
  }
}

#privacypolicy .privacypolicy_cnt {
  height: 200px;
  line-height: 1.8;
  color: #666;
  font-size: 1.4rem;
  padding: 20px;
  margin-bottom: 30px;
  border: solid 1px #ccc;
  overflow-y: scroll;
}

#privacypolicy .privacypolicy_cnt h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}

#privacypolicy .privacypolicy_cnt > p {
  margin-bottom: 40px;
}

#privacypolicy .privacypolicy_cnt > ol {
  margin-bottom: 40px;
}

#privacypolicy .privacypolicy_cnt > ol > li {
  margin-bottom: 30px;
  counter-increment: privacyNumber;
}

#privacypolicy .privacypolicy_cnt > ol > li:last-child {
  margin-bottom: 0;
}

#privacypolicy .privacypolicy_cnt > ol > li span {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}

#privacypolicy .privacypolicy_cnt > ol > li span:before {
  content: counter(privacyNumber) ".";
}

#privacypolicy .privacypolicy_cnt > ol > li ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-top: 10px;
}

#privacypolicy .privacypolicy_cnt > ol > li ul li {
  margin-bottom: 5px;
}

#privacypolicy .privacypolicy_cnt > ol > li ul li:last-child {
  margin-bottom: 0;
}

#privacypolicy .privacypolicy_cnt > address {
  padding-bottom: 20px;
}

#privacypolicy .privacypolicy_cnt > address:before {
  display: block;
  content: "";
  width: 20%;
  margin-bottom: 1em;
  border-bottom: solid 1px #000000;
}

#privacypolicy .privacypolicy_checkbox {
  text-align: center;
  margin-bottom: 1em;
}

#privacypolicy .privacypolicy_link {
  text-align: center;
  margin-bottom: 0;
}

#privacypolicy .privacypolicy_link a {
  color: #24267B;
  text-decoration: underline;
}

/*--------------------------------
	内容確認ボタン
--------------------------------*/
.confirmBtn {
  display: block;
  width: 50%;
  min-width: 400px;
  height: 60px;
  margin: 0 auto;
}

@media only screen and (max-width: 812px) {
  .confirmBtn {
    width: 100%;
    min-width: 0;
    height: 50px;
  }
  .confirmBtn input:hover {
    color: #fff;
    background-color: #24267B;
  }
}

.confirmBtn input {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  border: solid 2px #24267B;
  background-color: #24267B;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.confirmBtn input:hover {
  color: #24267B;
  background-color: #ffffff;
}

.confirmBtn input:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/*--------------------------------
    戻るボタン + 送信ボタン
--------------------------------*/
.contactBtnWapper {
  display: block;
  margin: 0 auto;
  text-align: center;
}

/*--------------------------------
	戻るボタン
--------------------------------*/
.backBtn {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  height: 60px;
  line-height: 60px;
  margin: 0 5px 0 0;
}

@media only screen and (max-width: 812px) {
  .backBtn {
    display: block;
    width: 100%;
    height: auto;
    line-height: 2;
    margin: 0 auto 10px;
    text-align: left;
  }
  .backBtn a {
    display: inline;
    width: auto;
    border-radius: 0;
  }
  .backBtn a:link, .backBtn a:visited {
    color: #24267B;
    background-color: #ffffff;
  }
  .backBtn a:hover, .backBtn a:active {
    color: #24267B;
    background-color: #ffffff;
  }
}

.backBtn a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  text-align: center;
  border: solid 2px rgba(36, 38, 123, 0.6);
}

.backBtn a:link, .backBtn a:visited {
  color: #24267B;
  background-color: rgba(255, 255, 255, 0.6);
}

.backBtn a:hover, .backBtn a:active {
  color: #ffffff;
  background-color: #24267B;
}

/*--------------------------------
	送信ボタン
--------------------------------*/
.submitBtn {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  min-width: 400px;
  height: 60px;
  line-height: 60px;
}

@media only screen and (max-width: 812px) {
  .submitBtn {
    width: 100%;
    min-width: 0;
    height: 50px;
    line-height: 50px;
  }
  .submitBtn input:hover {
    background-color: #333;
  }
}

.submitBtn input {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  border: solid 2px #24267B;
  color: #ffffff;
  background-color: #24267B;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.submitBtn input:hover {
  color: #24267B;
  background-color: #ffffff;
}

/*--------------------------------
	トップに戻るボタン
--------------------------------*/
.topBtn {
  text-align: center;
}

@media only screen and (max-width: 812px) {
  .topBtn {
    text-align: left;
  }
}

.topBtn a {
  color: #24267B;
}

/*--------------------------------
	エラー
--------------------------------*/
@media only screen and (max-width: 812px) {
  .error b {
    font-size: 1.2rem;
    margin-top: 0.2em;
  }
}

.error input, .error textarea, .error label, .error select {
  background-color: #ffe7e7 !important;
}

.error b {
  display: block;
  color: #f00;
  font-size: 1.3rem;
  font-weight: normal;
  margin-top: 0.3em;
}

/* ==========================================================================

	inquiry

========================================================================== */
/*--------------------------------
#contact
--------------------------------*/
body.inquiry.home #contact ul li {
  margin-bottom: 1em;
}

body.inquiry.home #contact ul li:last-child {
  margin-bottom: 0;
}

body.inquiry.home #contact ul li > a {
  font-weight: bold;
}

body.inquiry.home #contact ul li > a > span span {
  font-weight: normal;
}
