@charset "UTF-8";
/* リセットcss */
@import url(https://unpkg.com/ress/dist/ress.min.css);
/* Google Fonts */
@import url(https://fonts.googleapis.com);
@import url(https://fonts.gstatic.com);
@import url(https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap);

[hidden] {
  display: none !important;
}
/*
color-swatch ========================================*/
/*
breakpoint ==========================================================================*/
/*
font ========================================*/
/* Zen Old Mincho */
/* Zen Kaku Gothic */
/*
all ==========================================================================*/
/*
生花注文フォーム用CSS ==========================================================================*/
/*
* ◯主要カラーは /assets/_common.scss に記載しておりますので
* 以下のように使用していただけます。
* ・カラー適用例(#fffの場合)
* color: var.$white-color;
*
* ◯主要フォント(Zen Old Mincho、Zen Kaku Gothic New)も
* /assets/_common.scss に記載しておりますので
* 以下のように使用していただけます。
* ・Zen Kaku Gothic NewのBoldの場合
* @include var.Zen-Kaku-B;
* ・Zen Kaku Gothic NewのBlackの場合
* @include var.Zen-Kaku-BL;
*
* ◯レスポンシブ対応について
* 使いにくくなければ以下を使用していただけますと、指定のレスポンシブ域でスタイルを適用していただけます。
*
* 1024px以下
* @include var.pc {}
*
* 768px以下
* @include var.tab {}
*
* 550px以下
* @include var.sp {}
*/
:root {
  --unnamed-color-313131: #313131;
  --unnamed-color-c4a436: #C4A436;
  --unnamed-color-fffbf4: #FFFBF4;
  --unnamed-color-084b72: #084B72;
  --fs-base: clamp(16px, 1.5vw, 19px);
  --fs-heading-lg: clamp(28px, 3vw, 40px);
  --fs-heading-md: clamp(20px, 2vw, 24px);
  --fs-label: clamp(18px, 2vw, 24px);
  --fs-card: clamp(18px, 2vw, 24px);
  --fs-note: clamp(15px, 2vw, 18px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--unnamed-color-fffbf4);
  color: var(--unnamed-color-313131);
  line-height: 1.7;
  font-size: var(--fs-base);
}

.order-intro,
.order-selection-wrapper,
.section-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.order-intro__inner {
  width: 100%;
  max-width: 1110px;
}

.contact-progress {
  display: flex;
  justify-content: center;
  padding: 24px 24px 12px;
  margin-top: 20px;
  margin-bottom: 90px;
}

.contact-progress__inner {
  width: 100%;
  max-width: 1110px;
  display: flex;
  justify-content: center;
}

.contact-progress__inner img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  border-radius: 6px;
}

.contact-intro {
  padding-top: 12px;
}

.contact-intro__lead {
  margin: 0 auto 16px;
  max-width: 780px;
  text-align: center;
  font-size: clamp(14px, 2vw, 24px);
  font-family: "Zen Old Mincho", serif;
  line-height: 1.8;
}

.contact-required-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(14px, 2vw, 24px);
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
  margin: 24px auto 0;
  color: var(--unnamed-color-313131);
}

.contact-form-wrapper {
  margin-top: 80px;
}

.contact-form__body {
  display: flex;
  flex-direction: column;
}

.contact-form .form-field:last-of-type {
  margin-bottom: 0;
}

.contact-membership .radio-inline {
  flex-wrap: wrap;
}

.member-benefit-field .form-field__label,
.member-benefit-field .form-field__badge {
  display: none;
}

.member-benefit-field .form-field__control {
  grid-column: span 10;
  display: flex;
  justify-content: flex-end;
}

.member-benefit {
  border: none;
  width: 70%;
  max-width: 780px;
  margin-left: auto;
  display: flex;
  gap: 32px;
  align-items: center;
}

.member-benefit__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.member-benefit__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--unnamed-color-084b72);
  letter-spacing: 0.1em;
  text-align: center;
}

