@charset "utf-8";

/*------------------
フォーム
------------------*/
::placeholder {
  color: #DDDDDD;
}

input,
button,
textarea,
select {
  width: 100%;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  border: 0;
  box-shadow: none;
  /* font-weight: normal; */
  font-weight: 500;
  outline: none;
  font-family: inherit;
}

button,
select{
  cursor: pointer;
}

input[type="tel"],
input[type="mail"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="time"],
input[type="date"],
input[type="text"] {
  display: block;
  width: 100%;
  height: 60px;
  border: 0;
  color: #4A4A4A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 1em;
  padding-right: 1em;
  font-size: 16px;
  text-decoration: none;
  background: #fff;
  font-weight: 500;
  border: 1px solid #CBCBCB;
}

input[type="tel"].size_l,
input[type="mail"].size_l,
input[type="email"].size_l ,
input[type="password"].size_l ,
input[type="time"].size_l ,
input[type="date"].size_l ,
input[type="text"].size_l {
  width: 100%;
}

input[type="tel"].size_m,
input[type="number"].size_m,
input[type="mail"].size_m,
input[type="email"].size_m ,
input[type="password"].size_m ,
input[type="time"].size_m ,
input[type="date"].size_m ,
input[type="text"].size_m {
  width: 271px;
}
input[type="tel"].size_s,
input[type="number"].size_s,
input[type="mail"].size_s,
input[type="email"].size_s,
input[type="password"].size_s,
input[type="time"].size_s,
input[type="date"].size_s,
input[type="text"].size_s {
  width: 200px;
  padding: 0 15px;
}

input[type="tel"]:disabled,
input[type="mail"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="time"]:disabled,
input[type="date"]:disabled,
input[type="text"]:disabled ,
textarea:disabled{
  pointer-events: none;
  cursor: default;
  color: #555;
  background: #fff;
  border:1px solid #B9B9B9;
}

@media screen and (max-width: 1024px) {
  
  input[type="tel"],
  input[type="mail"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="time"],
  input[type="date"],
  input[type="text"] {
    padding-left: 1em;
  }
}

.date_box{
  position: relative;
  width: 100%;
  height: 60px;
  cursor: pointer;
}

.date_box>input{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #707070;
  transition: border-color 0.15s ease-in-out,
  box-shadow 0.15s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 1.2em;
  font-size: 18px;
  cursor: pointer;
}

.date_box.size_m{
  width: 200px;
}

.date_box::after {
  position: absolute;
  content: "";
  display: block;
  right: 2px;
  top: 2px;
  z-index: 2;
  background-image: url(../img/date.png);
  margin-left: 5px;
  pointer-events: none;
  width: 38px;
  height: 60px;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: 14px;
  z-index: 10;
  background-position: center;
}

textarea {
  width: 100%;
  padding: 1em;
  border:0;
  font-size: 16px;
  resize: vertical;
  height: 200px;
  background: #fff;
  border: 1px solid #CBCBCB;
  font-weight: 500;
}


textarea.size_m{
  width: 100%;
  height: 200px;
  line-height: 1.55;

}

textarea.size_s{
  width: 100%;
  height: 100px;
  line-height: 1.5;
  padding: 0.8em;
  border: 1px solid #CCCCCC;
}

@media screen and (max-width: 768px) {
  textarea {
    height: 200px;
  }

  textarea {
    padding: 1em;
  }
}

.tox-tinymce {
  border: 1px solid #ddd;
  border-radius: 4px;
}


/*ラジオ*/
/*ラジオボックス*/
.radio_list{
  display: flex;
  gap:0 4%;
  flex-wrap:wrap;
  margin-bottom:0
}

.radio_box {
  position: relative;
  cursor: pointer;
  display: inline-block;
  line-height: 1.3;
}

.radio_box input[type="radio"] {
  display: none;
}

.radio_box span {
  padding-left: 1.4em;
  position: relative;
  line-height: 1.4;
  padding-top: 0px;
  display: inline-block;
  cursor: pointer;
  font-size:18px;
}

.radio_box input[type="radio"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #D0D0D0;
  border-radius: 50%;
  background-color: #fff;
}

.radio_box input[type="radio"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
  background:  #707070;
  border-radius: 50%;
  transform: scale(0.5);
}

