/*
Theme Name: My Original Theme
Author: あなたの名前や会社名
Description: 自作のオリジナルテーマです。
Version: 1.0.0
*/

:root {
  /* Theme Colors */
  --sea-light: #E0F2F1;
  --sea: #26A69A;
  --sea-dark: #00695C;
  --sea-navy: #1A237E;
  --gold: #FFD700;

  /* Grayscale */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Others */
  --red-500: #ef4444;
  --blue-500: #3b82f6;

  --header-height: 105px;
}

/* ==========================================================================
       Base Styles
       ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--gray-700);
  background-color: var(--gray-50);
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
       Header & Navigation
       ========================================================================== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  transition: all 0.3s;
  background-color: #ffffff;
  color: var(--sea-navy);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--gray-100);
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
  max-width: 100%;
  padding-left: 4%;
  padding-right: 4%;
}

.header-logo {
  display: flex;
  align-items: center;
  max-width: calc(100% - 60px);
}

.header-logo a {
  display: flex;
  align-items: center;
  max-width: 100%;
  text-decoration: none;
}

.header-logo img {
  max-height: 2.2rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .header-logo {
    max-width: none;
  }

  .header-logo img {
    max-height: 3.0rem;
  }
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  list-style: none;
}

.nav-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .nav-menu {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    font-size: 1rem;
  }
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--sea);
}

.nav-link-underline {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sea);
  transition: all 0.3s;
}

.nav-link:hover .nav-link-underline {
  width: 100%;
}

.btn-contact {
  background-color: var(--sea);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  margin-left: 0.5rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
}

.menu-toggle-bar {
  width: 100%;
  height: 2px;
  background-color: var(--sea-navy);
  transition: all 0.3s ease;
  position: relative;
  transform-origin: center;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width:767px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.5rem 0 2rem;
    gap: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--gray-100);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .btn-contact {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

@media(min-width:768px) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    position: static;
    flex-direction: row;
    box-shadow: none;
    border-top: none;
    padding: 0;
  }
}

.btn-contact:hover {
  background-color: var(--sea-dark);
}

/* ==========================================================================
       Hero Section
       ========================================================================== */
