@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
  font-size: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

ul,
ol,
dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

li, ol {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
  cursor: pointer;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

input[type=submit],
input[type=reset],
input[type=button],
button {
  background: none;
  border: 0;
  color: inherit;
  /* cursor: default; */
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: button;
  /* for input */
  -webkit-user-select: none;
  /* for button */
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
}

button:focus {
  outline: 0;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

[role=button] {
  color: inherit;
  cursor: default;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  white-space: pre;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/*
  ----------------
  Base styles
  ----------------
*/
body {
  background-color: #fff;
  color: #505050;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}

a {
  transition: 0.2s ease-in-out;
  cursor: pointer;
  display: inline-block;
}
a:hover {
  opacity: 0.7;
}
a::before, a::after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/*
  ----------------

  ----------------
*/
/*
  ----------------
  Header
  ----------------
*/
.header {
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 -1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}
.header__wrap {
  padding: 15px 40px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*
  ----------------
  Footer
  ----------------
*/
.footer {
  background-color: #878787;
  color: #fff;
  font-size: 12px;
}
.footer__wrap {
  padding: 10px 40px 20px 42px;
}
.footer__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__link-inner {
  border-left: 1px solid #fff;
  line-height: 1;
  padding: 0 12px;
}
.footer__link-inner:nth-child(3) {
  border-right: 1px solid #fff;
}
.footer__copy {
  margin-top: 3px;
  margin-left: auto;
  text-align: right;
}

/*
  ----------------
  Common | 個人情報保護方針、利用規約
  ----------------
*/
.policy-page__wrap,
.terms-page__wrap,
.company-page__wrap {
  margin: 0 auto;
  width: 1200px;
  position: relative;
  overflow: hidden;
}

.privacy-policy,
.terms,
.company {
  font-size: 14px;
}
.privacy-policy__wrap,
.terms__wrap,
.company__wrap {
  padding: 80px 50px;
}
.privacy-policy__title,
.terms__title,
.company__title {
  font-size: 24px;
  font-weight: bold;
}
.privacy-policy__lead,
.terms__lead {
  margin-top: 20px;
}
.privacy-policy__title-sub,
.terms__title-sub {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
}
.privacy-policy__title-sub + .privacy-policy__text,
.terms__title-sub + .privacy-policy__text {
  margin-top: 5px;
}
.privacy-policy__text,
.terms__text {
  line-height: 1.6;
  padding-left: 10px;
}
.privacy-policy__list,
.terms__list {
  line-height: 1.6;
  padding-left: 35px;
}
.privacy-policy__list li,
.terms__list li {
  counter-increment: cnt;
  position: relative;
}
.privacy-policy__list li::before,
.terms__list li::before {
  content: "(" counter(cnt) ") ";
  position: absolute;
  display: block;
  top: -1px;
  left: -23px;
}
.privacy-policy__list li:nth-child(n+10)::before,
.terms__list li:nth-child(n+10)::before {
  left: -32px;
}
.privacy-policy__last,
.terms__last {
  margin-top: 30px;
}

/*
  ----------------
  TOP
  ----------------
*/
.richman-top__wrap {
  margin: 0 auto;
  width: 1200px;
  position: relative;
  overflow: hidden;
}

.richman-main {
  position: relative;
}
.richman-form {
  background-color: #fff;
  border-radius: 10px;
  padding: 5px;
  width: 610px;
  position: absolute;
  top: 290px;
  right: 350px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.richman-form__wrap {
  align-self: baseline;
  width: 100%;
}

.richman-thanks__title {
  font-size: 20px;
  font-weight: bold;
}
.richman-thanks__text {
  font-size: 15px;
}
.richman-thanks__box-text {
  color: #5ABEE2;
  margin-top: 25px;
}
.richman-thanks__tel {
  margin-top: 20px;
  padding: 0 70px;
}
.richman-thanks__annotation {
  font-size: 15px;
}

/*
  ----------------
   Form
  ----------------
*/
.form-entry {
  overflow: hidden;
}
.form-entry__block {
  display: none;
}
.form-entry__title {
  font-size: 17px;
  font-weight: bold;
}
.form-entry__row--tel, .form-entry__row--name {
  width: 400px;
}
.form-entry__row, .form-entry__row-half, .form-entry__row-item {
  display: flex;
  flex-direction: column;
}
.form-entry__row-half + .form-entry__row-half, .form-entry__row-half + .form-entry__row {
  margin-top: 30px;
}
.form-entry__row-half--postal {
  margin-top: 20px;
  width: 45%;
}
.form-entry__row-half--2column {
  flex-direction: row;
}
.form-entry__row-half--2column .form-entry__row-item {
  width: calc((100% - 50px) / 2);
}
.form-entry__row-half--2column .form-entry__row-item .form-entry__select {
  width: 100%;
}
.form-entry__row-half--2column .form-entry__row-item + .form-entry__row-item {
  margin-left: 25px;
}
.form-entry__question {
  font-weight: 17;
  font-weight: bold;
  letter-spacing: 1px;
}
.form-entry__required {
  background-color: #5ABEE2;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-right: 2px;
  padding: 3px 7px 4px;
}
.form-entry__non-required {
  border: 1px solid #5ABEE2;
  border-radius: 3px;
  color: #5ABEE2;
  font-size: 12px;
  font-weight: 600;
  margin-right: 2px;
  padding: 3px 7px 4px;
}
.form-entry__button {
  margin: 0 -10px;
  padding-top: 6px;
  display: flex;
  flex-wrap: wrap;
}
.form-entry__radio {
  background-color: #ededee;
  border-radius: 5px;
  border-color: gray;
  border: 1px solid;
  box-shadow: 2px 2px 2px gray;
  cursor: pointer;
  height: 60px;
  margin: 10px;
  display: flex;
  align-items: center;
  flex-basis: calc((100% - 60px) / 3);
  justify-content: center;
}
.form-entry__radio.is-active {
  background-color: #f6b42c;
  color: #fff;
}
.form-entry__radio:checked {
  background-color: #f6b42c;
}
.form-entry__radio-text {
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}
.form-entry__radio-text span {
  font-size: 14px;
}
.form-entry__select, .form-entry__input {
  -webkit-appearance: none;
          appearance: none;
  border: 1px solid #878787;
  font-size: 16px;
  padding: 15px 20px;
}
.form-entry__select {
  align-self: baseline;
  background: url(/lp/3/img/pc/lp/kango/img_select_arrow.jpg) right 50%/contain no-repeat;
  cursor: pointer;
  width: 50%;
}
.form-entry__link {
  font-size: 13px;
  margin-top: 25px;
  text-align: center;
}
.form-entry__link a {
  text-decoration: underline;
}

.step {
  background-color: #5ABEE2;
  border-radius: 10px 10px 0 0;
  padding: 10px 20px;
  width: 100%;
}
.is-thanks .step {
  background-color: #6fc4c4;
}
.is-thanks .step__title {
  display: none;
}
.step__img {
  margin-top: 10px;
  padding: 0 10px;
}
.step__img img {
  display: none;
}
.is-thanks .step__img {
  display: none;
}
.step__thanks {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
}

.is-step1 #step1 {
  display: block;
}
.is-step1 .step__img-step1 {
  display: block;
}
.is-step1 .entry-button__prev,
.is-step1 .step__thanks {
  display: none;
}

.is-step2 #step2 {
  display: block;
}
.is-step2 .step__img-step2 {
  display: block;
}
.is-step2 .step__thanks {
  display: none;
}

.is-step3 #step3 {
  display: block;
}
.is-step3 .step__img-step3 {
  display: block;
}
.is-step3 .step__thanks {
  display: none;
}

.is-step4 #step4 {
  display: block;
}
.is-step4 .step__img-step4 {
  display: block;
}
.is-step4 .step__thanks {
  display: none;
}

.is-step5 #step5,
.is-step5 .step__img-step5,
.is-step5 .entry-button__confirm,
.is-step5 .step__thanks,
.is-step5 .entry-message {
  display: block;
}
.is-step5 .step__thanks,
.is-step5 .entry-button__next {
  display: none;
}

.is-thanks #thanks,
.is-thanks .step__thanks {
  display: block;
}
.is-thanks .entry-button {
  display: none;
}

.entry-button {
  background-color: #ededee;
  border-radius: 0 0 10px 10px;
  color: #fff;
  margin-top: auto;
  align-self: baseline;
  flex-basis: 100%;
}
.entry-button__box {
  padding-top: 4px;
  display: flex;
  justify-content: center;
  position: relative;
}
.entry-button__prev {
  max-width: 100px;
  opacity: 0.6;
  position: absolute;
  left: 30px;
  bottom: 8px;
}
.entry-button__prev:hover {
  opacity: 0.4;
}
.entry-button__prev:active {
  opacity: 1;
}
.entry-button__next {
  max-width: 270px;
  opacity: 0.8;
}
.entry-button__next:hover {
  opacity: 0.6;
}
.entry-button__next:active {
  opacity: 1;
}
.entry-button__next-invalid {
  display: none;
}
.entry-button__confirm {
  display: none;
  max-width: 270px;
  opacity: 0.8;
}
.entry-button__confirm:hover {
  opacity: 0.6;
}
.entry-button__confirm:active {
  opacity: 1;
}
.entry-button__confirm-invalid {
  display: none;
}
.entry-button__confirm-disabled {
  opacity: 0.6;
}
.invalid-message {
  visibility: hidden;
  color: red;
  height: 30px;
}

.entry-button__confirm {
  padding: 10px 130px 10px 115px;
  background-color: #62B7B7;
  border-radius: 5px;
  word-break: keep-all;
  font-size: 1.2rem;
  font-weight: bold;
}


.entry-message-box {
  display: flex;
  justify-content: center;
}

.entry-message {
  font-size: 0.8rem;
  color: gray;
  display: none;
}

.tbl-1 { margin-top: 20px; width: 100%; margin-bottom: 20px; border-collapse: collapse; background: #fff; }
.tbl-1 th, .tbl-1 td { border: solid 1px #ddd; padding: 20px; }
.tbl-1 th { font-weight: normal; background: #eee; text-align: left; white-space: nowrap; }

.linebutton {
  position: absolute;
  right: 280px;
  bottom: 20px;
  visibility: hidden;
}

.logo {
  height: 140px;
}
/*--------------------------------------------------
 Common
--------------------------------------------------*/
/*# sourceMappingURL=main.css.map */
.flex-container {
 display: flex;
 justify-content: space-between;
}

.flex-item {
  width: 295px;
}