@charset "UTF-8";
/*お問い合わせページ*/
/*
function,breakpoint,英文などの特殊フォントの関数
*/
/*英語フォント*/
/*
mixinの設定
フォントサイズや、レスポンシブデザインの設定を行う
*/
.p-contact {
  color: #fff;
}
.p-contact__title {
  margin-bottom: 12vw;
}
@media print, screen and (min-width:768px) {
  .p-contact__title {
    margin-bottom: 60px;
  }
}
.p-contact-sec__text {
  font-size: min(3.7333333333vw, 1.68rem);
  font-weight: 300;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  margin-bottom: 16vw;
}
@media print, screen and (min-width:768px) {
  .p-contact-sec__text {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.14em;
    margin-bottom: 65px;
  }
}

/*必須項目---------------*/
.c-must .smf-item__label::after {
  content: "※必須";
  display: inline-block;
  color: var(--color-main);
  font-size: 87.5%;
  margin-left: 0.5em;
}

/*フォーム部分-----------*/
.smf-form {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.14em;
  caret-color: transparent;
  margin-left: auto;
  margin-right: auto;
  max-width: 718px;
  /*メールフォーム確認の項目*/
  /*テキストボックスの項目*/
  /*セレクトボックスの矢印*/
  /*ラジオボタン*/
}
@media print, screen and (min-width:768px) {
  .smf-form {
    font-size: 1.7rem;
    line-height: 2.14;
  }
}
.smf-form .smf-item {
  width: 100%;
  text-align: left;
  margin-bottom: 2.25em;
  caret-color: transparent;
}
@media print, screen and (min-width:768px) {
  .smf-form .smf-item {
    margin-bottom: 2.4em;
  }
}
.smf-form .smf-item__col--controls,
.smf-form .smf-item__controls,
.smf-form .wp-block-columns,
.smf-form .smf-placeholder,
.smf-form .smf-text-control {
  caret-color: transparent;
}
.smf-form .smf-item__col--label {
  width: 100%;
  margin-bottom: 0.5em;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-right: 0;
}
@media print, screen and (min-width:768px) {
  .smf-form .smf-item__col--label {
    overflow: hidden;
    margin-bottom: 0.75em;
  }
}
.smf-form .smf-item__col--controls {
  width: 100%;
  /*チェックボックス*/
  /*ラジオボタン*/
}
.smf-form .smf-item__col--controls .smf-text-control,
.smf-form .smf-item__col--controls .smf-select-control,
.smf-form .smf-item__col--controls .smf-textarea-control {
  border: solid 1px #707070;
}
.smf-form .smf-item__col--controls input[type=text],
.smf-form .smf-item__col--controls input[type=url],
.smf-form .smf-item__col--controls input[type=email],
.smf-form .smf-item__col--controls input[type=tel],
.smf-form .smf-item__col--controls .smf-textarea-control__control,
.smf-form .smf-item__col--controls .smf-select-control select {
  padding: 0.7em 0.9em;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  width: 100%;
  background: transparent;
  caret-color: #707070;
  border: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}