.hero-section {
  position: relative;
  height: calc(70vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-image: linear-gradient(rgba(0, 105, 92, 0.6), rgba(26, 35, 126, 0.7)), url('images/top_sp.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

@media (min-width: 768px) {
  .hero-section {
    background-image: linear-gradient(rgba(0, 105, 92, 0.6), rgba(26, 35, 126, 0.7)), url('images/top.webp');
    min-height: auto;
    height: calc(90vh - var(--header-height));
  }
}

@media (min-width:768px) and (hover:hover) and (pointer:false) {
  .hero-section {
    background-attachment: fixed;
  }
}

.hero-content {
  text-align: center;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 1000px;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.20rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
}

.hero-title-main {
  display: block;
  margin-bottom: 0.5rem;
}

.hero-title-sub {
  display: block;
  font-size: 0.37em;
  font-weight: 500;
  opacity: 0.95;
}

@media (min-width:768px) {
  .hero-title-sub {
    font-size: 0.50em;
  }
}

.sp-only {
  display: block;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.btn-hero {
  display: inline-block;
  background-color: #fff;
  color: var(--sea-dark);
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background-color 0.3s;
}

@media (min-width: 768px) {
  .btn-hero {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

.btn-hero:hover {
  background-color: var(--sea-light);
  transform: translateY(-0.25rem);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.25rem;
  width: 100%;
  text-align: center;
  animation: bounce 1s infinite;
  pointer-events: none;
}

.hero-scroll-indicator i {
  font-size: 1.5rem;
  opacity: 0.7;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* ==========================================================================
       General Section Styles
       ========================================================================== */
.section {
  padding: 5rem 0;
}

.bg-white {
  background-color: #ffffff;
}

.bg-gray-50 {
  background-color: var(--gray-50);
}

.bg-sea-light-section {
  background-color: var(--sea-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--sea-navy);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  color: var(--gray-500);
}

.section-divider {
  width: 4rem;
  height: 0.25rem;
  background-color: var(--sea);
  margin: 1rem auto 0;
  border-radius: 0.25rem;
}

/* ==========================================================================
       Business Section (Our Service)
       ========================================================================== */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .service-item {
    flex-direction: row;
  }

  .service-item.reverse {
    flex-direction: row-reverse;
  }
}

.service-image {
  width: 100%;
  height: 16rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  background-color: var(--gray-200);
}

@media (min-width: 768px) {
  .service-image {
    width: 50%;
    height: 24rem;
  }
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.service-image:hover .service-overlay {
  opacity: 0.2;
}

.service-image:hover .service-overlay.bg-gold-overlay {
  opacity: 0.1;
}

.service-overlay-navy {
  background-color: var(--sea-navy);
}

.service-overlay-black {
  background-color: #000;
}

.bg-gold-overlay {
  background-color: var(--gold);
}

.service-overlay-sea {
  background-color: var(--sea);
}

.service-content {
  width: 100%;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .service-content {
    width: 50%;
    margin-top: 0;
  }

  .service-item:not(.reverse) .service-content {
    padding-left: 3rem;
  }

  .service-item.reverse .service-content {
    padding-right: 3rem;
  }
}

.service-category {
  color: var(--sea);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.service-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .service-heading {
    font-size: 1.875rem;
  }
}

.service-desc {
  color: var(--gray-600);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  display: flex;
  align-items: center;
  color: var(--gray-700);
}

.service-list i {
  color: var(--sea);
  margin-right: 0.75rem;
}

.service-link {
  color: var(--sea);
  font-weight: 700;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-tag {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--gray-200);
  font-size: 0.875rem;
  color: var(--gray-600);
}

.btn-service-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background-color: transparent;
  color: var(--sea-dark);
  border: 2px solid var(--sea-dark);
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-service-detail:hover {
  background-color: var(--sea-dark);
  color: #fff;
  box-shadow: 0.4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.15rem);
}

.btn-service-detail i {
  transition: transform 0.3s ease;
}

.btn-service-detail:hover i {
  transform: translateX(0.25rem);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.philosophy-card {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.philosophy-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.philosophy-card.bg-light {
  background-color: var(--sea-light);
}

.philosophy-card.bg-outline {
  background-color: #fff;
  border: 1px solid var(--gray-100);
}

.philosophy-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.icon-sea-dark {
  color: var(--sea-dark);
}

.icon-gold {
  color: var(--gold);
}

.icon-blue {
  color: var(--blue-500);
}

.philosophy-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--sea-navy);
}

.philosophy-desc {
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ==========================================================================
       Company Section
       ========================================================================== */
.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.company-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .company-card {
    padding: 3rem;
  }
}

.company-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.company-table tr:not(:last-child) {
  border-bottom: 1px solid var(--gray-200);
}

.company-table th {
  padding: 1rem 0;
  color: var(--gray-500);
  font-weight: 500;
  width: 33.333%;
  vertical-align: top;
}

.company-table td {
  padding: 1rem 0;
  font-weight: 700;
  color: var(--gray-800);
}

.company-table td.normal-weight {
  font-weight: 400;
}

/* ==========================================================================
       Message Section
       ========================================================================== */
.max-w-5xl {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.greeting-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .greeting-content {
    flex-direction: row;
  }
}

.greeting-image-container {
  width: 100%;
}

@media (min-width: 768px) {
  .greeting-image-container {
    width: 33.333%;
  }
}

.greeting-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  aspect-ratio: 3 / 4;
}

.greeting-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
}

.greeting-image-wrapper:hover .greeting-image {
  transform: scale(1.05);
}

.greeting-text-container {
  width: 100%;
}

@media (min-width: 768px) {
  .greeting-text-container {
    width: 66.666%;
  }
}

.greeting-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sea-navy);
  margin-bottom: 1.5rem;
}

.greeting-text {
  color: var(--gray-600);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.greeting-signature {
  font-weight: 700;
  text-align: right;
  font-size: 1.125rem;
  margin-top: 2rem;
}

.greeting-name {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  display: inline-block;
  font-family: serif;
}

/* ==========================================================================
       News Section
       ========================================================================== */
.news-card {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  text-decoration: none;
  transition: background-color 0.3s;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .news-item {
    flex-direction: row;
    align-items: center;
  }
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  background-color: var(--sea-light);
}

.news-tag {
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.tag-sea {
  background-color: var(--sea);
}

.tag-navy {
  background-color: var(--sea-navy);
}

.news-date {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.news-title {
  color: var(--gray-700);
  font-weight: 500;
  flex: 1;
  transition: color 0.3s;
}

.news-item:hover .news-title {
  color: var(--sea-dark);
}

.news-icon {
  color: var(--gray-300);
  transition: color 0.3s;
}

.news-item:hover .news-icon {
  color: var(--sea);
}

.news-footer {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid var(--gray-200);
  background-color: var(--gray-50);
}

.news-footer-link {
  color: var(--sea-dark);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

.news-footer-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
       Contact Section
       ========================================================================== */
.max-w-2xl {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-desc {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: var(--gray-700);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.text-red {
  color: var(--red-500);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: border-color 0.3s, outline 0.3s;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 1px var(--sea);
}

textarea.form-control {
  height: 8rem;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background-color: var(--sea-dark);
  color: #fff;
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.btn-submit:hover {
  background-color: var(--sea);
}

.form-message-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: bold;
}

/* ==========================================================================
       Footer Section
       ========================================================================== */
.footer {
  background-color: var(--gray-900);
  color: #fff;
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 4%;
  padding-right: 4%;
}

.footer-links-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4rem;
}

@media (min-width: 768px) {
  .footer-links-row {
    flex-direction: row;
    justify-content: center;
    gap: 8rem;
  }
}

.footer-link-col {
  flex: 0 1 auto;
  min-width: 120px;
}

@media (min-width:768px){
  .footer-link-col{
    min-width:150px;
  }
}

.footer-col-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #fff;
  color: #fff;
  letter-spacing: 0.05em;
}

.footer-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-list li {
  margin-bottom: 1rem;
}

.footer-col-list a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

.footer-col-list a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* SNSアイコン */
.footer-social-row {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background-color: #fff;
  color: var(--sea-navy);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-bottom-nav {
  margin-bottom: 2rem;
  margin-top:1rem;
}

.footer-bottom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.footer-bottom-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: opacity 0.3s;
}

.footer-bottom-list li a:hover {
  opacity: 0.7;
}

/* コピーライト */
.footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
       Animations
       ========================================================================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}











/*寄り添うサポート*/
.ls-header-logo {
  display: flex;
  align-items: center;
  max-width: calc(100% - 60px);
}

.ls-header-logo a {
  display: flex;
  align-items: center;
  max-width: 100%;
  text-decoration: none;
}

.ls-header-logo img {
  max-height: 3.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .ls-header-logo {
    max-width: none;
    flex: 1;
    display: flex;
    justify-content: flex-start;
  }

  .ls-header-logo img {
    max-height: 4.5rem;
  }
}

.header-contact-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-contact-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-text-pc {
  display: none;
}

.header-text-sp {
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--red-500);
  line-height: 1.2;
  text-align: center;
}

.header-contact-text i {
  color: var(--red-500);
  font-size: 0.8rem;
  animation: pointRight 1.5s infinite;
}

@keyframes pointRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

.header-contact-buttons {
  display: flex;
  gap: 0.5rem;
}

.header-right.pc-only-block {
  display: none;
}

.btn-header-tel,
.btn-header-line {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 9999px;
  color: #fff !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
}

.btn-header-tel {
  background: linear-gradient(135deg, #1A237E 0%, #3949AB 100%);
}

.btn-header-line {
  background: linear-gradient(135deg, #00C300 0%, #06A145 100%);
}

.btn-header-tel:hover,
.btn-header-line:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-text.sp-hidden {
  display: none;
}

@media (min-width: 768px) {
  .header-right.pc-only-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }

  .header-contact-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--sea-dark);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
  }

  .header-text-sp {
    display: none;
    /* PCではスマホ用テキストを非表示 */
  }

  .header-text-pc {
    display: inline;
    /* PC用テキストを表示 */
  }

  .header-contact-text i {
    color: var(--red-500);
    font-size: 1.1rem;
    animation: pointRight 1.5s infinite;
  }

  .header-contact-wrapper {
    position: static;
    transform: none;
    gap: 1rem;
    flex-shrink: 0;
    margin: 0 1rem;
  }

  .header-contact-buttons {
    gap: 0.75rem;
  }

  .btn-header-tel,
  .btn-header-line {
    width: auto;
    height: auto;
    padding: 0.6rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    gap: 0.5rem;
  }

  .btn-header-tel i,
  .btn-header-line i {
    font-size: 1.1rem;
  }

  .btn-text.sp-hidden {
    display: inline;
  }
}

.btn-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff8c00 0%, #ff5722 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1.2rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

@media(min-width:768px) {
  .btn-cta {
    font-size: 1.1rem;
  }
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.6);
  background: linear-gradient(135deg, #ffa733 0%, #ff7043 100%);
}

.btn-cta i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: translateX(4px);
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.3)50%, rgba(255, 255, 255, 0)100%);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.ls-hero {
  position: relative;
  padding: 5rem 0 5rem;
  background-color: var(--sea-light);
  overflow: hidden;
  text-align: center;
}

.ls-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.ls-hero-content {
  position: relative;
  z-index: 1;
}

.ls-hero-subtitle {
  color: var(--sea);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.ls-hero-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--sea-navy);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .ls-hero-title {
    font-size: 2.6rem;
  }
}

