@charset "utf-8";

p {
  padding: 0;
  margin: 0;
}

/* ------------------------------------ */
/* 切り替え */
/* ------------------------------------ */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

/* ------------------------------------ */
/* フォーム共通スタイル */
/* ------------------------------------ */
.btn {
  color: #333;
  font-size: min(0.9vw, 14px);
  font-weight: 600;
  line-height: 1;
  display: block;
  max-width: 310px;
  width: 100%;
  text-align: center;
  padding: min(1.3vw, 20px);
  border-radius: 0;
  background: #fff;
  transition: all 0.3s;
}

a.btn:hover {
  color: #333;
  outline: none;
  box-shadow: none;
}

/* downloadボタン */
.btn.-download {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 2px solid #333;
  position: relative;
  transition: all 0.3s;
}

.btn.-download span {
  font-size: min(0.9vw, 14px);
  font-weight: 600;
  position: relative;
}

.btn.-download span::before {
  content: "";
  width: 19px;
  height: 23px;
  background: url(../seihin/img/common/pdf-file.svg) no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}

.btn.-download::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../seihin/img/common/download.svg) no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}

#download-btn.-disabled,
#download-btn--no-passwd.-disabled {
  pointer-events: none;
  opacity: 0.4;
}

@media (hover: hover) and (pointer: fine) {
  .btn.-download:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 768px) {
  .btn.-download span {
    font-size: 14px;
  }
}

/* ------------------------------------ */
/* セクション */
.sec-inner {
  padding: 100px 20px;
  max-width: 1106px;
  margin: 0 auto;
}

section:last-of-type .sec-inner {
  padding-bottom: min(8.3vw, 120px);
}

.form-joint section:last-of-type .sec-inner {
  padding-top: 0;
}
.sec-heading {
  font-size: min(1.6vw, 24px);
  font-weight: 700;
  color: #333;
  position: relative;
  padding: 5px 15px;
  margin-bottom: 40px;
}