/*アップロード*/
.upload_block{
  display: flex;
  margin-bottom: 5px;
  flex-wrap:wrap;
}

.upload_block dl{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.upload_block dl>dt{
  width: 85px;
}
.upload_block dl>dd{
  width: calc(100% - 85px);
}

.upload_block .note{
  display: block;
  width: 100%;
  margin-top: 10px;
}

.upload_block .img_list{
  display: flex;
  gap: 10px;
}
.upload_block .img_list>li{
  width: 150px;
}

.upload_button.left{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.upload_box{
	position: relative;
	/* width: 370px; */
	max-width: 100%;
	margin-bottom: 5px;
}

.upload_box input{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.upload_box.disabled,
.upload_box input:disabled{
  cursor: default;
}

.upload_box label{
	display: flex;
	align-items: center;
	cursor: pointer;
}

.upload_box label span:nth-child(1){
	display: block;
	border: 1px solid #ccc;
	width: 135px;
	height: 34px;
  text-align: center;
	padding-left: 0px;
	line-height: 33px;
	box-sizing: border-box;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  color:#333;
  background: linear-gradient(180deg, #FFFFFF 0%, #DCDBDB 100%);
}

.upload_box label span:nth-child(2){
	padding-left: 12px;
	font-size: 14px;
	white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .upload_block>div:nth-child(2){
    padding-left: 10px;
  }
}

@media screen and (max-width: 980px) {

  .upload_block{
    display: block;
  }

  .upload_block>div:nth-child(1){
    width: 100%;
    margin-bottom: 20px;
  }

  .upload_block>div:nth-child(2){
    width: 100%;
    padding-left: 0px;
  }

}

@media screen and (max-width: 768px) {

  .upload_block>div:nth-child(2) dl{
    display: block;
  }
  .upload_block>div:nth-child(2) dl>dt{
    width: 100%;
  }
  .upload_block>div:nth-child(2) dl>dd{
    width: 100%;
  }

  .upload_box label span:nth-child(1) {
    width: 110px;
    height: 36px;
    padding-left: 0px;
    text-align: center;
    line-height: 36px;
  }
}


 .drop_area{
  position: relative;
  padding: 35px 0;
  min-width: 150px;
  text-align: center;
  border:5px dashed #ddd;
}
@media screen and (max-width: 768px) {

  .drop_area{
    position: relative;
    padding: 35px 0;
    min-width: 80px;
    text-align: center;
    border:5px dashed #ddd;
  }
}

/*チェック*/
.check_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
  gap: 10px 30px;
}
.check_list.column{
  flex-direction: column;
}

@media screen and (max-width: 768px) {

  .check_list {
    display: block;
  }
  .check_list>li{
    margin-bottom: 15px;
  }

}

.check_box{
  position: relative;
  cursor: pointer;
  display: inline-block;
}

/* ラジオボタンを隠す */
.check_box input[type="checkbox"] {
  display: none;
}

/* カスタムラジオボタンのスタイル */
.check_box span {
  padding-left: 25px;
  position:relative;
  line-height: 1.4;
  padding-top: 5px;
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  font-size: 16px;
}
/* ラジオボタンが選択された時のスタイル */
.check_box input[type="checkbox"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #cbcbcb;
}

.check_box input[type="checkbox"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 2px;
  width: 15px;
  height: 8px;
  border-bottom: 4px solid #0068b9;
  border-left: 4px solid #0068b9;
  transform: rotate(-40deg);
}

.agree .check_box span {
  font-weight: 500;
}

/*アップロード*/

table.list td>.check_box label span {
  padding-left: 0px;
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
}

table.list td>.check_box label input:checked+span::after {
  top: 10px;
  left: 5px;
}

.check_box label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  padding: 0;
}

.check_box label {
  position: relative;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  margin-right: 0;
}

.check_box label span {
  padding-left: 30px;
  display: inline-block;
}

.check_box label span::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 4px;
  margin-top: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #cbcbcb;
}

.check_box label input:checked+span::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 6px;
  margin-top: 0;
  left: 6px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #707070;
  border-bottom: 3px solid #707070;
  transform: rotate(41deg);
}

.check_box label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  padding: 0;
}

.check_box.size_s label {
  position: relative;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  margin-right: 0;
}


.check_box.size_s label span {
  padding-left: 20px;
  display: inline-block;
}

