@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

/* 共通部分 */
:root {
  --main: #333333;
  --bg-pink: #f34c84;
  --bg-pink-light: rgba(243, 76, 132, 0.05);
  --bg-pink-medium: rgba(243, 76, 132, 0.2);
  --bg-pink-hover: rgba(243, 76, 132, 0.25);
  --border-pink: rgba(243, 76, 132, 0.6);
  --text-gray: #333333;
  --soft-white: #fefefe;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  color: var(--text-gray);
  letter-spacing: 0.04em;
}

.container-fluid {
  padding: 0;
}

/* ========== レイアウト ========== */
header {
  position: sticky;
  top: 0;
  z-index: 1030;
  margin-bottom: 2rem;
}

section {
  margin-bottom: 7rem;
}

.sp-br {
  display: none;
}

#company {
  scroll-margin-top: 150px;
}

/* ========== ナビゲーション ========== */
.navbar {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98) !important;
  transition: padding 0.3s ease;
}

.navbar-logo {
  max-height: 55px;
  height: auto;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link {
  color: var(--main) !important;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-nav .nav-link:not(.contact-rounded)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--bg-pink);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:not(.contact-rounded):hover::after,
.navbar-nav .nav-link:not(.contact-rounded).active::after {
  width: 60%;
}

.navbar-nav .nav-link:not(.contact-rounded):hover {
  color: var(--bg-pink);
}

/* CTAボタン */
.navbar-nav .contact-rounded {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, var(--bg-pink) 0%, #ff6ba5 100%);
  box-shadow: 0 4px 12px rgba(243, 76, 132, 0.25);
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.navbar-nav .contact-rounded::after {
  display: none;
}

.navbar-nav .contact-rounded:hover {
  background: linear-gradient(135deg, #ff6ba5 0%, var(--bg-pink) 100%);
  box-shadow: 0 6px 16px rgba(243, 76, 132, 0.35);
  transform: translateY(-2px);
  color: #fff !important;
}

/* - ナビ後追い - */
.navbar-brand img {
  max-height: 55px;
  height: auto;
  transition: max-height 0.3s ease;
}

header.is-scrolled .navbar-brand img {
  max-height: 38px;
}

/* ========== ハンバーガーメニュー ========== */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  width: 36px;
  height: 30px;
  position: relative;
  cursor: pointer;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  width: 28px;
  height: 22px;
  position: relative;
  display: block;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 100%;
  background: var(--bg-pink);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* Offcanvas */
.offcanvas-end {
  width: 320px;
  background-color: var(--soft-white);
}

.offcanvas-header {
  align-items: center;
  padding: 1.5rem;
}

.offcanvas-title {
  color: var(--main);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.offcanvas,
.offcanvas-header,
.offcanvas-body {
  color: var(--main);
}

.table {
  color: var(--main);
  --bs-table-color: var(--main);
  --bs-table-striped-color: var(--main);
  --bs-table-active-color: var(--main);
  --bs-table-hover-color: var(--main);
}

.table th,
.table td {
  color: var(--main);
}

.card,
.card-text,
.card-title,
.card-body {
  color: var(--main);
}

.card-text {
  padding-bottom: 1rem;
}

.card-img-overlay {
  padding: 1rem;
}

.custom-card .card-body {
  padding: 0.75rem 1rem;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.form-label,
.form-control {
  color: var(--main);
}

.form-control::placeholder {
  color: #bbb;
}

.offcanvas-header .navbar-toggler {
  margin: 0;
}

.offcanvas-body {
  padding: 1rem 0;
}

.offcanvas-body .nav-link {
  padding: 1rem 1.5rem;
  color: var(--main);
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.offcanvas-body .nav-link::after {
  content: none !important;
  display: none !important;
}

.offcanvas-body .nav-link:hover {
  background-color: rgba(243, 76, 132, 0.05);
  color: var(--bg-pink);
  padding-left: 2rem;
}

.offcanvas-body .contact-rounded {
  display: block;
  max-width: 260px;
  margin: 2rem auto 1rem;
  padding: 1rem 1.5rem;
  text-align: center;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--bg-pink) 0%, #ff6ba5 100%);
  color: #fff !important;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(243, 76, 132, 0.25);
  letter-spacing: 0.08em;
}

.offcanvas-body .contact-rounded:hover {
  background: linear-gradient(135deg, #ff6ba5 0%, var(--bg-pink) 100%);
  box-shadow: 0 6px 16px rgba(243, 76, 132, 0.35);
  padding-left: 1.5rem;
}

/* ========== タイポグラフィ ========== */
#first-message {
  margin-bottom: 4rem;
}

#first-message h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 1.3;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1.25rem 1.75rem;
  width: auto;
  max-width: 90%;
  white-space: nowrap;
}

#first-message p {
  margin-top: 2rem;
  line-height: 1.8;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  color: var(--main);
  letter-spacing: 0.06em;
}

h3 {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.5;
  background: linear-gradient(
    135deg,
    rgba(243, 76, 132, 0.08) 0%,
    rgba(243, 76, 132, 0.15) 100%
  );
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  color: var(--main);
  letter-spacing: 0.08em;
}

h4 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  color: var(--main);
  letter-spacing: 0.04em;
}

h5 {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  color: var(--main);
  letter-spacing: 0.06em;
}

h6 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  margin-top: 0.3rem;
  color: var(--main);
  letter-spacing: 0.04em;
}

p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 2;
  letter-spacing: 0.05em;
}

