@charset "UTF-8";
.mv {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .mv {
    margin-bottom: 10rem;
  }
}
.mv .detail {
  position: absolute;
  top: 6rem;
  left: 2rem;
  font-size: 1.2rem;
  color: #004097;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .mv .detail {
    display: none;
  }
}
.mv .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.mv .title .en {
  font-size: 6rem;
  color: #00b1dd;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .mv .title .en {
    font-size: 8.6rem;
  }
}
.mv .title .ja {
  display: inline-block;
  background: rgb(0, 177, 221);
  background: linear-gradient(90deg, rgb(0, 177, 221) 0%, rgb(0, 135, 195) 22%, rgb(0, 64, 151) 100%);
  color: #fff;
  font-weight: bold;
  font-size: 3.6rem;
  padding: 0.8rem 2rem 1.2rem;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .mv .title .ja {
    font-size: 3.8rem;
    padding: 1.2rem 2.5rem 1.6rem;
  }
}
.mv .img {
  position: relative;
  margin-left: auto;
  height: 40rem;
  width: 75%;
}
@media only screen and (max-width: 767px) {
  .mv .img {
    height: 50rem;
    width: 55rem;
  }
}
.mv .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 50%;
}

.mv.half {
  padding-bottom: 0;
}
.mv.half .img {
  height: 24rem;
}

.breadcrumbs {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 7.5rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs .list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.breadcrumbs .item {
  padding: 2rem 0;
}
.breadcrumbs .item:not(:first-child) {
  position: relative;
  padding-left: 3rem;
}
.breadcrumbs .item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  margin: auto;
  height: 1px;
  width: 0.8rem;
  background-color: #000;
}

.tocType01 {
  margin-bottom: 7.5rem;
}
@media only screen and (max-width: 767px) {
  .tocType01 {
    margin-bottom: 10rem;
  }
}
.tocType01.quarter .item {
  width: 25%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .tocType01.quarter .item {
    width: 50%;
  }
}
.tocType01 .list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 0;
}
@media only screen and (max-width: 767px) {
  .tocType01 .list {
    gap: 3rem 0;
  }
}
.tocType01 .item {
  border-right: 1.5px solid #ccc;
  border-left: 1.5px solid #ccc;
  margin-left: -1px;
}
@media only screen and (max-width: 767px) {
  .tocType01 .item.full {
    text-align: center;
    width: 100%;
  }
}
.tocType01 .item a {
  display: block;
  padding: 0.3rem 3rem 0.4rem;
}
.tocType01 .item span {
  position: relative;
  padding-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .tocType01 .item span {
    padding-right: 3.2rem;
  }
}
.tocType01 .item span::after {
  content: "";
  position: absolute;
  bottom: 0.8rem;
  right: 0;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
  height: 1rem;
  width: 1rem;
}
@media only screen and (max-width: 767px) {
  .tocType01 .item span::after {
    bottom: 1.3rem;
    height: 2rem;
    width: 2rem;
  }
}

.faq .faq-group {
  width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid #ccc;
  line-height: 1.8;
}
.faq .faq-group:first-of-type {
  border-top: 1px solid #ccc;
}
.faq .faq-group dt {
  position: relative;
  font-size: 2rem;
  color: #00b1dd;
  padding: 4rem 0;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.faq .faq-group dt::before, .faq .faq-group dt::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 3px;
  width: 2rem;
  background-color: #00b1dd;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .faq .faq-group dt::before, .faq .faq-group dt::after {
    width: 3rem;
  }
}
.faq .faq-group dt::after {
  transform: rotate(90deg);
}
.faq .faq-group dt.active {
  margin-bottom: -4rem;
}
.faq .faq-group dt.active::before {
  transform: rotate(90deg);
  opacity: 0;
}
.faq .faq-group dt.active::after {
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .faq .faq-group dt {
    font-size: 3.5rem;
  }
}
.faq .faq-group dt p.faq-iconQ {
  padding: 0 10rem 0 9rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .faq .faq-group dt p.faq-iconQ {
    padding: 0 6rem 0 10rem;
    line-height: 1.5;
  }
}
.faq .faq-group dt p.faq-iconQ::before {
  content: url(../../assets/img/ir/faq/faq-img01.svg);
  display: inline-block;
  vertical-align: middle;
  width: 7rem;
  margin-right: 2rem;
  position: absolute;
  top: -2.4rem;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .faq .faq-group dt p.faq-iconQ::before {
    top: -2rem;
  }
}
.faq .faq-group dd {
  display: none;
}
.faq .faq-group dd p.faq-iconA {
  position: relative;
  padding-left: 11rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .faq .faq-group dd p.faq-iconA {
    padding: 5.5rem 0 4rem 10.5rem;
  }
}
.faq .faq-group dd p.faq-iconA::before {
  content: url(../../assets/img/ir/faq/faq-img02.svg);
  display: block;
  width: 5rem;
  margin-right: 2rem;
  margin-top: -1.5rem;
  position: absolute;
  top: 3rem;
  left: 4rem;
}
@media only screen and (max-width: 767px) {
  .faq .faq-group dd p.faq-iconA::before {
    width: 6rem;
    left: 1.5rem;
    top: 6rem;
  }
}

