@charset "utf-8";
@import url("destyle.css");

/* ----------------------------------------------- font */
/*NotoSans（日本語）*/
@font-face {
  font-family: 'NotoSans_JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format('woff2'), url("../font/NotoSansJP-Regular.woff") format('woff');
}
/*Harenosora（日本語）*/
@font-face {
  font-family: 'Harenosora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/Harenosora.woff2") format('woff2'), url("../font/Harenosora.woff") format('woff');
}
/* ----------------------------------------------- */
* {
  color: #222;
  line-height: 180%;
  box-sizing: border-box;
  font-family: 'NotoSans_JP', sans-serif;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.65rem;
  -webkit-print-color-adjust: exact;
  -webkit-text-size-adjust: 100%;
  text-align: center;
}
/* ----------------------------------------------- link */
a {
  text-decoration: underline;
  transition: all 0.3s ease 0s;
  color: #0b5394
}
a:hover {
  color: #6c97be
}
::before,::after {
  transition: all 0.3s ease 0s;
}
/* ----------------------------------------------- wrapper */
#wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  text-align: left;
}
/* ----------------------------------------------- header */
header {
  padding: 30px 0;
}
header h1 {
  padding: 20px 0 30px 20px;
  font-size: 3.5rem;
  font-weight: bold;
  font-family: YuMincho, "Harenosora", "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
@media screen and (max-width: 500px) {
  header h1 {
    padding: 0 0 30px 0;
    font-size: 2.6rem;
  }
}
/* flow */
header .flow {
  background-color: #ebe7e2;
  padding: 15px 30px 0px 30px;
  margin: 0px 0px 20px 0px;
}
header .flow ol {
  margin: 0px;
  padding: 0px;
}
header .flow ol li {
  position: relative;
  display: inline-block;
  list-style-type: decimal;
  padding: 0px 7px 15px 30px;
  margin: 0px 30px 0px 0px;
  font-size: 1.6rem;
  font-weight: bold;
}
header .flow ol li::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 6px;
}
header .flow ol li:nth-child(1)::before {
  content: "1.";
}
header .flow ol li:nth-child(2)::before {
  content: "2.";
}
header .flow ol li:nth-child(3)::before {
  content: "3.";
}
header .flow ol li::after {
  position: absolute;
  content: "";
  top: 32%;
  right: -20px;
  margin: auto;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .flow ol li:last-child::after {
  right: 0px;
  width: 0px;
  height: 0px;
  border-top: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}
header .flow ol li.on {
	border-bottom: 3px solid #000;
}
@media screen and (max-width: 500px) {
  header .flow {
    padding: 10px 0 0px 10px;
    margin: 0px 0px 20px 0px;
  }
  header .flow ol li {
    padding: 0px 5px 10px 20px;
    margin: 0px 15px 0px 0px;
    font-size: 1.3rem;
  }
  header .flow ol li::after {
    right: -12px;
  }
}
/* information */
.information {
  margin: 40px 0 20px 0;
  padding: 40px;
  border: 3px solid #d8cfc5;
}
.information h2 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d8cfc5;
  font-size: 1.8rem;
  font-weight: bold;
}
.information ul {
  margin: 0;
  padding: 5px 0 5px 25px;
  list-style-type: disc;
}
.information .red {
  color: #cc0000;
}
@media screen and (max-width: 650px) {
  .information {
    padding: 30px;
  }
  @media screen and (max-width: 500px) {
    .information h2 {
      font-size: 1.7rem;
    }
    .information ul {
      padding: 5px 0 5px 15px;
    }
  }
}
/* ----------------------------------------------- main */
main {}
/* form */
.form {}
.form table {
  width: 100%;
  border-collapse: collapse;
}
.form table th,
.form table td {
  border: 1px solid #c2bab1;
  padding: 10px 20px;
  vertical-align: middle;
}
.form table th {
  width: 300px;
  background-color: #ebe7e2;
}
.form table th em {
  font-size: 1.2rem;
  font-style: normal;
  color: #fff;
  margin-left: 10px;
  padding: 6px 7px;
  background-color: #cc0000;
  border-radius: 7px;
  display: inline-block;
  line-height: 100%;
}
.form table td {}
.form table td span {
  display: block;
  color: #555;
  font-size: 1.4rem;
}
@media screen and (max-width: 900px) {
  .form table th {
    width: 200px;
  }
  @media screen and (max-width: 650px) {
    .form table {
      border-bottom: 1px solid #c2bab1;
    }
    .form table th,
    .form table td {
      display: block;
      width: 100%;
      border-bottom: none;
    }
  }
}
/* テキストエリア */
.form input[type="text"],
.form input[type="time"] {
  margin: 5px 0;
  padding: 9px 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: 0px 1px 2px 0px #e6e6e6 inset;
  background: #fff;
}
.form input[type="text"]:focus,
.form input[type="time"]:focus {
  border: 2px solid #B4CDE4;
  outline: none;
}
.form input[type="text"] {
  width: 80%;
}
.form input[type="text"].w50 {
  width: 40%;
}
.form input[type="time"] {
  width: 100px;
}
@media screen and (max-width: 500px) {
  .form input[type="text"],
  .form input[type="text"].w50 {
    width: 100%;
  }
}
/*テキストボックス*/
.form textarea {
  margin: 5px 0;
  padding: 9px 10px;
  width: 100%;
  height: 150px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: 0px 1px 2px 0px #e6e6e6 inset;
  background: #fff;
}
.form textarea:focus {
  border: 2px solid #B4CDE4;
  outline: none;
}
/* チェックボックス */
.form input[type="checkbox"] {
  margin-right: 5px;
}
label.check_b {
  display: block;
}
/* セレクトボックス */
.selectbox_s {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.selectbox_s::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}
.selectbox_s select {
  appearance: none;
  min-width: 150px;
  height: 2.8em;
  padding: .4em calc(.8em + 30px) .4em .8em;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: 0px 1px 2px 0px #e6e6e6 inset;
  background: #fff;
  color: #333333;
  cursor: pointer;
}
.selectbox_s select:focus {
  border: 2px solid #B4CDE4;
  outline: none;
}
/* ボタン */
.button_area {
  padding: 45px 0 30px 0;
}
.button_area button {
  margin-right: 10px;
}
.button_area button.btn_submit,
.button_area button.btn_back{
  position: relative;
  display: inline-block;
  padding: 20px 50px 20px 30px;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  background-color: #56524e;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 1px 10px 8px -6px rgba(0,0,0,0.14);
  transition: all 0.3s ease 0s;
}
.button_area button.btn_back {
  color: #5b5b5b;
  background-color: #cdcdcd;
}
.button_area button.btn_submit:hover {
  color: #fff;
  background-color: #666;
  box-shadow: 1px 10px 8px -6px rgba(0,0,0,0.14);
}
.button_area button.btn_back:hover {
  color: #5b5b5b;
  background-color: #dedede;
  box-shadow: 1px 10px 8px -6px rgba(0,0,0,0.14);
}
.button_area button.btn_submit::before,
.button_area button.btn_back::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 25px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.button_area button.btn_back::before {
  border-top: 1px solid #5b5b5b;
  border-right: 1px solid #5b5b5b;
}
@media screen and (max-width: 650px) {
  .button_area {
    text-align: center;
  }
  .button_area button {
    margin: 10px;
    width: 90%;
  }
  @media screen and (max-width: 650px) {
    .button_area button.btn_submit,
    .button_area button.btn_back{
      padding: 15px 30px 15px 15px;
      font-size: 1.6rem;
    }
  }
}
/* 個人情報の同意 */
.pp_agree {
  margin-top: 40px;
  padding: 15px;
}
.pp_agree_error {/*エラー時*/
  margin-top: 40px;
  padding: 20px;
  background-color: #fbefef;
}
.pp_agree_error .error {/*エラー時*/
  color: #cc0000;
}
@media screen and (max-width: 650px) {
  .pp_agree {
    margin-top: 20px;
  }
  .pp_agree_error {/*エラー時*/
    margin-top: 20px;
  }
}
/* エラー */
.error_box {
  padding: 20px 30px;
  margin-bottom: 30px;
  background-color: #fbefef;
}
.error_box ul {
  margin: 0;
  padding: 10px 30px;
  list-style-type: circle;
}
.error_box ul li {
  color: #cc0000;
}
.form td.error em {
  display: block;
  font-style: normal;
  font-size: 1.4rem;
  color: #cc0000;
}
.form td.error input[type="text"],
.form td.error input[type="time"],
.form td.error select,
.form td.error textarea {
  background-color: #fbefef;
}
/* greeting */
.greeting {
  padding: 15px 0 35px 0;
}
.greeting h2 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #d8cfc5;
  font-size: 2.0rem;
  font-weight: bold;
}
/* ----------------------------------------------- footer */
footer address {
  font-style: normal;
  font-size: 1.2rem;
  padding: 15px 0 30px 0;
}
@media screen and (max-width: 650px) {
  footer address {
    text-align: center;
  }
}