.ls-hero-desc {
  font-weight: 700;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto 2.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 1.25rem;
  border-radius: 1rem;
  max-width: 800px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

@media(min-width:768px) {
  .ls-hero-desc {
    font-size: 1.15rem;
    padding: 1.5rem 2rem;
  }
}

.hero-ballon {
  display: inline-block;
  background-color: #fff;
  color: var(--red-500);
  font-weight: 900;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  position: relative;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  border: 2px solid var(--red-500);
}

.hero-ballon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: var(--red-500) transparent transparent transparent;
}

.hero-ballon::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  z-index: 1;
}

.text-highlight {
  position: relative;
  display: inline-block;
  color: var(--red-500);
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background-color: var(--gold);
  z-index: -1;
  border-radius: 2px;
}

.hero-reasons-wrapper {
  margin: 0 auto 2.5rem;
  max-width: 900px;
}

.hero-reasons-heading {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--sea-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-reasons-heading::before,
.hero-reasons-heading::after {
  content: '';
  height: 2px;
  width: 30px;
  background-color: var(--sea);
  border-radius: 2px;
}

.hero-reasons {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero-reason-item {
  flex: 1;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 0.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--sea-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.reason-icon {
  width: 40px;
  height: 40px;
  background-color: var(--sea-light);
  color: var(--sea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.reason-title {
  font-weight: 900;
  color: var(--sea-navy);
  font-size: 0.7rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.reason-text {
  font-size: 0.6rem;
  color: var(--gray-600);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-reasons-heading {
    font-size: 1.5rem;
  }

  .hero-reasons {
    gap: 1.5rem;
  }

  .hero-reason-item {
    padding: 1.5rem 1rem;
    border-radius: 1.5rem;
    transition: transform 0.3s;
  }

  .hero-reason-item:hover {
    transform: translateY(-5px);
  }

  .reason-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .reason-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .reason-text {
    font-size: 0.85rem;
  }
}

/* Services Grid */
.ls-service-category {
  margin-bottom: 4rem;
}

.ls-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sea-navy);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sea-light);
}

.ls-category-title i {
  color: var(--sea);
  font-size: 1.75rem;
}

.ls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ls-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.ls-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--sea-light);
}

.ls-card-popular-badge {
  position: absolute;
  top: -12px;
  right: -10px;
  background: linear-gradient(135deg, #ff3366 0%, #ff5722 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 2px solid #fff;
  animation: floatBadge 3s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.ls-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--sea-light);
  color: var(--sea-dark);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.ls-card-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.ls-card-content p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Pricing Section */
.ls-pricing-wrapper {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.ls-pricing-header {
  background-color: var(--sea-navy);
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
}

.ls-pricing-main-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.ls-pricing-main-price span.unit {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
}

.ls-pricing-main-caution {
  font-size: 0.7rem;
  margin-top: 1.5rem;
}

@media(min-width:767px) {
  .ls-pricing-main-caution {
    font-size: 0.8rem;
  }
}

.ls-pricing-body {
  padding: 2.5rem 2rem;
}

.ls-trip-fee-box {
  background-color: var(--gray-50);
  border: 2px solid var(--sea-light);
  border-radius: 1rem;
  padding: 3rem 1rem 1.5rem;
  position: relative;
  margin-top: 1.5rem;
}

@media(min-width:768px) {
  .ls-trip-fee-box {
    padding: 2rem;
  }
}

.ls-free-badge {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--red-500);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3);
  width: clac(100% - 3.1rem);
  max-width: 235px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

@media(min-width:768px) {
  .ls-free-badge {
    flex-direction: row;
    white-space: nowrap;
    width: auto;
    max-width: none;
    top: -15px;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    gap: 0.5rem;
  }
}

.ls-fee-list {
  list-style: none;
  margin-top: 1.5rem;
}

.ls-fee-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--gray-300);
  color: var(--gray-700);
  font-weight: 500;
  text-align: center;
}

