@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/*-----------------
category: mixins

pc    1025 ~
sp    767 ~ 1024
sp-s  375 ~ 766
min   320 ~ 374
-----------------*/
/*----- m.vw(数値) -----*/
/*----- IE10,11 -----*/
/*----- chrome -----*/
.form-container {
  color: #333333;
  font-weight: 500;
  font-size: clamp(14px, 2.3468057366vw, 18px);
}

input,
select,
textarea {
  color: #555555;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  input,
select,
textarea {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  input,
select,
textarea {
    font-size: 14px;
  }
}
input.disabled,
select.disabled,
textarea.disabled {
  pointer-events: none;
  background: #f1f1f1 !important;
}
input.disabled:-webkit-autofill,
select.disabled:-webkit-autofill,
textarea.disabled:-webkit-autofill {
  box-shadow: 0 0 0 1000px #f1f1f1 inset;
  -webkit-text-fill-color: rgba(85, 85, 85, 0.8);
}
input.disabled::-moz-placeholder, select.disabled::-moz-placeholder, textarea.disabled::-moz-placeholder {
  opacity: 0.3;
}
input.disabled::placeholder,
select.disabled::placeholder,
textarea.disabled::placeholder {
  opacity: 0.3;
}
input:disabled,
select:disabled,
textarea:disabled {
  background: #f1f1f1 !important;
  pointer-events: none !important;
  cursor: default;
}

.form-icon-entry {
  display: inline-block;
  position: relative;
  min-width: 50px;
  padding: 0 3px 1px;
  background-color: #333;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  text-align: center;
  vertical-align: baseline;
}
.form-icon-entry.type-req {
  background-color: #eb0000;
}

.date-disabled {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.btn-style1 {
  max-width: 640px;
  width: 100%;
  margin: 70px auto 0;
}
@media screen and (max-width: 375px) {
  .btn-style1 {
    max-width: 270px;
    width: calc(100% - 10px);
    height: auto;
    margin-top: 25px;
    padding: 25px 0;
    border-radius: 15px;
  }
}
.btn-style1 .icon-pdf {
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .btn-style1 .icon-pdf {
    flex-direction: column;
  }
}
.btn-style1 .icon-pdf::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 43px;
  margin-right: 22px;
  background: url("../img/icon/pdf_pink.svg") center center no-repeat;
  background-size: contain;
  transition: 0.2s;
}
@media screen and (max-width: 375px) {
  .btn-style1 .icon-pdf::before {
    width: 37px;
    height: 35px;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.btn-style1 .icon-pdf .icon-link {
  margin: 2px 0 0 10px;
}

.btn:hover .icon-pdf::before {
  background: url("../img/icon/pdf.svg") center center no-repeat;
  background-size: contain;
}

/*------------------------------------------------------------
	header
------------------------------------------------------------*/
.prd-header .logo-flex .prd-logo a {
  line-height: 0;
}

/*------------------------------------------------------------
	main
------------------------------------------------------------*/
.form-container {
  padding: 30px 20px 0;
}
@media screen and (max-width: 767px) {
  .form-container {
    padding: 20px 0 0;
  }
}
.form-container h1.heading_title {
  line-height: 1.25;
}

@media screen and (max-width: 767px) {
  .contents-mw {
    padding: 0 15px;
  }
}

.form-contents-mw {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .form-contents-mw {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .form-heading-lv1 {
    padding: 0 15px;
  }
}

h1 {
  font-size: clamp(24px, 4.6936114733vw, 36px);
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    margin: 0;
  }
}
h1 span.small {
  font-size: clamp(20px, 3.9113428944vw, 30px);
}
@media screen and (max-width: 1024px) {
  h1 span.small {
    font-size: 18px;
  }
}

.form-notification {
  margin-top: 2.5em;
  color: #e60012;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 20px;
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .form-notification {
    margin-top: 20px;
    font-size: 16px;
  }
}

.form-flow {
  display: flex;
  flex-wrap: wrap;
  margin: 2.5em 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .form-flow {
    margin: 20px 0 0;
  }
}
.form-flow li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.33% - 64px);
  height: 50px;
  padding: 0 32px;
  background-color: #ccc;
  color: #2b2b2b;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .form-flow li {
    width: calc(33.33% - 20px);
    height: 43px;
    padding: 0 15px 0 5px;
    font-size: 12px;
  }
}
.form-flow li:nth-child(1)::after, .form-flow li:nth-child(2)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  z-index: 2;
  display: inline-block;
  width: 40px;
  height: 100%;
  background-image: url(../img/decoration/form_arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}