.member-benefit__list {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.member-benefit__item {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-benefit__badge {
  width: 133px;
  height: 133px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 75, 114, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  text-align: center;
}

.member-benefit__badge img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.member-benefit__badge span {
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--unnamed-color-313131);
  font-weight: 500;
  white-space: nowrap;
}

.member-benefit__certificate {
  width: 300px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-benefit__certificate img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media screen and (min-width: 960px) {
  .member-benefit {
    gap: 48px;
  }

  .member-benefit__list {
    justify-content: space-between;
    gap: 12px;
  }
}

.contact-privacy {
  margin-top: 80px;
}

.contact-privacy .privacy-box {
  margin-bottom: 64px;
}

.contact-privacy .submit-cta {
  margin-top: 0;
}
.contact-form .form-error-message {
  margin-top: 8px;
  font-size: 14px;
  color: #c94b4b;
  line-height: 1.5;
}

.contact-form .form-error-message--global {
  text-align: center;
  margin: 0 0 16px;
}

.contact-form .form-flash {
  border: 1px solid #2e7d32;
  background: #f1fff4;
  color: #1b5e20;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  text-align: center;
}

.contact-form .cta-button--secondary {
  background: transparent;
  border: 1px solid #084b72;
  color: #084b72;
  padding: 18px 48px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contact-form .is-readonly {
  pointer-events: none;
  opacity: 0.85;
  background-color: #f4f4f4 !important;
  color: #6b6b6b;
}

.submit-cta__button {
  display: inline-block;
}

.submit-cta button.submit-cta__button--confirm {
  margin: 24px auto 0;
  padding: 12px 48px;
  width: auto;
  background: var(--unnamed-color-c4a436);
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.08em;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.submit-cta__button--confirm span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.js-form .form-confirm-message {
  display: none;
  margin: 0 0 32px;
  padding: 32px 16px;
  background: var(--unnamed-color-084b72);
  border: 1px solid #063b5a;
  text-align: center;
  border-radius: 6px;
  box-shadow: inset 0 6px 12px rgba(0, 0, 0, 0.07);
}

.js-form .form-confirm-message__title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.15em;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}

.js-form .form-confirm-message__description {
  margin: 0;
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 0.08em;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.js-form[data-form-step="confirm"] .form-confirm-message {
  display: block;
}

.order-heading {
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--unnamed-color-084b72);
}

.order-heading::before,
.order-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--unnamed-color-084b72);
  display: block;
}

.order-heading h1 {
  margin: 0;
  font-size: var(--fs-heading-lg);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.order-intro__section {
  margin-bottom: 56px;
  text-align: center;
}

.order-intro__section h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: var(--fs-heading-lg);
  font-weight: 600;
  color: var(--unnamed-color-084b72);
  margin-bottom: 24px;
}

.order-intro__section p {
  font-size: var(--fs-note);
}

.order-intro__notes {
  margin-top: 56px;
  text-align: center;
}

.order-intro__notes h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: var(--fs-heading-lg);
  font-weight: 600;
  color: var(--unnamed-color-084b72);
  margin-bottom: 16px;
}

.order-intro__notes p {
  margin: 0;
  font-size: var(--fs-note);
}

.order-selection-wrapper {
  margin-top: 120px;
}

.section-wrapper {
  margin-top: 120px;
}

.section-wrapper:first-of-type {
  margin-top: 80px;
}

.order-selection {
  width: 100%;
  max-width: 1110px;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 21px;
  color: var(--unnamed-color-084b72);
  font-size: var(--fs-heading-md);
  font-weight: 600;
}

.section-title-row strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--unnamed-color-313131);
}

.badge,
.badge--small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(48px, 6vw, 70px);
  height: clamp(36px, 5vw, 50px);
  padding: 0 12px;
  background: var(--unnamed-color-c4a436);
  color: #fff;
  font-size: clamp(16px, 2.3vw, 24px);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.order-selection__divider {
  height: 2px;
  background: var(--unnamed-color-084b72);
  margin-bottom: 24px;
}

.flower-card-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.flower-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 8px;
}

.flower-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid #ddd;
  background: #fff;
}

.flower-card input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 12px 0 8px;
}

.flower-card__name {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: var(--fs-card);
}

.flower-card__price {
  margin: 4px 0 0;
  font-size: var(--fs-card);
}

