@charset "UTF-8";
/* ＝＝＝＝＝＜リセット＞＝＝＝＝＝ */
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 10px;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 8px;
  margin-right: 8px;
  padding-top: 0.5px;
  padding-bottom: 1px;
  width: 40px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 11px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 6px;
    padding-top: 0.5px;
    padding-bottom: 0.5px;
    width: 32px;
    font-size: 9px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 0;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}

.Form-Item-radioArea {
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: auto;
  flex: 1;
  width: 100%;
  max-width: 410px;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-radioArea {
    margin-left: 0;
    height: auto;
    flex: inherit;
    font-size: 15px;
  }
}

.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

/* チェックボックス01 */
input[type=checkbox] {
    display: none;
}
.checkbox01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox01::before {
    background: #fff;
    border: 1px solid #231815;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox01::after {
    border-right: 3px solid #ed7a9c;
    border-bottom: 3px solid #ed7a9c;
    content: '';
    display: block;
    height: 12px;
    left: 9px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 8px;
}
input[type=checkbox]:checked + .checkbox01::after {
    opacity: 1;
}

/* ラジオボタン01 */
input[type=radio] {
    display: none;
}
.radio01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.radio01::before {
    background: #fff;
    border: 1px solid #231815;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.radio01::after {
    background: #ed7a9c;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 8px;
    margin-top: -5px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
input[type=radio]:checked + .radio01::after {
    opacity: 1;
}


.check {
  display: none;
}

.check + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 2em;
  position: relative;
}

.check + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1.3em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3em;
}

.check + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid rgba(0, 0, 0, 0.8);
  border-left: 3px solid rgba(0, 0, 0, 0.8);
  content: "";
  display: block;
  height: 0.6em;
  left: 1%;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1em;
}

.check:checked + span::after {
  opacity: 1;
}


.submit {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.8);
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  text-decoration: none;
}

.submit:hover,
.submit:focus {
  outline: none;
}

.submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.submit:disabled {
  cursor: default;
  opacity: 0.5;
}

.p-form__privacy{height:20rem;border:solid 1px #d9d9d8;overflow:auto}

@media screen and (min-width:1024px){.p-form__privacy{padding:2rem 0;margin-bottom:2rem}}

@media screen and (max-width:1023px) and (min-width:561px){.p-form__privacy{padding:1rem 0;margin-bottom:1rem}}

@media screen and (max-width:560px){.p-form__privacy{padding:1rem 0;margin-bottom:1rem}}

.p-form__privacy__title{text-align:center;font-weight:200}

@media screen and (min-width:1024px){.p-form__privacy__title{font-size:10px;font-size:1.5rem;font-size:max(1.5rem ,5px);margin-bottom:1.5rem}}

@media screen and (max-width:1023px) and (min-width:561px){.p-form__privacy__title{font-size:1.5rem;margin-bottom:1.5rem}}

@media screen and (max-width:560px){.p-form__privacy__title{font-size:1.3rem;margin-bottom:0.8rem}}

@media screen and (min-width:1024px){.p-form__privacy__contents{padding:0}}

@media screen and (min-width:1024px){.p-policy-space.-level1>section:not(:last-of-type){margin-bottom:1.5rem}}

@media screen and (max-width:1023px){.p-policy-space.-level1>section:not(:last-of-type){margin-bottom:1.5rem}}

@media screen and (min-width:1024px){.p-policy-space.-level2s>section:not(:last-of-type){margin-bottom:1.5rem}}

@media screen and (max-width:1023px){.p-policy-space.-level2s>section:not(:last-of-type){margin-bottom:1.5rem}}

@media screen and (min-width:1024px){.p-policy-space.-level3{margin-bottom:1.5rem}}

@media screen and (max-width:1023px){.p-policy-space.-level3{margin-bottom:1.5rem}}

@media screen and (min-width:1024px){.p-policy-space.-level4s>section:not(:last-of-type){margin-bottom:1.5rem}}

@media screen and (max-width:1023px){.p-policy-space.-level4s>section:not(:last-of-type){margin-bottom:1.5rem}}

.c-title10{border-bottom:solid 1px rgba(0,0,0,.1);font-weight:100;font-size:9px;font-size:1.2rem;font-size:max(1.2rem ,5px)}

@media screen and (min-width:1024px){.c-title10{margin-bottom:1.1rem;padding-bottom:1.1rem}}

@media screen and (max-width:1023px){.c-title10{margin-bottom:1.1rem;padding-bottom:0.8rem}}

.c-text-medium2,.c-text-medium2 *{color:#454545;font-size:8px;font-size:1rem;font-size:max(1rem ,5px);line-height:1.1}

@media screen and (max-width:1023px){.c-text-medium2.-type2,.c-text-medium2.-type2 *{font-size:6px;font-size:0.8rem;font-size:max(0.8rem ,6px)}}
