/*
  Foundation
---------------------------------------------------*/
/**
 * Foudation / Reset
 */
*,
*:before,
*:after {
  -webkit-appearance: unset;
  appearance: unset;
  border: none;
  border-spacing: 0;
  box-sizing: border-box;
  font-family: unset;
  font-size: unset;
  font-weight: unset;
  line-height: 1.3;
  list-style-type: none;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  outline: none;
  padding: 0;
  text-align: unset;
  text-decoration: none;
}

/*
  Layout
---------------------------------------------------*/
/**
 * Layout / Header
 */
.l-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.l-header__logo {
  width: 300px;
  margin: 20px auto;
}
.l-header__logo a img {
  width: 100%;
}

/**
 * Layout / Footer
 */
.l-footer {
  background: var(--color-gray-50);
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.l-footer__copyright {
  display: block;
  font-size: 12px;
}

/*
  Object
---------------------------------------------------*/
/*------------------- Component -------------------*/
/**
 * Actions
 */
.c-button {
  width: 90%;
  position: relative;
  display: block;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  background-color: #00BBBD;
  border-radius: 5px;
  padding: 12px 0;
  margin: 15px auto;
  text-align: center;
  line-height: 1.5em;
  cursor: pointer;
}
.c-button--post {
  background-color: #FAA402;
}
.c-button::before, .c-button::after {
  content: "";
  width: 15px;
  height: 1px;
  display: inline-block;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  right: 10px;
}
.c-button::before {
  top: calc(50% - 6px);
  transform: rotate(45deg);
}
.c-button::after {
  bottom: calc(50% - 6px);
  transform: rotate(-45deg);
}

.c-form__textbox {
  margin: 7px 0;
  padding: 7px;
  font-size: 14px;
  width: 100%;
  border: 1px solid #CBD0D0;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
}
.c-form__textbox:focus {
  -webkit-box-shadow: 0 0 2px 2px #6aa5b4 inset;
  box-shadow: 0 0 2px 2px #6aa5b4 inset;
}
.c-form__select {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
}
.c-form__select-box {
  margin: 7px 0;
  appearance: none;
  width: 100%;
  min-width: 230px;
  padding: 7px;
  border: 1px solid #CBD0D0;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  cursor: pointer;
  font-size: 14px;
}
.c-form__select-box:focus {
  -webkit-box-shadow: 0 0 2px 2px #6aa5b4 inset;
  box-shadow: 0 0 2px 2px #6aa5b4 inset;
}
.c-form__select-box--birthday {
  min-width: 60px;
  margin-right: 7px;
  margin-left: 8px;
}
.c-form__select-box--birthday:first-child {
  margin-left: 0;
}
.c-form__select-box--time {
  margin-top: 0;
}
.c-form::before, .c-form::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.c-form::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #858989;
  border-right: 3px solid #858989;
}
.c-form__textarea {
  margin: 7px 0;
  padding: 7px;
  font-size: 14px;
  width: 100%;
  border: 1px solid #CBD0D0;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
}
.c-form__textarea:focus {
  -webkit-box-shadow: 0 0 2px 2px #6aa5b4 inset;
  box-shadow: 0 0 2px 2px #6aa5b4 inset;
}
.c-form__date {
  margin: 7px 0;
  padding: 7px;
  font-size: 14px;
  width: 100%;
  border: 1px solid #CBD0D0;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
}
.c-form__date:focus {
  -webkit-box-shadow: 0 0 2px 2px #6aa5b4 inset;
  box-shadow: 0 0 2px 2px #6aa5b4 inset;
}