.form-section input[type="radio"],
.order-selection input[type="radio"] {
  width: 18px;
  height: 18px;
}

.form-section {
  width: 100%;
  max-width: 1110px;
}

.section-wrapper + .section-wrapper {
  margin-top: 64px;
}

.form-section__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--unnamed-color-084b72);
  font-size: var(--fs-heading-md);
  font-weight: 600;
  margin-bottom: 12px;
}

.form-section__divider {
  height: 2px;
  background: var(--unnamed-color-084b72);
  margin-bottom: 32px;
}

.form-field {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 8px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.form-field__label, .form-field__label--long {
  grid-column: span 2;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--unnamed-color-313131);
  font-size: var(--fs-label);
}

.form-field__label--long {
  grid-column: span 3;
}

.form-field__badge {
  grid-column: span 1;
  align-self: flex-start;
  justify-self: center;
  width: 100%;
}

.form-field__control--short {
  grid-column: span 6;
  min-width: 0;
}

.form-field__control {
  grid-column: span 7;
  min-width: 0;
}

.dynamic-field {
  width: 100%;
  margin-top: 16px;
}

.is-hidden {
  display: none !important;
}

.form-field__control--long {
  grid-column: span 8;
  min-width: 0;
}

.form-field--no-badge .form-field__badge {
  visibility: hidden;
}

.form-field--no-badge .form-field__control {
  grid-column: span 8;
}

.form-field--offset .form-field__label {
  grid-column: 2 / span 2;
}

.form-field--offset .form-field__badge {
  grid-column: 4 / span 1;
}

.form-field--offset .form-field__control {
  grid-column: 5 / span 6;
}

.form-field--stack {
  align-items: flex-start;
}

.radio-inline {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: var(--fs-base);
}

.radio-inline label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.detail-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-inputs__item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  flex: 1;
}

.detail-inputs__label {
  min-width: 120px;
  font-weight: 600;
  color: var(--unnamed-color-084b72);
}

.text-input,
.textarea-input {
  width: 100%;
  border: 1px solid var(--unnamed-color-084b72);
  background: #fff;
  padding: 12px 16px;
  font-size: 19px;
  font-family: inherit;
  line-height: 1.5;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 20px;
}

.privacy-helper {
  margin-top: 32px;
}

.textarea-input {
  min-height: 180px;
  resize: vertical;
}

.text-input::placeholder,
.textarea-input::placeholder {
  color: #b8b8b8;
}

.select-wrapper {
  position: relative;
  width: 100%;
  margin-top: 16px;
}

.select-input {
  width: 100%;
  border: 1px solid var(--unnamed-color-084b72);
  background: #fff;
  padding: 12px 16px;
  font-size: var(--fs-base);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--unnamed-color-084b72);
  border-bottom: 2px solid var(--unnamed-color-084b72);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.form-note {
  font-size: var(--fs-note);
  color: #666;
  margin: 20px 0 0;
  line-height: 1.6;
}

.checkbox-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: var(--fs-note);
  margin: 32px 0 12px;
  text-align: center;
}

.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--unnamed-color-084b72);
  accent-color: var(--unnamed-color-084b72);
}

.privacy-title {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(24px, 3vw, 35px);
  font-weight: 600;
  color: var(--unnamed-color-084b72);
  margin: 0px 0 20px;
  letter-spacing: 0.1em;
}

.privacy-box {
  border: 2px solid var(--unnamed-color-084b72);
  padding: 20px;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
}

.submit-cta {
  margin: 40px auto 0;
  text-align: center;
}

