@charset "utf-8";

:root {
  --pink: #f05870;
  --pink-soft: #efd0d4;
  --pink-pale: #f8eee8;
  --beige: #e8d9c4;
  --beige-soft: #f7f1e8;
  --beige-deep: #c4ae91;
  --brown: #5c4538;
  --brown-soft: #7a6458;
  --line: #e6dcd0;
  --line-dark: #d4c6b4;
  --gray: #b8a89a;
  --bg: #f7f1e8;
  --max: 980px;
  --main: 670px;
  --side: 270px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--brown);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.3rem;
  line-height: 1.7;
}

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

a {
  color: var(--pink);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

#wrapper {
  min-height: 100vh;
}

.inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.pink {
  color: var(--pink);
}

.bold {
  font-weight: 700;
}

.txtC {
  text-align: center;
}

.note {
  color: var(--brown-soft);
  font-size: 1.2rem;
}

.js-reveal {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== Header ========== */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 1.6rem 0;
}

.header-logo {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.header-logo:hover {
  text-decoration: none;
}

.header-badge {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0;
  border: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.site-logo {
  display: block;
  width: auto;
  height: auto;
}

.header-logo-img {
  width: min(220px, 100%);
  height: auto;
}

.side-logo-img {
  width: 100%;
  max-width: 220px;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  width: min(240px, 80%);
  margin: 0 auto 1.6rem;
}

.header-contact {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.1rem;
  text-align: left;
}

.header-contact-label {
  white-space: nowrap;
}

.header-contact .tel {
  display: inline;
  margin: 0;
  color: var(--pink);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 16rem;
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--pink);
  border-bottom-width: 4px;
  border-radius: 2px;
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.btn-contact:hover {
  background: var(--pink);
  color: #fff;
  text-decoration: none;
}

.ig-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  background: transparent;
  text-decoration: none;
}

.ig-link:hover {
  text-decoration: none;
  opacity: 0.7;
}

.ig-icon {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
}

.ig-link-menu {
  width: 100%;
  min-height: 4.8rem;
  gap: 0.8rem;
  color: var(--pink);
  font-weight: 700;
  font-size: 1.4rem;
}

.ig-link-contact {
  width: auto;
  min-width: 4.8rem;
  margin: 0 0 1rem 0.8rem;
  vertical-align: middle;
}

.side-bnr .instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 2px solid var(--pink);
  background: #fff;
  color: var(--pink);
}

.side-bnr .instagram .ig-icon {
  width: 2rem;
  height: 2rem;
}

.ig-link-page {
  width: 6.4rem;
  height: 6.4rem;
}

.ig-link-page .ig-icon {
  width: 3.2rem;
  height: 3.2rem;
}

.gnav-wrap {
  border-top: 5px solid var(--line-dark);
}

.gnav {
  display: flex;
}

.gnav > a {
  position: relative;
  display: block;
  flex: 1;
  padding: 2.2rem 0.4rem;
  color: var(--brown);
  font-weight: 700;
  text-align: center;
}

.gnav > a:hover,
.gnav > a.is-current {
  text-decoration: none;
}

.gnav > a:hover::before,
.gnav > a.is-current::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--pink);
}

.gnav > a.is-current::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border: 6px solid transparent;
  border-top-color: var(--pink);
  transform: translateX(-50%);
}

.menu-btn {
  display: none;
  flex-shrink: 0;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(92, 69, 56, 0.06);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  overflow: visible;
}

.menu-btn span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--brown);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}

.menu-btn span:nth-child(1) {
  top: 14px;
}

.menu-btn span:nth-child(2) {
  top: 21px;
}

.menu-btn span:nth-child(3) {
  top: 28px;
}

body.is-menu-open .menu-btn span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

body.is-menu-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .menu-btn span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.gnav-cta {
  display: none;
}

/* ========== Slider ========== */
.slider-wrap {
  position: relative;
  overflow: hidden;
  height: 100svh;
  min-height: 100svh;
  background: var(--beige-deep);
}