.c-form__checkBox {
  display: none;
}
.c-form__checkBox-label {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 15px 18px 40px;
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
}
.c-form__checkBox-label:before {
  background: #fff;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  content: "";
  display: block;
  height: 20px;
  left: 5px;
  margin-top: -11px;
  position: absolute;
  top: 50%;
  width: 20px;
}
.c-form__checkBox-label:after {
  background: #00BBBD;
  border-radius: 2px;
  content: "";
  display: block;
  height: 12px;
  left: 9px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 12px;
}
input[type=radio]:checked + .c-form__checkBox-label {
  border: 1px solid #00BBBD;
  color: #00BBBD;
  background: #F5FDFF;
}
input[type=radio]:checked + .c-form__checkBox-label::after {
  opacity: 1;
}
input[type=checkbox]:checked + .c-form__checkBox-label {
  border: 1px solid #00BBBD;
  color: #00BBBD;
  background: #F5FDFF;
}
input[type=checkbox]:checked + .c-form__checkBox-label::after {
  opacity: 1;
}
.c-form__radiobutton {
  border: 1px solid #adadad;
  background-color: #ebebeb;
  border-radius: 0.25em;
  cursor: pointer;
  display: block;
  font-size: 1em;
  font-weight: bold;
  padding: 0.5em 0.75em;
  transition: ease all 0.2s;
  width: 100%;
  margin: 0 auto;
}
.c-form__radiobutton::before {
  color: #cdcdcd;
  content: "✔";
  display: inline-block;
  font-size: 1.2em;
  margin-right: 0.25em;
}
.c-form__radiobutton::after {
  content: " ";
}
input[type=radio]:checked ~ .c-form__radiobutton {
  color: #fff;
  background: #262735;
  transition: ease all 0.2s;
}
input[type=radio]:checked ~ .c-form__radiobutton::before {
  color: #00BBBD;
  font-size: 1.2em;
  font-weight: bold;
}
.is-error{
  box-shadow: 0 0 2px 2px #FF4141 inset;
}

/* チェックボックスとラジオボタンのエラー状態 */
input[type=checkbox].is-error + .c-form__checkBox-label,
input[type=radio].is-error + .c-form__checkBox-label {
  border: 1px solid #FF4141;
  box-shadow: 0 0 2px 2px #FF4141 inset;
}

/*-------------------- Project --------------------*/

.p-form__errormessage{
  color: #FF4141;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px;
}
.p-form__inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 3vw;
  padding-left: 3vw;
  max-width: calc(800px + 3vw + 3vw);
}
.p-form__heading {
  text-align: center;
  color: #000;
  font-size: 17px;
  margin: 20px 0;
}
.p-form__stepArea {
  width: 100%;
  margin: 0 auto;
}
.p-form__stepContents {
  width: 100%;
  border: 1px solid #D9D9D9;
  margin: 23px 0;
}
.p-form__stepContents.is-hidden{
  display: none;
}
.p-form__stepContents-inner {
  padding: 15px 22px;
}
.p-form__head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.p-form__head-icon {
  width: 56px;
  height: 56px;
}
.p-form__head-icon img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.p-form__head-textarea {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  padding: 18px 10px;
  width: 100%;
  color: #000000;
  font-size: 16px;
  background: #EEEEEE;
}
.p-form__head-textarea::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -29px;
  margin-top: -15px;
  border: 10px solid transparent;
  border-right: 20px solid #EEEEEE;
}
.p-form__head-textarea p {
  font-size: 13px;
  font-weight: 600;
}
.p-form__label {
  text-align: right;
  font-size: 13px;
  color: #B5B5B5;
}
.p-form__label--required {
  color: #FF4141;
}
.p-form__entry-label {
  font-size: 12px;
  font-weight: 600;
}
.p-form__kiyaku {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #000;
  text-decoration: underline;
}
.p-form__kiyaku a {
  color: #000;
}
.p-form__kiyaku a:visited {
  color: #000;
}

.p-form__step{
  text-align: right;
  font-size: 13px !important;
  font-weight: 500 !important;
}
.p-form__entry-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 7px;
}
.p-form__entry-list-item {
  width: 100%;
}


/*-------------------- Utility --------------------*//*# sourceMappingURL=style.css.map */