.philosophy-text {
  font-size: clamp(1.1rem, 2.6vw, 1.2rem);
  line-height: 2;
}
.custom-p {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.custom-text {
  max-width: 44em;
  width: 100%;
  line-height: 2;
  letter-spacing: -0.01em;
}

.gallery-p {
  margin-bottom: 0.3rem;
  padding: 0 1rem;
  line-height: 1.8;
}

.remarks-text {
  font-size: 0.8rem;
  vertical-align: super;
  display: inline-block;
}

.remarks-p {
  font-size: 0.9rem;
}

/* ========== 背景色 ========== */
.bg-light {
  background-color: white !important;
}

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

.bg-pink5 {
  background-color: var(--bg-pink-light);
  border-radius: 16px;
}

.bg-pink25 {
  background-color: var(--bg-pink-hover);
}

.bg-pink20 {
  background-color: var(--bg-pink-medium);
  border-radius: 16px;
  border: 1px solid rgba(243, 76, 132, 0.3);
}

.bg-non {
  border-radius: 16px;
  border: 2px solid rgba(243, 76, 132, 0.2);
  background-color: rgba(255, 255, 255, 0.5);
}

/* ========== ボタン ========== */
.btn {
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--main);
}

.custom-button {
  background: linear-gradient(
    135deg,
    rgba(243, 76, 132, 0.12) 0%,
    rgba(243, 76, 132, 0.2) 100%
  );
  border-radius: 50px;
  min-width: 10rem;
  padding: 0.7rem 2rem;
  border: 2px solid transparent;
  color: var(--main);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(243, 76, 132, 0.15);
}

