@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.about__img,
.service-photo img {
  width: 100%;
  height: auto;
}

a {
  color: #b07050;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
a:hover {
  color: #3a8f82;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-align: center;
}
.btn--primary {
  background: #b07050;
  color: #fff;
  border-color: #b07050;
}
.btn--primary:hover {
  background: #3a8f82;
  border-color: #3a8f82;
  color: #fff;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: #b07050;
  border-color: #b07050;
}
.btn--outline:hover {
  background: #fdf5f0;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.btn--submit {
  width: 100%;
  font-size: 16px;
  padding: 16px;
}

.photo-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  background: #f5ede6;
  border: 2px dashed #d8edea;
  border-radius: 14px;
  min-height: 200px;
  color: #777777;
  text-align: center;
  padding: 24px;
}
.photo-placeholder span {
  font-size: 32px;
}
.photo-placeholder p {
  font-size: 13px;
  line-height: 1.6;
}
.photo-placeholder small {
  font-size: 11px;
  color: #aaa;
}

.section {
  padding: 72px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  color: #b07050;
  margin-bottom: 4px;
}
.section-sub {
  font-size: 13px;
  color: #bbb;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#b07050),
    to(#f0956a)
  );
  background: linear-gradient(90deg, #b07050, #f0956a);
  border-radius: 2px;
  margin: 0 auto;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #d8edea;
  backdrop-filter: blur(6px);
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.navbar.scrolled {
  -webkit-box-shadow: 0 2px 16px rgba(176, 112, 80, 0.1);
  box-shadow: 0 2px 16px rgba(176, 112, 80, 0.1);
}

.nav-inner {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  max-width: 1040px;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 768px) {
  .nav-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 12px;
  }
}

.nav-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #b07050;
  font-weight: 700;
  font-size: 14px;
}
.nav-logo__img {
  height: 60px;
  width: auto;
}
.nav-logo__text {
  font-family: "Shippori Mincho", serif;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .nav-logo__text {
    display: none;
  }
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 13px;
  color: #555;
  padding: 20px 12px;
  border-radius: 9999px;
  white-space: nowrap;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-links a:hover {
  background: #fdf5f0;
  color: #b07050;
}
.nav-links .nav-contact-btn {
  background: #b07050;
  color: #fff !important;
}
.nav-links .nav-contact-btn:hover {
  background: #3a8f82 !important;
}
@media (max-width: 768px) {
  .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid #d8edea;
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease,
      visibility 0.25s;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    gap: 20px;
  }
  .nav-links a {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    padding: 14px 16px;
    border-radius: 8px;
    border-bottom: 1px solid #f5e0d0;
    letter-spacing: 0.03em;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links a:hover {
    background: #fdf5f0;
    color: #b07050;
  }
  .nav-links .nav-contact-btn {
    margin-top: 8px;
    text-align: center;
    border-bottom: none !important;
    border-radius: 9999px !important;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 998;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}

.nav-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #b07050;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.nav-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  min-height: 100vh;
  background: linear-gradient(
    150deg,
    #fff9f5 0%,
    #fef0e6 35%,
    #fce8f4 70%,
    #f0eafc 100%
  );
  padding: 80px 16px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bg-circles .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}
.hero__bg-circles .c1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #f0956a 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
@media (max-width: 768px) {
  .hero__bg-circles .c1 {
    width: 220px;
    height: 220px;
    right: -60px;
    top: -60px;
  }
}
.hero__bg-circles .c2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #9b7fd4 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}
@media (max-width: 768px) {
  .hero__bg-circles .c2 {
    width: 180px;
    height: 180px;
    left: -40px;
    bottom: -40px;
  }
}
.hero__bg-circles .c3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #b07050 0%, transparent 70%);
  top: 40%;
  left: 40%;
  opacity: 0.1;
}
.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}
.hero__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 768px) {
  .hero__text {
    text-align: center;
  }
}
.hero__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .hero__badges {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.hero__title {
  font-family: "Shippori Mincho", serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 16px;
}
.hero__title em {
  font-style: normal;
  color: #b07050;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 26px;
  }
}
.hero__sub {
  font-size: 15px;
  color: #777777;
  margin-bottom: 28px;
  line-height: 1.8;
}
.hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.hero__flower {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 340px;
  flex: 0 0 340px;
  height: 340px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero__flower {
    width: 280px;
    height: 280px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
  }
}
@media (max-width: 768px) {
  .hero__flower {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    max-width: 260px;
    width: 260px;
    height: 260px;
    -ms-flex: 0 0 260px;
    flex: 0 0 260px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 40px;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.badge {
  display: inline-block;
  background: #fff;
  border: 1px solid #d8edea;
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 12px;
  color: #b07050;
  font-weight: 500;
}

.infobar {
  background: #b07050;
  color: #fff;
}
.infobar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1040px;
  margin: 0 auto;
}
.infobar__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 200px;
}
.infobar__item:last-child {
  border-right: none;
}
.infobar__item small {
  display: block;
  font-size: 11px;
  opacity: 0.75;
}
.infobar__item p {
  font-size: 14px;
  font-weight: 500;
}
.infobar__item a {
  color: #fff;
}
.infobar__item a:hover {
  text-decoration: underline;
  color: #fff;
}
.infobar__icon {
  font-size: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.about {
  background: #ffffff;
}
.about__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .about__main {
    grid-template-columns: 1fr;
  }
}
.about__photo {
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 32px rgba(176, 112, 80, 0.12);
  box-shadow: 0 8px 32px rgba(176, 112, 80, 0.12);
}
.about__img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
}
.about__heading {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  color: #b07050;
  margin-bottom: 16px;
  line-height: 1.6;
}
.about p {
  color: #777777;
  margin-bottom: 12px;
}
.about__info-list {
  margin-top: 20px;
  border-top: 1px solid #d8edea;
  padding-top: 16px;
}
.about__info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f5ede6;
  font-size: 14px;
}
.about__info-list li strong {
  color: #b07050;
  min-width: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.strength-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .strength-cards {
    grid-template-columns: 1fr;
  }
}