@media(min-width:768px) {
  .ls-fee-list li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.ls-fee-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ls-fee-list .fee-amount {
  font-weight: 700;
  color: var(--sea-dark);
  font-size: 1.125rem;
}

/* Flow Section */
.ls-flow-container {
  max-width: 800px;
  margin: 0 auto;
}

.ls-flow-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.ls-flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 3.5rem;
  bottom: -1rem;
  width: 2px;
  background-color: var(--sea-light);
  z-index: 0;
}

.ls-flow-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--sea);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 6px -1px rgba(38, 166, 154, 0.4);
}

.ls-flow-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
  border: 1px solid var(--gray-100);
}

.ls-flow-content h4 {
  color: var(--sea-navy);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ls-flow-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ls-card.has-action {
  flex-direction: column;
  align-items: stretch;
  position: relative;
  padding-top: 2.5rem;
}

.ls-card-caution-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--gold);
  color: var(--sea-navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 0.35rem 0;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.ls-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn-check-price {
  background-color: #fff;
  color: var(--sea-dark);
  border: 2px solid var(--sea-dark);
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.btn-check-price:hover {
  background-color: var(--sea-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #fff;
  width: 100%;
  max-width: 600px;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  padding: 2rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .modal-overlay {
    align-items: center;
  }

  .modal-content {
    border-radius: 1.5rem;
    transform: scale(0.95) translateY(20px);
  }

  .modal-overlay.is-active .modal-content {
    transform: scale(1) translateY(0);
  }
}

.modal-overlay.is-active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--sea-light);
  padding-bottom: 1rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sea-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--gray-500);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--gray-100);
  transition: all 0.3s;
}

