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

html {
  font-size: 18px;
}

html.is-scrolling,
body.is-scrolling {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html.is-scrolling::-webkit-scrollbar,
body.is-scrolling::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.8;
  color: #707070;
  background-color: #fff;
}

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

a {
  color: #FB9685;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: rgb(249.380952381, 107.5, 83.619047619);
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px;
  line-height: 1.4;
}

p {
  margin: 0 0 16px;
}

figure {
  margin: 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

.entry-content h2, .entry-content h3, .entry-content h4 {
  margin-top: 32px;
}
.entry-content p {
  margin-bottom: 24px;
}
.entry-content ul, .entry-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
}
.entry-content ul {
  list-style-type: disc;
}
.entry-content ol {
  list-style-type: decimal;
}
.entry-content blockquote {
  margin: 24px 0;
  padding: 24px;
  border-left: 4px solid #FB9685;
  background: #f5f5f5;
}

button, .btn, input[type=submit] {
  display: inline-block;
  padding: 16px 24px;
  background: #FB9685;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover, .btn:hover, input[type=submit]:hover {
  background: rgb(249.380952381, 107.5, 83.619047619);
  color: #fff;
}

.read-more {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid #FB9685;
  border-radius: 4px;
}
.read-more:hover {
  background: #FB9685;
  color: #fff;
}

.btn-home {
  display: inline-block;
  padding: 16px 32px;
  background: #FB9685;
  color: #fff;
  border-radius: 4px;
}
.btn-home:hover {
  background: rgb(249.380952381, 107.5, 83.619047619);
  color: #fff;
}

input[type=text], input[type=email], input[type=search], textarea, select {
  width: 100%;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 4px;
}
input[type=text]:focus, input[type=email]:focus, input[type=search]:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #FB9685;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.search-form {
  display: flex;
  gap: 8px;
}
.search-form .search-field {
  flex: 1;
}

.opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  background-color: #fff;
  opacity: 1;
  transition: opacity 1.5s ease;
}
.opening.is-fadeout {
  opacity: 0;
}
.opening.is-hidden {
  display: none;
}

.opening__loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.opening__loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.opening__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.opening__text.is-visible {
  opacity: 1;
  visibility: visible;
}
.opening__text.is-visible .opening__svg {
  animation: reveal-left-to-right 1.5s ease forwards;
}
.opening__text.is-fadeout {
  opacity: 0;
  visibility: hidden;
}

@keyframes reveal-left-to-right {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.opening__svg {
  display: block;
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 150px;
}
@media (max-width: 767px) {
  .opening__svg {
    max-width: 90%;
    max-height: 100px;
  }
}

.opening-stroke {
  fill: none;
  stroke: #fff;
  stroke-width: 8;
  stroke-linecap: butt;
  stroke-linejoin: round;
}

.opening__svg.is-animating .opening-stroke {
  animation: erase-stroke-reverse 0.4s linear forwards;
}

.opening__svg.is-animated .opening-stroke {
  stroke-dashoffset: var(--stroke-length-negative);
  opacity: 0;
}

.loading-dots {
  display: flex;
  gap: 16px;
}

.loading-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  animation: loading-fade 2s infinite;
}
.loading-dot:nth-child(1) {
  background-color: #FB9685;
  animation-delay: 0s;
}
.loading-dot:nth-child(2) {
  background-color: #F5D0CE;
  animation-delay: 0.5s;
}
.loading-dot:nth-child(3) {
  background-color: #FFE4B5;
  animation-delay: 1s;
}
.loading-dot:nth-child(4) {
  background-color: #E8D4C4;
  animation-delay: 1.5s;
}