.strength-card {
  background: #ffffff;
  border: 1px solid #d8edea;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s,
    -webkit-box-shadow 0.2s;
}
.strength-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(176, 112, 80, 0.14);
  box-shadow: 0 8px 24px rgba(176, 112, 80, 0.14);
}
.strength-card__icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.strength-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #b07050;
  margin-bottom: 8px;
}
.strength-card p {
  font-size: 13px;
  color: #777777;
}

.services {
  background: #fdf5f0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid #d8edea;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s,
    -webkit-box-shadow 0.2s;
}
.service-card:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 20px rgba(176, 112, 80, 0.12);
  box-shadow: 0 6px 20px rgba(176, 112, 80, 0.12);
}
.service-card__icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.service-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #b07050;
  margin-bottom: 6px;
}
.service-card__desc {
  font-size: 12px;
  color: #777777;
  line-height: 1.6;
}

.service-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .service-photos {
    grid-template-columns: 1fr;
  }
}

.service-photo {
  border-radius: 14px;
  overflow: hidden;
}
.service-photo img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.service-photo img:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.service-photo__label {
  text-align: center;
  font-size: 13px;
  color: #777777;
  padding: 8px 0 4px;
}

.flow {
  background: #f3eff9;
}

.flow-steps {
  max-width: 640px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
.flow-step__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #b07050;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.flow-step__body {
  padding-top: 4px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flow-step__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #b07050;
  margin-bottom: 4px;
}
.flow-step__body p {
  font-size: 13px;
  color: #777777;
  line-height: 1.7;
}

.flow-arrow {
  text-align: center;
  color: #f0956a;
  font-size: 20px;
  margin: -4px 0;
}

.recruit {
  background: #ffffff;
}

.recruit-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(135deg, #fdf5f0, #fce8f0);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #d8edea;
}
@media (max-width: 1024px) {
  .recruit-box {
    grid-template-columns: 1fr;
  }
}
.recruit-box__photo {
  border-radius: 14px;
  overflow: hidden;
}
.recruit-box__photo img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
}
.recruit-box__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #b07050;
  margin-bottom: 12px;
}
.recruit-box__content p {
  font-size: 14px;
  color: #777777;
  margin-bottom: 16px;
  line-height: 1.8;
}

.recruit-list {
  margin: 16px 0;
}
.recruit-list li {
  font-size: 14px;
  color: #333333;
  padding: 6px 0;
  border-bottom: 1px solid #d8edea;
}

.recruit-note {
  font-size: 12px !important;
  color: #aaa !important;
  margin-bottom: 20px !important;
}

.contact {
  background: #fdf5f0;
}