.form-flow li:nth-child(3)::before, .form-flow li:nth-child(3)::after {
  content: "";
  position: absolute;
  right: -32px;
  display: inline-block;
  width: 0;
  height: 0;
  border-width: 26px 34px;
  border-style: solid;
}
.form-flow li:nth-child(3)::before {
  border-color: transparent #fff #fff transparent;
}
.form-flow li:nth-child(3)::after {
  border-color: #fff #fff transparent transparent;
}
.form-flow li .flow_title {
  padding-left: 1em;
  text-indent: -1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form-flow li .flow_title {
    width: calc(100% - 20px);
    padding: 0;
    text-indent: 0;
  }
}

[data-screen=input] .form-flow > li:nth-child(1),
[data-screen=confirm] .form-flow > li:nth-child(2),
[data-screen=finish] .form-flow > li:nth-child(3) {
  background-color: #006ab6;
  color: #fff;
  font-weight: 700;
}

[data-screen=input] .form-flow > li:nth-child(1)::after,
[data-screen=confirm] .form-flow > li:nth-child(2)::after {
  background-image: url(../img/decoration/form_arrow_blue.png);
}

[data-screen=confirm] .form-flow > li:nth-child(1)::after,
[data-screen=finish] .form-flow > li:nth-child(2)::after {
  background-image: url(../img/decoration/form_arrow_grayblue.png);
}

.form-announce,
.form-announce-confirm {
  margin: 70px 0 20px;
}
@media screen and (max-width: 1024px) {
  .form-announce,
.form-announce-confirm {
    margin-top: 1.5em;
    font-size: 14px;
  }
}
.form-announce p,
.form-announce-confirm p {
  margin-bottom: 15px;
}
.form-announce a[target=_blank],
.form-announce-confirm a[target=_blank] {
  color: #333333;
  text-decoration: underline;
}
.form-announce a[target=_blank] img,
.form-announce-confirm a[target=_blank] img {
  margin: 0 5px 0 3px;
  vertical-align: middle;
}
.form-announce .form-list-note,
.form-announce-confirm .form-list-note {
  font-size: clamp(12px, 2.0860495437vw, 16px);
}
@media screen and (max-width: 767px) {
  .form-announce .form-list-note,
.form-announce-confirm .form-list-note {
    font-size: 14px;
  }
}
.form-announce .form-icon-entry,
.form-announce-confirm .form-icon-entry {
  margin: 0 10px 0 10px;
}

.form-announce-confirm {
  display: none;
}

/* フォーム切り替え */
.form-select-wrapper {
  margin: 40px auto 30px;
}
@media screen and (max-width: 767px) {
  .form-select-wrapper {
    margin: 20px auto 30px;
  }
}
.form-select-wrapper > p:first-child {
  margin-bottom: 10px;
}