@keyframes loading-fade {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  30% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  60% {
    opacity: 0;
    transform: scale(0.8);
  }
  75% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.page-transition.is-active, .page-transition.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-hero {
  position: relative;
  padding-top: 100px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(251, 150, 133, 0.15) 0%, rgba(251, 150, 133, 0.08) 30%, rgba(255, 255, 255, 0) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero-title {
  display: block;
  margin: 0 auto 16px;
  text-align: center;
}
.page-hero-title img {
  display: block;
  width: auto;
  height: 80px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-hero-title img {
    height: 55px;
  }
}

.page-hero-subtitle {
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #707070;
  margin: 0;
}

.page-content {
  padding: 60px 0 80px;
}
@media (max-width: 767px) {
  .page-content {
    padding: 40px 0 60px;
  }
}

.page-article {
  max-width: 1024px;
  margin: 0 auto;
}

.page-body {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1.5px;
  color: #707070;
}
@media (max-width: 767px) {
  .page-body {
    font-size: 16px;
  }
}
.page-body h2, .page-body h3, .page-body h4 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: 48px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .page-body h2, .page-body h3, .page-body h4 {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 16px;
  }
}
.page-body h2 {
  padding-bottom: 8px;
}
.page-body p {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .page-body p {
    margin-bottom: 16px;
  }
}
.page-body ol {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 24px;
}
.page-body ol li {
  position: relative;
  margin-bottom: 8px;
}
.page-body ol li::before {
  content: "(" counter(list-item) ")";
  position: absolute;
  left: -24px;
}
.page-body ul {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 24px;
}
.page-body ul li {
  position: relative;
  margin-bottom: 8px;
}
.page-body ul li::before {
  content: "・";
  position: absolute;
  left: -24px;
}
.page-body .page-footer {
  margin-top: 80px;
  text-align: right;
}
@media (max-width: 767px) {
  .page-body .page-footer {
    margin-top: 48px;
  }
}

.section-service {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, transparent 15%, transparent 85%, #fff 100%), radial-gradient(ellipse 80% 60% at 10% 20%, rgba(245, 208, 206, 0.6) 0%, transparent 50%), radial-gradient(ellipse 60% 50% at 85% 30%, rgba(245, 229, 212, 0.7) 0%, transparent 50%), radial-gradient(ellipse 70% 60% at 30% 70%, rgba(245, 208, 206, 0.4) 0%, transparent 50%), radial-gradient(ellipse 50% 40% at 70% 80%, rgba(245, 229, 212, 0.5) 0%, transparent 50%), linear-gradient(135deg, rgba(245, 208, 206, 0.2) 0%, rgba(245, 229, 212, 0.2) 100%);
  background-color: #fff;
}

.section-service-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-service-title {
  display: block;
  margin: 0 auto 16px;
  text-align: center;
}
.section-service-title img {
  display: block;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}

.section-service-subtitle {
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #707070;
  margin: 0;
}

.section-service-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .section-service-list {
    gap: 60px;
  }
}

.service-card {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 767px) {
  .service-card {
    flex-direction: column;
    gap: 16px;
  }
}

.service-card-image {
  flex-shrink: 0;
  width: 45%;
  max-width: 520px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .service-card-image {
    width: 100%;
    max-width: none;
    height: 200px;
  }
}
.service-card-image img {
  display: block;
  width: 100%;
  min-height: calc(100% + 30px);
  object-fit: cover;
  will-change: transform;
  margin-bottom: -30px;
}
@media (max-width: 767px) {
  .service-card-image img {
    min-height: 100%;
    height: 100%;
    margin-bottom: 0;
    transform-origin: center center;
  }
}

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .service-card-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.service-card-title {
  width: 100%;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #707070;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #707070;
}
@media (max-width: 767px) {
  .service-card-title {
    width: auto;
    font-size: 20px;
    margin: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #707070;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-card-link:hover .arrow {
  transform: translateX(6px);
}
.service-card-link .arrow {
  position: relative;
  width: 40px;
  height: 1px;
  background: #707070;
  transition: all 0.3s ease;
}
.service-card-link .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #707070;
  border-top: 1px solid #707070;
  transform: rotate(45deg);
}

.fade-in {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 1.5s ease, filter 1.5s ease;
}
.fade-in.is-visible {
  opacity: 1;
  filter: blur(0);
}
.fade-in[data-delay="0"] {
  transition-delay: 0s;
}
.fade-in[data-delay="1"] {
  transition-delay: 0.3s;
}
.fade-in[data-delay="2"] {
  transition-delay: 0.6s;
}
.fade-in[data-delay="3"] {
  transition-delay: 0.9s;
}
.fade-in[data-delay="4"] {
  transition-delay: 1.2s;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, #fff 0%, #fff 70%, transparent 100%);
  transition: background 0.3s ease;
}
.home .site-header, .front-page .site-header {
  background: transparent;
}
.site-header.is-scrolled {
  background: linear-gradient(to bottom, #fff 0%, #fff 70%, transparent 100%);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100px;
}

.site-branding .site-logo {
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
  color: #707070;
  transition: all 0.3s ease;
}
.site-branding .site-logo:hover {
  opacity: 0.7;
}
.site-branding .company-prefix {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.site-branding .company-name {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #707070;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none !important;
  background-color: transparent !important;
  border: none;
  cursor: pointer;
  z-index: 10000;
}
.menu-toggle:focus, .menu-toggle:active {
  outline: none;
  background: none !important;
  background-color: transparent !important;
}
.menu-toggle .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #707070;
  margin: 3px 0;
  transition: all 0.3s ease;
}
.menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
  }
}

