@charset "utf-8";
/*------------------
フォーム
------------------*/
.error ,
.error-msg{
  color: #f10;
  font-size: 1.4rem;
}

input::placeholder {
  color: #777777;
}

input,
button,
textarea,
select {
  width: 100%;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  -webkit-border-radius: none;
  border-radius: none;
  border-radius: 0;
  border: none;
  border: 0;
  box-shadow: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  outline: none;
}

.input {
  display: block;
  max-width: 500px;
  width: 100%;
  height: 40px;
  padding: 0 1em;
  background: #F4F5F6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.input.size-l {
  max-width: 409px;
}

.input.size-m {
  max-width: 260px;
}

.input.size-s {
  max-width: 200px;
}

textarea {
  width: 100%;
  height: 260px;
  max-width: 500px;
  padding: 1em;
  background: #F4F5F6;
}

/*ラジオボックス*/
.radio-group{
	flex-wrap:wrap;
}

.radio-group label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-right: 30px;
	margin-bottom: 0px;
  line-height: 1.2;
}

.radio-group label span {
  padding-left: 20px;
  display: inline-block;
	font-size: 14px;
	line-height: 1.2;
}

.radio-group label span::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 3px;
  width: 15px;
  height: 15px;
  border: 1px solid #707070;
  background-color: #fff;
  border-radius: 50%;
}
.radio-group label input{
  display: none;
}

.radio-group label input:checked+span::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 3px;
  width: 15px;
  height: 15px;
  border: 1px solid #707070;
  background-color: #707070;
  border-radius: 50%;
  transform: scale(0.7);
  z-index: 2;
}

.input-box {
  display: flex;
  align-items: center;
}

.input-box .after {
  font-weight: normal;
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  color: #7e919a;
  padding-left: 0.5em;
}

.mail-box {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.mail-box>li small {
  width: 100%;
  margin-top: 8px;
  font-weight: normal;
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  color: #7e919a;
}

.textarea-msg {
  width: 100%;
  margin-top: 0px;
  font-weight: normal;
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  color: #7e919a;
  margin-bottom: 20px;
}

.nego-msg {
  font-size: 14px;
  line-height: 26px;
  text-align: left;
  color: #023;
}

.address-box>li {
  width: 100%;
  padding-bottom: 10px;
}

.address-box>li>.row {
  display: flex;
  align-items: center;
  width: 100%;
}

.address-box>li small {
  white-space: nowrap;
}

.address-box>li .col1 {
  width: 80px;
  display: flex;
  align-items: center;
}

.address-box>li .col2 {
  display: flex;
  align-items: center;
  width: calc(100% - 80px);
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.contact-buttons .cmn-button1 {
  margin: 0 auto;
}

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

  .contact-msg {
    font-size: 12px;
    line-height: 20px;
  }

  .input-box {
    display: block;
  }

  .input-box .input.size-m {
    max-width: none;
  }

  .input-box .after {
    margin-top: 8px;
    padding-left: 0;
    font-size: 12px;
    line-height: 20px;
  }

  .mail-box>li small {
    font-size: 12px;
    line-height: 20px;
  }

  .textarea-msg {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
  }

}

/**********************************
セレクト
**********************************/
.select-label {
  position: relative;
  display: block;
  height: 48px;
  width: 200px;
  text-indent: 1em;
}

.select-label.size-l {
  width: 355px;
}

.select-label.size-m {
  width: 170px;
}

.select-label.size-s {
  width: 88px;
}

.select-label>select {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 25px 0 1em;
  height: 100%;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  box-sizing: border-box;
  z-index: 1;
  border: 0;
  font-size: 16px;
  background: #F4F5F6;
  color: #023;
}

.select-label::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translate(0, -50%);
  right: 18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
  pointer-events: none;
  z-index: 2;
}


/**********************************
各種項目
**********************************/
.form-box {
  display: flex;
  align-items: center;
}

.form-mail {
  display: flex;
  align-items: center;
}

.form-name {
  display: flex;
  align-items: center;
}

.form-name .item {
  display: flex;
  align-items: center;
}

.form-name .item:first-child {
  margin-right: 1em;
}

.form-name .item .label {
  padding-right: 0.5em;
}

.form-name .item .after-label {
  white-space: nowrap;
}

.form-postal {
  display: flex;
  align-items: center;
}

.form-tel {
  display: flex;
  align-items: center;
}

.form-tel .inner-label {
  padding: 0 15px;
}

.form-days {
  display: flex;
  align-items: center;
}

.form-days .year {
  padding: 0 0.5em 0 1em;
}

.form-days .month {
  padding: 0 0.5em 0 1em;
}

.form-days .day {
  padding: 0 0.5em 0 1em;
}

.def_color_red {
  color: #ff0000;
}

.form-num-person {
  display: block;
  width: 384px;
}

.form-num-person dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.form-num-person dl dt {
  font-weight: 500;
}

.form-num-person dl dd {
  display: flex;
  align-items: center;
  padding-right: 45px;
}


.form-num-person dl.child {
  padding-left: 0.45em;
}

