.form .fc-form .form-row .i-custom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  position: relative;
}

.form .fc-form .form-row .i-custom + .i-custom {
  margin-top: 10px;
}

.form .fc-form .form-row .i-custom [type=checkbox] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.form .fc-form .form-row .i-custom [type=checkbox]:checked ~ .checkmark {
  background: #2196F3;
}

.form .fc-form .form-row .i-custom [type=checkbox]:checked ~ .checkmark::before {
  transform: scale(1) rotate(45deg);
}

.form .fc-form .form-row .i-custom .checkmark {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 25px;
  height: 25px;
  display: block;
  box-sizing: border-box;
  background: #FAFAFA;
  border: 1px solid #A7AFB5;
  border-radius: 4px;
  transition: 0.3s;
}
.form .fc-form .form-row .i-custom .checkmark::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: scale(0) rotate(45deg);
  transition: 0.3s;
}

.form .fc-form .privacy_text {
  text-align: center;
  font-size: 8px;
  line-height: 15px;
  margin-bottom: 13px;
}

.form .fc-form #privacy_checkbox_box {
  margin-bottom: 31px;
}

.form .fc-form .privacy_text a {
  text-decoration: underline;
}

.form .fc-form #privacy_checkbox {
  text-align: center;
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 12px;
}

.form .fc-form #privacy_checkbox input {
  opacity: 0;
  visibility: hidden;
}

.form .fc-form #privacy_checkbox .text {
  position: relative;
  padding-left: 14px;
}

.form .fc-form #privacy_checkbox .text .checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #FAFAFA;
  border: 1px solid #A7AFB5;
  border-radius: 2px;
}

.form .fc-form #privacy_checkbox .text .container:hover input ~ .checkmark {
  background-color: #ccc;
}

.form .fc-form #privacy_checkbox .text input:checked ~ .checkmark {
  background-color: #2196F3;
}

.form .fc-form #privacy_checkbox .text .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.form .fc-form #privacy_checkbox .text input:checked ~ .checkmark:after {
  display: block;
}

.form .fc-form #privacy_checkbox .text .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.form .fc-form .form-submit {
  font-weight: bold;
  padding: 15px;
  text-align: center;
  background: #C81C1D;
  border: 2px solid transparent;
  border-radius: 5px;
  overflow: hidden;
  font-size: 18px;
  color: #fff;
  display: block;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.form .g-btn {
  margin: 18px auto 20px;
}

.form .g-btn .btn-cus2 {
  width: 48%;
}

.fc-confirm .form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-bottom: 10px;
}