.custom-button:hover {
  background: linear-gradient(135deg, var(--bg-pink) 0%, #ff6ba5 100%);
  border: 2px solid var(--bg-pink);
  color: #fff;
  box-shadow: 0 4px 12px rgba(243, 76, 132, 0.3);
  transform: translateY(-2px);
}

.corazon-title {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.8rem 0;
  border-radius: 8px;
  display: inline-block;
}

.jg-txt {
  padding: 1rem;
}

/* ========== お問い合わせセクション ========== */
.contact-p {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  padding: 0 2rem;
  line-height: 1.8;
}

.contact-button {
  background: linear-gradient(
    135deg,
    rgba(243, 76, 132, 0.12) 0%,
    rgba(243, 76, 132, 0.2) 100%
  );
  border-radius: 50px;
  padding: 0.3rem 1rem;
  border: 2px solid transparent;
  color: var(--bg-pink);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(243, 76, 132, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-button:hover {
  background: linear-gradient(135deg, var(--bg-pink) 0%, #ff6ba5 100%);
  border: 2px solid var(--bg-pink);
  color: #fff;
  box-shadow: 0 4px 12px rgba(243, 76, 132, 0.3);
  transform: translateY(-2px);
}

.contact-button:hover .bi-envelope {
  color: #fff;
}

#contact .bi-envelope {
  font-size: 2rem;
  color: var(--bg-pink);
  transition: color 0.3s ease;
}

/* ========== その他 ========== */
li a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

li a:hover {
  opacity: 0.8;
}

.bi-geo-alt,
.bi-facebook {
  font-size: 1.5rem;
  padding-left: 0.8rem;
  transition: transform 0.3s ease;
}

.bi-geo-alt:hover,
.bi-facebook:hover {
  transform: scale(1.1);
}

.center {
  display: flex;
  justify-content: center;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 60rem;
  padding: 3rem 0;
  background: url(../img/back-img.jpg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 12px;
}

.philosophy-body {
  max-width: 30em;
  margin: 0 auto;
  padding: 0;
}

.custom-card {
  background-color: rgba(243, 76, 132, 0.2);
}

.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(243, 76, 132, 0.15);
}

strong.custom-style {
  font-size: 1.8rem;
  color: var(--bg-pink);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.custom-style a {
  color: var(--bg-pink);
  text-decoration: none;
}

.form-btn {
  background: linear-gradient(135deg, var(--bg-pink) 0%, #ff6ba5 100%);
  color: #fff;
  border-radius: 50px;
  padding: 0.9rem 3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(243, 76, 132, 0.25);
}

.form-btn:hover {
  background: linear-gradient(135deg, #ff6ba5 0%, var(--bg-pink) 100%);
  box-shadow: 0 6px 16px rgba(243, 76, 132, 0.35);
  transform: translateY(-2px);
}

.sp-br {
  display: none;
}
.ssp-br {
  display: none;
}

a[href^="tel"] {
  color: var(--bg-pink);
  text-decoration: none;
}

/* ========== Swiper ========== */
.swiper-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  margin: 2rem 0;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  width: auto !important;
  height: auto;
}

.swiper-slide img {
  width: auto;
  height: 280px;
  display: block;
  border-radius: 4px;
  box-shadow: none;
}

/* ========== ギャラリー画像サイズ統一 ========== */
#gallery .row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}
.footer-logo {
  max-width: 150px;
  width: 100%;
  height: auto;
}

/* ========== レスポンシブ ========== */
@media (max-width: 1187px) {
  .tab-br {
    display: block;
  }
  strong.custom-style a {
    line-height: 1.2;
  }
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 45px;
  }

  .navbar-nav .contact-rounded {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  header.is-scrolled .navbar-brand img {
    max-height: 38px;
  }

  .sp-br {
    display: inline;
  }

  #first-message p {
    margin-top: 1.75rem;
  }

  #first-message h1 {
    padding: 1rem 1.5rem;
    line-height: 1.4;
  }

  section {
    margin-bottom: 3.75rem;
  }

  #corazon {
    padding-bottom: 5rem;
  }

  #corazon .btn,
  #corazon .contact-button,
  #corazon .custom-button {
    margin-bottom: 4rem;
  }

  .section-title-wrap img {
    position: absolute;
    inset: -15% -15%;
    width: 130%;
    height: auto;
    z-index: 0;
  }

  .footer-logo {
    max-width: 180px;
  }

  .tab-br {
    display: block;
  }
}

@media (max-width: 767px) {
  #first-message h1 {
    font-size: 1.6rem;
    white-space: normal;
  }

  .wrap {
    background-size: 80%;
    background-position: center 75%;
  }

  .custom-text {
    line-height: 2;
    padding: 1rem;
  }

  .contact-separator {
    border-top: 1px solid #f34c8440;
    width: 60%;
    margin: 0 auto 3rem;
    list-style: none;
  }

  /* フッターカラム間隔の調整 */
  footer .list-unstyled {
    margin-bottom: 0 !important;
  }

  footer .col-md-3.mt-5 {
    margin-top: 0 !important;
  }

  footer .col-md-6.ps-3 {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    max-width: 120px;
  }

  #first-message h1 {
    font-size: 1rem;
    white-space: normal;
    padding: 0.5rem 0.5rem !important;
  }

  .sp-br {
    display: block;
  }

  .ssp-br {
    display: block;
  }

  h2 {
    margin-bottom: 2.5rem;
    padding: 1rem 1.4rem;
  }

  h3 {
    padding: clamp(1.5rem, 4vw, 2rem);
  }

  h4 {
    font-size: 1rem;
  }

  .custom-text {
    padding: 0 0.5rem;
    letter-spacing: -0.02em;
    font-size: 0.98rem;
  }

  .bg-pink5,
  .bg-pink20,
  .bg-non {
    padding: 1.5rem;
  }

  .jg-txt {
    padding: 1rem;
  }

  section {
    padding: 0 0.5rem;
  }

  .footer-logo {
    max-width: 150px;
  }

  #corazon .card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
  }

  #corazon .card-img {
    min-height: 320px;
    object-fit: cover;
  }

  .philosophy-body {
    margin-left: 0;
    margin-right: auto;
  }

  .philosophy-br {
    display: none;
  }

  .feature-img-card {
    width: 70%;
    margin: 0 auto;
  }

  #privacy-policy .container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .card-body {
    padding: 1rem;
  }

  ul {
    padding-left: 1.2rem;
  }
}

@media (max-width: 375px) {
  #first-message h1 {
    font-size: 0.9rem;
    white-space: normal;
    padding: 0.3rem 0.3rem !important;
  }
}