.form-select {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .form-select {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .pamphlet-btn-box {
    width: 100%;
  }
}
.pamphlet-btn-box .pamphlet-btn {
  display: inline-block;
  max-width: 480px;
  width: 100%;
  padding: 7px 30px;
  text-align: center;
  font-size: clamp(20px, 1.756954612vw, 24px);
  color: #e32649;
  font-weight: bold;
  border: 3px solid #e32649;
  border-radius: 50px;
  box-sizing: border-box;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .pamphlet-btn-box .pamphlet-btn {
    max-width: 400px;
    width: 100%;
    font-size: clamp(15px, 4.8vw, 18px);
  }
}
@media screen and (max-width: 320px) {
  .pamphlet-btn-box .pamphlet-btn {
    max-width: 100%;
  }
}
.pamphlet-btn-box .pamphlet-btn:hover {
  color: #fff;
  background: #e32649;
}
.pamphlet-btn-box .pamphlet-btn.current {
  color: #fff;
  background: #e32649;
  cursor: default;
  pointer-events: none;
}
.pamphlet-btn-box .pamphlet-btn.icon-link-after::after {
  display: inline-block;
  height: 15px;
}

@media screen and (max-width: 767px) {
  .select-box-wrapper {
    width: 100%;
  }
}
.select-box-wrapper .select-box {
  position: relative;
  width: 480px;
  height: 50px;
  background: #f2f2f2;
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .select-box-wrapper .select-box {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .select-box-wrapper .select-box {
    max-width: 400px;
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .select-box-wrapper .select-box {
    max-width: 100%;
  }
}
.select-box-wrapper .select-box select.select-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 480px;
  width: 100%;
  height: 100%;
  padding: 0 18px;
  color: #555555;
  font-size: clamp(20px, 1.756954612vw, 24px);
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .select-box-wrapper .select-box select.select-inner {
    max-width: 400px;
    width: 100%;
    font-size: clamp(14px, 4.2666666667vw, 18px);
  }
}
@media screen and (max-width: 320px) {
  .select-box-wrapper .select-box select.select-inner {
    max-width: 100%;
  }
}
.select-box-wrapper .select-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 13px;
  height: 13px;
  margin-top: -10px;
  padding: 0;
  border-right: 2px solid #006ab6;
  border-bottom: 2px solid #006ab6;
  background: none;
  transform: rotate(45deg);
}
.select-box-wrapper .select-box.colored {
  background: #e8f0f8;
}
.select-box-wrapper .select-box.colored::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 13px;
  height: 13px;
  margin-top: -10px;
  padding: 0;
  border-right: 2px solid #006ab6;
  border-bottom: 2px solid #006ab6;
  background: none;
  transform: rotate(45deg);
}

#page-pamphlet-form .form-select {
  display: block;
}
#page-pamphlet-form .select-box-wrapper .select-box {
  max-width: 600px;
  width: calc(100% - 20px);
}
#page-pamphlet-form .select-box-wrapper .select-box select.select-inner {
  max-width: 600px;
}

/* 確認メッセージ */
.confirm-text {
  display: none;
  max-width: 1120px;
  margin: 0 auto 30px;
  padding: 30px 40px;
  text-align: center;
  font-weight: bold;
  background: #f7f7fa;
}
@media screen and (max-width: 767px) {
  .confirm-text {
    padding: 30px 20px;
  }
}

.top-error-text {
  display: none;
  max-width: 1120px;
  margin: 0 auto 30px;
  padding: 30px 40px;
  text-align: center;
  color: #e00000;
  background: #fff3f4;
}
@media screen and (max-width: 767px) {
  .top-error-text {
    padding: 30px 20px;
  }
}

/*------------------------------------------------------------
	main tayoriフォーム
------------------------------------------------------------*/
.tayori-form-wrapper,
.tayori-form-wrapper form .parts-error-message,
.tayori-form-wrapper form .form-parts,
.tayori-form-wrapper form .form-parts > div,
.tayori-form-wrapper form .form-parts input {
  box-sizing: border-box;
  color: #555555;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper,
.tayori-form-wrapper form .parts-error-message,
.tayori-form-wrapper form .form-parts,
.tayori-form-wrapper form .form-parts > div,
.tayori-form-wrapper form .form-parts input {
    display: block;
    width: 100%;
  }
}

.tayori-form-wrapper form .form-parts > div {
  padding: 30px;
  border: none;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form .form-parts > div {
    padding: 15px;
    font-size: 14px;
  }
}