.fc-confirm .submit-confirm {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.fc-confirm .submit-confirm .form-block {
  width: 48%;
}

.fc-confirm button {
  font-weight: bold;
  padding: 15px;
  text-align: center;
  background: #09254B;
  font-size: 13px;
  color: #fff;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: none;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .form .fc-form .privacy_text {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .form .fc-form #privacy_checkbox_box {
    margin-bottom: 0;
  }
  .form .fc-form .privacy_text a:hover {
    text-decoration: none;
  }
  .form .fc-form .form-submit {
    width: 250px;
    padding: 12px;
    cursor: pointer;
  }
  .form .fc-form .form-submit:hover {
    background: #E53F14;
    border: 2px solid #E53F14;
  }
  .form .g-btn {
    margin: 18px 0px;
  }
  .form .g-btn .btn-cus2 {
    width: 43%;
  }
}
.form .note {
  text-align: right;
  font-size: 11px;
  margin-bottom: 4vw;
}
.form .fc-form .form-row {
  margin-bottom: 15px;
  border-radius: 5px;
  position: relative;
}
.form .fc-form .form-row.is-error .form-caption {
  font-weight: 500;
}
.form .fc-form .form-row .form-caption {
  font-size: 13px;
  z-index: 5;
  transition: all 0.3s;
}
.form .fc-form .form-row .form-caption .caption--askerisk {
  display: inline-block;
  color: #DF0000;
}
.form .fc-form .form-row .form-value {
  width: 100%;
}
.form .fc-form .form-row .form-value input:not([type=radio]):not([type=checkbox]) {
  border: 0;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  font-size: 16px;
  padding-left: 120px;
  transition: all 0.1s;
}
.form .fc-form .form-row .form-value input:not([type=radio]):not([type=checkbox])::-moz-placeholder {
  color: #C5CCD1;
  font-size: 12px;
}
.form .fc-form .form-row .form-value input:not([type=radio]):not([type=checkbox]):-ms-input-placeholder {
  color: #C5CCD1;
  font-size: 12px;
}
.form .fc-form .form-row .form-value input:not([type=radio]):not([type=checkbox])::placeholder {
  color: #C5CCD1;
  font-size: 12px;
}
.form .fc-form .form-row .form-value select {
  border: 0;
  font-size: 12px;
  background: rgba(0, 0, 0, 0) url(../img/shared/icon_arrow_down.svg) no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-size: 10px;
  background-position: right 14px top 25px;
  width: calc(100% + 20px);
  height: 55px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-left: -20px;
  padding-left: 140px;
  color: #09254B;
}
.form .fc-form .form-row .form-value select::-moz-placeholder {
  color: #C5CCD1;
}
.form .fc-form .form-row .form-value select:-ms-input-placeholder {
  color: #C5CCD1;
}
.form .fc-form .form-row .form-value select::placeholder {
  color: #C5CCD1;
}
.form .fc-form .form-row .form-value select:required:invalid {
  color: #C5CCD1;
}
.form .fc-form .form-row .form-value option {
  color: black;
}
.form .fc-form .form-row .form-value option[value=""][disabled] {
  display: none;
}
.form .fc-form .form-row:not(.checklist).focused .form-caption,
.form .fc-form .form-row.form-textbox-entered .form-caption {
  position: absolute;
  top: 2px;
  left: 15px;
  z-index: 5;
  font-size: 10px;
  color: rgb(110, 110, 115);
  font-weight: 400;
}
.form .fc-form .form-row:not(.checklist).focused input,
.form .fc-form .form-row.form-textbox-entered input {
  padding-top: 15px;
  padding-left: 0 !important;
}
.form .fc-form .form-row:not(.checklist).focused select,
.form .fc-form .form-row.form-textbox-entered select {
  padding-top: 15px;
  padding-left: 20px;
}
.form .fc-form .form-row:not(.checklist) {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border: 1px solid #A7AFB5;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0px 0px 0px 14px;
  -ms-flex-align: center;
      align-items: center;
}
.form .fc-form .form-row:not(.checklist) .form-caption {
  width: 161px;
  position: absolute;
  pointer-events: none;
}
.form .fc-form .form-row.checklist .form-caption {
  margin-bottom: 15px;
}
.form .fc-form .form-row.message {
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 13px 17px;
  margin-bottom: 10px;
}
.form .fc-form .form-row.message ::-webkit-resizer {
  display: none;
}
.form .fc-form .form-row.message .form-value {
  width: 100%;
}
.form .fc-form .form-row.message .form-caption {
  margin-bottom: 7px;
  width: 100%;
  position: static;
}
.form .fc-form .form-row.message textarea {
  border: 0;
  width: 100%;
  min-height: 54px;
  max-width: 100%;
  position: relative;
  min-width: 100%;
  font-size: 16px;
  line-height: 18px;
  padding-right: 10px;
}
.form .fc-form .form-row.message textarea::-moz-placeholder {
  color: #C5CCD1;
  font-size: 12px;
}
.form .fc-form .form-row.message textarea:-ms-input-placeholder {
  color: #C5CCD1;
  font-size: 12px;
}
.form .fc-form .form-row.message textarea::placeholder {
  color: #C5CCD1;
  font-size: 12px;
}
.form .fc-form .form-row.message .pull-tab {
  border-top: 1px solid #A7AFB5;
  width: 10px;
  transform: rotate(-45deg);
  position: absolute;
  bottom: 13px;
  right: 1px;
  pointer-events: none;
  border-radius: 25%;
  z-index: 5;
}
.form .fc-form .form-row.message .pull-tab::after {
  content: "";
  border-top: 1px solid #A7AFB5;
  width: 16px;
  transform: rotate(-181deg);
  background: transparent;
  position: absolute;
  right: -2px;
  bottom: 4px;
  pointer-events: none;
  border-radius: 25%;
}
.form .fc-form .cont-rule {
  border: 1px solid #ececeb;
  border-radius: 5px;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  background: #fff;
  margin: 20px 0;
}
.form .fc-form .cont-rule h3 {
  margin-top: 0 !important;
  padding: 15px 37px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  position: relative;
}
.form .fc-form .cont-rule h3:before,
.form .fc-form .cont-rule h3:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #000;
}
.form .fc-form .cont-rule h3:before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.form .fc-form .cont-rule h3:after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
.form .fc-form .cont-rule.active h3:before {
  transform: rotate(45deg);
}
.form .fc-form .cont-rule.active h3:after {
  transform: rotate(-45deg);
}
.form .fc-form .cont-rule p {
  padding: 0px 15px 25px;
}
@media only screen and (min-width: 768px) {
  .form .note {
    font-size: 11px;
    margin-bottom: 0;
    margin-top: 4px;
    margin-left: 14px;
  }
  .form .fc-form .form-row {
    padding: 0px 0px 0 15px;
    margin-bottom: 8px;
  }
  .form .fc-form .form-row .form-caption {
    width: 158px;
  }
  .form .fc-form .form-row .form-value {
    font-size: 12px;
  }
  .form .fc-form .form-row .form-value input {
    height: 50px;
  }
  .form .fc-form .form-row .form-value select {
    height: 50px;
    background-position: right 14px top 23px;
  }
  .form .fc-form .form-row.message .form-caption {
    margin-bottom: 1px;
  }
  .form .fc-form .form-row.message textarea {
    min-height: 37px;
  }
}

