@charset "utf-8";

/*------------------
フォーム
------------------*/
::placeholder {
  color: #999;
}
@media screen and (max-width: 1024px) {
  ::placeholder {
    font-size: 1.4rem;
  }
}

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: 49px;
  border: 0;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 1em;
  padding-right: 1em;
  font-size: 1.8rem;
  text-decoration: none;
  border-radius: 6px;
  background: #fff;
  font-weight: 500;
  border: 1px solid #D0D0D0;
}

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 {
  max-width: 490px;
  width: 100%;
}

input[type="tel"].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="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: 150px;
}

.date_box.size_s{
  width: 170px;
}

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: 1.8rem;
  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: 1.6rem;
  resize: vertical;
  height: 224px;
  border-radius: 6;
  background: #fff;
  border: 1px solid #D0D0D0;
  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: 1.8rem;
}

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

.radio_box input[type="radio"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  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: 1.4rem;
  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: 1.3em;
  position:relative;
  line-height: 1.4;
  padding-top: 5px;
  display: inline-block;
  cursor: pointer;
}

/* ラジオボタンが選択された時のスタイル */
.check_box input[type="checkbox"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #707070;
  background-color: #fff;
}

.check_box input[type="checkbox"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  left: 2px;
  width: 11px;
  height: 6px;
  border-bottom: 3px solid #707070;
  border-left: 3px solid #707070;
  transform: rotate(-40deg);
}

.agree_check{
  font-weight: bold;
  font-size: 1.8rem;
}

/*アップロード*/

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: 1.6rem;
  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: 1px solid #CCCCCC;
  background: linear-gradient(#fff 0%, #dcdbdb 100%);
  border: 1px solid #ccc;
  border-radius: 3px;
}

.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: 1.4rem;
  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: 52px;
  width: 250px;
  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: 1.4rem;
  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: 49px;
  width: 221px;
  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 #707070;
  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: 1.4rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius:0;
  border-bottom-right-radius:0;
  border: 1px solid #D0D0D0;
  border-radius: 6px;
}

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

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

.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;
}
@media screen and (max-width: 1024px) {

  .error_box2 {
    border-radius: 8px;
    border: 1px solid #f00;
    padding: 10px 10px;
    margin: 20px 0;
  }
}

/* **********************************************
# 問い合わせ
************************************************/
.contact_box sup{
  color:#ff0000;
}

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

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

.form_section {
  padding-top: 0px;
}

.submit_button {
  width: 320px;
  height: 64px;
  background: var(--main-clr);
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 60px;
  text-align: left;
  color: #fff;
  display: block;
  text-align: center;
  border-radius: 34px;
  border:2px solid var(--main-clr);
}

.submit_button.back{
  background: #555555;
  border:2px solid #555555;
}


.submit_button:hover{
  background: #fff;
  color: var(--main-clr);
  opacity: 1;
}


.submit_button.back:hover{
  background: #fff;
  color: #555;
  opacity: 1;
}


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

.form_section .agree a{
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
 
  .submit_button{
    width: 285px;
    height: 64px;
    font-size: 1.8rem;
  }

  .submit_button:hover{
    background: #fff;
    color: #0092E6;
    opacity: 1;
  }

  .form_section .agree{
    font-size: 1.6rem;
    margin-bottom: 60px;
  }

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

.complete_box .ttl {
  font-size: 2.6rem;
  line-height: calc(36 / 26);
  margin-bottom: 20px;
  font-weight: bold;
}

.complete_box .msg1 {
  margin-bottom: 20px;
}

.complete_box a.tel {
  font-size: 2.4rem;
  line-height: calc(24 / 24);
  font-weight: bold;
  color: #555;
  display: inline-block;
  text-decoration: none;
}

.complete_box .tel_msg {
  font-size: 1.6rem;
  line-height: calc(32 / 16);
  color: #555;
  margin-bottom: 20px;
}

.complete_box .msg2 {
  margin-bottom: 20px;
}

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

  .complete_box a.tel {
    font-size: 2.2rem;
  }
}

.error p{
  color:#f00;
}

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

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

.form_section .msg3{
  color: #ff0000;
}
@media screen and (max-width: 1024px) {
  .form_section .r_box {
    padding: 20px;
    border-radius: 10px;
  }
}

.form_table01{
  margin-bottom: 30px;
}

.form_table01,
.form_table01 tbody,
.form_table01 tr,
.form_table01 th,
.form_table01 td{
  display: block;
  width: 100%;
}

.form_table01 th em{
  color: #ff0000;
}

.form_table01 th {
  padding: 0px 0px 10px 0px;
  font-size:2rem;
  text-align: left;
}

.form_table01 td{
  padding: 0px 0px 30px 0px;
  text-align: left;
  font-size:1.8rem;
}

.form_table01 td .subject_radio{
  display: flex;
  flex-wrap:wrap;
  gap:20px 30px;
}
.form_table01 td .msg2{
  padding: 15px 0 15px;
}

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