.tayori-form-wrapper form {
  position: relative;
  table-layout: fixed;
  width: 100% !important;
  margin-bottom: 0;
  border: none;
  border-top: 2px solid #dfdfe3;
  /* 名前入力だけflex横並び */
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form {
    border: none;
  }
}
.tayori-form-wrapper form [type=text],
.tayori-form-wrapper form [type=email],
.tayori-form-wrapper form [type=tel] {
  min-width: 140px;
  max-width: 730px;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 6px 12px;
  border: 1px solid #dfdfe3;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form [type=text],
.tayori-form-wrapper form [type=email],
.tayori-form-wrapper form [type=tel] {
    width: 100%;
  }
}
.tayori-form-wrapper form [type=radio] + label,
.tayori-form-wrapper form [type=checkbox] + label {
  margin: 5px 0;
}
.tayori-form-wrapper form [type=checkbox] + label {
  position: relative;
  display: inline-block;
  margin-right: 50px;
  padding-top: 1px;
  padding-left: 34px;
  line-height: 1.25;
  vertical-align: top;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form [type=checkbox] + label {
    margin-right: 25px;
    padding-top: 2px;
  }
}
.tayori-form-wrapper form [type=checkbox] + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #dfdfe3;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form [type=checkbox] + label::before {
    width: 20px;
    height: 20px;
  }
}
.tayori-form-wrapper form [type=checkbox] + label.disabled {
  opacity: 0.8;
  pointer-events: none;
  cursor: default;
}
.tayori-form-wrapper form [type=checkbox] + label.disabled::before {
  background-color: #f1f1f1;
}
.tayori-form-wrapper form [type=checkbox] + label.disabled::after {
  opacity: 0.6;
}
.tayori-form-wrapper form [type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.tayori-form-wrapper form [type=checkbox]:checked + label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 7px;
  width: 12px;
  height: 7px;
  padding: 0;
  border-left: 1px solid #fa1d1c;
  border-bottom: 1px solid #fa1d1c;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form [type=checkbox]:checked + label::after {
    top: 5px;
    left: 5px;
  }
}
.tayori-form-wrapper form [type=radio] + label {
  position: relative;
  display: inline-block;
  margin-right: 50px;
  padding-top: 1px;
  padding-left: 34px;
  line-height: 1.25;
  vertical-align: top;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form [type=radio] + label {
    margin-right: 25px;
    padding-top: 2px;
  }
}
.tayori-form-wrapper form [type=radio] + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #dfdfe3;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form [type=radio] + label::before {
    width: 20px;
    height: 20px;
  }
}
.tayori-form-wrapper form [type=radio] + label.disabled {
  opacity: 0.8;
  pointer-events: none;
  cursor: default;
}
.tayori-form-wrapper form [type=radio] + label.disabled::before {
  background-color: #f1f1f1;
}
.tayori-form-wrapper form [type=radio] + label.disabled::after {
  opacity: 0.6;
}
.tayori-form-wrapper form [type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.tayori-form-wrapper form [type=radio]:checked + label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #eb0000;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form [type=radio]:checked + label::after {
    top: 5px;
    left: 5px;
  }
}
.tayori-form-wrapper form .form-selectbox-wrap {
  position: relative;
  display: inline-block;
  max-width: 400px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form .form-selectbox-wrap {
    width: 100%;
  }
}
.tayori-form-wrapper form .form-selectbox-wrap.required-item::before {
  content: "必須";
  position: absolute;
  top: 25px;
  right: 35px;
  width: 50px;
  height: 24px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-indent: 0;
  margin-top: -12px;
  background-color: #eb0000;
}
.tayori-form-wrapper form .form-selectbox-wrap > select {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 5px 35px 3px 15px;
  border: 1px solid #dfdfe3;
  background: none;
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 1;
}
.tayori-form-wrapper form .form-selectbox-wrap::after {
  position: absolute;
  top: 25px;
  right: 12px;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  padding: 0;
  border-right: 1px solid #e60012;
  border-bottom: 1px solid #e60012;
  content: "";
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form .datepicker-box {
    max-width: 100%;
  }
}
.tayori-form-wrapper form .datepicker-box input {
  cursor: pointer;
}
.tayori-form-wrapper form textarea {
  max-width: 798px;
  width: calc(100% - 60px);
  height: 90px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #dfdfe3;
  background-color: #fff;
  line-height: 1;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form textarea {
    max-width: 100%;
    width: calc(100% - 24px);
  }
}
.tayori-form-wrapper form .error-message {
  color: #eb0000;
  transform: translateY(5px);
}
.tayori-form-wrapper form .form-parts {
  display: flex;
  flex-wrap: wrap;
}
.tayori-form-wrapper form .form-parts > div:nth-of-type(odd) {
  position: relative;
  display: flex;
  align-items: center;
  width: 25% !important;
  background-color: #f7f7fa;
  border-bottom: 1px solid #dfdfe3;
  text-align: left;
  vertical-align: middle;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form .form-parts > div:nth-of-type(odd) {
    width: 100% !important;
    border-top: 1px solid #dfdfe3;
    border-bottom: none;
  }
}
.tayori-form-wrapper form .form-parts > div:nth-of-type(odd).required-item {
  padding-right: 95px;
}
.tayori-form-wrapper form .form-parts > div:nth-of-type(odd).required-item::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 50px;
  height: 24px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-indent: 0;
  margin-top: -12px;
  background-color: #eb0000;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form .form-parts > div:nth-of-type(odd).required-item::after {
    right: 15px;
  }
}
.tayori-form-wrapper form .form-parts > div:nth-of-type(even) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 75%;
  border-bottom: 1px solid #dfdfe3;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form .form-parts > div:nth-of-type(even) {
    width: 100% !important;
    border-bottom: none;
  }
}
.tayori-form-wrapper form .form-parts > div:nth-of-type(even).disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}
.tayori-form-wrapper form .form-parts > div:nth-of-type(even) > span {
  display: block;
}
.tayori-form-wrapper form .form-parts .address-box > div {
  margin-bottom: 10px;
}
.tayori-form-wrapper form .form-parts .address-box > div:last-of-type {
  margin-bottom: 0;
}
.tayori-form-wrapper form .form-parts.tour-hope-container {
  height: 0;
  opacity: 0;
  transition: 0.5s;
}
.tayori-form-wrapper form .form-parts.tour-hope-container.is-open {
  opacity: 1;
}
.tayori-form-wrapper form .form-parts .preferred-date-time {
  margin-bottom: 30px;
}
.tayori-form-wrapper form .form-parts .preferred-date-time:last-child {
  margin-bottom: 0;
}
.tayori-form-wrapper form .form-parts .preferred-date-time > div:first-child {
  margin-bottom: 10px;
}
.tayori-form-wrapper form .form-parts .preferred-date-time > div:first-child > div:first-child {
  margin-bottom: 10px;
}
.tayori-form-wrapper form .form-parts .preferred-date-time > div:last-child {
  margin-bottom: 10px;
}
.tayori-form-wrapper form .form-parts .preferred-date-time .required-item::after {
  content: "必須";
  display: inline-block;
  width: 50px;
  height: 24px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-indent: 0;
  background-color: #fa1d1c;
  vertical-align: text-bottom;
}
.tayori-form-wrapper form .form-parts .datepicker-box input {
  cursor: pointer;
}
.tayori-form-wrapper form .form-parts.tel-box.accordion-target {
  height: 0;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}