.slider {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.slide.is-active {
  opacity: 1;
}

.slide-1 {
  background-image:
    linear-gradient(100deg, rgba(92, 69, 56, 0.42), rgba(92, 69, 56, 0.18)),
    url("../images/1.jpg");
}

.slide-2 {
  background-image:
    linear-gradient(100deg, rgba(92, 69, 56, 0.42), rgba(92, 69, 56, 0.18)),
    url("../images/hero-slide2.jpg");
}

.slide-3 {
  background-image:
    linear-gradient(100deg, rgba(92, 69, 56, 0.42), rgba(92, 69, 56, 0.18)),
    url("../images/hero-slide3.jpg");
}

.slide-4 {
  background-image:
    linear-gradient(100deg, rgba(92, 69, 56, 0.42), rgba(92, 69, 56, 0.18)),
    url("../images/hero-slide4.jpg");
}

.slide-inner.inner,
.slide-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0 2.4rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.slide-label {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}

.slide-title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.slider-logo {
  position: absolute;
  left: 8%;
  bottom: 3.2rem;
  padding: 1rem 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  border-left: 6px solid var(--pink);
  color: var(--brown);
  font-size: 1.4rem;
  font-weight: 700;
}

.slider-dots {
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  display: flex;
  gap: 0.8rem;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--pink);
}

/* ========== Layout ========== */
.content-wrap {
  display: flex;
  gap: 40px;
  margin: 6rem auto 5rem;
}

.content-main {
  width: var(--main);
  min-width: 0;
}

#sidebar {
  width: var(--side);
  flex-shrink: 0;
}

.sec {
  margin-bottom: 6rem;
}

.title1 {
  margin-bottom: 2.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--pink);
  color: var(--brown);
  font-size: 2rem;
  font-weight: 700;
}

/* ========== Pickup ========== */
.top-lead {
  margin-bottom: 4rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
}

.pickup-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pickup-card p {
  color: var(--brown-soft);
  font-size: 1.25rem;
  text-align: justify;
}

.thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-1 {
  background: linear-gradient(145deg, #c4ae91, #f0d8d4);
}

.thumb-2 {
  background: linear-gradient(160deg, #a89078, #efd0d4);
}

.thumb-3 {
  background: linear-gradient(180deg, #c45c6a, #e8d9c4);
}

.thumb-4 {
  background: linear-gradient(200deg, #b89a82, #f7f1e8);
}

.thumb-5 {
  background: linear-gradient(135deg, #8b7355, #efd0d4);
}

.thumb span.thumb-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.pickup {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--pink);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pickup-title {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
}

/* ========== News tabs ========== */
.tab-list {
  display: flex;
  gap: 0.4rem;
}

.tab-list li {
  padding: 1rem 2.4rem;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--beige);
  cursor: pointer;
  font-weight: 700;
}

.tab-list li.is-active {
  background: #fff;
}

.tab-wrap {
  border: 1px solid var(--line);
  background: #fff;
}

.tab-panel {
  display: none;
  padding: 1.2rem 1.6rem;
}

.tab-panel.is-active {
  display: block;
}

.post-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px dotted var(--line);
}

.post-list a {
  color: var(--brown);
}

.cat {
  display: inline-block;
  min-width: 6.4rem;
  padding: 0.1rem 0.6rem;
  border-radius: 2px;
  color: #fff !important;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none !important;
}

.cat-news {
  background: var(--pink);
}

.cat-blog {
  background: var(--gray);
}

.home-date {
  margin-right: 0.8rem;
  color: var(--brown-soft);
}

/* ========== Greeting ========== */
.aisatsu {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.4rem;
}

.aisatsu-photo {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, rgba(196, 92, 106, 0.1), rgba(92, 69, 56, 0.16)),
    linear-gradient(160deg, #f7f1e8, #c4ae91);
}

.aisatsu-photo img,
.check-visual img,
.promise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aisatsu-name {
  margin-top: 0.8rem;
  text-align: left;
}

.aisatsu-txt {
  margin-bottom: 1.4rem;
  text-align: justify;
}

/* ========== Symptoms ========== */
.symptom-lead {
  margin-bottom: 2rem;
  color: var(--pink);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.symptom-copy {
  margin-bottom: 3rem;
  text-align: center;
}

.check-list li {
  margin-bottom: 2.4rem;
  padding: 0 0 0 1.6rem;
  border-left: 3px solid var(--pink);
}

.check-visual {
  display: none;
}

.btn-wrap {
  margin-top: 3rem;
  text-align: center;
}

.btn {
  display: inline-block;
  min-width: 22rem;
  padding: 1.2rem 2rem;
  border: 2px solid var(--pink);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12'%3E%3Cpath d='M1 1l5 5-5 5' fill='none' stroke='%23e61874' stroke-width='2'/%3E%3C/svg%3E") right 1.4rem center no-repeat;
  color: var(--pink);
  font-weight: 700;
  text-align: left;
  padding-left: 2rem;
}

.btn:hover {
  background-color: var(--pink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12'%3E%3Cpath d='M1 1l5 5-5 5' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
  color: #fff;
  text-decoration: none;
}

/* ========== Promises ========== */
.promise {
  margin-bottom: 4rem;
  padding: 3rem 4rem;
  background: var(--beige);
  border: 1px solid var(--beige-deep);
}

.promise-title {
  margin-bottom: 2.4rem;
  color: var(--pink);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.promise-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.promise-cont li {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 2rem;
  margin-bottom: 4rem;
}

.promise-cont li:nth-child(even) {
  grid-template-columns: 180px 1fr;
}

.promise-cont li:nth-child(even) .promise-text {
  order: 2;
}

.promise-cont-title {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--pink);
  font-size: 1.7rem;
  font-weight: 700;
}

.promise-photo {
  overflow: hidden;
  border-radius: 4px;
  min-height: 140px;
}

/* ========== Clinic / Access ========== */
.info-table th,
.info-table td {
  padding: 1.6rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.info-table th {
  width: 30%;
  background: var(--beige-soft);
  font-weight: 700;
}

.map-box {
  overflow: hidden;
  height: 320px;
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
  background: var(--beige-soft);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.disc {
  padding-left: 2rem;
}

.disc li {
  list-style: disc;
}

/* ========== Contact area ========== */
.contact-area {
  margin-top: 6rem;
  padding: 2.4rem 2rem;
  border: 2px solid var(--beige-deep);
  border-radius: 2px;
  background: linear-gradient(90deg, #fff, var(--beige-soft));
}

.contact-area-title {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.mb-text {
  margin-bottom: 2rem;
}

.contact-area-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ca-tel {
  margin-bottom: 1rem;
  color: var(--pink);
  font-size: 2.4rem;
  font-weight: 700;
}

.ca-list {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0.6rem 1rem;
}

.ca-list dt {
  font-weight: 700;
}

/* ========== Sidebar ========== */
.side-box {
  margin-bottom: 3.2rem;
}

.side-bnr a {
  display: block;
  margin-bottom: 1.2rem;
  padding: 1.6rem 1.2rem;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.side-bnr .web {
  background: linear-gradient(135deg, var(--pink), #a84a58);
}

.side-bnr .line {
  background: linear-gradient(135deg, #06c755, #05a847);
}

.side-bnr .phone {
  background: linear-gradient(135deg, var(--beige-deep), #8b7355);
}

.side-bnr .recruit {
  background: var(--beige-deep);
}

.side-bnr .blog {
  background: #8a6a64;
}

.side-list-title {
  padding: 0.8rem 0 0.8rem 1.4rem;
  border-bottom: 1px dotted var(--line);
  font-weight: 700;
}

.side-list-title::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.6rem;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--pink);
}

.side-link {
  padding: 1rem 0.4rem 1.6rem;
  border-bottom: 1px solid var(--line);
}

.side-link a {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--brown);
  font-size: 1.2rem;
}

.side-link a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.6rem;
  background: var(--pink);
}

.side-corp {
  overflow: hidden;
  border: 1px solid var(--line);
}

.side-corp-photo {
  height: 140px;
  background:
    linear-gradient(160deg, rgba(92, 69, 56, 0.12), rgba(92, 69, 56, 0.08)),
    url("../images/hero-about.jpg") center / cover no-repeat;
}

.side-corp-inner {
  padding: 1.6rem;
}

.side-points {
  margin-top: 1.2rem;
}

.side-points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.side-points li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 1rem;
}

/* ========== Footer ========== */
#footer {
  font-size: 1.2rem;
}

.footer-wrap {
  background: var(--beige-deep);
  color: #f7f1e8;
}

.footer-wrap a {
  color: #f7f1e8;
}

.footer-cont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2.4rem 0;
}

.footer-title {
  margin-bottom: 1rem;
  padding: 0.6rem;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--pink);
  font-weight: 700;
  text-align: center;
}

.footer-navi-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.footer-navi li {
  margin-bottom: 0.4rem;
}

.footer-info {
  padding: 2.4rem 0;
  text-align: center;
}

#page-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 11rem;
  padding: 1.2rem 0;
  border-radius: 0.5rem;
  background: var(--pink);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  z-index: 20;
}

#page-top:hover {
  background: var(--brown);
  text-decoration: none;
}

/* ========== Inner pages ========== */
.page-hero,
.page-title-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100svh;
  min-height: 100svh;
  margin-bottom: 0;
  padding: 0 2rem;
  background-color: var(--beige-deep);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.page-hero::before,
.page-title-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(92, 69, 56, 0.12) 20%, rgba(92, 69, 56, 0.55) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-title-wrap::after {
  display: none;
}

.page-title {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 4.2rem;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.page-lead {
  margin-bottom: 2.4rem;
  text-align: justify;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.menu-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
}

.menu-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.flow-step {
  margin-bottom: 3.2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line);
}

.flow-num {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.flow-title {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.price-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.price-inner {
  border: 1px solid #e3e2e1;
}

.price-inner h3 {
  padding: 1.4rem;
  border-bottom: 1px solid #e3e2e1;
  text-align: center;
  font-size: 1.5rem;
}

.price-inner ul,
.price-inner p {
  padding: 1.6rem;
}

.price-inner li {
  margin-bottom: 0.6rem;
}

.faq-item {
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
}

.faq-item summary {
  padding: 1.4rem 1.6rem;
  background: var(--beige-soft);
  font-weight: 700;
  cursor: pointer;
}

.faq-item p {
  padding: 1.4rem 1.6rem;
}

.form-table th,
.form-table td {
  padding: 1.2rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.form-table th {
  width: 18rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  max-width: 40rem;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.2rem;
  font-family: inherit;
  font-size: 1.4rem;
}

textarea {
  min-height: 14rem;
}

.form-submit {
  margin-top: 2rem;
}

.form-submit button {
  min-width: 20rem;
  padding: 1.2rem 2rem;
  border: 0;
  background: var(--pink);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

.news-item {
  display: block;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.news-item:hover {
  text-decoration: none;
}

.news-item h3 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1.7rem;
  font-weight: 700;
}

.article-meta {
  margin-bottom: 2rem;
  color: var(--brown-soft);
}

.placeholder-flag {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.1rem 0.5rem;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-size: 1rem;
  font-weight: 700;
  vertical-align: middle;
}

.hours-table {
  width: 100%;
  font-size: 1.2rem;
  text-align: left;
}

.hours-table th,
.hours-table td {
  padding: 0.6rem 0.2rem;
  border: 1px solid var(--line);
}

.hours-table th {
  width: 4rem;
  background: var(--beige-soft);
  text-align: center;
}

.hours-table .off {
  color: var(--pink);
}

@media (max-width: 980px) {
  body {
    min-width: 0;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  .inner {
    width: min(var(--max), calc(100% - 28px));
  }

  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(247, 241, 232, 0.96);
  }

  body.is-menu-open #header {
    height: 100svh;
    background: rgba(247, 241, 232, 0.98);
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    min-height: 5.8rem;
    padding: 0.8rem 0;
  }

  .header-badge {
    display: none;
  }

  .header-logo-img {
    width: 132px;
  }

  .header-contact {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    z-index: 40;
  }

  .gnav-wrap {
    flex: 1;
    min-height: 0;
    border-top: 0;
    overflow: hidden;
  }

  .gnav-wrap.is-open {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gnav,
  .gnav-wrap.is-open .gnav {
    display: none;
    flex-direction: column;
    width: min(var(--max), calc(100% - 28px));
    background: transparent;
  }

  .gnav-wrap.is-open .gnav {
    display: flex;
    padding: 0.8rem 0 3.2rem;
  }

  .gnav > a {
    padding: 1.5rem 0.4rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.5rem;
    text-align: left;
  }

  .gnav > a:hover::before,
  .gnav > a.is-current::before,
  .gnav > a.is-current::after {
    content: none;
  }

  .gnav > a.is-current {
    color: var(--pink);
  }

  .gnav-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    margin-top: 2.4rem;
  }

  .gnav-cta .btn-contact {
    width: 100%;
    min-width: 0;
    padding: 1.3rem 1.4rem;
    font-size: 1.4rem;
    text-align: center;
  }

  .gnav-tel {
    display: block;
    padding: 0.4rem 0 0.8rem;
    color: var(--pink);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
  }

  .slider-wrap,
  .page-hero,
  .page-title-wrap {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .slider {
    height: 100%;
    min-height: 0;
  }

  .slide-inner,
  .slide-inner.inner,
  .page-hero,
  .page-title-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .slide-label {
    font-size: 1.1rem;
  }

  .slide-title,
  .page-title {
    font-size: 2.2rem;
    line-height: 1.5;
  }

  .slider-logo {
    left: 1.6rem;
    right: auto;
    bottom: 6.4rem;
    max-width: calc(100% - 3.2rem);
    padding: 0.8rem 1.2rem;
    font-size: 1.2rem;
  }

  .slider-dots {
    right: auto;
    left: 50%;
    bottom: 2.4rem;
    transform: translateX(-50%);
  }

  .content-wrap {
    display: block;
    margin: 3.2rem auto 4rem;
  }

  .content-main,
  #sidebar {
    width: 100%;
  }

  #sidebar {
    margin-top: 4rem;
  }

  .sec {
    margin-bottom: 4.8rem;
  }

  .top-lead {
    margin-bottom: 2.8rem;
    font-size: 1.8rem;
  }

  .title1 {
    font-size: 1.8rem;
  }

  .pickup-list,
  .promise-list,
  .menu-grid,
  .price-box,
  .footer-cont,
  .contact-area-box,
  .aisatsu,
  .check-list li,
  .promise-cont li,
  .promise-cont li:nth-child(even),
  .flow-step,
  .footer-navi-wrap {
    grid-template-columns: 1fr;
  }

  .promise-cont li:nth-child(even) .promise-text {
    order: 0;
  }

  .contact-area {
    margin-top: 4rem;
    padding: 2rem 1.6rem;
  }

  .ca-tel {
    font-size: 2rem;
  }

  .footer-cont {
    gap: 2rem;
    padding: 2rem 0;
  }

  #page-top {
    width: 8rem;
    padding: 1rem 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header-logo-img {
    width: 112px;
  }

  .slide-title,
  .page-title {
    font-size: 1.9rem;
  }

  .top-lead {
    font-size: 1.6rem;
  }

  .slider-logo {
    display: none;
  }
}