.modal-close:hover {
  background-color: var(--gray-200);
  color: var(--gray-800);
}

.plan-card {
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.plan-card.premium {
  border: 2px solid var(--sea);
  background-color: #f4fbfb;
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sea-dark);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gray-800);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan-price small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}

.plan-details {
  list-style: none;
  margin-bottom: 1rem;
}

.plan-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.plan-details li i.fa-check-circle {
  color: var(--sea);
  margin-top: 0.25rem;
}

.plan-details li i.fa-minus-circle {
  color: var(--gray-400);
  margin-top: 0.25rem;
}

.plan-note {
  font-size: 0.85rem;
  color: var(--sea-navy);
  background-color: #e8f0fe;
  padding: 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

/* ==========================================================================
       【追加・編集箇所 START】 新規セクション用のスタイル
========================================================================== */

.ls-worries-container {
  max-width: 900px;
  margin: -3rem auto 0;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 20;
  border-top: 4px solid var(--sea);
}

.ls-worries-title {
  text-align: center;
  font-size: 1.3rem;
  color: var(--sea-navy);
  margin-bottom: 2rem;
  font-weight: 700;
}

@media(min-width:768px) {
  .ls-worries-title {
    font-size: 2rem;
  }
}

/* お悩みセクション */
.ls-worries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
}