.main-navigation .primary-menu {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation .menu-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #707070;
  transition: all 0.3s ease;
  padding: 8px 0;
}
.main-navigation .menu-item a:hover, .main-navigation .menu-item a:focus {
  color: #FB9685;
  outline: none;
}
.main-navigation .menu-item .menu-en {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 4px;
}
.main-navigation .menu-item .menu-jp {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .main-navigation {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .main-navigation.is-open {
    opacity: 1;
    visibility: visible;
  }
  .main-navigation .primary-menu {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .main-navigation .menu-item a {
    padding: 16px;
  }
  .main-navigation .menu-item .menu-en {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .main-navigation .menu-item .menu-jp {
    font-size: 13px;
  }
}

body.menu-open {
  overflow: hidden;
}

.site-footer {
  margin-top: 48px;
}

.footer-main {
  background: linear-gradient(0deg, rgba(251, 150, 133, 0.3) 0%, rgba(255, 255, 255, 0.95) 40%, rgb(255, 255, 255) 100%);
  padding: 96px 0;
}
.footer-main .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-branding .footer-logo {
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
  color: #707070;
  transition: all 0.3s ease;
}
.footer-branding .footer-logo:hover {
  opacity: 0.7;
}
.footer-branding .company-prefix {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.footer-branding .company-name {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #707070;
}

.footer-navigation {
  display: flex;
  gap: 96px;
}

.footer-menu-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-menu-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #707070;
  transition: all 0.3s ease;
}
.footer-menu-item:hover, .footer-menu-item:focus {
  color: #FB9685;
  outline: none;
}
.footer-menu-item .menu-en {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 2px;
}
.footer-menu-item .menu-jp {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.footer-copyright {
  background: #FB9685;
  padding: 24px 0;
  text-align: center;
}
.footer-copyright p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.footer-copyright p span:first-child {
  margin-right: 0.5em;
}

@media (max-width: 1023px) {
  .footer-main {
    padding: 48px 0;
  }
  .footer-main .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .footer-branding .footer-logo {
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1.5;
  }
  .footer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    width: 100%;
    max-width: 400px;
  }
  .footer-menu-column {
    gap: 16px;
    align-items: center;
  }
  .footer-menu-item {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer-menu-item .menu-en {
    font-size: 14px;
  }
  .footer-menu-item .menu-jp {
    font-size: 10px;
  }
  .footer-copyright p {
    display: flex;
    flex-direction: column;
  }
  .footer-copyright p span {
    display: block;
  }
}
.sidebar {
  width: 300px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sidebar {
    width: 100%;
  }
}
.sidebar .widget {
  margin-bottom: 32px;
  padding: 24px;
  background: #f9f9f9;
  border-radius: 4px;
}
.sidebar .widget-title {
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-size: 1.125rem;
  border-bottom: 2px solid #FB9685;
}
.sidebar ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.sidebar ul li:last-child {
  border-bottom: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.7) 80%, #fff 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  bottom: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%);
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero__video {
    width: auto;
    height: 100%;
    min-width: auto;
  }
}

.hero__content {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}
@media (max-width: 767px) {
  .hero__content {
    bottom: 5%;
    width: 80%;
  }
}

.hero__heading {
  display: block;
  margin: 0;
}

.hero__text {
  display: block;
  width: auto;
  max-height: 200px;
  height: auto;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .hero__text {
    width: 100%;
    max-width: 90%;
    max-height: none;
    height: auto;
    margin-bottom: 24px;
  }
  .hero__text #fill {
    filter: none;
  }
}
.hero__text .hero-stroke {
  fill: none;
  stroke: #fff;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__text.is-animating .hero-stroke {
  animation: erase-stroke-reverse 0.4s linear forwards;
}
.hero__text.is-animating .hero-stroke.is-reverse {
  animation-name: erase-stroke;
}
.hero__text.is-animated .hero-stroke {
  stroke-dashoffset: var(--stroke-length-negative);
  opacity: 0 !important;
  visibility: hidden;
}
.hero__text.is-animated .hero-stroke.is-reverse {
  stroke-dashoffset: var(--stroke-length);
}

@keyframes erase-stroke {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: var(--stroke-length);
  }
}
@keyframes erase-stroke-reverse {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: var(--stroke-length-negative);
  }
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-text {
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #707070;
}
@media (max-width: 767px) {
  .hero__scroll-text {
    font-size: 16px;
  }
}

.hero__scroll-arrow {
  display: block;
  width: 24px;
  height: 14px;
  position: relative;
  margin-top: 8px;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
.hero__scroll-arrow::before, .hero__scroll-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 1px;
  background-color: #707070;
}
.hero__scroll-arrow::before {
  left: 50%;
  transform: rotate(-45deg);
  transform-origin: left center;
}
.hero__scroll-arrow::after {
  right: 50%;
  transform: rotate(45deg);
  transform-origin: right center;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.section-philosophy {
  position: relative;
  padding: 190px 0 140px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(245, 208, 206, 0.5) 0%, rgba(245, 229, 212, 0.4) 30%, rgba(245, 229, 212, 0.2) 50%, transparent 70%);
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .section-philosophy {
    padding: 350px 0 320px;
  }
}
@media (max-width: 767px) {
  .section-philosophy {
    padding: 320px 0 280px;
  }
}

.section-philosophy-images {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1480px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.section-philosophy-image {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.section-philosophy-image img {
  display: block;
  width: 100%;
  min-height: calc(100% + 30px);
  object-fit: cover;
  will-change: transform;
  margin-bottom: -30px;
}
.section-philosophy-image--top-left {
  top: 80px;
  left: -60px;
  width: 280px;
  height: 200px;
}
@media (max-width: 1280px) {
  .section-philosophy-image--top-left {
    top: 80px;
    left: -20px;
    width: 220px;
    height: 165px;
  }
}
@media (max-width: 767px) {
  .section-philosophy-image--top-left {
    top: 80px;
    left: -20px;
    width: 160px;
    height: 120px;
  }
}
.section-philosophy-image--top-right {
  top: 20px;
  right: 80px;
  width: 180px;
  height: 250px;
}
@media (max-width: 1280px) {
  .section-philosophy-image--top-right {
    top: 20px;
    right: 5px;
    width: 160px;
    height: 210px;
  }
}
@media (max-width: 767px) {
  .section-philosophy-image--top-right {
    top: 20px;
    right: 5px;
    width: 110px;
    height: 150px;
  }
}
.section-philosophy-image--bottom-left {
  bottom: 60px;
  left: 60px;
  width: 180px;
  height: 240px;
}
@media (max-width: 1280px) {
  .section-philosophy-image--bottom-left {
    bottom: 30px;
    left: 10px;
    width: 180px;
    height: 240px;
  }
}
@media (max-width: 767px) {
  .section-philosophy-image--bottom-left {
    bottom: 20px;
    left: 5px;
    width: 130px;
    height: 170px;
  }
}
.section-philosophy-image--bottom-right {
  bottom: 40px;
  right: -20px;
  width: 240px;
  height: 180px;
}
@media (max-width: 1280px) {
  .section-philosophy-image--bottom-right {
    bottom: 40px;
    right: -20px;
    width: 240px;
    height: 180px;
  }
}
@media (max-width: 767px) {
  .section-philosophy-image--bottom-right {
    bottom: 30px;
    right: -30px;
    width: 180px;
    height: 130px;
  }
}

.section-philosophy > .container {
  position: relative;
  z-index: 2;
}

.section-philosophy-header {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .section-philosophy-header {
    margin-bottom: 32px;
  }
}

.section-philosophy-title {
  display: block;
  margin: 0 auto 24px;
  text-align: center;
}
.section-philosophy-title img {
  display: block;
  height: 80px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section-philosophy-title img {
    height: 55px;
  }
}
@media (max-width: 767px) {
  .section-philosophy-title {
    margin-bottom: 16px;
  }
}

.section-philosophy-subtitle {
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #707070;
  margin: 0;
}
@media (max-width: 767px) {
  .section-philosophy-subtitle {
    font-size: 14px;
  }
}

.section-philosophy-body {
  text-align: center;
  margin-bottom: 48px;
}
.section-philosophy-body p {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #707070;
  margin: 0 0 24px;
}
.section-philosophy-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-philosophy-body p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .section-philosophy-body {
    margin-bottom: 32px;
  }
}

.section-philosophy-more {
  text-align: center;
}

.section-news {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section-news {
    padding: 60px 0;
  }
}

.section-news-header {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .section-news-header {
    margin-bottom: 32px;
  }
}

.section-news-title {
  display: block;
  margin: 0 auto 16px;
  text-align: center;
}
.section-news-title img {
  display: block;
  height: 80px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section-news-title img {
    height: 55px;
  }
}

.section-news-subtitle {
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #707070;
  margin: 0;
}

.section-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-news-item {
  border-bottom: 1px dotted #707070;
}
.section-news-item:first-child {
  border-top: 1px dotted #707070;
}

.section-news-link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
}
.section-news-link:hover {
  background-color: rgba(251, 150, 133, 0.05);
}
@media (max-width: 767px) {
  .section-news-link {
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 16px 48px 16px 8px;
  }
}

.section-news-date {
  flex-shrink: 0;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #707070;
}
@media (max-width: 767px) {
  .section-news-date {
    font-size: 14px;
  }
}

.section-news-category {
  flex-shrink: 0;
  display: inline-block;
  padding: 6px 8px;
  background-color: #FB9685;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  width: 130px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .section-news-category {
    padding: 4px 6px;
    font-size: 12px;
    width: 110px;
  }
}