@media only screen and (max-width:767px) {
  .smf-form .smf-item__col--controls input[type=text],
  .smf-form .smf-item__col--controls input[type=url],
  .smf-form .smf-item__col--controls input[type=email],
  .smf-form .smf-item__col--controls input[type=tel],
  .smf-form .smf-item__col--controls .smf-textarea-control__control,
  .smf-form .smf-item__col--controls .smf-select-control select {
    /*スマホのみ*/
    font-size: 16px;
  }
}
@media print, screen and (min-width:768px) {
  .smf-form .smf-item__col--controls input[type=text],
  .smf-form .smf-item__col--controls input[type=url],
  .smf-form .smf-item__col--controls input[type=email],
  .smf-form .smf-item__col--controls input[type=tel],
  .smf-form .smf-item__col--controls .smf-textarea-control__control,
  .smf-form .smf-item__col--controls .smf-select-control select {
    padding: 0.55em 1em;
  }
}
.smf-form .smf-item__col--controls input[type=text]::-webkit-input-placeholder, .smf-form .smf-item__col--controls input[type=url]::-webkit-input-placeholder, .smf-form .smf-item__col--controls input[type=email]::-webkit-input-placeholder, .smf-form .smf-item__col--controls input[type=tel]::-webkit-input-placeholder, .smf-form .smf-item__col--controls .smf-textarea-control__control::-webkit-input-placeholder, .smf-form .smf-item__col--controls .smf-select-control select::-webkit-input-placeholder {
  color: #9a9a9a;
}
.smf-form .smf-item__col--controls input[type=text]::-moz-placeholder, .smf-form .smf-item__col--controls input[type=url]::-moz-placeholder, .smf-form .smf-item__col--controls input[type=email]::-moz-placeholder, .smf-form .smf-item__col--controls input[type=tel]::-moz-placeholder, .smf-form .smf-item__col--controls .smf-textarea-control__control::-moz-placeholder, .smf-form .smf-item__col--controls .smf-select-control select::-moz-placeholder {
  color: #9a9a9a;
}
.smf-form .smf-item__col--controls input[type=text]:-ms-input-placeholder, .smf-form .smf-item__col--controls input[type=url]:-ms-input-placeholder, .smf-form .smf-item__col--controls input[type=email]:-ms-input-placeholder, .smf-form .smf-item__col--controls input[type=tel]:-ms-input-placeholder, .smf-form .smf-item__col--controls .smf-textarea-control__control:-ms-input-placeholder, .smf-form .smf-item__col--controls .smf-select-control select:-ms-input-placeholder {
  color: #9a9a9a;
}
.smf-form .smf-item__col--controls input[type=text]::-ms-input-placeholder, .smf-form .smf-item__col--controls input[type=url]::-ms-input-placeholder, .smf-form .smf-item__col--controls input[type=email]::-ms-input-placeholder, .smf-form .smf-item__col--controls input[type=tel]::-ms-input-placeholder, .smf-form .smf-item__col--controls .smf-textarea-control__control::-ms-input-placeholder, .smf-form .smf-item__col--controls .smf-select-control select::-ms-input-placeholder {
  color: #9a9a9a;
}
.smf-form .smf-item__col--controls input[type=text]::placeholder,
.smf-form .smf-item__col--controls input[type=url]::placeholder,
.smf-form .smf-item__col--controls input[type=email]::placeholder,
.smf-form .smf-item__col--controls input[type=tel]::placeholder,
.smf-form .smf-item__col--controls .smf-textarea-control__control::placeholder,
.smf-form .smf-item__col--controls .smf-select-control select::placeholder {
  color: #9a9a9a;
}
.smf-form .smf-item__col--controls input[type=text]:focus, .smf-form .smf-item__col--controls input[type=text]:focus-within, .smf-form .smf-item__col--controls input[type=text]:hover,
.smf-form .smf-item__col--controls input[type=url]:focus,
.smf-form .smf-item__col--controls input[type=url]:focus-within,
.smf-form .smf-item__col--controls input[type=url]:hover,
.smf-form .smf-item__col--controls input[type=email]:focus,
.smf-form .smf-item__col--controls input[type=email]:focus-within,
.smf-form .smf-item__col--controls input[type=email]:hover,
.smf-form .smf-item__col--controls input[type=tel]:focus,
.smf-form .smf-item__col--controls input[type=tel]:focus-within,
.smf-form .smf-item__col--controls input[type=tel]:hover,
.smf-form .smf-item__col--controls .smf-textarea-control__control:focus,
.smf-form .smf-item__col--controls .smf-textarea-control__control:focus-within,
.smf-form .smf-item__col--controls .smf-textarea-control__control:hover,
.smf-form .smf-item__col--controls .smf-select-control select:focus,
.smf-form .smf-item__col--controls .smf-select-control select:focus-within,
.smf-form .smf-item__col--controls .smf-select-control select:hover {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-color: transparent;
  background-color: rgba(237, 237, 237, 0.5);
}
.smf-form .smf-item__col--controls input[type=text][data-invalid="1"],
.smf-form .smf-item__col--controls input[type=url][data-invalid="1"],
.smf-form .smf-item__col--controls input[type=email][data-invalid="1"],
.smf-form .smf-item__col--controls input[type=tel][data-invalid="1"],
.smf-form .smf-item__col--controls .smf-textarea-control__control[data-invalid="1"],
.smf-form .smf-item__col--controls .smf-select-control select[data-invalid="1"] {
  background-color: rgba(204, 48, 51, 0.1);
}
@media print, screen and (min-width:768px) {
  .smf-form .smf-item__col--controls .smf-textarea-control__control {
    font-size: 1.5rem;
  }
}
.smf-form .smf-item__col--controls .smf-select-control select {
  padding-right: 1.7em;
}
.smf-form .smf-item__col--controls .smf-select-control__toggle:before {
  top: calc(50% - 14px);
  height: 16px;
  width: 16px;
  border-color: #707070;
}
.smf-form .smf-item__col--controls .smf-select-control__control:focus + .smf-select-control__toggle:before {
  border-color: inherit;
}
.smf-form .smf-item__col--controls select option {
  font-size: inherit;
}
@media print, screen and (min-width:768px) {
  .smf-form__mailconfirmation {
    margin-top: -2em;
  }
}
@media print, screen and (min-width:768px) {
  .smf-form__textarea {
    margin-top: 5em;
  }
}
@media print, screen and (min-width:768px) {
  .smf-form__textarea .smf-item__col--label,
  .smf-form__textarea .smf-item__col--controls {
    vertical-align: top;
  }
}
@media print, screen and (min-width:768px) {
  .smf-form__textarea textarea {
    height: 265px;
  }
}
.smf-form__select {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .smf-form__select {
    max-width: 460px;
  }
}
.smf-form__select::after {
  position: absolute;
  top: 0.8em;
  right: 20px;
  content: "";
  width: 3.2vw;
  height: 3.2vw;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
}
@media print, screen and (min-width:768px) {
  .smf-form__select::after {
    width: 17px;
    height: 17px;
    top: 0.5em;
  }
}
.smf-form .smf-radio-buttons-control__control {
  margin: 1em 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:767px) {
  .smf-form .smf-radio-buttons-control__control {
    /*スマホのみ*/
    font-size: 16px;
    gap: 0.8em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media print, screen and (min-width:768px) {
  .smf-form .smf-radio-buttons-control__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    gap: 1.3em 7%;
  }
}
@media only screen and (max-width:767px) {
  .smf-form .smf-radio-buttons-control__control .smf-label {
    margin: 0 !important;
    display: block !important;
  }
}
@media print, screen and (min-width:768px) {
  .smf-form .smf-radio-buttons-control__control .smf-label {
    /*PCのみ*/
    margin: 0 !important;
  }
}
.smf-form .smf-radio-buttons-control__control .smf-label:hover, .smf-form .smf-radio-buttons-control__control .smf-label:focus, .smf-form .smf-radio-buttons-control__control .smf-label:focus-within {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #707070;
  background: none;
}
.smf-form .smf-radio-buttons-control__control .smf-label:hover .smf-radio-button-control__label:before, .smf-form .smf-radio-buttons-control__control .smf-label:focus .smf-radio-button-control__label:before, .smf-form .smf-radio-buttons-control__control .smf-label:focus-within .smf-radio-button-control__label:before {
  border-color: #707070;
  background-color: #fff;
}
.smf-form .smf-radio-buttons-control__control .smf-label label:active {
  background-color: transparent;
  /* またはお好みの色 */
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
  /* Webkitベースのブラウザ（AndroidのChromeを含む）でクリックしたときに背景が水色→完全透明 */
}
.smf-form .smf-radio-buttons-control__control .smf-radio-button-control {
  /*ボタンをテキストと中央揃いにする*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:767px) {
  .smf-form .smf-radio-buttons-control__control .smf-radio-button-control {
    height: 1.4em;
  }
}
.smf-form .smf-radio-buttons-control__control .smf-radio-button-control__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: inherit;
  line-height: 1;
  cursor: pointer;
  position: relative;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
@media print, screen and (min-width:768px) {
  .smf-form .smf-radio-buttons-control__control .smf-radio-button-control__label {
    font-size: 1.6rem;
  }
}
.smf-form .smf-radio-buttons-control__control .smf-radio-button-control__label:before {
  content: "";
  /* ボタンの横幅 */
  width: 1em;
  /* ボタンの縦幅 */
  height: 1em;
  margin-right: 1em;
  border: 1px solid #707070;
  border-radius: 50%;
}
.smf-form .smf-radio-buttons-control__control input[type=radio] {
  display: none;
}
.smf-form .smf-radio-buttons-control__control input[type=radio]:checked + .smf-radio-button-control__label:after {
  content: "";
  /* マークの横幅 */
  width: 0.6em;
  /* マークの縦幅 */
  height: 0.6em;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0.2em;
  bottom: 0;
  background-color: #707070;
  border-radius: 50%;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.smf-form__2column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.smf-form__2column .column {
  border-bottom: solid 1px #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 46.1538461538%;
  caret-color: transparent;
}
@media print, screen and (min-width:768px) {
  .smf-form__2column .column {
    /*PCのみ*/
    width: 47.7124183007%;
  }
}
.smf-form__2column .column > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  caret-color: transparent;
}
.smf-form__2column .column--name > div {
  width: calc(100% - 1.3rem - 0.5rem);
}
@media print, screen and (min-width:768px) {
  .smf-form__2column .column--name > div {
    /*PCのみ*/
    width: calc(100% - 1.4rem);
  }
}
.smf-form__2column .column--kana > div {
  width: calc(100% - 2.6rem);
}
@media print, screen and (min-width:768px) {
  .smf-form__2column .column--kana > div {
    /*PCのみ*/
    width: calc(100% - 2.8rem + 0.1rem);
  }
}
@media only screen and (max-width:767px) {
  .smf-form__2column .column > div {
    padding-bottom: 1px;
  }
}
.smf-form__mail .smf-item__col--controls {
  border-bottom: solid 1px #707070;
  padding: inherit;
}

/*プログレストラッカー------------*/
.smf-progress-tracker {
  margin: 0 auto 5em;
  font-size: 1.3rem;
}
@media print, screen and (min-width:768px) {
  .smf-progress-tracker {
    margin: 0 auto 7.5em;
    font-size: 1.4rem;
  }
}

.smf-progress-tracker__item:first-child {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.smf-progress-tracker__item:first-child:after {
  left: 0;
}
.smf-progress-tracker__item:last-child {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.smf-progress-tracker__item:last-child::before {
  right: 0;
}

/*送信ボタン=============（フォーム項目の外）*/
.snow-monkey-form .smf-action {
  margin: 2.5em auto 0;
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form .smf-action {
    /*PCのみ*/
    margin-top: 6em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.snow-monkey-form .smf-button-control__control {
  margin: auto;
  cursor: pointer;
  position: relative;
  display: block;
  color: #fff;
  border: 1px solid var(--color-main);
  background: var(--color-main);
  text-align: center;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1em 0.5em;
  letter-spacing: 0.15em;
  border-radius: 2em;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  /*ボタンを押し時のぐるぐる*/
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form .smf-button-control__control {
    width: 306px;
    font-size: 1.9rem;
    padding: 0.9em 0.5em;
    margin: 0 1em;
  }
}
.snow-monkey-form .smf-button-control__control::after {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5em;
  width: 0.5em;
  height: 0.5em;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
  -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form .smf-button-control__control:hover {
    /*PCのみ*/
    opacity: 1;
    background-color: #fff;
    color: var(--color-main);
  }
  .snow-monkey-form .smf-button-control__control:hover::after {
    border-color: var(--color-main);
  }
}
.snow-monkey-form .smf-button-control__control .smf-sending {
  z-index: 100;
  background-color: rgba(204, 204, 204, 0.8);
  border-radius: 50%;
}

/*フォーム 必須、任意*/
/*確認画面*/
/*エラー文-------------*/
.smf-form .smf-error-messages {
  color: #dd6e70;
}
@media only screen and (max-width:767px) {
  .smf-form {
    /*スマホのみ*/
  }
  .smf-form .smf-item .smf-error-messages {
    font-size: 90%;
  }
}
@media print, screen and (min-width:768px) {
  .smf-form .p-form__radio .smf-error-messages {
    width: 100%;
    margin-top: 0.5em;
  }
}

/*エラーメッセージ追加*/
.error-message {
  display: none;
  font-size: 105%;
  line-height: 1.54;
  color: #b70000;
  margin: -3em auto 3em;
}
@media print, screen and (min-width:768px) {
  .error-message {
    margin: -4.5em auto 6.2em;
  }
}

/*確認メッセージ追加*/
.confirm-message {
  display: none;
  margin: 0 auto 3em;
  line-height: 1.8;
  color: #000;
}
@media print, screen and (min-width:768px) {
  .confirm-message {
    margin: -2em auto 4em;
  }
}

/*入力画面・エラー画面--------------------
※フォーム内のみ有効　*/
.snow-monkey-form[data-screen=input] .u-only-confirm,
.snow-monkey-form[data-screen=invalid] .u-only-confirm,
.snow-monkey-form[data-screen=back] .u-only-confirm {
  display: none;
}

/*確認画面---------------------
※フォーム内のみ有効　*/
.snow-monkey-form[data-screen=confirm] {
  /*プログレストラッカー------------*/
  /*送信ボタン（戻る・送信する）=============（フォーム項目の外）*/
}
.snow-monkey-form[data-screen=confirm] .u-only-input {
  display: none;
}
@media only screen and (max-width:767px) {
  .snow-monkey-form[data-screen=confirm] .smf-item {
    /*スマホのみ*/
    margin-bottom: 3.8rem;
  }
}
.snow-monkey-form[data-screen=confirm] .p-form__radio {
  margin: 0.8em 0 0;
  display: block;
  font-size: inherit;
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form[data-screen=confirm] .p-form__radio {
    /*PCのみ*/
    margin: 0;
    line-height: 1;
  }
}
.snow-monkey-form[data-screen=confirm] .p-form__2column {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.snow-monkey-form[data-screen=confirm] .p-form__2column .column {
  border: none;
  width: auto;
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form[data-screen=confirm] .p-form__2column .column {
    /*PCのみ*/
    line-height: 1;
  }
}
.snow-monkey-form[data-screen=confirm] .p-form__2column .column + .column {
  margin-left: 1em;
}
.snow-monkey-form[data-screen=confirm] .p-form__2column .column > p {
  display: none;
}
.snow-monkey-form[data-screen=confirm] .p-form__2column .column > div {
  width: auto;
}
.snow-monkey-form[data-screen=confirm] .wp-block-columns.is-not-stacked-on-mobile > .wp-block-column {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.snow-monkey-form[data-screen=confirm] .p-form__mail .smf-item__col--controls {
  border: none;
  line-height: 1;
}
.snow-monkey-form[data-screen=confirm] .p-form__select::after {
  display: none;
}
.snow-monkey-form[data-screen=confirm] .p-form__textarea .smf-item__col--controls {
  line-height: 1.45;
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form[data-screen=confirm] .p-form__textarea .smf-item__col--controls {
    line-height: 1.75;
  }
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form[data-screen=confirm] .smf-progress-tracker {
    margin-bottom: 5.2em;
  }
}
.snow-monkey-form[data-screen=confirm] .smf-action .smf-button-control:first-of-type .smf-button-control__control {
  color: var(--color-main);
  background: #fff;
}
@media only screen and (max-width:767px) {
  .snow-monkey-form[data-screen=confirm] .smf-action .smf-button-control:first-of-type .smf-button-control__control {
    margin-bottom: 1em;
  }
}
.snow-monkey-form[data-screen=confirm] .smf-action .smf-button-control:first-of-type .smf-button-control__control::after {
  right: auto;
  left: 1.5em;
  border-color: var(--color-main);
  -webkit-transform: translateX(-25%) rotate(-135deg);
          transform: translateX(-25%) rotate(-135deg);
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form[data-screen=confirm] .smf-action .smf-button-control:first-of-type .smf-button-control__control:hover {
    /*PCのみ*/
    opacity: 1;
    background-color: var(--color-main);
    color: #fff;
  }
  .snow-monkey-form[data-screen=confirm] .smf-action .smf-button-control:first-of-type .smf-button-control__control:hover::after {
    border-color: #fff;
  }
}
@media only screen and (max-width:767px) {
  .snow-monkey-form[data-screen=confirm] .smf-action .smf-button-control + .smf-button-control {
    margin-left: auto;
  }
}

/*送信完了画面---------------------
※フォーム内のみ有効　*/
.snow-monkey-form[data-screen=complete] .u-only-input {
  display: none;
}
.snow-monkey-form[data-screen=complete] .u-only-confirm {
  display: none;
}

/*送信完了ページ*/
.snow-monkey-form[data-screen=complete] .wp-block-heading {
  font-size: min(5.0666666667vw, 2.28rem);
  font-weight: 300;
  line-height: 1.4736842105;
  letter-spacing: 0.09em;
  margin-top: 2em;
  margin-bottom: 1em;
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form[data-screen=complete] .wp-block-heading {
    margin-top: 3.6em;
    font-size: 2.4rem;
    letter-spacing: 0.14em;
  }
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form[data-screen=complete] .wp-block-heading br {
    display: none;
  }
}
.snow-monkey-form[data-screen=complete] p {
  font-size: min(3.7333333333vw, 1.68rem);
  font-weight: 300;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form[data-screen=complete] p {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.14em;
  }
}
.snow-monkey-form[data-screen=complete] .p-thanks__link {
  margin: 50px auto 0;
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form[data-screen=complete] .p-thanks__link {
    margin-top: 90px;
    max-width: 306px;
  }
}
@media only screen and (max-width:767px) {
  .snow-monkey-form[data-screen=complete] .p-thanks__link a {
    padding: 1.1em 0.1em 1.1em 0.5em;
  }
}
@media print, screen and (min-width:768px) {
  .snow-monkey-form[data-screen=complete] .p-thanks__link a {
    padding: 0.9em 1em 0.9em 0.7em;
  }
}
@media only screen and (max-width:767px) {
  .snow-monkey-form[data-screen=complete] .p-thanks__link .text {
    font-size: 1.6rem;
  }
}