.tayori-form-wrapper form .form-parts.tel-box.accordion-target.is-open {
  opacity: 1;
  pointer-events: inherit;
}
.tayori-form-wrapper form .form-parts .reason-field.required-item-field {
  position: relative;
  max-width: 730px;
  width: 100%;
}
.tayori-form-wrapper form .form-parts .reason-field.required-item-field::before {
  content: "必須";
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 24px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-indent: 0;
  margin-top: -12px;
  background-color: #eb0000;
}
.tayori-form-wrapper form .form-parts .reason-field.disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}
.tayori-form-wrapper form .form-parts:nth-of-type(2) > div:nth-of-type(even),
.tayori-form-wrapper form .form-parts:nth-of-type(3) > div:nth-of-type(even) {
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
}
.tayori-form-wrapper form > div .form-agree-container {
  position: relative;
  padding: 0;
  border-top: 1px solid #dfdfe3;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .tayori-form-wrapper form > div .form-agree-container {
    border-top: none;
  }
}

/* 個人情報のお取り扱いについて */
.form-agree-container {
  text-align: center;
}
.form-agree-container .form-agree {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form-agree-container .form-agree {
    margin-top: 45px;
  }
}
.form-agree-container .agree_privacy {
  padding: 30px 40px;
  text-align: left;
  background: #f7f7fa;
}
@media screen and (max-width: 767px) {
  .form-agree-container .agree_privacy {
    padding: 30px 20px;
  }
}
.form-agree-container .agree_privacy dt {
  margin-bottom: 15px;
}
.form-agree-container .agree_head {
  padding: 30px 20px;
}
.form-agree-container .agree_head a {
  color: #e60012;
  text-decoration: underline;
}
.form-agree-container .agree_head a img {
  margin: 0 5px 0 3px;
  vertical-align: middle;
}
.form-agree-container .form-checkbox-wrap-v2 {
  padding: 0 20px;
}
.form-agree-container .form-checkbox-wrap-v2 input[type=checkbox] {
  display: none;
}
.form-agree-container .form-checkbox-wrap-v2 .checkbox_label {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 258px;
  margin: 0;
  padding: 15px;
  border: 1px solid #dfdfe3;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form-agree-container .form-checkbox-wrap-v2 .checkbox_label {
    width: 200px;
    padding: 10px;
  }
}
.form-agree-container .form-checkbox-wrap-v2 .checkbox_label::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 28px;
  height: 27px;
  margin-right: 1em;
  border: 1px solid #dfdfe3;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .form-agree-container .form-checkbox-wrap-v2 .checkbox_label::before {
    width: 20px;
    height: 20px;
  }
}
.form-agree-container .form-checkbox-wrap-v2 .checkbox_label:hover {
  border-color: #bbb;
  background-color: #fff3f4;
}
.form-agree-container .form-checkbox-wrap-v2 input[type=checkbox]:checked + .checkbox_label::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 6px;
  margin: -5px 0 0 -2.875em;
  padding: 0;
  border-left: 1px solid #eb0000;
  border-bottom: 1px solid #eb0000;
  transform: rotate(-45deg);
  content: "";
}
.form-agree-container input[type=submit]:disabled {
  color: #c8c8c8;
  background-color: #686868;
  cursor: default;
}
.form-agree-container input[type=submit] {
  display: none;
  width: 400px;
  margin-top: 65px;
  padding: 25px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  background: #2f2f2f;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form-agree-container input[type=submit] {
    width: calc(100% - 40px);
    margin-top: 28px;
    padding: 12px;
    font-size: 14px;
  }
}
.form-agree-container input[type=submit] + input[type=button],
.form-agree-container input.edit {
  position: absolute;
  top: 5px;
  left: 0;
  display: none;
  min-width: 240px;
  max-width: 100%;
  margin-top: 65px;
  padding: 15px;
  border: 1px solid #dfdfe3;
  background-color: #fff;
  color: #333;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .form-agree-container input[type=submit] + input[type=button],
.form-agree-container input.edit {
    position: inherit;
    min-width: 200px;
    margin-top: 28px;
    padding: 12px;
    font-size: 14px;
  }
}