.section-news-title-text {
  flex: 1;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #707070;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .section-news-title-text {
    flex-basis: 100%;
    order: 3;
    font-size: 15px;
  }
}

.section-news-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #FB9685;
  border-radius: 50%;
  color: #fff;
}
.section-news-arrow svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}
@media (max-width: 767px) {
  .section-news-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
  }
  .section-news-arrow svg {
    width: 14px;
    height: 14px;
  }
}

.section-news-empty {
  text-align: center;
  font-size: 16px;
  color: #707070;
  padding: 40px 0;
}

.section-news-more {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .section-news-more {
    margin-top: 32px;
  }
}

.btn-more {
  display: inline-block;
  min-width: 280px;
  padding: 8px 60px;
  background-color: #FB9685;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}
.btn-more:hover {
  opacity: 0.8;
  color: #fff;
}
@media (max-width: 767px) {
  .btn-more {
    min-width: 240px;
    padding: 8px 48px;
    font-size: 14px;
  }
}

.section-company {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EF 50%, #FFFFFF 100%);
}
@media (max-width: 767px) {
  .section-company {
    padding: 80px 0 60px;
  }
}

.section-company-header {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .section-company-header {
    margin-bottom: 32px;
  }
}

.section-company-title {
  display: block;
  margin: 0 auto 16px;
  text-align: center;
}
.section-company-title img {
  display: block;
  height: 80px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section-company-title img {
    height: 55px;
  }
}

.section-company-subtitle {
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #707070;
  margin: 0;
}

.section-company-table {
  max-width: 800px;
  margin: 0 auto;
}

.section-company-row {
  display: flex;
  margin-bottom: 16px;
}

.section-company-label {
  flex-shrink: 0;
  width: 180px;
  padding: 8px 24px;
  background: #FB9685;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .section-company-label {
    width: 120px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
  }
}