.sec-heading::before {
  content: "";
  width: 5px;
  height: 100%;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .sec-inner {
    padding: 60px 20px;
  }

  section:last-of-type .sec-inner {
    padding: 60px 0 100px;
  }

  .sec-heading {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

/* ------------------------------------ */
/* テーブルスタイル */

table {
  width: 100%;
}

table th,
table td {
  line-height: 1.8;
}

/* ------------------------------------ */
/* table-doc */

.table-doc {
  table-layout: fixed;
}

.table-doc tr {
  border-bottom: 1px solid #d9d9d9;
}

.table-doc th,
.table-doc td {
  text-align: center;
  padding: 15px 5px;
}

.table-doc th {
  font-size: min(1.1vw, 16px);
  font-weight: 700;
}

.table-doc tr.thead th:first-child {
  width: 215px;
}



.table-doc td {
  font-size: min(0.9vw, 14px);
}

.table-doc td a {
  display: inline-block;
  color: #fff;
  background: #ff8800;
  border-radius: 5px;
  padding: 5px 20px;
}

.table-doc td a:first-of-type {
  margin-right: 3px;
}

@media screen and (max-width: 768px) {
  .table-doc {
    border-top: 1px solid #d9d9d9;
  }

  .table-doc th,
  .table-doc td {
    padding: 7.5px 15px;
  }

  .table-doc tr.thead {
    display: none;
  }

  .table-doc td {
    width: 100%;
    font-size: 12px;
    text-align: left;
    display: flex;
    position: relative;
    padding-left: 35%;
  }

  .table-doc td span {
    display: block;
    width: 35%;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 12px;
    left: 0;
  }

  .table-doc td a {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ------------------------------------ */
/* document */
/* ------------------------------------- */

.document .sec-inner {
  padding-bottom: 0;
}

.document .main-title {
  font-size: min(2vw, 30px);
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 50px;
  border-bottom: 2px solid #333;
}

.document .sec-heading {
  font-size: min(1.6vw, 24px);
  font-weight: 700;
  padding: 5px 20px;
  background: #f5f5f5;
}

.form-joint .document .sec-heading {
  padding: 0;
  background-color: transparent;
  margin-bottom: 50px;
  line-height: calc(34 / 23);
}

.document .btn {
  margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
  .document .main-title {
    font-size: 20px;
  }

  .document .sec-heading {
    font-size: 20px;
    text-indent: 0;
  }

  .form-joint .document .sec-heading {
    font-size: 16px;
    line-height: calc(24 / 16);
  }
}


/* ------------------------------------- */
/* form
/* ------------------------------------- */

.form .sec-heading::before {
  background: #ffa94a;
}

.form .note {
  padding: 20px;
  margin-bottom: 30px;
  background: #f5f5f5;
}

.form .note p {
  font-size: min(1.111vw, 16px);
}

.is-error,
.caution {
  color: #ff1800;
}

::placeholder {
  color: #ccc !important;
}

input,
select,
textarea {
  font-size: min(1.111vw, 16px);
}

.mailformArea {
  text-align: center;
  margin: min(5.55vw, 80px) 15.277vw min(8.68vw, 120px);
}

.mailformArea .txt {
  background: #f9f9f9;
  padding: min(1.3888vw, 15px) 0;
  margin-bottom: min(2.777vw, 40px);
}

.form_area {
  margin: 0 auto;
}

.form_area table {
  border-collapse: collapse;
  width: 100%;
  font-size: min(1.111vw, 16px);
}

.form_area table tr {
  border-top: 1px solid #efe8e7;
}

.form_area table tr:last-of-type {
  border-bottom: 1px solid #e0e0e0;
}

.form_area table th,
.form_area table td {
  padding: min(1.388vw, 20px);
  text-align: left;
}

.form_area table th {
  width: 25%;
  vertical-align: middle;
  font-weight: 700;
}

.form_area table td input,
.form_area table td textarea {
  border: 1px solid #efe8e7;
  border-radius: 4px;
  width: 100%;
  padding: min(0.6944vw, 10px);
}

.form_area table td .addressbox_top {
  display: flex;
  margin-bottom: min(1.3888vw, 15px);
  align-items: center;
  justify-content: space-between;
  gap: 0 10px;
}

.form_area table td .addressbox_top .postal,
.form_area table td .addressbox_top .prefecture {
  width: 49%;
}

.form_area table td .addressbox_top .postal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form_area table td .addressbox_top .address-sub {
  min-width: 4em;
}

.form_area table td .addressbox_text {
  width: 45%;
}

.form_area table td .addressbox_top .prefecture {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* .form_area table td .addressbox_top .prefecture::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 10px;
  width: min(0.555vw, 8px);
  height: min(0.555vw, 8px);
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
} */

.form_area table td .radio-wrap {
  display: flex;
  align-items: center;
  gap: 10px 30px;
}

.form_area table td .radio-wrap label {
  display: grid;
  grid-template-columns: 17px max-content;
  gap: 5px;
  align-items: center;
  font-size: min(1.111vw, 16px);
  cursor: pointer;
}

.form_area table td input[type="radio"] {
  appearance: none;
  display: grid;
  width:  min(1.118vw, 17px);
  height: min(1.118vw, 17px);
  border-radius: 100px;
  border: solid 1px #DEE2E6;
  place-items: center;
  padding: 0;
}

.form_area table td input[type="radio"]::after {
  content: "";
  border-radius: 100px;
  width: min(0.76vw, 11px);
  height: min(0.76vw, 11px);
  background-color: #FFA94A;
  opacity: 0;
}

.form_area table td input[type="radio"]:checked::after {
  opacity: 1;
}

.form_area table td .addressbox_select {
  width: 75%;
  padding: min(1.777vw, 15px);
  border: 1px solid #efe8e7;
  border-radius: 4px;
}

.form_area table td textarea {
  height: 8vw;
  line-height: 1.6;
  resize: none;
}

@media screen and (max-width: 600px) {
  .form .note p {
    font-size: 14px;
  }

  input,
  select,
  textarea {
    font-size: 14px;
  }

  .mailformArea {
    margin: 60px 4% 80px;
  }

  .mailformArea .txt {
    padding: 4%;
    margin-bottom: 30px;
  }

  .form_area table {
    font-size: 14px;
  }

  .form_area table th,
  .form_area table td {
    display: block;
    padding: 15px 4%;
  }

  .form_area table th {
    width: 100%;
    background: #f6f6f6;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    font-size: 14px;
  }

  .form_area table td input,
  .form_area table td textarea {
    padding: 4%;
  }

  .form_area table td .addressbox_top {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }

  .form_area table td .addressbox_top .postal,
  .form_area table td .addressbox_top .prefecture {
    width: 100%;
  }

  .form_area table td .addressbox_top .postal {
    margin-bottom: 15px;
  }

  .form_area table td .addressbox_text {
    width: 45%;
  }

  .form_area table td .addressbox_top .prefecture {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .form_area table td .radio-wrap {
    flex-direction: column;
    align-items: start;
  }

  .form_area table td .radio-wrap label {
    font-size: 14px;
  }

  .form_area table td input[type="radio"] {
    width: 17px;
    height: 17px;
  }

  .form_area table td input[type="radio"]::after {
    width: 11px;
    height: 11px;
  }

  .form_area table td .addressbox_select {
    padding: 4%;
    margin-top: 0;
    width: calc(100% - 62px);
  }

  .form_area table td textarea {
    height: 200px;
  }
  
}

/* ------------------------------------- */
/* .privacy
/* ------------------------------------- */
.form_wrap .privacy {
  width: 100%;
  margin-top: min(2.777vw, 40px);
  padding: min(1.0416vw, 15px);
  overflow-y: auto;
  border: solid 1px #333;
  color: #333;
  text-align: left;
  letter-spacing: 0.1em;
  font-size: min(0.833vw, 12px);
}

.form_wrap .privacy .privacy-inner p {
  width: auto;
  margin: 0 min(1.388vw, 20px);
  line-height: 1.8;
  font-size: min(0.9vw, 14px);
}

.form_wrap .privacy .privacy-inner .link {
  color: #0090f5;
  text-decoration: underline;
}

.form_wrap .privacyAgree {
  margin-top: min(2.08333vw, 30px);
  text-align: center;
}

.form_wrap .privacyAgree p.desc {
  font-size: min(1.111vw, 16px);
  text-align: center;
}

.form_wrap .privacyAgree .form_wrap .privacyAgree .is-error-privacy_check {
  margin-bottom: 8px;
  color: #ff1800;
}

.form_wrap .privacyAgree label {
  font-size: min(1.111vw, 16px);
  font-weight: 700;
  margin-top: 30px;
}

@media screen and (max-width: 600px) {
  .form_wrap .privacy {
    margin-top: 20px;
    padding: 2%;
    font-size: 12px;
  }

  .form_wrap .privacy .privacy-inner p {
    font-size: 14px;
  }

  .form_wrap .privacyAgree {
    margin-top: 30px;
  }

  .form_wrap .privacyAgree p.desc {
    font-size: 14px;
  }

  .form_wrap .privacyAgree label {
    font-size: 14px;
  }
}

/* ------------------------------------- */
/* .btn
/* ------------------------------------- */
.form_wrap .btn-area {
  gap: min(2.777vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: min(2.777vw, 40px);
  flex-wrap: wrap;
}

.form_wrap .btn-area .input-wrap {
  position: relative;
}

.form_wrap .btn-area .input-wrap:first-child::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form_wrap .btn-area input {
  position: relative;
  text-align: center;
  display: block;
  padding: min(1.3888vw, 15px) 0;
  font-weight: 700;
  background: #333;
  color: #fff;
  width: min(19.4vw, 280px);
  font-size: min(0.9vw, 14px);
}

.form_wrap .btn-area input#submit {
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: none;
  border-radius: 0;
}

@media (hover: hover) and (pointer: fine) {
  .form_wrap .btn-area input#submit:hover {
    opacity: 0.6;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
}

.form_wrap .btn-area input#reset {
  color: #333;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  border: solid 2px #333;
  border-radius: 0;
}

@media (hover: hover) and (pointer: fine) {
  .form_wrap .btn-area input#reset:hover {
    opacity: 0.6;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
}

@media screen and (max-width: 600px) {
  .form_wrap .btn-area {
    gap: 30px;
    align-items: center;
    margin-top: 30px;
    flex-direction: column;
  }

  .form_wrap .btn-area .input-wrap {
    width: 92%;
  }

  .form_wrap .btn-area input {
    padding: 15px 0;
    width: 100%;
    font-size: 14px;
  }
}

/* ------------------------------------- */
/* .teleArea
/* ------------------------------------- */
.teleArea {
  text-align: center;
  background-size: auto auto;
  background: rgba(249, 249, 249, 1);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 4px,
    rgba(241, 241, 241, 1) 4px,
    rgba(241, 241, 241, 1) 6px
  );
  padding: min(8.68vw, 120px) 0;
}

.teleArea__number {
  color: #fff;
  font-size: min(2.361vw, 34px);
  margin: min(2.0833vw, 30px) 0 min(1.3888vw, 15px);
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
  background: #35a0d8;
  display: inline-block;
  padding: min(1.3888vw, 15px) min(2.0833vw, 30px);
  border-radius: 4px;
}

@media screen and (max-width: 600px) {
  .teleArea {
    padding: 60px 0;
  }

  .teleArea__number {
    font-size: 24px;
    margin: 30px 0 10px;
    padding: 10px 20px;
  }
}

/* ------------------------------------- */
/* confirmArea
/* ------------------------------------- */
.confirmArea {
  text-align: center;
  margin: min(5.55vw, 80px) 15.277vw min(8.68vw, 120px);
}

.confirmArea .btn-area .btn {
  margin: 0;
}

.confirmArea .btn-area a {
  border: outset 2px;
  position: relative;
  text-align: center;
  display: block;
  padding: min(1.3888vw, 15px) 0;
  font-weight: 700;
  width: min(19.4vw, 280px);
  font-size: min(0.9vw, 14px);
}

@media (hover: hover) and (pointer: fine) {
  .confirmArea .btn-area a:hover {
    opacity: 0.6;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
}

.confirmArea .btn-area a.submit-btn {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 0;
}

.confirmArea .btn-area a.return-btn {
  color: #333;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  border: solid 2px #333;
  border-radius: 0;
}
@media screen and (max-width: 600px) {
  .confirmArea {
    margin: 60px 4% 80px;
  }

  .confirmArea .btn-area form {
    width: 100%;
  }

  .confirmArea .btn-area .btn {
    margin: 0 auto;
    width: 90%;
  }

  .confirmArea .btn-area a.submit-btn,
  .confirmArea .btn-area a.return-btn {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    padding: 15px 0;
  }
}

/* ------------------------------------- */
/* thanksArea{
/* ------------------------------------- */
.thanksArea {
  text-align: center;
  margin: min(5.55vw, 80px) 15.277vw min(8.68vw, 120px);
}

.thanks-title {
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  font-size: min(2.222vw, 32px);
  line-height: 1.8em;
  margin-bottom: min(2.777vw, 40px);
}

.thanksArea .btn {
  position: relative;
  text-align: center;
  display: block;
  padding: min(1.3888vw, 15px) 0;
  font-weight: 700;
  background: #333;
  color: #fff;
  width: min(19.4vw, 280px);
  font-size: min(0.9vw, 14px);
  margin: 40px auto 0;
  border: solid 2px #333;
  border-radius: 0;
}

@media (hover: hover) and (pointer: fine) {
  .thanksArea .btn:hover {
    opacity: 0.6;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #fff;
  }
}

@media screen and (max-width: 600px) {
  .thanksArea {
    margin: 60px 4% 80px;
  }

  .thanks-title {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .thanksArea .btn {
    padding: 15px 0;
    width: 100%;
    font-size: 14px;
    margin: 30px auto 0;
  }
}

/* ------------------------------------- */
/* download
/* ------------------------------------- */
.download-text {
  color: red;
  margin-top: 20px;
  text-align: center;
}