@media only screen and (min-width: 768px) {
  .form--style-1 .fc-form .form-row {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .form--style-1 .fc-form .form-row.is-error {
    background: none !important;
    border: 0 !important;
  }
  .form--style-1 .fc-form .form-row.is-error .form-caption {
    font-weight: 500;
  }
  .form--style-1 .fc-form .form-row.is-error .form-value input:not([type=radio]):not([type=checkbox]), .form--style-1 .fc-form .form-row.is-error .form-value select {
    border-color: #fc1520;
  }
  .form--style-1 .fc-form .form-row.is-error .form-value [class^=error] {
    font-size: 10px;
    left: 0;
    bottom: -20px;
  }
  .form--style-1 .fc-form .form-row .form-caption {
    font-size: 14px;
    line-height: 20px;
  }
  .form--style-1 .fc-form .form-row .form-caption .caption--askerisk {
    width: -moz-max-content;
    width: max-content;
    min-width: 35px;
    display: block;
    margin-top: 3px;
    padding: 1px 2px 3px;
    box-sizing: border-box;
    background: #E53F14;
    color: #fff;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .form--style-1 .fc-form .form-row .form-value {
    width: calc(100% - 141px);
    font-size: 14px;
    line-height: 20px;
  }
  .form--style-1 .fc-form .form-row .form-value input:not([type=radio]):not([type=checkbox]) {
    height: 50px;
    padding: 15px !important;
    background: #fff;
    border: 1px solid #A7AFB5;
    font-size: 14px;
    line-height: 20px;
  }
  .form--style-1 .fc-form .form-row .form-value select {
    width: 100%;
    height: 50px;
    margin-left: 0;
    padding: 15px !important;
    background-color: #fff;
    border: 1px solid #A7AFB5;
  }
  .form--style-1 .fc-form .form-row:not(.checklist).focused .form-caption,
  .form--style-1 .fc-form .form-row.form-textbox-entered .form-caption {
    color: inherit;
    font-size: 14px;
    position: relative;
    top: auto;
    left: auto;
  }
  .form--style-1 .fc-form .form-row:not(.checklist) {
    padding: 0px;
    background: none;
    border: 0;
  }
  .form--style-1 .fc-form .form-row:not(.checklist) .form-caption {
    width: 141px;
    position: relative;
  }
  .form--style-1 .fc-form .form-row.checklist {
    display: -ms-flexbox;
    display: flex;
  }
  .form--style-1 .fc-form .form-row.checklist .form-caption {
    width: 141px;
    margin-bottom: 0px;
  }
  .form--style-1 .fc-form .form-row.checklist .form-value {
    width: calc(100% - 141px);
  }
  .form--style-1 .fc-form .form-row.message {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .form--style-1 .fc-form .form-row.message .form-caption {
    width: 141px;
    margin-bottom: 0px;
  }
  .form--style-1 .fc-form .form-row.message .form-value {
    width: calc(100% - 141px);
  }
  .form--style-1 .fc-form .form-row.message textarea {
    min-height: 130px;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #A7AFB5;
    font-size: 14px;
    line-height: 20px;
  }
  .form--style-1 .fc-form .privacy_text {
    margin: 25px 0;
    font-size: 13px;
    line-height: 28px;
  }
}

dl[class*=detail-tel] {
  padding: 15px 10px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
  text-align: center;
  letter-spacing: 0;
}
dl[class*=detail-tel] dt {
  color: #E53F14;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}
dl[class*=detail-tel] .tel-number {
  color: #09254B;
  font-size: 40px;
  line-height: 1.3;
}
dl[class*=detail-tel] .tel-note {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  dl[class*=detail-tel] {
    width: 390px;
  }
  dl[class*=detail-tel] dt {
    font-size: 26px;
  }
  dl[class*=detail-tel] .tel-number {
    font-size: 50px;
  }
  dl[class*=detail-tel] .tel-note {
    font-size: 16px;
  }
}

#contact-form h2.ttl {
  font-weight: 700;
  font-size: 6vw;
  line-height: 1.5;
}
#contact-form h2.ttl::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  background: url("../img/shared/icon_mail.svg") 0 0/contain no-repeat;
}
#contact-form .h2box .txt {
  margin-top: 10px;
  font-size: 11px;
  line-height: 2;
}
#contact-form .contactbox {
  margin-top: 20px;
}
#contact-form .wrap {
  max-width: 1100px;
}
#contact-form .wrap .right {
  margin-top: 30px;
}
#contact-form .wrap .right .g-btn {
  margin-top: 30px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media only screen and (min-width: 768px) {
  #contact-form h2.ttl {
    font-size: 28px;
    line-height: 45px;
  }
  #contact-form .h2box .txt {
    margin-top: 25px;
    font-size: 15px;
  }
  #contact-form .contactbox {
    margin-top: 45px;
  }
  #contact-form .wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  #contact-form .wrap .left {
    min-width: 390px;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  }
  #contact-form .wrap .left .sticky {
    position: sticky;
    top: 50px;
    left: 0;
  }
  #contact-form .wrap .right {
    width: calc(100% - 410px);
    max-width: 574px;
    margin-top: 0;
    padding-left: 50px;
    box-sizing: border-box;
  }
  #contact-form .wrap .right .g-btn {
    -ms-flex-pack: center;
        justify-content: center;
    margin-top: 40px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  #contact-form .wrap .right .g-btn .btn-cus2 {
    margin: 0;
  }
}