.submit-cta button {
  appearance: none;
  border: none;
  padding: 28px 110px 16px;
  background: var(--unnamed-color-c4a436);
  color: #fff;
  cursor: pointer;
  width: 100%;
  max-width: 560px;
  border-radius: 999px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.submit-cta__note {
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: 0.08em;
}

.submit-cta__label {
  font-size: clamp(24px, 3vw, 47px);
  font-weight: 600;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.submit-cta__label::after {
  content: "";
  width: 40px;
  height: 14px;
  background-image: url(../img/top/arrow_r_w.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.submit-cta button.submit-cta__button--confirm::after {
  content: "";
  width: 20px;
  height: 13px;
  background-image: url(../img/top/arrow_r_w.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 8px;
}

.cta-note {
  margin-top: 24px;
  text-align: center;
  font-size: var(--fs-note);
  line-height: 1.8;
  color: var(--unnamed-color-313131);
  margin-bottom: 100px;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 24px;
  text-align: center;
}

.quantity-row__label {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: var(--fs-label);
}

.quantity-row__options {
  display: flex;
  align-items: center;
  gap: 24px;
}

.quantity-row__options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-card);
}

@media (min-width: 769px) {
  .radio-inline--column {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .mobile-required {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  
  .sp {
    display: block !important;
  }

  .contact-intro__lead {
    margin-bottom: 0;
  }

  .contact-required-note {
    margin-top: 8px;
  }

  .contact-progress {
    padding: 12px 12px 0;
    margin-top: 20px;
    margin-bottom: 45px;
  }

  .contact-progress__inner {
    max-width: 350px;
  }

  .contact-required-note {
    gap: 8px;
  }

  .contact-form-wrapper {
    margin-top: 48px;
  }

  .member-benefit-field .form-field__label,
  .member-benefit-field .form-field__badge {
    visibility: hidden;
  }

  .radio-inline--column--sp {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-wrapper + .section-wrapper {
    margin-top: 32px;
  }

  .section-title-row {
    align-items: centert;
    gap: 0px;
    margin-bottom: 12px;
  }

  .flower-card-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quantity-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  body {
    padding: 32px 0 60px;
  }

  .order-intro,
  .order-selection-wrapper,
  .section-wrapper {
    padding: 0 12px;
  }

  .order-selection-wrapper,
  .section-wrapper {
    margin-top: 60px;
  }

  .order-intro__section p,
  .order-intro__notes p {
    text-align: left;
  }

  .order-intro__section h2,
  .order-intro__notes h3 {
    font-size: 20px;
  }

  .flower-card-list {
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .flower-card {
    width: 30%;
  }

  .form-field {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .member-benefit-field .form-field__control {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .member-benefit {
    width: 100%;
    max-width: none;
    margin-left: 0;
    flex-direction: column;
    gap: 10px;
  }

  .member-benefit__list {
    justify-content: space-between;
  }

  .form-field__label,
  .form-field__badge,
  .form-field__control {
    grid-column: 1 / -1;
  }

  .form-field__label {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .form-field__badge {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }


  .radio-inline {
    flex-wrap: wrap;
    gap: 12px;
  }

  .badge,
  .badge,
  .badge--small {
    min-width: 24px;
    height: 17px;
    font-size: 12px;
    padding: 0 6px;
  }

  .checkbox-row {
    align-items: flex-start;
  }

  .privacy-box {
    max-height: none;
  }

  .quantity-row {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .detail-inputs__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-field__label {
    font-size: 14px;
  }

  .form-section__title-row {
    font-size: 16px;
  }
  
  .flower-card__price {
    font-size: 12px;
  }

  .section-title-row {
    font-size: 16px;
  }

  .privacy-box {
    height: 226px;
    font-size: 14px;
  }

  .submit-cta button {
    font-size: 24px;
    padding: 14px 50px;
  }

  .privacy-helper, .cta-note, .form-note {
    font-size: 12px;
  }

  .cta-note {
    margin-bottom: 60px;
  }

  .form-field__badge {
    display: none;
  }

  .member-benefit__badge img {
    width: 37px;
    height: 37px;
  }

  .member-benefit__badge {
    width: 106px;
    height: 106px;
  }

  .member-benefit__badge span {
    font-size: 10px;
  }

  .member-benefit__content {
    width: 100%;
  }

  .member-benefit__certificate {
    width: 100%;
    margin-top: 20px;
  }

  .submit-cta button.submit-cta__button--confirm,
  .submit-cta button.cta-button--secondary {
    padding: 12px 36px !important;
    margin-left: 0 !important;
    font-size: 20px !important;
  }
}

.submit-cta button.cta-button--secondary {
  background: transparent;
  border: 1px solid #084b72;
  padding: 12px 48px;
  color: #084b72;
  width: unset;
  margin-left: 20px;
}