.section-company-value {
  flex: 1;
  padding: 8px 24px;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #707070;
  display: flex;
  align-items: center;
  margin: 0;
}
@media (max-width: 767px) {
  .section-company-value {
    padding: 8px 16px;
    font-size: 15px;
  }
}

.single-post .entry-header {
  margin-bottom: 32px;
}
.single-post .entry-title {
  font-size: 2rem;
  margin-bottom: 16px;
}
.single-post .entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #707070;
  font-size: 14px;
}
.single-post .entry-thumbnail {
  margin-bottom: 32px;
  border-radius: 4px;
  overflow: hidden;
}
.single-post .entry-footer {
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.post-navigation {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid #eee;
}
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.post-navigation .nav-label {
  display: block;
  font-size: 14px;
  color: #707070;
}

.archive-header {
  margin-bottom: 32px;
  padding: 32px;
  background: #f5f5f5;
  border-radius: 4px;
  text-align: center;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.post-card {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 576px) {
  .post-card {
    flex-direction: column;
  }
}
.post-card .post-thumbnail {
  flex-shrink: 0;
  width: 200px;
}
@media (max-width: 576px) {
  .post-card .post-thumbnail {
    width: 100%;
  }
}
.post-card .entry-title {
  font-size: 1.25rem;
}
.post-card .entry-title a {
  color: #707070;
}
.post-card .entry-title a:hover {
  color: #FB9685;
}
.post-card .entry-meta {
  margin-bottom: 16px;
  font-size: 14px;
  color: #707070;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.pagination .page-numbers {
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 4px;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background: #FB9685;
  color: #fff;
  border-color: #FB9685;
}

.error-404 {
  max-width: 600px;
  margin: 0 auto;
  padding: 96px 0;
  text-align: center;
}
.error-404 h1 {
  font-size: 6rem;
  color: #FB9685;
  margin-bottom: 0;
}
.error-404 h2 {
  margin-bottom: 24px;
}
.error-404 p {
  margin-bottom: 32px;
  color: #707070;
}

.service-page .service-content {
  padding: 60px 0 80px;
}
@media (max-width: 767px) {
  .service-page .service-content {
    padding: 40px 0 60px;
  }
}

.service-section {
  margin-bottom: 80px;
  scroll-margin-top: 120px;
}
.service-section:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .service-section {
    margin-bottom: 60px;
    scroll-margin-top: 70px;
  }
}

.service-section-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 767px) {
  .service-section-inner {
    flex-direction: column;
    gap: 24px;
  }
}