/* .check_box.size_s label input:checked+span::after {
  margin-top: -3px;
}
 */

.check_box.size_s label span::before {
  margin-top: -6px;
  width: 14px;
  height: 14px;
  border: 1px solid #999;
  background-color: #fff;
}

.check_box.size_s label input:checked+span::after {
  margin-top: -6px;
  left: 4px;
  width: 6px;
  height: 10px;
  border-right: 3px solid var(--main-clr);
  border-bottom: 3px solid var(--main-clr);
  transform: rotate(41deg);
}

/*セレクト*/
.select_box {
  position: relative;
  display: block;
  height: 60px;
  width: 180px;
  padding-left: 0px;
  overflow: hidden;
}

.select_box::before,
.select_box::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 52px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-image: url(../svg/arrow_under.svg);
  background-position: center;
  z-index: 3;
  pointer-events: none;
}

.select_box::before{
  z-index: 2;
  background: #DF1C13;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select_box.disabled,
.select_box.disabled select{
  pointer-events: none;
  cursor: default;
}


.select_box > select {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 2em 0 25px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  box-sizing: border-box;
  z-index: 1;
  font-size: 14px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
  border: 1px solid #707070;
}

.select_box .selected>select {
  background: #fff;
}

.select_box  select:disabled {
  color: #999999 !important;
  background: #fff !important;
  pointer-events: none;
}


@media screen and (max-width: 768px) {
  .select_box.size_s {
    width: 85px;
  }

}

/*セレクト*/
.select_box2 {
  position: relative;
  display: block;
  height: 60px;
  width: 180px;
  padding-left: 0px;
  overflow: hidden;
}

.select_box2::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -2px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #4A4A4A;
  z-index: 2;
  pointer-events: none;
}


.select_box2.disabled,
.select_box2.disabled select{
  pointer-events: none;
  cursor: default;
}


.select_box2 > select {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 2em 0 20px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  box-sizing: border-box;
  z-index: 1;
  font-size: 16px;
  border: 1px solid #CBCBCB;
}

.select_box2 .selected>select {
  background: #fff;
}

.select_box2  select:disabled {
  color: #999999 !important;
  background: #fff !important;
  pointer-events: none;
}

.name_row{
  display: flex;
  gap:24px;
}

.tel_row{
  display: flex;
  gap: 22px;
}

.tel_row>li:nth-child(1){
  width: 180px;
}

.tel_row>li:nth-child(2){
  width: calc(100% - 180px - 22px);
}

@media screen and (max-width: 768px) {
  .name_row,
  .tel_row{
    flex-wrap:wrap;
  }

  .name_row>div,
  .tel_row li{
    width: 100% !important;
  }
}

.error_box2{
  border-radius: 12px;
  background: #FFEEEE;
  border: 1px solid #f00;
  padding:22px 35px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.31;
  text-align: left;
  color: #f00;
  margin: 30px 0;
}

.error_box2 ul>li{
  text-indent: -1em;
  margin-left: 1em;
  line-height: 1.31;
  margin-top: 2px;
  margin-bottom: 2px;
}

/* **********************************************
# 問い合わせ
************************************************/
.contact_box{
   font-family: "Noto Sans JP", sans-serif;
}
.contact_box sup{
  color:#ff0000;
}

.contact_section .form_section{
  padding-top: 0;
}

.contact_section .msg{
  margin-bottom: 50px;
}

.form_section {
  padding-top: 0px;
}

.form_section .caption{
  margin-bottom: 20px;
}

.submit_button {
  position: relative;
  height: 70px;
  line-height: 70px;
  font-weight: bold;
  font-size: 1.6rem;
  color: #fff;
  display: block;
  text-align: center;
  width: 315px;
  background: #006ab8;
}

.submit_button.back{
  background: #fff;
  color: #006AB8;
  border: 2px solid #006AB8;
}

@media screen and (max-width: 1024px) {
}

.form_section .agree{
  text-align: center;
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}

.form_section .agree a{
  text-decoration: underline;
  color:#0068b9;
}

@media screen and (max-width: 768px) {
  .form_section .agree {
    text-align: left;
  }
}

.form_section .link{
  text-decoration: underline;
  color:#D76C25;
}


.complete_box .ttl {
  font-size: 26px;
  line-height: calc(36 / 26);
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 500;
}

