@charset "UTF-8";
/* ==========================================================
   居酒屋 花いち — スタイル
   ターゲット：近くで店を探している新規のお客さん／50〜60代の男性
   → 文字を大きめ、コントラスト高め、押す場所を大きく
   配色は既存の花いちのイメージを踏襲（焦げ茶 × ゴールド × 花の赤）
   ========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 900px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.9;
  color: #2b2116;
  background-color: #faf6ec;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 600px) {
  body {
    padding-bottom: 74px;
  }
}

h1, h2, h3, p, ul, ol, dl, dd, figure {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #c0201c;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
a:hover {
  color: #97170f;
}

:focus-visible {
  outline: 3px solid #e8c97a;
  outline-offset: 2px;
}

.hana {
  color: #c0201c;
}

.nowrap {
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1000;
  padding: 12px 20px;
  color: #faf6ec;
  background-color: #1a0e06;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  color: #faf6ec;
}

.container {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
}
.container--narrow {
  width: min(100% - 40px, 760px);
}
@media screen and (max-width: 600px) {
  .container {
    width: calc(100% - 32px);
  }
  .container--narrow {
    width: calc(100% - 32px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  min-height: 52px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn--accent {
  color: #fff;
  background-color: #c0201c;
  border-color: #c0201c;
}
.btn--accent:hover {
  color: #fff;
  background-color: #97170f;
  border-color: #97170f;
}
.btn--outline {
  color: #e8c97a;
  background-color: transparent;
  border-color: #e8c97a;
}
.btn--outline:hover {
  color: #1a0e06;
  background-color: #e8c97a;
}
.btn--lg {
  min-height: 62px;
  padding: 16px 32px;
  font-size: 1.1875rem;
}
@media screen and (max-width: 600px) {
  .btn--lg {
    padding: 16px 12px;
  }
}
.btn--block {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .btn {
    width: 100%;
    font-size: 1.0625rem;
  }
}

.section {
  padding: 96px 0;
}
.section--dark {
  color: #f5e8c0;
  background-color: #1a0e06;
}
.section--form {
  color: #2b2116;
  background-color: #fff;
}
.section--washi {
  position: relative;
  color: #2b2116;
  background-color: #faf6ec;
  background-image: url("../images/washi-tile.jpg");
  background-repeat: repeat;
  background-size: 400px 400px;
}
.section--washi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/washi-tile.jpg");
  background-repeat: repeat;
  background-size: 400px 400px;
  background-position: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
}
.section--washi > .container {
  position: relative;
  z-index: 1;
}
.section--photo {
  position: relative;
  color: #f5e8c0;
  background-color: #1a0e06;
  background-image: url("../images/kanpai.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.section--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(26, 14, 6, 0.74);
}
.section--photo > .container {
  position: relative;
  z-index: 1;
}
@media (hover: hover) and (min-width: 901px) {
  .section--photo {
    background-attachment: fixed;
  }
}
@media screen and (max-width: 900px) {
  .section--photo {
    background-size: 100% auto;
    background-position: center top;
  }
  .section--photo::before {
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(26, 14, 6, 0.62) 0, rgba(26, 14, 6, 0.62) 45vw, rgba(26, 14, 6, 0.93) 62vw, #1a0e06 72vw);
  }
}
@media screen and (max-width: 600px) {
  .section {
    padding: 64px 0;
  }
}

.section__head {
  margin-bottom: 56px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .section__head {
    margin-bottom: 36px;
  }
}

.section__title {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 600px) {
  .section__title {
    font-size: 1.625rem;
  }
}

.section__desc {
  margin-top: 20px;
  font-size: 1.0625rem;
}
.section__desc strong {
  color: #c0201c;
}
.section--dark .section__desc strong, .section--photo .section__desc strong {
  color: #e8c97a;
}
@media screen and (max-width: 600px) {
  .section__desc {
    text-align: left;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #1a0e06;
  border-bottom: 3px solid #e8c97a;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
  padding: 12px 0;
}
@media screen and (max-width: 900px) {
  .header__inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 600px) {
  .header__inner {
    width: calc(100% - 24px);
    justify-content: space-between;
  }
}

.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}

.header__logo-main {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f5e8c0;
}
.header__logo-main .hana {
  color: #e04a3a;
  font-size: 1.08em;
}
@media screen and (max-width: 600px) {
  .header__logo-main {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 900px) {
  .gnav {
    order: 3;
    width: 100%;
    display: none;
  }
  .gnav.is-open {
    display: block;
  }
}

.gnav__list {
  display: flex;
  gap: 22px;
}
@media screen and (max-width: 900px) {
  .gnav__list {
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
    border-top: 1px solid rgba(232, 201, 122, 0.4);
  }
  .gnav__list li + li {
    border-top: 1px solid rgba(245, 232, 192, 0.15);
  }
}
.gnav__list a {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f5e8c0;
  text-decoration: none;
  white-space: nowrap;
}
.gnav__list a:hover {
  color: #e8c97a;
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  .gnav__list a {
    display: block;
    padding: 16px 4px;
    font-size: 1.0625rem;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 900px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 60px;
    min-height: 48px;
    padding: 6px 10px;
    color: #f5e8c0;
    background-color: transparent;
    border: 1px solid rgba(232, 201, 122, 0.6);
    border-radius: 6px;
    cursor: pointer;
  }
}

.hamburger__bars {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}
.hamburger__bars::before, .hamburger__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  transition: top 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hamburger__bars::before {
  top: 0;
  box-shadow: 0 7px 0 currentColor;
}
.hamburger__bars::after {
  top: 14px;
}
[aria-expanded=true] .hamburger__bars::before {
  top: 7px;
  box-shadow: none;
  transform: rotate(45deg);
}
[aria-expanded=true] .hamburger__bars::after {
  top: 7px;
  transform: rotate(-45deg);
}

.hamburger__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .header__cta {
    display: none;
  }
}

.header__tel {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .header__tel {
    display: none;
  }
}

.header__tel-label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: #e8c97a;
}

.header__tel-num {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5e8c0;
}

.header__btn {
  min-height: 46px;
  padding: 8px 20px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 900px) {
  .header__btn {
    width: auto;
  }
}

.hero {
  position: relative;
  color: #f5e8c0;
  background-color: #1a0e06;
}
@media (min-width: 901px) {
  .hero {
    display: flex;
    align-items: center;
    min-height: 68vh;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 14, 6, 0.95) 0%, rgba(26, 14, 6, 0.88) 50%, rgba(26, 14, 6, 0.6) 100%);
}
@media screen and (max-width: 900px) {
  .hero__media {
    position: relative;
    height: 240px;
  }
  .hero__media::after {
    background: rgba(26, 14, 6, 0.35);
  }
}

.hero__body {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
  padding: 92px 0 84px;
}
@media screen and (max-width: 900px) {
  .hero__body {
    padding: 48px 0 56px;
  }
}
@media screen and (max-width: 600px) {
  .hero__body {
    width: calc(100% - 32px);
    padding: 36px 0 48px;
  }
}

.hero__title {
  max-width: 20em;
  margin-bottom: 24px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 900px) {
  .hero__title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 600px) {
  .hero__title {
    font-size: 1.75rem;
  }
}

.hero__title-strong {
  color: #e8c97a;
}

.hero__text {
  max-width: 34em;
  margin-bottom: 28px;
  font-size: 1.125rem;
}
@media screen and (max-width: 600px) {
  .hero__text {
    font-size: 1.0625rem;
  }
}

.hero__note {
  margin-top: 8px;
  font-size: 0.9375rem;
  color: rgba(245, 232, 192, 0.9);
}

.about {
  max-width: 860px;
  margin-inline: auto;
}

.about__media {
  margin-bottom: 44px;
}
@media screen and (max-width: 600px) {
  .about__media {
    margin-bottom: 32px;
  }
}

.about__body {
  max-width: 740px;
  margin-inline: auto;
}

.about__text {
  font-size: 1.0625rem;
}
.about__text + .about__text {
  margin-top: 1.4em;
}

.about__facts {
  margin-top: 32px;
  padding-top: 24px;
  font-size: 1rem;
  color: #6b5c49;
  border-top: 1px solid #ded2b8;
}

.slider__list {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 6px;
  overflow: hidden;
}

.slider__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s;
}
.slider__item.is-current {
  opacity: 1;
}
.slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider__dots {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.slider__dot {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.slider__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  background-color: transparent;
  border: 1px solid #6b5c49;
  border-radius: 50%;
  transition: background-color 0.2s, border-color 0.2s;
}
.slider__dot:hover::before {
  border-color: #c0201c;
}
.slider__dot.is-current::before {
  background-color: #c0201c;
  border-color: #c0201c;
}

.about__caption {
  margin-top: 6px;
  font-size: 0.9375rem;
  color: #6b5c49;
}
.about__caption small {
  font-size: 0.875rem;
}

.menu__pickup {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 48px;
  padding: 24px 28px;
  background-color: rgba(232, 201, 122, 0.1);
  border: 2px solid #e8c97a;
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  .menu__pickup {
    padding: 18px 16px;
  }
}

.menu__pickup-label {
  padding: 4px 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a0e06;
  background-color: #e8c97a;
  border-radius: 100px;
}

.menu__pickup-name {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #e8c97a;
}
@media screen and (max-width: 600px) {
  .menu__pickup-name {
    font-size: 1.375rem;
  }
}

.menu__pickup-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8c97a;
}

.menu__pickup-text {
  flex: 1 1 100%;
  font-size: 1rem;
}

.menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media screen and (max-width: 600px) {
  .menu {
    grid-template-columns: 1fr;
  }
}

.menu__group-title {
  margin-bottom: 16px;
  padding-bottom: 10px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #e8c97a;
  border-bottom: 1px solid rgba(232, 201, 122, 0.5);
}

.menu__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(245, 232, 192, 0.25);
}
.menu__item dt {
  flex: 1 1 auto;
  font-size: 1rem;
}
.menu__item dd {
  flex: 0 0 auto;
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
  color: #e8c97a;
}

.menu__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 56px auto 0;
}
@media screen and (max-width: 600px) {
  .menu__photos {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.menu__photo img {
  width: 100%;
  border: 1px solid rgba(232, 201, 122, 0.4);
  border-radius: 6px;
}
.menu__photo figcaption {
  margin-top: 10px;
  font-size: 0.9375rem;
  text-align: center;
  color: rgba(245, 232, 192, 0.85);
}

.menu__cats {
  margin-bottom: 14px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.375rem;
  line-height: 2;
  text-align: center;
  color: #e8c97a;
}
@media screen and (max-width: 600px) {
  .menu__cats {
    font-size: 1.125rem;
  }
}

.menu__note {
  margin-bottom: 40px;
  font-size: 1rem;
  text-align: center;
}

.menu__more {
  text-align: center;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 64px;
}
@media screen and (max-width: 600px) {
  .page-nav {
    flex-direction: column;
    gap: 12px;
  }
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
@media screen and (max-width: 900px) {
  .plans {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.plan {
  position: relative;
  padding: 36px 32px;
  color: #2b2116;
  background-color: #fff;
  border: 2px solid #ded2b8;
  border-radius: 6px;
}
.plan--recommend {
  border-color: #c0201c;
  border-width: 3px;
}
@media screen and (max-width: 600px) {
  .plan {
    padding: 32px 20px;
  }
}

.plan__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  background-color: #c0201c;
  border-radius: 100px;
}

.plan__name {
  margin-bottom: 8px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.plan__price {
  margin-bottom: 4px;
  font-weight: 700;
  text-align: center;
  color: #c0201c;
}

.plan__num {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 2.75rem;
  line-height: 1.2;
}

.plan__price--text {
  padding: 8px 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.5rem;
  line-height: 1.6;
}

.plan__tax {
  font-size: 1.25rem;
}

.plan__time {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px dashed #ded2b8;
}

.plan__detail {
  margin-bottom: 20px;
}
.plan__detail li {
  position: relative;
  padding-left: 1.4em;
  font-size: 1.0625rem;
}
.plan__detail li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #c0201c;
}
.plan__detail li strong {
  color: #c0201c;
}

.plan__note {
  padding-top: 16px;
  font-size: 0.9375rem;
  color: #6b5c49;
  border-top: 1px dashed #ded2b8;
}

.enkai__note {
  padding: 36px 40px;
  color: #2b2116;
  background-color: #fff;
  border-top: 4px solid #1a0e06;
  border-radius: 6px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .enkai__note {
    padding: 24px 20px;
  }
}

.enkai__note-title {
  margin-bottom: 20px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .enkai__note-title {
    font-size: 1.25rem;
  }
}

.enkai__note-list {
  width: fit-content;
  margin: 0 auto 28px;
  text-align: left;
}
.enkai__note-list li {
  position: relative;
  padding-left: 1.6em;
}
.enkai__note-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  color: #c0201c;
}
.enkai__note-list li strong {
  color: #c0201c;
}

.access {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .access {
    grid-template-columns: 1fr;
  }
}

.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 6px;
}
@media screen and (max-width: 900px) {
  .access__map iframe {
    min-height: 320px;
  }
}

.info__row {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 232, 192, 0.25);
}
.info__row:first-child {
  border-top: 1px solid rgba(245, 232, 192, 0.25);
}
.info__row dt {
  font-weight: 700;
  color: #e8c97a;
}
.info__row dd {
  margin: 0;
}
.info__row a {
  color: #e8c97a;
}
.info__row a:hover {
  color: #fff;
}
@media screen and (max-width: 600px) {
  .info__row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.info__tel {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.form {
  padding: 40px;
  background-color: #fff;
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  .form {
    padding: 24px 18px;
  }
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__row {
  margin-bottom: 24px;
}
.form__row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .form__row--half {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.form__row--check {
  padding: 18px 20px;
  background-color: #faf6ec;
  border-radius: 6px;
}

.form__fieldset {
  padding: 0;
  border: none;
}

.form__label {
  display: block;
  margin-bottom: 8px;
  padding: 0;
  font-weight: 700;
}

.form__req {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: middle;
  color: #fff;
  background-color: #c0201c;
  border-radius: 4px;
}

.form__input {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #2b2116;
  background-color: #fff;
  border: 2px solid #ded2b8;
  border-radius: 6px;
  transition: border-color 0.2s;
}
.form__input:focus {
  border-color: #1a0e06;
}
.form__input[aria-invalid=true] {
  border-color: #b3261e;
  background-color: #fdf4f3;
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__help {
  margin-top: 6px;
  font-size: 0.875rem;
  color: #6b5c49;
}

.form__error {
  margin-top: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #b3261e;
}
.form__error:empty {
  display: none;
}

.form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form__radio,
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form__radio input,
.form__check input {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin: 4px 0 0;
  accent-color: #c0201c;
}

.form__radio {
  align-items: center;
  padding: 10px 18px;
  border: 2px solid #ded2b8;
  border-radius: 6px;
}
.form__radio input {
  margin-top: 0;
}
.form__radio:hover {
  border-color: #1a0e06;
}

.form__result {
  margin-bottom: 20px;
  padding: 16px 18px;
  font-weight: 700;
  border-radius: 6px;
}
.form__result:empty {
  display: none;
}
.form__result.is-error {
  color: #b3261e;
  background-color: #fdf4f3;
  border: 2px solid #b3261e;
}
.form__result.is-success {
  color: #1b5e35;
  background-color: #f0f8f2;
  border: 2px solid #1b5e35;
}

.form__submit {
  margin-top: 32px;
  text-align: center;
}

.form__note {
  margin-top: 16px;
  font-size: 0.9375rem;
}

.faq__item {
  margin-bottom: 12px;
  background-color: #fff;
  border: 2px solid #ded2b8;
  border-radius: 6px;
}
.faq__item[open] {
  border-color: #1a0e06;
}

.faq__q {
  position: relative;
  padding: 18px 56px 18px 22px;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 14px;
  height: 14px;
  margin-top: -9px;
  border-right: 3px solid #c0201c;
  border-bottom: 3px solid #c0201c;
  transform: rotate(45deg);
  transition: transform 0.2s;
}
[open] > .faq__q::after {
  margin-top: -3px;
  transform: rotate(-135deg);
}
.faq__q:hover {
  background-color: #faf6ec;
}

.faq__a {
  padding: 0 22px 20px;
  border-top: 1px dashed #ded2b8;
}
.faq__a p {
  padding-top: 16px;
}

.footer {
  padding: 56px 0 32px;
  color: #f5e8c0;
  background-color: #1a0e06;
  border-top: 3px solid #e8c97a;
}
.footer a {
  color: #f5e8c0;
}
.footer a:hover {
  color: #e8c97a;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 232, 192, 0.2);
}
@media screen and (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer__logo {
  margin-bottom: 12px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e8c97a;
}
.footer__logo .hana {
  color: #e04a3a;
  font-size: 1.08em;
}

.footer__addr {
  margin-bottom: 12px;
  font-size: 0.9375rem;
}

.footer__tel {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
}

.footer__sns {
  margin-top: 8px;
  font-size: 0.9375rem;
}

.footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
@media screen and (max-width: 900px) {
  .footer__list {
    gap: 10px 18px;
  }
}
.footer__list a {
  font-size: 0.9375rem;
}

.footer__copy {
  padding-top: 24px;
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(245, 232, 192, 0.8);
}

.fixed-cta {
  display: none;
}
@media screen and (max-width: 600px) {
  .fixed-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background-color: rgba(26, 14, 6, 0.96);
  }
}

.fixed-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 8px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
}
.fixed-cta__btn--tel {
  color: #1a0e06;
  background-color: #e8c97a;
}
.fixed-cta__btn--form {
  color: #fff;
  background-color: #c0201c;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition-duration: 0.01ms !important;
  }
  .section--photo {
    background-attachment: scroll !important;
  }
}