.service-text {
  flex: 1;
}
@media (max-width: 767px) {
  .service-text {
    order: 2;
  }
}

.service-title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #707070;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #707070;
}
@media (max-width: 767px) {
  .service-title {
    font-size: 22px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
}

.service-description {
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 1.5px;
  color: #707070;
  margin: 0;
}
@media (max-width: 767px) {
  .service-description {
    font-size: 15px;
    line-height: 2;
  }
}

.service-image {
  flex-shrink: 0;
  width: 40%;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-image {
    width: 100%;
    max-width: none;
    order: 1;
  }
}
.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-page .message-section .page-hero {
  padding-top: 100px;
  height: 280px;
}
.about-page .page-hero--plain {
  background: none;
  height: auto;
  padding: 60px 0 40px;
}

.message-section .page-hero {
  background: linear-gradient(180deg, rgba(251, 150, 133, 0.15) 0%, rgba(251, 150, 133, 0.08) 30%, rgba(255, 255, 255, 0) 100%);
}

.message-content {
  padding: 60px 0 100px;
}
@media (max-width: 767px) {
  .message-content {
    padding: 40px 0 60px;
  }
}

.message-inner {
  display: flex;
  gap: 60px;
  max-width: 1024px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .message-inner {
    flex-direction: column;
    gap: 32px;
  }
}

.message-image {
  flex-shrink: 0;
  width: 320px;
}
@media (max-width: 767px) {
  .message-image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}
.message-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .message-image img {
    border-radius: 16px;
  }
}

.message-text {
  flex: 1;
}

.message-greeting {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1.5px;
  color: #707070;
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .message-greeting {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

.message-body {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1.5px;
  color: #707070;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .message-body {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

.message-signature {
  text-align: right;
}

.signature-company {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #707070;
  margin: 0 0 8px;
}
@media (max-width: 767px) {
  .signature-company {
    font-size: 14px;
  }
}

.signature-position {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #707070;
  margin: 0;
}
@media (max-width: 767px) {
  .signature-position {
    font-size: 14px;
  }
}

.signature-name {
  margin-left: 1em;
}

.company-section {
  scroll-margin-top: 120px;
}

.company-content {
  padding: 0 0 80px;
}
@media (max-width: 767px) {
  .company-content {
    padding: 0 0 60px;
  }
}

.company-table {
  max-width: 800px;
  margin: 0 auto;
}

.company-row {
  display: flex;
  margin-bottom: 16px;
}

.company-label {
  flex-shrink: 0;
  width: 180px;
  padding: 8px 24px;
  background: #FB9685;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .company-label {
    width: 120px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
  }
}

.company-value {
  flex: 1;
  padding: 8px 24px;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #707070;
  display: flex;
  align-items: center;
  margin: 0;
}
@media (max-width: 767px) {
  .company-value {
    padding: 8px 16px;
    font-size: 15px;
  }
}

.news-page .page-hero {
  padding-top: 100px;
  height: 280px;
  background: linear-gradient(180deg, rgba(251, 150, 133, 0.15) 0%, rgba(251, 150, 133, 0.08) 30%, rgba(255, 255, 255, 0) 100%);
}

.news-content {
  padding: 60px 0 100px;
}
@media (max-width: 767px) {
  .news-content {
    padding: 40px 0 60px;
  }
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .news-list {
    margin-bottom: 40px;
  }
}

.news-item {
  border-bottom: 1px dotted #707070;
}
.news-item:first-child {
  border-top: 1px dotted #707070;
}

.news-link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
}
.news-link:hover {
  background-color: rgba(251, 150, 133, 0.05);
}
@media (max-width: 767px) {
  .news-link {
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 16px 48px 16px 8px;
  }
}

.news-date {
  flex-shrink: 0;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #707070;
}
@media (max-width: 767px) {
  .news-date {
    font-size: 14px;
  }
}

.news-category {
  flex-shrink: 0;
  display: inline-block;
  padding: 6px 8px;
  background-color: #FB9685;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  width: 130px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .news-category {
    padding: 4px 6px;
    font-size: 12px;
    width: 110px;
  }
}

.news-title {
  flex: 1;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #707070;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .news-title {
    flex-basis: 100%;
    order: 3;
    font-size: 15px;
  }
}

.news-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #FB9685;
  border-radius: 50%;
  color: #fff;
}
.news-arrow svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}
@media (max-width: 767px) {
  .news-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
  }
  .news-arrow svg {
    width: 14px;
    height: 14px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .pagination {
    gap: 4px;
  }
}