/* 送信ボタン */
.submit-btn-box {
  text-align: center;
}
.submit-btn-box button.submit {
  display: none;
  width: 400px;
  margin: 65px auto 0;
  padding: 25px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  background: #2f2f2f;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .submit-btn-box button.submit {
    width: calc(100% - 40px);
    margin-top: 28px;
    padding: 12px;
    font-size: 14px;
  }
}
.submit-btn-box button.submit.disabled {
  position: relative;
  color: #c8c8c8;
  background-color: #686868;
  pointer-events: none;
  cursor: default;
}
.submit-btn-box button.submit.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 入力内容を確認ボタン */
span.to-confirm {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  span.to-confirm {
    display: block;
  }
}
span.to-confirm button.confirm {
  display: inline-block;
  width: 400px;
  margin-top: 65px;
  padding: 25px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  background: #2f2f2f;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  span.to-confirm button.confirm {
    width: calc(100% - 24px);
    margin-top: 28px;
    padding: 12px;
    font-size: 14px;
  }
}
span.to-confirm button.confirm.disabled {
  color: #c8c8c8;
  background-color: #686868;
  pointer-events: none;
  cursor: default;
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
footer {
  margin-top: 180px;
  /* ページトップへボタン */
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 60px;
  }
}
footer .to-header.to-top {
  position: fixed;
  top: -48px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  cursor: pointer;
}
footer .to-header.to-top.at-footer {
  position: absolute;
  top: -48px;
  bottom: auto;
  right: 0;
}
footer .to-header.to-top a {
  display: block;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid #ddd;
  background-color: #fff;
  text-indent: -9999em;
  outline: none;
}
footer .to-header.to-top a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -2px 0 0 -5px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(-45deg);
  content: "";
}
/*# sourceMappingURL=form.css.map */