@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;
}

.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);
}

.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: 60px 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: 0 64px 0 48px;
  background: var(--unnamed-color-c4a436);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.1em;
  cursor: pointer;
  max-width: 360px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.submit-cta button:not(.cta-button--secondary)::after {
  content: "";
  width: 21px;
  height: 7px;
  background-image: url(../img/top/arrow_r_w.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.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;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}

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

  .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;
  }

  .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;
  }

  .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: none;
  }


  .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;
  }

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

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

.flower-form .form-error-message {
  margin-top: 8px;
  font-size: 14px;
  color: #c94b4b;
  line-height: 1.5;
}

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

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

.flower-form .cta-button {
  appearance: none;
  border: none;
  padding: 21px 50px ;
  background: var(--unnamed-color-c4a436);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.flower-form .cta-button--secondary {
  background: transparent;
  border: 1px solid #084b72;
  color: #084b72;
}

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

.flower-form .submit-cta {
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.js-form .form-confirm-message {
  display: none;
  margin: 32px 0;
  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;
}