.pagination-prev,
.pagination-next {
  padding: 8px 16px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #707070;
  text-decoration: none;
  transition: color 0.3s ease;
}
.pagination-prev:hover:not(.pagination-disabled),
.pagination-next:hover:not(.pagination-disabled) {
  color: #FB9685;
}
.pagination-prev.pagination-disabled,
.pagination-next.pagination-disabled {
  color: #ccc;
  pointer-events: none;
}
@media (max-width: 767px) {
  .pagination-prev,
  .pagination-next {
    padding: 8px;
    font-size: 12px;
  }
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  color: #707070;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.pagination-number:hover:not(.pagination-current) {
  background-color: rgba(251, 150, 133, 0.1);
}
.pagination-number.pagination-current {
  background-color: #FB9685;
  color: #fff;
}
@media (max-width: 767px) {
  .pagination-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

.no-posts {
  text-align: center;
  font-size: 16px;
  color: #707070;
  padding: 60px 0;
}

.news-single-page .page-hero {
  padding-top: 100px;
  height: 280px;
  background: linear-gradient(180deg, rgba(251, 150, 133, 0.15) 0%, rgba(251, 150, 133, 0.08) 30%, rgba(255, 255, 255, 0) 100%);
}

.news-single-content {
  padding: 0 0 100px;
}
@media (max-width: 767px) {
  .news-single-content {
    padding: 0 0 60px;
  }
}

.news-article {
  max-width: 800px;
  margin: 0 auto;
}

.news-article-header {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .news-article-header {
    margin-bottom: 32px;
  }
}

.news-article-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #707070;
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .news-article-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.news-article-date {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #707070;
  text-align: right;
}
@media (max-width: 767px) {
  .news-article-date {
    font-size: 14px;
  }
}

.news-article-body {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .news-article-body {
    margin-bottom: 40px;
  }
}
.news-article-body h1 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #707070;
  margin: 48px 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #707070;
}
.news-article-body h1:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .news-article-body h1 {
    font-size: 18px;
    margin: 32px 0 16px;
    padding-bottom: 12px;
  }
}
.news-article-body h2 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #707070;
  margin: 40px 0 20px;
}
.news-article-body h2:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .news-article-body h2 {
    font-size: 16px;
    margin: 28px 0 14px;
  }
}
.news-article-body h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #707070;
  margin: 32px 0 16px;
}
.news-article-body h3:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .news-article-body h3 {
    font-size: 15px;
    margin: 24px 0 12px;
  }
}
.news-article-body p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #707070;
  margin: 0 0 24px;
}
.news-article-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .news-article-body p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.news-article-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 32px 0;
}
@media (max-width: 767px) {
  .news-article-body img {
    margin: 24px 0;
  }
}
.news-article-body figure {
  margin: 32px 0;
}
.news-article-body figure img {
  margin: 0;
}
.news-article-body figure figcaption {
  font-size: 14px;
  color: #707070;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .news-article-body figure {
    margin: 24px 0;
  }
}
.news-article-body ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.news-article-body ul li {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #707070;
  padding-left: 1.5em;
  position: relative;
}
.news-article-body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .news-article-body ul li {
    font-size: 15px;
  }
}
.news-article-body ol {
  padding-left: 1.5em;
  margin: 24px 0;
}
.news-article-body ol li {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #707070;
}
@media (max-width: 767px) {
  .news-article-body ol li {
    font-size: 15px;
  }
}
.news-article-body blockquote {
  background-color: rgba(251, 150, 133, 0.1);
  padding: 32px;
  margin: 32px 0;
  border-radius: 8px;
}
.news-article-body blockquote p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #707070;
  margin: 0;
}
@media (max-width: 767px) {
  .news-article-body blockquote p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .news-article-body blockquote {
    padding: 24px;
    margin: 24px 0;
  }
}
.news-article-body a {
  color: #FB9685;
  text-decoration: underline;
}
.news-article-body a:hover {
  text-decoration: none;
}

.news-article-footer {
  text-align: center;
}