.form-num-person dl .input {
  width: 88px;
  padding: 0 0.5em;
}

.form-num-person dl .unit {
  padding-left: 0.5em;
}

.form-num-person dl.total {
  border-top: 1px solid #333333;
  padding-top: 10px;
}

.form-num-person dl.total dt {
  font-weight: 500;
  padding-left: 0.45em;
}

.form-address {
  display: flex;
}

.form-address>dt {
  width: 160px;
  padding-top: 6px;
}

.form-address>dd {
  width: calc(100% - 160px);
}

.form-address>dd .after-label {
  margin-top: 6px;
}

.form-address>dd>.box {
  display: flex;
}

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

  .form-box input,
  .form-name input {
    display: block;
    max-width: 500px;
  }
}

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

  .form-box,
  .form-name {
    flex-direction: column;
    justify-content: start;
  }

  .form-name input {
    margin-bottom: 5px;
  }

  .form-box,
  .form-name .input {
    flex-direction: column;
    justify-content: start;
  }

  .form-box .input,
  .form-name .input {
    margin-right: auto;
    margin-bottom: 5px;
  }

  .form-box .after-label,
  .form-name .after-label,
  .form-name .item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    flex-wrap: wrap;
  }

  .form-name .item .label {
    width: 30px;
  }

  .form-name .item .input.size-m {
    max-width: none;
    width: calc(100% - 30px);
    display: block;
  }

  .form-name .item:first-child {
    margin-right: 0em;
    margin-bottom: 10px;
  }

  .form-name .item .after-label {
    white-space: nowrap;
    margin-top: 5px;
  }

  .form-postal {
    margin-bottom: 5px;
  }

  .form-postal .input {
    margin-bottom: 5px;
  }

  .form-tel {
    flex-wrap: wrap;
  }

  .form-tel .after-label {
    width: 100%;
  }

  .form-mail {
    display: block;
  }

  .form-days .year {
    padding: 0 0.3em 0 0.3em;
  }

  .form-days .month {
    padding: 0 0.3em 0 0.3em;
  }

  .form-postal {
    display: block;
  }

  .form-days .day {
    padding: 0 0.3em;
  }

  .form-tel .inner-label {
    padding: 0 10px;
  }

  .form-num-person {
    display: block;
    width: 300px;
  }

  .form-address {
    display: block;
  }

  .form-address>dd {
    width: 100%;
  }

  .form-address>dd .after-label {
    margin-top: 6px;
  }

  .form-address>dd>.box {
    display: flex;
  }

  .form-address>dt {
    width: 100%;
    padding-top: 6px;
    margin-bottom: 5px;
  }

}

@media only screen and (max-width: 425px) {
  .form-num-person {
    display: block;
    width: 100%;
  }

  .form-num-person dl dd {
    padding-right: 0;
  }
}


@media only screen and (max-width: 950px) {
  .page-base_visit .cmn-note>li {
    font-size: 1.5rem;
  }

  .page-base_visit .cmn-main-body {
    padding-bottom: 40px;
  }
}

.contact.confirm .buttons,
.page-base_visit.confirm .buttons {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.contact .c-tbl1 {
  margin-bottom: 45px;
}

@media only screen and (max-width: 950px) {
  .contact .c-tbl1 {
    margin-bottom: 0px;
  }

}

/**********************************
完了画面
**********************************/
.complete-block {
  text-align: center;
  padding: 40px 0 0;
}

.complete-msg1 {
  margin-bottom: 60px;
  font-size: 2rem;
}

.complete-msg2 {
  margin-bottom: 50px;
}

.complete-msg3 {
  margin-bottom: 50px;
}

@media only screen and (max-width: 1024px) {
  .complete-block {
    text-align: center;
    padding: 10px 0 0;
  }

  .complete-msg1 {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }

  .complete-msg2 {
    margin-bottom: 30px;
  }

  .complete-msg3 {
    margin-bottom: 30px;
  }
}


.contact-table {
  margin-top: 60px;
}

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

  .contact-table {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .contact-table .radio-list {
    margin-top: 5px;
  }
}

.requirement .msg1{
  text-align: center;
  font-size: 1.8rem;
  margin-top: -20px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1024px) {
  .requirement .msg1{
    margin-top: 0px;
    margin-bottom: 30px;
  }
}

/**********************************
同意する
**********************************/
.agree-box .msg{
  margin-bottom: 30px;
}

.agree-box>.block{
  border:1px solid #707070;
  margin-bottom: 65px;
  padding: 5px;
}

.agree-box>.block .inr::-webkit-scrollbar{
  width: 10px;
}

.agree-box>.block .inr::-webkit-scrollbar-track{
  background-color: transparent;
}

.agree-box>.block .inr::-webkit-scrollbar-thumb{
  background-color: #DCDCDC;
}

.agree-box .block .inr{
  padding: 30px 20px;
  height: 358px;
  overflow-y: scroll;
}

@media only screen and (max-width: 1100px) {
  .agree-box .msg {
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .agree-box >.block {
    margin-bottom: 40px;
  }

  .agree-box .block .inr {
    padding: 20px 15px;
    height: 300px;
  }
}