.ls-worry-item:nth-child(n+5) {
  display: none;
}

@media (min-width: 768px) {
  .ls-worries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 2rem;
  }

  .ls-worry-item:nth-child(n+4) {
    display: none;
  }
}

.ls-worry-item {
  position: relative;
  background-color: var(--sea);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.ls-worry-item::after {
  content: '';
  position: absolute;
  bottom: 1%;
  right: 13%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 0 20px;
  border-color: transparent transparent transparent var(--sea);
  transform: rotate(25deg);
  transform-origin: bottom right;
  z-index: -1;
}

@media (min-width: 768px) {
  .ls-worry-item::after {
    right: 22%;
  }
}

.ls-worry-item::before {
  content: '?';
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--sea-light);
  opacity: 1;
  z-index: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .ls-worry-item::before {
    font-size: 4rem;
    top: 20%;
  }
}

.ls-worry-item p {
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 2;
  word-break: keep-all;
}

@media (min-width: 768px) {
  .ls-worry-item p {
    font-size: 1.5rem;
  }
}

.ls-worry-badge {
  position: absolute;
  top: -15px;
  right: -20px;
  background-color: var(--red-500);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  transform: rotate(12deg);
  z-index: 10;
  border: 2px solid #fff;
  white-space: nowrap;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ls-worry-badge i {
  color: var(--gold);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .ls-worry-badge {
    top: -15px;
    right: -20px;
    font-size: 0.95rem;
    padding: 0.4rem 1rem;
  }

  .ls-worry-badge i {
    font-size: 1rem;
  }
}

.ls-worries-footer {
  background-color: #fdfaf0;
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  border: 1px dashed var(--gold);
  color: var(--gray-800);
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .ls-worries-footer {
    width: 100%;
    padding: 1.5rem;
  }
}

.ls-worries-footer strong {
  color: var(--sea-dark);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

@media(min-width:768px) {
  .ls-worries-footer strong {
    font-size: 1.5rem;
  }
}

/* 対応エリア・支払い方法 ボックス */
.ls-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .ls-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ls-info-box {
  background-color: var(--gray-50);
  border: 2px solid var(--sea-light);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ls-info-box h5 {
  color: var(--sea-navy);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ls-info-box p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ls-info-box p strong {
  font-size: 1.1rem;
  color: var(--sea-dark);
}

/* FAQ アコーディオン */
.ls-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.ls-faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

.ls-faq-item:hover {
  border-color: var(--sea-light);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ls-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
}

.q-mark {
  color: var(--sea);
  font-size: 1.5rem;
  font-weight: 900;
  margin-right: 1rem;
}

.q-text {
  flex-grow: 1;
  padding-right: 1rem;
}

.q-icon {
  color: var(--gray-400);
  transition: transform 0.3s ease;
}

.ls-faq-item.is-open .q-icon {
  transform: rotate(180deg);
}

.ls-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, padding 0.4s ease;
  background-color: var(--gray-50);
  padding: 0 1.5rem;
}

.ls-faq-item.is-open .ls-faq-a {
  max-height: 500px;
  /* 十分な高さ */
  padding: 0 1.5rem 1.25rem;
}

.ls-faq-a p {
  display: flex;
  align-items: flex-start;
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.95rem;
  border-top: 1px dashed var(--gray-300);
  padding-top: 1.25rem;
}

.a-mark {
  color: var(--red-500);
  font-size: 1.5rem;
  font-weight: 900;
  margin-right: 1rem;
  line-height: 1;
}

/* 問い合わせモーダル用スタイル */
.contact-modal-content {
  max-width: 650px;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact-methods-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.btn-modal-contact {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  color: #fff;
}

.btn-modal-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-modal-contact i {
  font-size: 2.5rem;
  margin-right: 1rem;
}

.btn-modal-contact .btn-text {
  display: flex;
  flex-direction: column;
}

.btn-modal-contact .btn-text span {
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.9;
}

.btn-modal-contact .btn-text strong {
  font-size: 1.25rem;
  margin: 0.25rem 0;
  letter-spacing: 0.05em;
}

.btn-modal-contact .btn-text small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.btn-phone {
  background-color: var(--sea-dark);
}

.btn-line {
  background-color: #06C755;
  /* LINE Official Color */
}

.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--gray-200);
}

.form-divider span {
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.ls-custom-form {
  background-color: var(--gray-50);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
}

#cookie-notice {
  background-color: rgba(26, 35, 126, 0.75) !important;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

#cookie-notice .cookie-notice-container {
  padding: 1rem 1rem !important;
}

#cookie-notice .cn-buttons-container {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 15px !important;
}

#cookie-notice .cn-button {
  margin: 0 !important;
}