.contact-form__wrapper {
  border-bottom: 1.5px solid #ccc;
}
.contact-form__intro {
  width: 61%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .contact-form__intro {
    width: 100%;
  }
}
.contact-form__intro .note {
  margin-bottom: 5rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contact-form__intro .note {
    text-align: left;
    margin-bottom: 7rem;
  }
}
.contact-form__intro .note.entry {
  margin-bottom: 3rem;
}
.contact-form__intro .mailing {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  gap: 2%;
  text-align: center;
  margin-bottom: 5rem;
}
.contact-form__intro .mailing__box {
  display: block;
  width: 10%;
  border: 2px solid #00b1dd;
  color: #00b1dd;
  padding: 1.6rem 0;
}
@media only screen and (max-width: 767px) {
  .contact-form__intro .mailing__box {
    width: 20%;
    padding: 3rem 0;
    margin: 2rem 0;
  }
}
.contact-form__intro .mailing__text {
  width: 50%;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .contact-form__intro .mailing__text {
    width: 70%;
  }
}
.contact-form__attention {
  width: 61%;
  margin: 0 auto 5rem;
  background-color: #fef8ed;
  padding: 3rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contact-form__attention {
    width: 100%;
  }
}
.contact-form__attention--title {
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__attention--title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
.contact-form__attention--check {
  text-align: center;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__attention--check {
    margin-top: 8rem;
  }
}
.contact-form__input-note {
  text-align: center;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .contact-form__input-note {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form__process {
    margin-left: -2.3%;
    width: 105%;
  }
}
.contact-form__process figure {
  display: none;
}
.contact-form__form {
  margin: 5rem auto 0 auto;
}
@media only screen and (max-width: 767px) {
  .contact-form__form .wrapper {
    width: 96%;
  }
}
.contact-form__content {
  display: flex;
  justify-content: space-between;
  border-top: 1.5px solid #ccc;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .contact-form__content {
    display: block;
    padding: 3.5rem 0;
  }
}
.contact-form__content:not(:first-child) {
  margin-top: -2px;
}
.contact-form__content .question {
  position: relative;
  color: #004097;
  padding-left: 2rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .question {
    align-items: center;
    margin: 0;
    width: auto;
    padding-left: 0;
  }
}
.contact-form__content .question__wrapper {
  width: 30%;
  background-color: #f5f8fa;
  align-items: center;
  z-index: -1;
  padding: 2rem 0;
}
@media print, screen and (min-width: 768px) {
  .contact-form__content .question__wrapper {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form__content .question__wrapper {
    width: 100%;
    background-color: #fff;
  }
}
.contact-form__content .question.attention__box {
  padding-top: 2rem;
}
.contact-form__content .question.attention__box .attention {
  display: block;
  margin: 2rem 0;
  font-size: 1.4rem;
  color: #000;
  width: 92%;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .question.attention__box .attention {
    font-size: 2.4rem;
  }
}
.contact-form__content .question .label {
  position: relative;
  display: block;
  margin-top: 0.2rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .question .label {
    padding: 0 10rem 0 0;
    display: inline-block;
  }
}
.contact-form__content .question .label.required::after {
  content: "必須";
  background: #E6891E;
  margin-right: 2rem;
}
.contact-form__content .question .label::after {
  content: "任意";
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 1.4rem;
  background-color: #b3b3b3;
  letter-spacing: 2px;
  margin-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .question .label::after {
    top: 0.3rem;
    font-size: 2rem;
  }
}
.contact-form__content .answer {
  width: 66%;
  padding: 2rem 0;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .answer {
    width: 100%;
  }
}
.contact-form__content .answer input,
.contact-form__content .answer select {
  height: 5rem;
  line-height: 5rem;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0 1.6rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .answer input,
.contact-form__content .answer select {
    height: 9rem;
    line-height: 9rem;
    padding: 0 2.8rem;
  }
}
.contact-form__content .answer input {
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .answer input {
    width: 100%;
  }
}
.contact-form__content .answer.textarea textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  height: 26rem;
  width: 100%;
  padding: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .answer.textarea textarea {
    height: 36rem;
    padding: 2.8rem;
  }
}
.contact-form__content .answer.tell .tell_wrap {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .answer.tell .tell_wrap {
    align-items: flex-start;
    gap: 8%;
  }
}
@media print, screen and (min-width: 768px) {
  .contact-form__content .name {
    display: flex;
    flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 768px) {
  .contact-form__content .name .separate__wrapper {
    width: 44%;
    display: flex;
    align-items: baseline;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form__content .separate__wrapper {
    display: flex;
    align-items: baseline;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form__content .separate__wrapper:not(:first-of-type) {
    margin-top: 4rem;
  }
}
.contact-form__content .separate__text {
  width: 4rem;
  margin: 0;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .separate__text {
    width: 8rem;
  }
}
.contact-form__content .separate__box01 {
  width: 84% !important;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .separate__box01 {
    width: 61% !important;
  }
}
.contact-form__content .separate__box02 {
  width: 28.5% !important;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .separate__box02 {
    width: 32% !important;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
.contact-form__content .separate__box02 span.sep-hyphen {
  position: relative;
}
.contact-form__content .separate__box02 span.sep-hyphen::before {
  content: "-";
  display: inline-block;
  position: absolute;
  left: -2.3rem;
  top: 0rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .separate__box02 span.sep-hyphen::before {
    left: -3.5rem;
    top: 2rem;
  }
}
.contact-form__content .select .sel-arrow {
  display: inline-block;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .select .sel-arrow {
    width: 88%;
  }
}
.contact-form__content .select .sel-arrow::after {
  top: 2rem;
  right: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .select .sel-arrow::after {
    top: 3.3rem;
    right: 4rem;
  }
}
.contact-form__content .select .sel-arrow select {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .select .sel-arrow.full {
    width: 100%;
  }
}
.contact-form__content .radio.item .radio_inner {
  display: flex;
  flex-direction: column;
}
.contact-form__content .radio.item .horizontal-item {
  margin-left: 0;
}
.contact-form__content .textarea--long {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contact-form__content .textarea--long p.text {
  width: 18%;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .textarea--long p.text {
    width: 20%;
  }
}
.contact-form__content .textarea--long .wrap_input {
  width: 78%;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .textarea--long .wrap_input {
    width: 76%;
  }
}
.contact-form__content .textarea--long .wrap_input input {
  width: 100%;
}
.contact-form__content .textarea--short p.text {
  width: 18%;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .textarea--short p.text {
    width: 20%;
  }
}
.contact-form__content .textarea--short .wrap_input {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .textarea--short .wrap_input {
    width: 65%;
  }
}
.contact-form__content .textarea--short .wrap_input input {
  width: 100%;
}
.contact-form__content .multi .wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .multi .wrap {
    gap: 4%;
  }
}
.contact-form__content .multi .wrap:not(:first-child) {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .multi .wrap:not(:first-child) {
    margin-top: 3rem;
  }
}
.contact-form__content .multi.address .sel-arrow {
  width: 40%;
}
.contact-form__content .multi.address .sel-arrow::after {
  top: 2rem;
  right: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .multi.address .sel-arrow {
    width: 65%;
  }
  .contact-form__content .multi.address .sel-arrow::after {
    top: 3.3rem;
    right: 3rem;
  }
}
.contact-form__content .multi.address .sel-arrow select {
  width: 100%;
}
.contact-form__content .multi.background .select {
  width: 100%;
  padding: 0;
}
.contact-form__content .document.wrap {
  align-items: normal;
}
@media print, screen and (min-width: 768px) {
  .contact-form__content .document.wrap {
    flex-wrap: nowrap;
  }
}
.contact-form__content .document input {
  display: none !important;
  padding: 0;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .document__wrapper {
    margin-top: 2rem;
  }
}
.contact-form__content .document__input {
  display: flex;
  align-items: center;
  margin: 0 0 1rem 0;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .document__input {
    margin: 0 0 2rem 0;
  }
}
.contact-form__content .document__input .file-input {
  position: relative;
}
.contact-form__content .document__input .file-input .text {
  position: relative;
  display: block;
  height: 5rem;
  width: 16rem;
  line-height: 5rem;
  text-align: center;
  color: #fff;
  margin-right: 3rem;
  background-color: #b3b3b3;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .document__input .file-input .text {
    height: 10rem;
    width: 25rem;
    line-height: 10rem;
    margin-right: 5rem;
  }
}
.contact-form__content .document__input .note {
  color: #808080;
}
.contact-form__content .document__input .mwform-file-delete {
  position: absolute;
  top: 1.2rem;
  right: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .document__input .mwform-file-delete {
    top: 3rem;
    right: 1rem;
  }
}
.contact-form__content .document .attention {
  font-feature-settings: "palt";
}
.contact-form__content .document p.text {
  width: 18%;
  padding-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__content .document p.text {
    width: 28%;
  }
}
.contact-form__privacy {
  background-color: #fff;
  padding-top: 4rem;
}
@media print, screen and (min-width: 768px) {
  .contact-form__privacy {
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form__privacy {
    margin: 8rem 0 0;
    padding: 2rem 4rem;
    background-color: #f5f8fa;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.contact-form__privacy .privacy_wrap {
  padding: 3rem;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .contact-form__privacy .privacy_wrap {
    background-color: #f5f8fa;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form__privacy .privacy_wrap {
    text-align: left;
    padding: 5rem 0;
  }
}
.contact-form__privacy .privacy_inner {
  line-height: 1.6;
}
.contact-form__privacy .privacy_inner::-webkit-scrollbar {
  width: 1rem;
}
.contact-form__privacy .privacy_inner::-webkit-scrollbar-track {
  background-color: #e6e6e6;
}
.contact-form__privacy .privacy_inner::-webkit-scrollbar-thumb {
  background-color: #b3b3b3;
}
.contact-form__privacy .privacy_inner .subtitle {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #004097;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__privacy .privacy_inner .subtitle {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
}
.contact-form__agree {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__agree {
    margin-top: 4rem;
  }
}
.contact-form__agree .error {
  margin-left: 2rem;
}
.contact-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__btn {
    margin-top: 8rem;
  }
}
.contact-form__btn .btnType01 {
  display: none;
}
.contact-form__btn .btnType01.gray {
  border: 1px solid #6b6b6b;
  background: #6b6b6b;
  width: 28rem;
  height: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-form__btn .btnType01.gray {
    height: 10rem;
    width: 40rem;
  }
}
.contact-form__btn .btnType01.gray::after {
  right: auto;
  left: 0;
  transform: scale(-1, -1);
  border: 0;
}
@media only screen and (max-width: 767px) {
  .contact-form__btn .btnType01.gray::after {
    left: 3rem;
  }
}
.contact-form__btn .btnType01.gray:hover {
  color: #6b6b6b;
}
.contact-form__btn .btnType01.gray:hover span::after {
  background-image: url("../../assets/img/common/icon-arrow-gray.svg");
}
.contact-form__btn .btnType01.gray span::after {
  right: 24rem;
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .contact-form__btn .btnType01.gray span::after {
    right: 21rem;
  }
}
.contact-form__btn input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
}
.contact-form .mw_wp_form_input .contact-form__process figure:first-child,
.contact-form .contact-form__input .contact-form__process figure:first-child {
  display: block;
}
.contact-form .mw_wp_form_input .contact-form__btn .btnType01.confirm,
.contact-form .contact-form__input .contact-form__btn .btnType01.confirm {
  display: block;
}
.contact-form .mw_wp_form_input .wpcf7-not-valid-tip,
.contact-form .contact-form__input .wpcf7-not-valid-tip {
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .contact-form .mw_wp_form_input .wpcf7-not-valid-tip,
.contact-form .contact-form__input .wpcf7-not-valid-tip {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form .mw_wp_form_input .contact-form__attention--check .wpcf7-list-item,
.contact-form .contact-form__input .contact-form__attention--check .wpcf7-list-item {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form .mw_wp_form_input .contact-form__attention--check .wpcf7-not-valid-tip,
.contact-form .contact-form__input .contact-form__attention--check .wpcf7-not-valid-tip {
    padding-left: 2rem;
  }
}
.contact-form .mw_wp_form_confirm .contact-form__process figure:nth-child(2),
.contact-form .contact-form__confirm .contact-form__process figure:nth-child(2) {
  display: block;
}
.contact-form .mw_wp_form_confirm .contact-form__btn .btnType01.back,
.contact-form .mw_wp_form_confirm .contact-form__btn .btnType01.submit,
.contact-form .contact-form__confirm .contact-form__btn .btnType01.back,
.contact-form .contact-form__confirm .contact-form__btn .btnType01.submit {
  display: block;
}
.contact-form .mw_wp_form_confirm .question,
.contact-form .contact-form__confirm .question {
  margin-top: 0;
}
.contact-form .mw_wp_form_confirm .contact-form__content .answer.file .file-input .text,
.contact-form .mw_wp_form_confirm .contact-form__content .answer.file .note,
.contact-form .contact-form__confirm .contact-form__content .answer.file .file-input .text,
.contact-form .contact-form__confirm .contact-form__content .answer.file .note {
  display: none;
}
@media only screen and (max-width: 767px) {
  .contact-form .mw_wp_form_confirm .contact-form__content span.sep-hyphen::before,
.contact-form .contact-form__confirm .contact-form__content span.sep-hyphen::before {
    top: 0;
  }
}
.contact-form .mw_wp_form_confirm .contact-form__content span.sel-arrow::after,
.contact-form .contact-form__confirm .contact-form__content span.sel-arrow::after {
  display: none;
}
.contact-form .mw_wp_form_confirm .contact-form__attention--check,
.contact-form .contact-form__confirm .contact-form__attention--check {
  line-height: 2;
  background-color: #eee;
  padding: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-form .mw_wp_form_confirm .contact-form__attention--check,
.contact-form .contact-form__confirm .contact-form__attention--check {
    line-height: 1.5;
  }
}
.contact-form .mw_wp_form_complete .contact-form__process figure,
.contact-form .contact-form__complete .contact-form__process figure {
  display: block;
}
.contact-form .mw_wp_form_complete .thanks,
.contact-form .contact-form__complete .thanks {
  margin-top: 5rem;
  text-align: center;
  line-height: 1.6;
}
.contact-form .mw_wp_form_complete .thanks h2,
.contact-form .contact-form__complete .thanks h2 {
  color: #00b1dd;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 1rem;
}
.contact-form .mw_wp_form_complete .thanks .btnType01,
.contact-form .contact-form__complete .thanks .btnType01 {
  margin: 3rem auto 0;
}
@media only screen and (max-width: 767px) {
  .contact-form .mw_wp_form_complete .thanks .btnType01,
.contact-form .contact-form__complete .thanks .btnType01 {
    margin-top: 5rem;
  }
}

.policy__content,
.use__content {
  padding: 5rem 0;
}
.policy__content:not(:last-of-type),
.use__content:not(:last-of-type) {
  border-bottom: 1.5px solid #ccc;
}
.policy__content .title-text,
.use__content .title-text {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .policy__content .title-text,
.use__content .title-text {
    margin-bottom: 4rem;
  }
}
.policy__content ul,
.use__content ul {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .policy__content ul,
.use__content ul {
    margin-top: 4rem;
  }
}
.policy__content ul > li,
.use__content ul > li {
  position: relative;
  padding-left: 3rem;
}
@media only screen and (max-width: 767px) {
  .policy__content ul > li,
.use__content ul > li {
    padding-left: 5rem;
    line-height: 1.3;
  }
}
.policy__content ul > li::before,
.use__content ul > li::before {
  content: url(../img/common/icon-hexagon.svg);
  display: block;
  width: 1.6rem;
  position: absolute;
  left: 0.5rem;
  margin-right: 0.8rem;
}
@media only screen and (max-width: 767px) {
  .policy__content ul > li::before,
.use__content ul > li::before {
    width: 2.8rem;
  }
}
.policy__content ul > li + li,
.use__content ul > li + li {
  margin-top: 1rem;
}

.cs__list {
  border-top: 1px solid #e6e6e6;
}
.cs__item {
  position: relative;
  padding: 5rem 0;
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (max-width: 767px) {
  .cs__item {
    padding: 6rem 0;
  }
}
.cs__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3rem;
  left: 0;
  margin: auto;
  border-style: solid;
  border-width: 5rem 5rem 0 5rem;
  border-color: #00b1dd transparent transparent transparent;
  height: 0;
  width: 0;
}
@media only screen and (max-width: 767px) {
  .cs__item:not(:last-child)::after {
    border-width: 6rem 6rem 0 6rem;
  }
}
.cs__wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .cs__wrap {
    display: block;
  }
}
.cs__wrap .detail {
  position: relative;
  padding-left: 10rem;
  width: 66%;
}
@media only screen and (max-width: 767px) {
  .cs__wrap .detail {
    padding-left: 11rem;
    width: 100%;
  }
}
.cs__wrap .detail .nmb {
  position: absolute;
  top: -3rem;
  left: 0;
  background-image: url("../../assets/img/common/icon-hexagon.svg");
  background-size: cover;
  font-size: 4.6rem;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 8.7rem;
  width: 7.5rem;
}
@media only screen and (max-width: 767px) {
  .cs__wrap .detail .nmb {
    line-height: 9.6rem;
    width: 8.3rem;
  }
}
.cs__wrap .detail .title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #00b1dd;
}
@media only screen and (max-width: 767px) {
  .cs__wrap .detail .title {
    font-size: 3.8rem;
  }
}
.cs__wrap .detail .note {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .cs__wrap .detail .note {
    margin-top: 4rem;
  }
}
.cs__wrap .detail .note a {
  text-decoration: underline;
}
.cs__wrap .img {
  width: 31%;
}
@media only screen and (max-width: 767px) {
  .cs__wrap .img {
    margin-top: 4rem;
    padding-left: 11rem;
    width: 85%;
  }
}
.cs__figure {
  position: relative;
}
.cs__figure .caption {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(3, 119, 185, 0.6);
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  height: 100%;
  width: 30rem;
}
@media only screen and (max-width: 767px) {
  .cs__figure .caption {
    font-size: 4.2rem;
    height: 16rem;
    width: 100%;
  }
}
.cs .products {
  margin-top: 12rem;
}
@media only screen and (max-width: 767px) {
  .cs .products {
    margin-top: 14rem;
  }
}

.wpcf7-radio {
  display: flex;
  flex-direction: column;
}
.wpcf7-radio input[type=radio] {
  display: none;
}
.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-radio input[type=radio] + .wpcf7-list-item-label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.6rem 0 0.6rem 5rem;
  margin: 0.2rem 0;
}
@media only screen and (max-width: 767px) {
  .wpcf7-radio input[type=radio] + .wpcf7-list-item-label {
    padding: 0.9rem 0 0.9rem 8rem;
    margin: 1rem 0;
  }
}
.wpcf7-radio input[type=radio] + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  border-radius: 50%;
  background: #fff;
  height: 3.5rem;
  width: 3.5rem;
  border: 1px solid #b3b3b3;
}
@media only screen and (max-width: 767px) {
  .wpcf7-radio input[type=radio] + .wpcf7-list-item-label::before {
    height: 6rem;
    width: 6rem;
  }
}
.wpcf7-radio input[type=radio] + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  left: 0.7rem;
  border-radius: 50%;
  background: #f2a136;
  height: 2rem;
  width: 2rem;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .wpcf7-radio input[type=radio] + .wpcf7-list-item-label::after {
    top: 1.2rem;
    left: 1.1rem;
    height: 4rem;
    width: 4rem;
  }
}

.wpcf7-acceptance input[type=checkbox] {
  display: none;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 5rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label {
    padding-left: 8rem;
  }
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
  border: 1px solid #cccccc;
  display: block;
  height: 3.5rem;
  width: 3.5rem;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label::before {
    height: 6rem;
    width: 6rem;
  }
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 1rem;
  transform: translateY(-50%) rotate(45deg);
  border-right: 0.4rem solid #00b1dd;
  border-bottom: 0.4rem solid #00b1dd;
  height: 2.3rem;
  width: 1.3rem;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label::after {
    left: 2rem;
    border-right: 0.6rem solid #00b1dd;
    border-bottom: 0.6rem solid #00b1dd;
    height: 4.2rem;
    width: 2.2rem;
  }
}

.btnType01 .wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  display: none;
  width: 100%;
  margin-top: 1rem;
}
.wpcf7-not-valid-tip.is-show {
  display: block;
}

.wpcf7-response-output {
  display: none;
}

.notfound {
  padding-top: 12rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .notfound {
    padding-top: 4rem;
  }
}