@charset "UTF-8";
/* ------------------------------------------------------

    ニュース - 共通

------------------------------------------------------ */
.c-sec-title-wrap {
  display: flex;
  justify-content: center;
  padding: 50px 0 50px;
}

@media screen and (max-width: 767px) {
  .c-sec-title-wrap {
    padding: 30px 0;
  }
}

.c-sec-title {
  text-align: center;
}

.c-sec-title:not([data-status=show]) {
  opacity: 0;
}

.c-sec-title[data-status=show] {
  opacity: 1;
  transition: opacity 600ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0ms;
}

.c-sec__body {
  max-width: 990px;
  margin-bottom: 70px;
}

/* ------------------------------------------------------

    ニュース - 共通

------------------------------------------------------ */
/* placeholder */
::-webkit-input-placeholder {
  color: #bab7b7;
}

:-ms-input-placeholder {
  color: #bab7b7;
}

::-moz-placeholder {
  color: #bab7b7;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 0.4375em 1em;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
  font-size: 1.6rem;
  color: inherit;
}

@media screen and (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    padding: 0.25em .5em;
    font-size: 1.8rem;
  }
}

textarea {
  width: 100%;
  height: 120px;
  padding: 0.4375em 1em;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
  resize: none;
  font-size: 1.6rem;
  color: inherit;
}

@media screen and (max-width: 767px) {
  textarea {
    padding: 0.25em .5em;
    font-size: 1.8rem;
  }
}

select {
  width: 100%;
  padding: 0.4375em 1em;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
}

@media screen and (max-width: 767px) {
  select {
    padding: 0.25em .5em;
    font-size: 1.8rem;
  }
}

select::-ms-expand {
  display: none;
  /* IE11 */
}

.contact {
  /* 個別 */
  /* 住所の自動入力 */
}

.contact:not([data-status=show]) {
  opacity: 0;
  transform: translateY(30px);
}

.contact[data-status=show] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0ms, transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
}

.contact .name p,
.contact .kana p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .name p input,
.contact .kana p input {
  width: calc((100% - 20px) / 2);
}

@media screen and (max-width: 767px) {
  .contact .name p input,
  .contact .kana p input {
    width: 100%;
  }
  .contact .name p input:not(:last-child),
  .contact .kana p input:not(:last-child) {
    margin-bottom: 10px;
  }
}

.contact .company p input,
.contact .unit p input,
.contact .position p input,
.contact .tel input {
  width: calc((100% - 20px) / 2);
}

@media screen and (max-width: 767px) {
  .contact .company p input,
  .contact .unit p input,
  .contact .position p input,
  .contact .tel input {
    width: 100%;
  }
}

.contact .address .zip input {
  width: 150px;
}

@media screen and (max-width: 767px) {
  .contact .address .zip input {
    width: calc( 100% - 160px);
  }
}

.contact .address .zip__code {
  position: relative;
}

.contact .address .zip__code b {
  position: absolute;
  top: 50%;
  left: -1.5em;
  transform: translateY(-50%);
}

.contact .address .address1 p {
  position: relative;
  width: 180px;
}

.contact .address .address1 p::before {
  position: absolute;
  content: '';
  top: 21px;
  right: 14px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #434343 transparent transparent transparent;
}

.contact .zip,
.contact .address1,
.contact .address2,
.contact .email1 {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .contact .zip,
  .contact .address1,
  .contact .address2,
  .contact .email1 {
    margin-bottom: 10px;
  }
}

.contact__zipBtn {
  position: relative;
  padding-left: 30px;
  padding: 0 0 0 30px;
  margin-left: 2em;
  line-height: 1;
  color: #009ce7;
}

.contact__zipBtn.is-over {
  opacity: 0.8;
}

.contact__zipBtn::before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  content: '?';
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #434343;
  border-radius: 50%;
  color: #fff;
}

.contact table {
  width: 100%;
  margin: 0 0 35px;
}

.contact table th {
  width: 245px;
  padding: 40px 20px 19px;
  border-bottom: 1px solid #d9d9d9;
  vertical-align: top;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .contact table th {
    display: block;
    width: auto;
    padding: 15px 0 0;
    border-bottom: none;
  }
}

.contact table th div {
  position: relative;
}

.contact table tr:first-child th {
  padding: 14px 20px 19px;
}

@media screen and (max-width: 767px) {
  .contact table tr:first-child th {
    padding: 0;
  }
}

.contact table td {
  padding: 40px 0 19px;
  border-bottom: 1px solid #d9d9d9;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .contact table td {
    display: block;
    width: auto;
    padding: 15px 0;
  }
}

.contact table tr:first-child td {
  padding: 14px 0 19px;
}

@media screen and (max-width: 767px) {
  .contact table tr:first-child td {
    padding: 15px 0;
  }
}

.contact table span {
  font-size: 75%;
  color: #ff0000;
}

@media screen and (max-width: 767px) {
  .contact table span {
    font-size: 93.75%;
  }
}

.contact table .error input,
.contact table .error textarea,
.contact table .error select {
  border-color: #f8bdbd;
  background-color: #fff6f6;
}

/* ------------------------------------------------------

    エラー 

------------------------------------------------------ */
.form-error {
  background: #fff6f6;
  color: #f00;
  padding: 15px 20px;
  margin: 0 0 30px;
}

@media screen and (max-width: 767px) {
  .form-error {
    padding: 15px 10px;
  }
}

.form-error ul li {
  text-indent: -1em;
  padding-left: 1em;
}

.form-error ul li::before {
  content: '・';
  display: inline-block;
  width: 1em;
  padding-left: 1em;
}

/* ------------------------------------------------------

    同意 / 送信 / リセット 

------------------------------------------------------ */
.form-operation {
  margin-bottom: 50px;
}

.form-operation__agree {
  margin-bottom: 20px;
  text-align: center;
}

.form-operation__agree span {
  color: #009ce7;
}

.form-operation__confirm {
  margin-bottom: 20px;
}

.form-operation__confirm button {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  padding: 13px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  background-color: #009ce7;
}

.form-operation__confirm button.is-over {
  opacity: 0.8;
}

.form-operation__reset button {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto 20px;
  padding: 15px;
  cursor: pointer;
  background-color: #e6e6e6;
}

.form-operation__reset button.is-over {
  opacity: 0.8;
}

/* ------------------------------------------------------

    同意文

------------------------------------------------------ */
.form-privacy dl {
  line-height: 1.875;
}

.form-privacy dl:not(:last-child) {
  margin-bottom: 30px;
}

.form-privacy dl dt {
  font-weight: 600;
  color: #00a8ec;
}

.form-privacy dl dd {
  text-indent: -1em;
  padding-left: 1em;
}

.form-privacy dl dd:before {
  display: inline-block;
  content: '・';
  width: 1em;
  text-align: center;
  text-indent: 0;
}
