@charset "UTF-8";
input[type=text],
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: solid 1px #b6b6b6;
  border-radius: 4px;
}

input[type=button],
input[type=submit],
input[type=reset] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  opacity: 0.6;
}

input[type=text]:disabled {
  background-color: #eee;
  cursor: not-allowed;
}

select {
  background-image: url("../../img/pop-up-triangle.png");
  background-position: center right 12px;
  background-repeat: no-repeat;
  background-size: 12px auto;
  border: 1px solid #b6b6b6;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=text],
textarea,
select {
  width: 100%;
  padding: 1em 0.6em;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  input[type=text],
  textarea,
  select {
    padding: 0.6em 0.6em;
  }
}

input[type=checkbox],
input[type=radio] {
  width: auto;
}

input[type=radio] {
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
  margin-right: 8px;
}

input[type=checkbox] {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  vertical-align: top;
  padding: 0;
  margin: 0;
  display: inline-block;
}

input[type=file] {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  margin-bottom: 12px;
  cursor: pointer;
}

.c-input-File {
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-input-File_Button {
  display: inline-block;
  border: 0;
  color: #ffffff;
  background: #666666;
  text-align: center;
  padding: 16px 36px;
  border-radius: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
}
.c-input-File_Button::before {
  content: "+";
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-weight: bold;
  margin-right: 6px;
}
.c-input-File_wrap {
  position: relative;
}
.c-input-File_wrap > img {
  margin-top: 12px;
}

::-webkit-input-placeholder {
  color: #9e9e9e;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}

::-moz-placeholder {
  color: #9e9e9e;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}

:-ms-input-placeholder {
  color: #9e9e9e;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}

::-ms-input-placeholder {
  color: #9e9e9e;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}

::placeholder {
  color: #9e9e9e;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}

.c-StepBar {
  position: relative;
}
.c-StepBar::before {
  position: absolute;
  content: "";
  display: block;
  width: 160px;
  height: 2px;
  background-color: #4c7ebf;
  top: 19px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
.c-StepBar_Ul {
  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;
  gap: 30px;
}
.c-StepBar_Li {
  text-align: center;
}
.c-StepBar_Number {
  display: block;
  border: solid 2px #C3D3F3;
  color: #4c7ebf;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 36px;
  line-height: 3.6rem;
  margin-bottom: 6px;
}
.c-StepBar_Number._Done {
  position: relative;
  border: 2px solid #4c7ebf;
  color: #fff;
}
.c-StepBar_Number._Done::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 9px;
  width: 16px;
  height: 8px;
  border-left: 3px solid #4c7ebf;
  border-bottom: 3px solid #4c7ebf;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-StepBar_Number._Active {
  color: #ffffff;
  background-color: #4c7ebf;
  border: 2px solid #4c7ebf;
}
.c-StepBar_Note {
  color: #4c7ebf;
}

.c-Form._widthM {
  max-width: 736px;
  margin-right: auto;
  margin-left: auto;
}
.c-Form._widthL {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.c-Form_Radio_Input {
  display: none;
}
.c-Form_Radio_Input + .c-Form_Radio_Dummy {
  width: 22px;
  height: 22px;
  border: 2px solid #BFBFBA;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: text-top;
}
.c-Form_Radio_Input:checked + .c-Form_Radio_Dummy:after {
  content: "";
  width: 70%;
  height: 70%;
  background-color: #4c7ebf;
  border-radius: 50%;
}
.c-Form_Radio_Input:hover {
  cursor: pointer;
}
.c-Form_Radio_Dummy {
  width: 20px;
  height: 20px;
  border: 2px solid #4c7ebf;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: text-top;
  background-color: #ffffff;
}
.c-Form_Radio_Item:not(:last-child) {
  margin-bottom: 18px;
}
.c-Form_Radio_Label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.c-Form_SwitchRadio_HideBlock {
  margin-top: 42px;
  padding-top: 42px;
  border-top: dashed 1px #dddddd;
}
.c-Form .c-PostalCode_Input {
  max-width: 180px;
}
.c-Form .c-PostalCode_Button {
  display: inline-block;
  padding: 0.6em 1.8em;
  margin: 0 0 0 12px;
  background-color: #4c7ebf;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-Form .c-PostalCode_Input {
    max-width: 160px;
  }
  .c-Form .c-PostalCode_Button {
    padding: 0.6em 1.2em;
    margin: 0 0 0 6px;
  }
}
.c-Form_Inner {
  background-color: #ffffff;
  padding: 60px 4%;
}
@media screen and (max-width: 767px) {
  .c-Form_Inner {
    padding: 36px 4%;
  }
}
.c-Form_Title {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  line-height: 2.8rem;
  border-bottom: solid 1px #333333;
  padding-bottom: 3px;
}
.c-Form_Title_Center {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 34px;
  line-height: 3.4rem;
  text-align: center;
}
.c-Form_Note_Link {
  text-decoration: underline;
}
.c-Form_Note_Center {
  text-align: center;
}
.c-Form_Note_CenterLeft {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-Form_Note_CenterLeft {
    text-align: left;
  }
}
.c-Form_Button._Center {
  text-align: center;
}
.c-Form_Button._Flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-Form_Button._Flex-Column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-Form_Button_Check {
  background-color: #4c7ebf;
  color: #ffffff;
  padding: 0.8em 5em 0.8em 3.6em;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  line-height: 2.8rem;
  background-image: url("../../img/icon_arrow2R.svg");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center right 66px;
}
.c-Form_Button_Submit {
  background-color: #EB6257;
  color: #ffffff;
  padding: 0.8em 4em 0.8em 5.6em;
  border-radius: 32px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  line-height: 2.8rem;
  background-image: url("../../img/icon_send.svg");
  background-repeat: no-repeat;
  background-size: 1.6em 1.6em;
  background-position: center left 58px;
}
.c-Form_Button_Submit_Wrap._Center {
  text-align: center;
}
.c-Form_Button_Back {
  background-color: #B7B7B7;
  color: #ffffff;
  padding: 0.6em 2.5em;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  line-height: 2.6rem;
}
.c-Form_Button_Back_Wrap {
  position: relative;
  display: inline-block;
}
.c-Form_Button_Back_Wrap._Center {
  display: block;
  text-align: center;
}
.c-Form_ArtworkInfo_Inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  border-bottom: solid 1px #dddddd;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .c-Form_ArtworkInfo_Inner {
    gap: 12px;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
}
.c-Form_ArtworkInfo_Title {
  font-weight: bold;
  margin-bottom: 4px;
}
.c-Form_ArtworkInfo_Thumbnail {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .c-Form_ArtworkInfo_Thumbnail {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .c-Form_ArtworkInfo_List {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
}
.c-Form_ArtworkInfo_Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-Form_ArtworkInfo_Item:not(:last-child) {
  margin-bottom: 4px;
}
.c-Form_ArtworkInfo_Dt {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .c-Form_ArtworkInfo_Dt {
    width: 66px;
  }
}
.c-Form_ArtworkInfo_Dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-Form_ArtworkInfo_Total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #ff0202;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.c-Form_Artwork_Note {
  border: solid 2px #CFB797;
  background-color: #ffffff;
  padding: 12px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .c-Form_Artwork_Note {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
}
.c-Form_List_Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.c-Form_List_Item:not(:last-child) {
  margin-bottom: 30px;
}
.c-Form_List_Item._Wide:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .c-Form_List_Item._Wide:not(:last-child) {
    margin-bottom: 42px;
  }
}
.c-Form_List_Item._Tate {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.c-Form_List_Item._Tate .c-Form_List_Title {
  width: 100%;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .c-Form_List_Item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }
  .c-Form_List_Item:not(:last-child) {
    margin-bottom: 18px;
  }
}
.c-Form_List_Title {
  width: 200px;
  margin-top: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-Form_List_Title {
    margin-top: 0;
  }
}
.c-Form_List_Title._Long {
  width: 290px;
}
@media screen and (max-width: 767px) {
  .c-Form_List_Title._Long {
    width: 100%;
  }
}
.c-Form_List_Title._Required span::after {
  content: "必須";
  border: solid 1px #ff0202;
  border-radius: 8px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  line-height: 1.2rem;
  margin-top: 4px;
  margin-left: 0.6em;
  padding: 1px 6px;
  color: #ff0202;
  vertical-align: top;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-Form_List_Title._Required span::after {
    margin-top: 6px;
    font-size: 10px;
    font-size: 1rem;
    line-height: 10px;
    line-height: 1rem;
  }
}
.c-Form_List_Title._Required-en span::after {
  content: "Required";
  border: solid 1px #ff0202;
  border-radius: 8px;
  font-size: 10px;
  font-size: 1rem;
  line-height: 10px;
  line-height: 1rem;
  margin-top: 7px;
  margin-left: 0.6em;
  padding: 1px 6px;
  color: #ff0202;
  vertical-align: top;
  display: inline-block;
}
.c-Form_List_Title._Optional span::after {
  content: "任意";
  border: solid 1px #9e9e9e;
  border-radius: 8px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  line-height: 1.2rem;
  margin-top: 4px;
  margin-left: 0.6em;
  padding: 1px 6px;
  color: #9e9e9e;
  vertical-align: top;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-Form_List_Title._Optional span::after {
    margin-top: 6px;
    font-size: 10px;
    font-size: 1rem;
    line-height: 10px;
    line-height: 1rem;
  }
}
.c-Form_List_Title_Note {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
  line-height: 1.8rem;
}
.c-Form_List_Input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-Form_List_Input_Note {
  display: block;
  color: #9e9e9e;
  margin-top: 0.6em;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
  line-height: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-Form_List_Input_Note {
    margin-top: 0.3em;
  }
}
.c-Form_List_Input._topSpace {
  margin-top: 20px;
}
.c-Form_List_Input._short input[type=text] {
  max-width: 200px;
}
.c-Form_List_Input._short .c-Form_List_Input_Confirm {
  max-width: 200px;
}
.c-Form_Confirm_List {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
}
.c-Form_Confirm_List_Item:not(:last-child) {
  margin-bottom: 0.8em;
}
.c-Form_Confirm .c-Form_List_Title {
  margin-top: 16px;
}
.c-Form_Confirm .c-Form_List_Input_Confirm {
  background-color: #eceae8;
  display: block;
  padding: 0.8em 1.2em;
  border-radius: 4px;
  min-height: 46px;
}

.complete_message {
  text-align: center;
}
.complete_message_Title {
  font-size: 30px;
  font-size: 3rem;
  line-height: 40px;
  line-height: 4rem;
  font-weight: bold;
  margin-bottom: 6px;
}
.complete_message_Title_sub {
  font-size: 30px;
  font-size: 3rem;
  line-height: 40px;
  line-height: 4rem;
  font-weight: bold;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .complete_message_Title_sub {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 33px;
    line-height: 3.3rem;
  }
}
.complete_message_Contents {
  margin-bottom: 36px;
}
.complete_message_Contents_Top {
  font-weight: bold;
  margin-bottom: 24px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  line-height: 2.8rem;
}
.complete_message_button {
  text-align: center;
}
.complete_message_button a {
  background-color: #4c7ebf;
  padding: 12px 24px;
}
@media screen and (max-width: 767px) {
  .complete_message_Title {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 36px;
    line-height: 3.6rem;
  }
  .complete_message_Contents {
    text-align: left;
  }
}
.complete_LinkList {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px 2%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 110px;
}
.complete_LinkList_Title {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  line-height: 2.8rem;
  margin-bottom: 42px;
  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;
  gap: 0 0.5em;
}
.complete_LinkList_Title::before, .complete_LinkList_Title::after {
  content: "";
  height: 1px;
  width: 36px;
  background-color: #333333;
}
.complete_LinkList_Title_sub {
  word-break: break-all;
  font-weight: bold;
  margin-bottom: 6px;
}
.complete_LinkList_Title_sub-Link {
  text-decoration: underline;
}
.complete_LinkList_Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1% 10px 1%;
  width: 49%;
  gap: 30px 12px;
  border-bottom: solid 1px #dddddd;
}
.complete_LinkList_Icon {
  width: 60px;
}
.complete_LinkList_Text {
  width: calc(100% - 72px);
}
@media screen and (max-width: 767px) {
  .complete_LinkList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .complete_LinkList_Item {
    width: 100%;
  }
}
.complete_Sns_Title {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  line-height: 2.6rem;
  margin-bottom: 6px;
  font-weight: bold;
}
.complete_Sns_Note {
  text-align: center;
  margin-bottom: 12px;
}
.complete_Sns_List {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
.complete_Sns_List_Item {
  width: 48px;
}
.complete_message {
  width: 100%;
  max-width: 800px;
  margin: 60px auto 80px auto;
  padding-bottom: 60px;
  border-bottom: dashed 1px #dddddd;
}
@media screen and (max-width: 767px) {
  .complete_message {
    padding-bottom: 36px;
    margin-top: 48px;
  }
}
.complete_message p {
  line-height: 26px;
  line-height: 2.6rem;
}
.complete_message p.complete_message_em {
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  line-height: 3rem;
  margin-bottom: 36px;
  text-align: center;
}
.complete_message.center {
  text-align: center;
}
.complete_message .mb_s {
  margin-bottom: 12px;
}
.complete_message .font_b {
  font-weight: bold;
}

.alert {
  border: solid 1px rgba(255, 2, 2, 0.6);
  padding: 2px 0;
  color: #ff0202;
  display: block;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
  line-height: 1.8rem;
  background-color: rgba(255, 2, 2, 0.06);
  margin: 6px 0 18px 0;
  padding: 6px 6px;
}
.alert:before {
  content: "※";
  margin-right: 2px;
}

.c-form_inputCheckBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 30px;
}
.c-form_inputCheckBox li {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
}
.c-form_inputCheckBox li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 12px;
}
.c-form_inputCheckBox_inputText label {
  margin-right: 6px;
}
.c-form_inputCheckBox_inputText span {
  width: calc(100% - 90px);
  max-width: 340px;
}
.c-form_inputCheckBox_inputText span input[type=text] {
  margin-bottom: 0;
}
.c-form_inputCheckBox-height li {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-form_inputCheckBox-height._enquete li {
    margin-bottom: 16px;
  }
  .c-form_inputCheckBox-height._enquete label {
    padding-left: 24px;
    text-indent: -24px;
    line-height: 1.6em;
  }
  .c-form_inputCheckBox-height._enquete label input[type=checkbox] {
    margin-top: 7px;
  }
}
.c-form_list-input-confirm_img {
  display: block;
}
.c-form_list-input-confirm_img img {
  width: auto;
  max-width: 100%;
}
.c-form_textBox {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 60px auto;
}
.c-form_textBox_title {
  background-color: #cfb797;
  color: #ffffff;
  padding: 2px 12px;
}
.c-form_textBox_text {
  padding: 18px 24px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 20px;
  line-height: 2rem;
}
.c-form_textBox_text_list {
  margin-top: 12px;
}
.c-form_textBox_text p {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 20px;
  line-height: 2rem;
}
.c-form_textBox_text li {
  text-indent: -12px;
  padding-left: 12px;
  padding-bottom: 8px;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 20px;
  line-height: 2rem;
}
.c-form_textBox_link {
  text-align: right;
}
.c-form_textBox_link a {
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 20px;
  line-height: 2rem;
  text-decoration: underline;
}
.c-form_textBox_link a:after {
  content: "";
  width: 10px;
  height: 20px;
  display: inline-block;
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: top;
  background-image: url("../../img/icon_arrow4R.svg");
  padding-left: 2px;
}

.bookstore-form .c-form_inputCheckBox.privacy_area ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-recommend-form_Wrap {
  width: 60%;
  margin-top: 120px;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.p-recommend-form_Wrap input[type=password] {
  padding: 6px 6px;
}
@media screen and (max-width: 767px) {
  .p-recommend-form_Wrap {
    margin-top: 80px;
    width: 90%;
  }
}