@charset "UTF-8";
/*----------------------------------------

	top CSS

-----------------------------------------*/
.firstArea > div {
  max-width: 1100px;
  margin: 100px auto 50px;
}
@media all and (max-width: 767px) {
  .firstArea > div {
    margin: 50px 0 25px;
  }
}
.firstArea__content {
  /*width: 100%;
  height: 740px;
  padding: 0 20px;
  background-color: #CFD0D0;*/
  text-align: center;
}
.firstArea__content img{
  width: auto;
  max-width: 100%;
}
@media all and (max-width: 767px) {
  .firstArea__content {
    /*height: 365px;*/
  }
}
.firstArea h1 {
  margin-bottom: 50px;
  padding: 0 20px;
  font-size: 2.4rem;
  text-align: center;
}
.firstArea p {
  margin: 20px 0;
  padding: 0 20px;
  line-height: 1.8;
  text-align: center;
}
.firstArea .c_note {
  margin-top: 25px;
  padding: 0 20px;
  font-size: 1.6rem;
}
@media all and (max-width: 767px) {
  .firstArea .c_note {
    font-size: 1.4rem;
  }
}

.infoArea {
  margin-top: 50px;
}
@media all and (max-width: 767px) {
  .infoArea {
    margin-top: 25px;
  }
}
.infoArea > div {
  max-width: 1100px;
  margin: 0 auto;
}
.infoArea__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  border: 1px solid #C1C6CB;
}
@media all and (max-width: 767px) {
  .infoArea__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
  }
}
.infoArea__tit {
  width: 45%;
}
@media all and (max-width: 767px) {
  .infoArea__tit {
    width: 100%;
    margin-bottom: 20px;
  }
}
.infoArea__tit h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.infoArea__tit h2 > span {
  display: inline-block;
}
.infoArea__items {
  width: 55%;
}
@media all and (max-width: 767px) {
  .infoArea__items {
    width: 100%;
  }
}
.infoArea__items .numbers {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.infoArea__items .numbers::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  background-image: url("./img/icon-phone.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px 31px;
}
@media all and (max-width: 767px) {
  .infoArea__items .numbers::before {
    width: 28px;
    height: 28px;
    background-size: 24px 25px;
  }
}
.infoArea__items .numbers > span {
  font-size: 4rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
}
@media all and (max-width: 767px) {
  .infoArea__items .numbers > span {
    font-size: 3rem;
  }
}
.infoArea__items .details + .details {
  margin-top: 10px;
}

@media all and (max-width: 767px) {
  .forms {
    padding: 0 20px;
  }
}
.forms > div {
  max-width: 1100px;
  margin: 0 auto;
}
.forms .c_note {
  margin: 40px 0 0;
  font-size: 1.2rem;
}
@media all and (max-width: 767px) {
  .forms .c_note {
    margin: 20px 0 0;
  }
}
.forms .tit01 {
  margin-top: 100px;
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1BB8CE;
}
@media all and (max-width: 767px) {
  .forms .tit01 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.forms .table__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-top: 1px solid #C1C6CB;
}
@media all and (max-width: 767px) {
  .forms .table__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.forms .table__content:last-of-type {
  border-bottom: 1px solid #C1C6CB;
}
.forms .table__content.required .table__tit {
  position: relative;
}
.forms .table__content.required .table__tit::after {
  content: "必須";
  display: block;
  right: 20px;
  padding: 8px 15px;
  font-size: 1.4rem;
  line-height: 1;
  color: #E95464;
  border: 1px solid #E95464;
}
@media all and (min-width: 768px) {
  .forms .table__content.required .table__tit::after {
    position: absolute;
  }
}
@media all and (max-width: 767px) {
  .forms .table__content.required .table__tit::after {
    margin-left: 20px;
    padding: 5px 10px;
    font-size: 1.2rem;
  }
}
.forms .table__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 25%;
  padding: 40px 20px;
  background-color: #F8F9F9;
}
@media all and (max-width: 767px) {
  .forms .table__tit {
    width: 100%;
    padding: 15px 20px;
  }
}
.forms .table__tit.topstart {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media all and (max-width: 767px) {
  .forms .table__tit.topstart {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.forms .table__tit.topstart > h3 {
  padding: 10px 0 0;
}
@media all and (max-width: 767px) {
  .forms .table__tit.topstart > h3 {
    padding: 0;
  }
}
.forms .table__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 50px;
  width: 75%;
  padding: 40px;
}
@media all and (max-width: 767px) {
  .forms .table__form {
    gap: 10px;
    width: 100%;
    padding: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (max-width: 767px) {
  .forms .table__form.radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.forms .table__form.radio ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 80px;
}
@media all and (max-width: 767px) {
  .forms .table__form.radio ul {
    gap: 20px;
  }
}
.forms .table__form.checkbox {
  display: block;
}
.forms .table__form.checkbox p {
  margin-bottom: 10px;
}
.forms .table__form.checkbox .groupwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 4%;
}
.forms .table__form.checkbox .groupwrap:not(:last-of-type) {
  margin-bottom: 40px;
}
.forms .table__form.checkbox .groupwrap li {
  width: 48%;
}
@media all and (max-width: 767px) {
  .forms .table__form.checkbox .groupwrap li {
    width: 100%;
  }
}
.forms .table__form.checkbox.column .groupwrap {
  display: block;
}
.forms .table__form.checkbox.column .groupwrap li + li {
  margin-top: 15px;
}
.forms .table__form.seimei .sei,
.forms .table__form.seimei .mei {
  width: 90%;
}
.forms .table__form.seimei {
  gap: 20px;
}
@media all and (max-width: 767px) {
  .forms .table__form.seimei {
    gap: 20px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .forms .table__form.seimei > input {
    width: calc(100% - (1em + 5%));
  }
  .forms .table__form.seimei > p {
    width: calc(1em + 5%);
    text-align: center;
  }
}
.forms .table__form.postnum {
  gap: 20px;
}
@media all and (max-width: 767px) {
  .forms .table__form.postnum {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
.forms .table__form.postnum input {
  width: 20%;
}
@media all and (max-width: 767px) {
  .forms .table__form.postnum input {
    width: 35%;
  }
}
.forms .table__form.address {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media all and (max-width: 767px) {
  .forms .table__form.address {
    gap: 20px;
  }
}
.forms .table__form.address dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2%;
  width: 100%;
}
@media all and (max-width: 767px) {
  .forms .table__form.address dl {
    display: block;
  }
}
.forms .table__form.address dl dt {
  width: 23%;
}
@media all and (max-width: 767px) {
  .forms .table__form.address dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.forms .table__form.address dl dd {
  width: 75%;
}
@media all and (max-width: 767px) {
  .forms .table__form.address dl dd {
    width: 100%;
  }
}
.forms .table__form.tel {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.forms .table__form.email {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.forms .table__form.textarea {
  display: block;
}
.forms .table__form.textarea p {
  margin-bottom: 10px;
}
.forms .table__form.howknowselect {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.forms .table__form.howknowselect p {
  margin-top: 20px;
}
.forms .table__form.birth_day{
  gap: 20px;
}
@media all and (max-width: 767px) {
  .forms .table__form.birth_day {
    gap: 20px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .forms .table__form.birth_day > input {
    width: calc(100% - (1em + 5%));
  }
  .forms .table__form.birth_day > p {
    width: calc(1em + 5%);
    text-align: center;
  }
}

.forms .table__form.birth_day .year select{
  min-width: 230px;
  width: 100%;
}
.forms .table__form.birth_day .month select{
  min-width: 160px;
  width: 100%;
}
.forms .table__form.birth_day .day select{
  min-width: 160px;
  width: 100%;
}
@media all and (max-width: 767px) {
	.forms .table__form.birth_day .year,
	.forms .table__form.birth_day .month,
	.forms .table__form.birth_day .day{
	  width: 90%;
	}
	.forms .table__form.birth_day .year select{
	  min-width: 300px;
	}
	.forms .table__form.birth_day .month select{
	  min-width: 300px;
	}
	.forms .table__form.birth_day .day select{
	  min-width: 300px;
	}
}
.hidden {
  display: none;
}

input {
  width: 100%;
  padding: 15px 60px 15px 15px;
  border: none;
  background-color: #F3F5F5;
  cursor: pointer;
}

label {
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

input[type=radio] {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  margin-right: 5px;
}

input[type=radio]::before,
input[type=radio]::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

input[type=radio]::before {
  background-color: #fff;
  border: 1px solid #6E6F6F;
  height: 30px;
  width: 30px;
  left: 0px;
}

input[type=radio]::after {
  background-color: #1BB8CE;
  opacity: 0;
  height: 22px;
  width: 22px;
  left: 5px;
}

input[type=radio]:checked::after {
  opacity: 1;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + .text > span {
  background-color: #1BB8CE;
  border-color: #1BB8CE;
}
input[type=checkbox]:checked + .text > span::after {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-2px, -2px) scale(1);
          transform: rotate(45deg) translate(-2px, -2px) scale(1);
}
input[type=checkbox] + .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 30px;
}
input[type=checkbox] + .text > span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border: 1px solid #6E6F6F;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
}
input[type=checkbox] + .text > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 12px;
  margin: auto;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  opacity: 0;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(45deg) translate(-2px, -2px) scale(0);
          transform: rotate(45deg) translate(-2px, -2px) scale(0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

textarea {
  outline: none;
  border: none;
  width: 100%;
  max-width: 100%;
  height: 200px;
  padding: 20px;
  background-color: #F3F5F5;
  cursor: pointer;
}

.dayWrap {
  position: relative;
  width: 50%;
}
@media all and (max-width: 767px) {
  .dayWrap {
    width: 100%;
  }
}
.dayWrap > button {
  position: absolute;
  outline: none;
  border: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
}
.dayWrap > button > span {
  position: absolute;
  top: calc(50% - 15px);
  right: 20px;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("./img/icon-calendar.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.select_box {
  position: relative;
  display: inline-block;
}
@media all and (max-width: 767px) {
  .select_box {
    width: 100%;
  }
}
.select_box::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid #929393;
  border-top-width: 0;
  border-left-width: 0;
  top: calc(50% - 3px);
  right: 20px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  pointer-events: none;
}
.select_box.open select {
  outline: 1px solid #1BB8CE;
  background-color: #fff;
}
.select_box.open::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.policyArea {
  padding: 40px;
  border: 1px solid #C1C6CB;
}
@media all and (max-width: 767px) {
  .policyArea {
    padding: 30px;
  }
}
.policyArea__inner {
  max-height: 200px;
  padding: 0 20px 0 0;
}
@media all and (max-width: 767px) {
  .policyArea__inner {
    max-height: 310px;
    padding: 0 20px 0 0;
  }
}
.policyArea__inner > * {
  line-height: 1.8;
}
.policyArea__inner h5:not(:first-of-type) {
  margin-top: 3em;
  margin-bottom: 1em;
}
.policyArea__inner h5:first-of-type {
  margin-bottom: 3em;
}
.policyArea__inner p + p {
  margin-top: 1em;
}

.submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 100px auto;
  font-size: 1.8rem;
}
@media all and (max-width: 767px) {
  .submit {
    margin: 50px auto;
  }
}
.submit input {
  display: block;
  width: 50%;
  max-width: 580px;
  min-width: 300px;
  padding: 1.2em;
  border: none;
  background-color: #1BB8CE;
}
@media all and (max-width: 767px) {
  .submit input {
    width: 100%;
  }
}
.submit input {
  font-weight: 700;
  color: #fff;
}

.back_btn {
  text-align: center;
}
.back_btn label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
}
.back_btn label span {
  display: block;
  width: 0.75em;
  height: 0.75em;
  border-left: 1px solid #6E6F6F;
  border-bottom: 1px solid #6E6F6F;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.back_btn label input {
  width: auto;
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  line-height: 1.5;
}

.submit.fin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 100px auto;
  font-size: 1.8rem;
}
@media all and (max-width: 767px) {
  .submit.fin {
    margin: 50px 20px;
  }
}
.submit.fin input {
  display: block;
  width: 50%;
  max-width: 580px;
  min-width: 300px;
  padding: 1.2em;
  border: none;
  background-color: #1BB8CE;
}
@media all and (max-width: 767px) {
  .submit.fin input {
    width: 100%;
  }
}
.submit.fin input{
  font-weight: 700;
  color: #fff;
}