/* =========================================================
   Single Post (個別記事) - World's Best Design
========================================================= */

/* ヘッダーとメインエリアの余白調整 */
.single-header-wrapper {
  padding-top: 140px; /* ヘッダーの高さ分を確保 */
  padding-bottom: 80px;
}

.single-main-section {
  padding-bottom: 100px;
}

/* 記事を浮かび上がらせるカードデザイン */
.single-post-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); /* 高級感のある柔らかい影 */
  padding: 60px 80px;
  margin-top: -40px; /* 背景のグレー領域に少し食い込ませて立体感を出す */
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .single-post-card {
    padding: 30px 20px;
    margin-top: -20px;
  }
}

/* 記事上部のメタ情報 */
.single-post-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 30px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.single-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: #0c3b6d; /* コーポレートネイビー */
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.single-date {
  color: #718096;
  font-size: 0.95rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.05em;
}

/* 記事のタイトル */
.single-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .single-title { font-size: 1.5rem; }
}

/* =========================================================
   WordPressエディタ出力用スタイル（超重要エリア）
========================================================= */
/* 人間工学に基づいた、読み疲れない文字サイズと行間 */
.single-post-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4a5568;
}

.single-post-body p {
  margin-bottom: 2em;
}

/* 見出し2（大見出し）: 信頼感のあるネイビーの左ライン */
.single-post-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0c3b6d;
  margin: 2.5em 0 1em;
  padding: 0.8em 1em;
  background: #f8fafc;
  border-left: 5px solid #0c3b6d;
  border-radius: 0 4px 4px 0;
}

/* 見出し3（中見出し）: 洗練された下線スタイル */
.single-post-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin: 2em 0 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.single-post-body h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50px;
  height: 2px;
  background: #0c3b6d;
}

/* 箇条書き（リスト）: FontAwesomeのチェックマークに変更 */
.single-post-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2em;
}

.single-post-body ul li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.8em;
}

.single-post-body ul li::before {
  content: '\f00c';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #0c3b6d;
  font-size: 0.9em;
}

/* 引用ブロック */
.single-post-body blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  background: #f7fafc;
  border-left: 4px solid #cbd5e0;
  color: #718096;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

/* 画像: 角丸で柔らかく、影をつけてリッチに */
.single-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin: 2em 0;
  display: block;
}

/* テキストリンク */
.single-post-body a {
  color: #3182ce;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.single-post-body a:hover {
  color: #2b6cb0;
  border-bottom-color: #2b6cb0;
}

/* =========================================================
   戻るボタン
========================================================= */
.single-back-wrapper {
  text-align: center;
  margin-top: 60px;
}

.btn-back-home {
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: #4a5568;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.btn-back-home i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.btn-back-home:hover {
  background: #f8fafc;
  color: #1a202c;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.btn-back-home:hover i {
  transform: translateX(-4px);
}