.contact-intro {
  text-align: center;
  color: #777777;
  margin-bottom: 36px;
  font-size: 14px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid #d8edea;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d8edea;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  background: #ffffff;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b07050;
  -webkit-box-shadow: 0 0 0 3px rgba(176, 112, 80, 0.12);
  box-shadow: 0 0 0 3px rgba(176, 112, 80, 0.12);
}
.form-group textarea {
  height: 130px;
  resize: vertical;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23b07050' d='M8 10L4 6h8l-4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.required {
  background: #e55;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 400;
  vertical-align: middle;
}

.contact-sns {
  text-align: center;
  margin-top: 32px;
}
.contact-sns p {
  font-size: 13px;
  color: #777777;
  margin-bottom: 12px;
}

.insta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff !important;
  border-radius: 14px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.insta-btn:hover {
  opacity: 0.88;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.footer {
  background: #b07050;
  color: #ccc;
}
.footer__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 24px 20px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__brand h3 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 12px;
  font-family: "Shippori Mincho", serif;
}
.footer__brand address {
  font-size: 13px;
  line-height: 2;
}
.footer__brand address a {
  color: #ccc;
}
.footer__brand address a:hover {
  color: #f5c6a0;
}
.footer__col h4 {
  font-size: 13px;
  color: #f5c6a0;
  margin-bottom: 12px;
  font-weight: 700;
}
.footer__col li {
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 13px;
  color: #bbb;
}
.footer__col a:hover {
  color: #f5c6a0;
}
.footer__bottom {
  border-top: 1px solid #5a4030;
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #bbb;
}

.flower-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.flower-center {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #b07050;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 4px 20px rgba(176, 112, 80, 0.3);
  box-shadow: 0 4px 20px rgba(176, 112, 80, 0.3);
  z-index: 2;
}
.flower-center span {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
}
.flower-center small {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.petal-item {
  position: absolute;
  width: 110px;
  height: 74px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  padding: 8px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.petal-item:hover {
  -webkit-transform: scale(1.08) !important;
  transform: scale(1.08) !important;
}
.petal-item .petal-name {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  display: block;
}
.petal-item .petal-sub {
  font-size: 9px;
  opacity: 0.75;
  display: block;
  margin-top: 2px;
  line-height: 1.2;
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease,
    -webkit-transform 0.6s ease;
}
.fade-up.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.map-trigger {
  position: relative;
  display: inline-block;
  cursor: default;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 3px;
}
.footer .map-trigger {
  text-decoration-color: rgba(176, 112, 80, 0.4);
}

.map-popup {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(6px);
  transform: translateX(-50%) translateY(6px);
  background: #ffffff;
  color: #b07050 !important;
  border: 2px solid #d8edea;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.6;
  text-align: center;
  -webkit-box-shadow: 0 6px 24px rgba(176, 112, 80, 0.2);
  box-shadow: 0 6px 24px rgba(176, 112, 80, 0.2);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.22s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.22s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transition: opacity 0.22s ease, transform 0.22s ease,
    -webkit-transform 0.22s ease;
  z-index: 500;
  text-decoration: none !important;
}
.map-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #d8edea;
}
.map-popup::before {
  content: "";
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #ffffff;
  z-index: 1;
}
.map-popup small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #aaa;
  margin-top: 3px;
}

.map-trigger:hover .map-popup,
.map-popup:hover {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  color: #3a8f82 !important;
}

/* ============================================================
   空き状況・料金シミュレーション セクション
============================================================ */
.tools {
  background: #fff;
}

.tools-intro {
  text-align: center;
  color: #777;
  font-size: 14px;
  margin-bottom: 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

.tool-card {
  background: linear-gradient(145deg, #fff9f5, #fdf0e8);
  border: 1.5px solid #d8edea;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tool-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 32px rgba(176, 112, 80, 0.14);
  box-shadow: 0 10px 32px rgba(176, 112, 80, 0.14);
}
.tool-card__icon {
  font-size: 44px;
  margin-bottom: 14px;
  line-height: 1;
}
.tool-card__title {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 700;
  color: #b07050;
  margin-bottom: 10px;
}
.tool-card__desc {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 24px;
}
.tool-card .btn {
  min-width: 180px;
}

.avail-legend {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #999;
}
.avail-mark {
  font-weight: 700;
  margin-right: 2px;
}
.avail-mark.avail-ok { color: #3a8f82; }
.avail-mark.avail-limited { color: #d4a017; }
.avail-mark.avail-full { color: #c0392b; }

/* ============================================================
   モーダル 共通
============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}
.modal-overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 520px;
  position: relative;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  -webkit-animation: modalFadeIn 0.25s ease;
  animation: modalFadeIn 0.25s ease;
  margin: auto;
}
.modal--wide {
  max-width: 640px;
}
@media (max-width: 600px) {
  .modal {
    padding: 32px 20px 24px;
  }
}

@-webkit-keyframes modalFadeIn {
  from { opacity: 0; -webkit-transform: translateY(16px); transform: translateY(16px); }
  to   { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f5ede6;
  border-radius: 50%;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  color: #b07050;
  padding: 0;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.modal-close:hover {
  background: #ead5c8;
}

.modal-title {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 700;
  color: #b07050;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 20px;
}

/* ============================================================
   カレンダー
============================================================ */
.cal-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-month-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  font-family: "Shippori Mincho", serif;
}

.cal-nav-btn {
  background: #fdf5f0;
  border: 1px solid #d8edea;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: #b07050;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.cal-nav-btn:hover {
  background: #f5e0d0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}

.cal-head {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #777;
  padding: 4px 0;
}
.cal-head.cal-sunday { color: #c0392b; }
.cal-head.cal-saturday { color: #2980b9; }

.cal-cell {
  border-radius: 8px;
  padding: 6px 2px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
}
.cal-cell.cal-empty {
  background: transparent;
}
.cal-day-num {
  font-size: 12px;
  color: #555;
  font-weight: 500;
}
.cal-mark {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.cal-cell.cal-available { background: #eaf7f4; }
.cal-cell.cal-available .cal-mark { color: #3a8f82; }
.cal-cell.cal-limited { background: #fef9e7; }
.cal-cell.cal-limited .cal-mark { color: #d4a017; }
.cal-cell.cal-full { background: #fdf0f0; }
.cal-cell.cal-full .cal-mark { color: #c0392b; }
.cal-cell.cal-closed { background: #f5f5f5; }
.cal-cell.cal-closed .cal-mark { color: #bbb; font-size: 11px; }
.cal-cell.cal-past { background: transparent; }
.cal-cell.cal-past .cal-day-num { color: #ccc; }
.cal-cell.cal-past .cal-mark { color: #ddd; }
.cal-cell.cal-today {
  outline: 2px solid #b07050;
  outline-offset: -2px;
}
.cal-cell.cal-today .cal-day-num { color: #b07050; font-weight: 700; }

.cal-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #777;
  margin-bottom: 14px;
  padding: 12px 16px;
  background: #fdf5f0;
  border-radius: 10px;
}
.cal-legend span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.legend-mark {
  font-weight: 700;
  font-size: 14px;
}
.legend-ok { color: #3a8f82; }
.legend-limited { color: #d4a017; }
.legend-full { color: #c0392b; }
.legend-closed { color: #bbb; }

.cal-disclaimer {
  font-size: 12px;
  color: #aaa;
  line-height: 1.7;
  text-align: center;
}
.cal-disclaimer a { color: #b07050; }

/* ============================================================
   料金シミュレーション
============================================================ */
.sim-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border: 1.5px solid #d8edea;
  border-radius: 10px;
  overflow: hidden;
}

.sim-tab-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 11px 8px;
  border: none;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #aaa;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.sim-tab-btn + .sim-tab-btn {
  border-left: 1.5px solid #d8edea;
}
.sim-tab-btn.active {
  background: #b07050;
  color: #fff;
}
.sim-tab-btn:not(.active):hover {
  background: #fdf5f0;
  color: #b07050;
}

.sim-tab-content {
  display: none;
}
.sim-tab-content.active {
  display: block;
}

.sim-intro {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
  line-height: 1.8;
  padding: 12px 14px;
  background: #fdf5f0;
  border-radius: 10px;
  border-left: 3px solid #b07050;
}

.sim-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.sim-form-group {
  display: grid;
  grid-template-columns: 140px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 480px) {
  .sim-form-group {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.sim-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

.sim-form-group select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d8edea;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23b07050' d='M8 10L4 6h8l-4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.sim-form-group select:focus {
  outline: none;
  border-color: #b07050;
  -webkit-box-shadow: 0 0 0 3px rgba(176, 112, 80, 0.12);
  box-shadow: 0 0 0 3px rgba(176, 112, 80, 0.12);
}

.sim-result-box {
  background: #f3eff9;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid #d8edea;
}
.sim-result-box h4 {
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 700;
  color: #b07050;
  margin-bottom: 14px;
}

.sim-result-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}

.sim-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 7px 2px;
  border-bottom: 1px solid rgba(176, 112, 80, 0.1);
  font-size: 13px;
  gap: 8px;
}
.sim-row:last-child { border-bottom: none; }
.sim-row-label { color: #777; }
.sim-row-value { font-weight: 500; color: #333; text-align: right; }

.sim-result-highlight {
  background: #fff;
  border-radius: 10px;
  padding: 2px 10px;
  margin-top: 10px;
  border: 1.5px solid #b07050;
}
.sim-result-highlight .sim-row {
  border-bottom: none;
}
.sim-result-highlight .sim-row-label { color: #b07050; font-weight: 700; }
.sim-result-highlight .sim-row-value strong { font-size: 18px; color: #b07050; }

.sim-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 12px;
  line-height: 1.7;
}

.sim-disclaimer {
  font-size: 12px;
  color: #aaa;
  line-height: 1.7;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #f0e0d5;
  margin-top: 4px;
}