.btn-back-to-list {
  display: inline-block;
  min-width: 280px;
  padding: 8px 60px;
  background-color: #FB9685;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}
.btn-back-to-list:hover {
  opacity: 0.8;
  color: #fff;
}
@media (max-width: 767px) {
  .btn-back-to-list {
    min-width: 240px;
    padding: 8px 48px;
    font-size: 14px;
  }
}

.contact-page .page-hero {
  padding-top: 100px;
  height: 280px;
  background: linear-gradient(180deg, rgba(251, 150, 133, 0.15) 0%, rgba(251, 150, 133, 0.08) 30%, rgba(255, 255, 255, 0) 100%);
}

.contact-content {
  padding: 60px 0 100px;
}
@media (max-width: 767px) {
  .contact-content {
    padding: 40px 0 60px;
  }
}

.contact-description {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #707070;
  margin: 0 0 48px;
}
@media (max-width: 767px) {
  .contact-description {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

.contact-form-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.contact-notice {
  text-align: center;
  color: #FB9685;
  padding: 40px;
  background: rgba(251, 150, 133, 0.1);
  border-radius: 8px;
}

.wpcf7 .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-form .form-row {
    display: block;
    margin-bottom: 20px;
  }
}
.wpcf7 .wpcf7-form .form-label {
  padding: 12px 0;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #707070;
  text-align: right;
}
.wpcf7 .wpcf7-form .form-label .required {
  color: #FB9685;
  font-size: 14px;
  margin-left: 8px;
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-form .form-label {
    padding: 0 0 8px;
    font-size: 14px;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-form .form-field {
    width: 100%;
  }
}
.wpcf7 .wpcf7-form select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  color: #707070;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23707070' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.3s ease;
}
.wpcf7 .wpcf7-form select:focus {
  outline: none;
  border-color: #FB9685;
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-form select {
    padding: 10px 14px;
    font-size: 16px;
    background-position: right 14px center;
  }
}
.wpcf7 .wpcf7-form input[type=text],
.wpcf7 .wpcf7-form input[type=email],
.wpcf7 .wpcf7-form input[type=tel] {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  color: #707070;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}
.wpcf7 .wpcf7-form input[type=text]:focus,
.wpcf7 .wpcf7-form input[type=email]:focus,
.wpcf7 .wpcf7-form input[type=tel]:focus {
  outline: none;
  border-color: #FB9685;
}
.wpcf7 .wpcf7-form input[type=text]::placeholder,
.wpcf7 .wpcf7-form input[type=email]::placeholder,
.wpcf7 .wpcf7-form input[type=tel]::placeholder {
  color: #aaa;
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-form input[type=text],
  .wpcf7 .wpcf7-form input[type=email],
  .wpcf7 .wpcf7-form input[type=tel] {
    padding: 10px 14px;
    font-size: 16px;
  }
}
.wpcf7 .wpcf7-form textarea {
  width: 100%;
  min-height: 200px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  color: #707070;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
  transition: border-color 0.3s ease;
}
.wpcf7 .wpcf7-form textarea:focus {
  outline: none;
  border-color: #FB9685;
}
.wpcf7 .wpcf7-form textarea::placeholder {
  color: #aaa;
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-form textarea {
    min-height: 150px;
    padding: 10px 14px;
    font-size: 16px;
  }
}
.wpcf7 .wpcf7-form .form-checkbox {
  text-align: center;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-form .form-checkbox {
    margin: 32px 0;
  }
}
.wpcf7 .wpcf7-form .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #707070;
  cursor: pointer;
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-form .wpcf7-list-item label {
    font-size: 14px;
  }
}
.wpcf7 .wpcf7-form .wpcf7-list-item input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  background: #fff;
}
.wpcf7 .wpcf7-form .wpcf7-list-item input[type=checkbox]:checked {
  background-color: #FB9685;
  border-color: #FB9685;
}
.wpcf7 .wpcf7-form .wpcf7-list-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.wpcf7 .wpcf7-form .privacy-link {
  color: #FB9685;
  text-decoration: underline;
}
.wpcf7 .wpcf7-form .privacy-link:hover {
  text-decoration: none;
}
.wpcf7 .wpcf7-form .form-submit {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-form .form-submit {
    margin-top: 32px;
  }
}
.wpcf7 .wpcf7-form input[type=submit] {
  display: inline-block;
  min-width: 240px;
  padding: 16px 60px;
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 0.2em;
  color: #fff;
  background-color: #FB9685;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.wpcf7 .wpcf7-form input[type=submit]:hover {
  opacity: 0.8;
  color: #fff;
}
.wpcf7 .wpcf7-form input[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-form input[type=submit] {
    min-width: 200px;
    padding: 14px 48px;
    font-size: 14px;
  }
}
.wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #e74c3c;
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}
.wpcf7 .wpcf7-form.failed .wpcf7-response-output, .wpcf7 .wpcf7-form.aborted .wpcf7-response-output {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}
.wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}
.wpcf7 .wpcf7-form .wpcf7-spinner {
  margin: 0 12px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  display: flex;
  gap: 32px;
}
@media (max-width: 767px) {
  .content-wrapper {
    flex-direction: column;
  }
}

.main-content {
  flex: 1;
  min-width: 0;
}

.text-center {
  text-align: center;
}