.complete_box .msg1 {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 0px;
}

@media screen and (max-width: 1024px) {
  .complete_box .ttl {
    font-size: 22px;
  }

  .complete_box a.tel {
    font-size: 22px;
  }
}

.error{
  width: 100%;
  color:#f00;
  margin-top: 10px;
}

.form_section .msg1{
  margin-bottom: 30px;
  line-height: 2;
}

.form_section .r_box{
  padding: 50px 50px 0;
  margin-bottom: 60px;
  border-radius: 10px;
  background: #fff;
  border: 4px solid #63C8C2;
}

.form_section .msg3{
  color: #ff0000;
}


/*テーブル*/
.form_table01 {
  width: 100%;
  border-bottom:1px solid #e5e5e5;
  margin-bottom: 82px;
}

.form_table01 tr{
  border-top:1px solid #e5e5e5;
}

.form_table01 th{
  width: 278px;
  background: #f4f4f4;
  text-align: left;
  color: #0068b9;
  font-size: 18px;
  line-height: calc(24 / 18);
  padding: 25px 20px;
  vertical-align: top;
  border: 0px none;
}

.form_table01 th em{
  color: #CF3737;
  display: inline-block;
}
.form_table01 td{
  width: calc(100% - 278px);
  font-size: 18px;
  line-height: 1.5;
  padding: 30px 40px;
  word-break: break-word;
}

.form_table01 .block{
  display: flex;
  justify-content: space-between;
}

.form_table01 .block .input{
  width: 47%;
}
@media screen and (max-width:768px){

  .form_table01,
  .form_table01 tbody,
  .form_table01 tr,
  .form_table01 th,
  .form_table01 td,
  .form_table01 .block{
    width: 100%;
    padding: 0;
    display: block;
  }
  
  .form_table01{
    margin-bottom: 40px;
  }

  .form_table01 th{
    padding:23px 17px;
    margin-bottom: 25px;
  }

  .form_table01 td{
    padding-bottom: 30px;
  }

  .form_table01 .block .input{
    width: 100%;
    margin-bottom: 25px;
  }

}


.contact_button_area{
  display: flex;
  align-items: center;
  gap:30px 60px;
  flex-wrap:wrap;
  justify-content: center;
}

.contact_button_area form {
  display: flex;
  justify-content: center;
}

/*step nav*/
.step_nav{
  display: flex;
  margin-bottom: 50px;
}
.step_nav>li{
  position: relative;
  width: 33.33%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 7px;
  height: 50px;
  border:1px solid #d0d0d0;
  border-right:0;
  background: #fff;
}

.step_nav>li.active{
  background: #0068b9;
  color: #fff;
}

.step_nav>li.active::after{
  border-color: transparent transparent transparent #0068b9;
}

.step_nav>li:nth-child(3){
  width: calc(33.33% - 28px);
}

.step_nav>li::before{
  content:"";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right:-28px;
  top:-1px;
  border-style: solid;
  border-width: 25px 0 25px 28px;
  border-color: transparent transparent transparent #d0d0d0;
  box-sizing: border-box;
  z-index: 2;
}

.step_nav>li::after{
  content:"";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right:-27px;
  top:-1px;
  border-style: solid;
  border-width: 25px 0 25px 28px;
  border-color: transparent transparent transparent #fff;
  box-sizing: border-box;
  z-index: 3;
}


@media screen and (max-width:768px){
  .step_nav{
    width: 100%;
    max-width: 280px;
    margin:0 auto;
    display: block;
    overflow: hidden;
    padding-bottom: 16px;
    margin-bottom: 40px;
  }

  .step_nav>li{
    width: 100% !important;
    padding-top: 17px;
    border-bottom: 0 !important;
    border-right: 1px solid #d0d0d0;
  }

  .step_nav>li::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 140px 0 140px;
    border-color: #d0d0d0 transparent transparent transparent;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .step_nav>li::after {
    content: "";
    display: block;
    margin-top: 1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 140px 0 140px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
  }

  .step_nav>li.active::after{
    content: "";
    display: block;
    margin-top: 1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 140px 0 140px;
    border-color: #0068b9 transparent transparent transparent;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
  }
}




.recapture_box{
  text-align: center;
  margin-bottom: 40px;
}