@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}

:root {
  /* Default to Pattern 3 (Modern: Navy/LightOrange) */
  --main-color: #2c3e50;
  --main-color-rgb: 44, 62, 80;
  --main-bg-color: #ffecd2;
  --header-bg: #1b4f3b;
  /* Using Accent color for header */
  --header-info-bg: #ffecd2;
  /* Middle section background */
  --header-info-text-color: #1a252f;
  /* Default text color for info section */
  --sub-color: #1b4f3b;
  --text-color: #1a252f;
  --text-color-rgb: 26, 37, 47;
  --accent-color: #2c3e50;
  --content-bg-color: #ffecd2;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: var(--main-bg-color);
  color: var(--text-color);
  line-height: 1.8;
}

h1, h2, h3 {
  font-family: 'Noto Serif JP', serif;
}

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

a.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--main-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 10px;
  transition: opacity 0.3s ease;
}

a.btn:hover {
  opacity: 0.85;
}

header {
  height: auto;
  width: 100%;
  background: var(--header-bg);
  box-shadow: none;
  border-top: none;
}

header h1 {
  all: unset;
  display: block;
  color: white;
  background: var(--sub-color);
  line-height: 2em;
}

header h1 span {
  width: 1000px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  font-size: 0.875rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0;
  padding: 0 10px;
}

@media screen and (max-width: 1023px) {
  header h1 span {
    width: 100%;
  }
}

header .info {
  background: var(--header-info-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--header-info-text-color);
  font-size: 1rem;
  padding: 1rem 0px;
  gap: 64px;
  font-weight: bold;
}

header .info .left {
  width: 480px;
  font-size: 3.125rem;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  width: 50%;
  text-align: right;
  font-size: 3.6875rem;
}

header .info .left p {
  display: inline;
  vertical-align: middle;
}

header .info .left img {
  width: 7.6875rem;
  vertical-align: middle;
}

@media screen and (max-width: 1428px) {
  header .info .left {
    font-size: clamp(1rem, calc(50vw / 13), 3.6875rem);
  }
  header .info .left img {
    width: clamp(1rem, calc(50vw / 10), 7.6875rem);
  }
}

@media screen and (max-width: 1023px) {
  header .info .left {
    font-size: clamp(1rem, calc(60vw / 9), 9.6875rem);
  }
  header .info .left img {
    width: clamp(1rem, calc(60vw / 5), 9.6875rem);
  }
}

header .info .right {
  width: 480px;
  font-size: 0.875rem;
  width: 50%;
  text-align: left;
  display: flex;
  justify-content: left;
}

header .info .right table tr th {
  background: var(--sub-color);
  padding: 4px 12px;
  color: white;
  font-weight: normal;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

header .info .right table tr td {
  padding: 4px 12px;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  header .info {
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
  }
  header .info .left, header .info .right {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  header .info .right {
    justify-content: center;
    padding: 0 10px;
    display: none;
  }
  header .info .right table {
    width: auto;
    max-width: 100%;
  }
  header .info .right table tr, header .info .right table th, header .info .right table td {
    display: block;
    width: 100%;
  }
  header .info .right table tr {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
  }
  header .info .right table th {
    background: transparent;
    color: var(--sub-color);
    font-weight: bold;
    border: none;
    padding: 0 0 5px 0;
    text-align: center;
  }
  header .info .right table td {
    padding: 0;
    text-align: center;
  }
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: auto;
  margin: 0 auto;
  background: var(--header-bg);
  border-bottom: 1px solid #eee;
}

nav .mobile-menu-close {
  display: none;
}

nav ul {
  width: 1000px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  height: auto;
  padding: 10px 0;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

nav ul li {
  padding: 0;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  padding: 10px 10px;
  transition: color 0.3s;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--main-color);
  transition: width 0.3s;
}

nav ul li a:hover {
  color: var(--accent-color);
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  background: var(--sub-color);
  list-style: none;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  border-top: 3px solid var(--main-color);
  z-index: 100;
}

nav ul li .submenu li {
  padding: 0;
  height: auto;
  display: block;
}

nav ul li .submenu li a {
  padding: 12px 24px;
  white-space: nowrap;
  color: white;
  font-weight: normal;
}

nav ul li .submenu li a:hover {
  background: rgba(var(--main-color-rgb), 0.1);
  color: var(--accent-color);
}

nav ul li .submenu li a:hover::after {
  content: none;
}

nav ul li:hover .submenu {
  display: flex;
}

nav ul > li {
  border-right: none;
}

.content,
#content,
#contact {
  scroll-margin-top: 70px;
}

.form-success,
.form-error {
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.overlay-image {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 9999;
}

.overlay-image img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.5;
}

.overlay-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10000;
}

.overlay-toggle button {
  padding: 6px 12px;
  font-size: 0.75rem;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}

.overlay-toggle button:hover {
  background: #f0f0f0;
}

.overlay-toggle button.active {
  background: #333;
  color: white;
  border-color: #333;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.95);
}

.image-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  display: block;
  width: auto;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation-name: zoom;
  animation-duration: 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.image-modal .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 100000;
}

.image-modal .close:hover, .image-modal .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@keyframes zoom {
  from {
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media screen and (max-width: 767px) {
  .image-modal .modal-content {
    width: 95%;
  }
}

.main-image {
  position: relative;
}

.main-image img.main {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 80%;
}

.main-image img.sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 21vw;
}

.main-image .catchphrase {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: 'Noto Serif JP', serif;
  font-size: 3.5rem;
  font-weight: 600;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0;
  z-index: 10;
  white-space: nowrap;
  background: #8080806b;
  backdrop-filter: blur(4px);
  padding: 32px 0;
}

@media screen and (max-width: 767px) {
  .main-image .catchphrase {
    font-size: 1.4rem;
    line-height: 1.6;
    white-space: normal;
    padding: 20px 0;
  }
}

.content {
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.content h2 {
  color: var(--sub-color);
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid var(--sub-color);
  border-bottom: none;
  padding: 16px 24px;
  background: white;
  text-align: left;
  font-size: 2rem;
  line-height: 1.4;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1023px) {
  .content h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .content h2 {
    font-size: 1.5rem;
    padding: 12px 20px;
  }
}

.content h2::after {
  content: none;
}

@media screen and (max-width: 1023px) {
  .content h2 {
    width: calc(100% - 40px);
  }
}

.content .post {
  padding: 40px;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid var(--sub-color);
  background: white;
  box-shadow: none;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
}

@media screen and (max-width: 1023px) {
  .content .post {
    width: calc(100% - 40px);
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .content .post {
    font-size: 1rem;
    line-height: 1.8;
  }
}

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

.content.greeting .post p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content.service h2 {
  color: var(--sub-color);
  background: white;
  border: 1px solid var(--sub-color);
}

.content.service .service-flex {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .content.service .service-flex {
    grid-template-columns: 1fr;
  }
}

.content.service .service-flex .service-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--content-bg-color);
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}

.content.service .service-flex .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border-bottom-color: var(--main-color);
}

.content.service .service-flex .service-item .title {
  margin: 0;
  padding: 1.5rem;
  color: var(--sub-color);
  letter-spacing: 0.05em;
  border: none;
  font-weight: 700;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
}

.content.service .service-flex .service-item .image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content.service .service-flex .service-item:hover .image img {
  transform: scale(1.05);
}

.content.about .about-wrapper {
  margin-bottom: 40px;
  text-align: center;
}

.content.about .about-wrapper p {
  line-height: 2;
  color: var(--text-color);
  display: inline-block;
  text-align: left;
  font-feature-settings: "palt";
}

.content.about .about-image-flex {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.content.about .about-image-flex .about-image {
  flex: 1;
  max-width: 32%;
}

.content.about .about-image-flex .about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .content.about .about-image-flex {
    flex-direction: column;
    align-items: center;
    display: none;
  }
  .content.about .about-image-flex .about-image {
    max-width: 100%;
    width: 100%;
  }
}

.content.about .works-slider {
  width: 100%;
  padding-bottom: 40px;
  margin-top: 60px;
}

.content.about .works-slider .swiper-slide {
  width: 100%;
}

.content.about .works-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content.about .works-slider .swiper-slide img:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.content.about .works-slider .swiper-slide.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .content.about .works-slider .swiper-slide.sp-only {
    display: block;
  }
}

.content.about .works-slider .swiper-pagination-bullet-active {
  background: var(--main-color);
}

.content.lettering .post .intro-text {
  text-align: center;
  margin-bottom: 48px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
}

@media screen and (max-width: 767px) {
  .content.lettering .post .intro-text {
    font-size: 1.2rem;
    margin-bottom: 32px;
  }
}

.content.lettering .post .process-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .content.lettering .post .process-grid {
    gap: 48px;
  }
}

.content.lettering .post .process-grid .process-card {
  width: 100%;
  background: var(--content-bg-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
  gap: 40px;
  padding: 0;
}

.content.lettering .post .process-grid .process-card:nth-child(odd) {
  flex-direction: row;
}

.content.lettering .post .process-grid .process-card:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .content.lettering .post .process-grid .process-card {
    flex-direction: column !important;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
  }
}

.content.lettering .post .process-grid .process-card:hover {
  transform: translateY(-4px);
}

.content.lettering .post .process-grid .process-card .image {
  width: 50%;
  position: relative;
  padding-top: 33.33%;
  padding-top: 33.33%;
  padding-top: 0;
  height: auto;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .content.lettering .post .process-grid .process-card .image {
    width: 100%;
    flex: auto;
    aspect-ratio: 3/2;
  }
}

.content.lettering .post .process-grid .process-card .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.content.lettering .post .process-grid .process-card .image img.sub-img {
  position: absolute;
  bottom: 10px;
  right: 10px;
  top: auto;
  left: auto;
  width: 45%;
  height: auto;
  aspect-ratio: 3/2;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.content.lettering .post .process-grid .process-card:hover .image img {
  transform: scale(1.05);
}

.content.lettering .post .process-grid .process-card .info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .content.lettering .post .process-grid .process-card .info {
    padding: 32px 24px;
    width: 100%;
  }
}

.content.lettering .post .process-grid .process-card .info .step-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.75rem;
  color: var(--main-color);
  line-height: 1;
  font-weight: bold;
  opacity: 1;
  margin-bottom: 8px;
  display: block;
}

@media screen and (max-width: 767px) {
  .content.lettering .post .process-grid .process-card .info .step-number {
    font-size: 2.5rem;
  }
}

.content.lettering .post .process-grid .process-card .info p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-color);
  margin: 0;
  font-feature-settings: "palt";
}

.content.lettering .post .process-final {
  background: var(--content-bg-color);
  padding: 48px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  border: 1px solid #eee;
}

@media screen and (max-width: 767px) {
  .content.lettering .post .process-final {
    padding: 24px;
  }
}

.content.lettering .post .process-final .info-block {
  text-align: center;
  margin-bottom: 40px;
}

.content.lettering .post .process-final .info-block .header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.content.lettering .post .process-final .info-block .header .step-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  color: var(--main-color);
  line-height: 1;
  font-weight: bold;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .content.lettering .post .process-final .info-block .header .step-number {
    font-size: 32px;
  }
}

.content.lettering .post .process-final .info-block .header h3 {
  font-size: 24px;
  color: var(--sub-color);
  margin: 0;
  font-weight: bold;
}

.content.lettering .post .process-final .info-block p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 2;
  color: var(--text-color);
  text-align: left;
}

.content.lettering .post .process-final .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .content.lettering .post .process-final .gallery {
    grid-template-columns: 1fr;
  }
}

.content.lettering .post .process-final .gallery .gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}

.content.lettering .post .process-final .gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.content.lettering .post .process-final .gallery .gallery-item img:hover {
  transform: scale(1.05);
}

.content.travel-lettering .introduction {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 2;
  color: var(--text-color);
  font-size: 1.1rem;
  word-break: keep-all;
}

.content.travel-lettering .travel-lettering-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .content.travel-lettering .travel-lettering-area {
    grid-template-columns: 1fr;
  }
}

.content.travel-lettering .travel-lettering-area .box {
  background: var(--content-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.content.travel-lettering .travel-lettering-area .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.content.travel-lettering .travel-lettering-area .box .image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.content.travel-lettering .travel-lettering-area .box .image img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content.travel-lettering .travel-lettering-area .box:hover .image img {
  transform: scale(1.05);
}

.content.travel-lettering .travel-lettering-area .box .info {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content.travel-lettering .travel-lettering-area .box .info .step-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  color: var(--main-color);
  line-height: 1;
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
}

.content.travel-lettering .travel-lettering-area .box .info p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  font-feature-settings: "palt";
}

.content.faq .post .faq-list {
  width: 100%;
}

.content.faq .post .faq-list .faq-item {
  margin-bottom: 32px;
  border-bottom: 1px solid #eee;
  padding-bottom: 32px;
}

.content.faq .post .faq-list .faq-item:last-child {
  border-bottom: none;
}

.content.faq .post .faq-list .faq-item dt {
  font-weight: bold;
  color: var(--sub-color);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.content.faq .post .faq-list .faq-item dd {
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 2em;
  color: var(--text-color);
}

@media screen and (max-width: 767px) {
  .content.faq .post .faq-list .faq-item dd {
    padding-left: 0;
  }
}

.content.form {
  padding-bottom: 60px;
}

.content.form .post .text {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.content.form .post .text .icon {
  color: var(--main-color);
  font-size: 1.5rem;
  margin-right: 8px;
  vertical-align: middle;
  font-family: 'Material Symbols Outlined';
}

.content.form .post .text.email {
  border-bottom: none;
  margin-bottom: 0;
}

.content.form .post .text.phone {
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
}

.content.form .post .text.phone .small {
  font-size: 0.875rem;
  display: block;
  padding-left: 28px;
  color: rgba(var(--text-color-rgb), 0.7);
}

.content.form .post form label {
  color: var(--sub-color);
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin: 24px 0 8px 0;
}

.content.form .post form input[type="text"],
.content.form .post form input[type="email"],
.content.form .post form input[type="tel"],
.content.form .post form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  background: var(--content-bg-color);
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 24px 0;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.content.form .post form input[type="text"]::placeholder,
.content.form .post form input[type="email"]::placeholder,
.content.form .post form input[type="tel"]::placeholder,
.content.form .post form textarea::placeholder {
  color: #aaa;
}

.content.form .post form input[type="text"]:focus,
.content.form .post form input[type="email"]:focus,
.content.form .post form input[type="tel"]:focus,
.content.form .post form textarea:focus {
  outline: none;
  border-color: var(--main-color);
  background: var(--content-bg-color);
}

.content.form .post form input.is-invalid,
.content.form .post form textarea.is-invalid {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.05);
}

.content.form .post form textarea {
  resize: vertical;
  min-height: 150px;
}

.content.form .post form .name .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.content.form .post form .name .form-row .form-group {
  margin: 0;
}

.content.form .post form .form-group {
  margin-bottom: 16px;
}

.content.form .post form .form-group .radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0;
}

.content.form .post form .form-group .radio-group div label {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: normal;
  cursor: pointer;
  color: var(--text-color);
}

.content.form .post form .form-group .radio-group div label span.radio {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.content.form .post form .form-group .radio-group div label span.radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--main-color);
  border-radius: 50%;
  display: none;
}

.content.form .post form .form-group .radio-group div label:hover span.radio {
  border-color: var(--main-color);
}

.content.form .post form .form-group .radio-group div input[type="radio"]:checked + label span.radio {
  border-color: var(--main-color);
}

.content.form .post form .form-group .radio-group div input[type="radio"]:checked + label span.radio::after {
  display: block;
}

.content.form .post form button {
  background: var(--main-color);
  color: white;
  border: none;
  padding: 18px 60px;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 48px auto 0 auto;
  cursor: pointer;
  transition: all 0.3s;
  width: auto;
  min-width: 300px;
  text-align: center;
  display: block;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(255, 159, 104, 0.3);
}

.content.form .post form button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 159, 104, 0.4);
}

.content.info-detail {
  position: relative;
  overflow: hidden;
}

.content.info-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.8) blur(3px);
  opacity: 1;
  z-index: 0;
}

.content.info-detail h2 {
  color: var(--sub-color);
  background: white;
  position: relative;
  z-index: 1;
}

.content.info-detail .post {
  background: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px;
  position: relative;
  z-index: 1;
}

.content.info-detail .post .sub-title {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #222;
  font-weight: 600;
}

.content.info-detail .post .box {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
}

.content.info-detail .post .box p {
  border: 1px solid var(--sub-color);
  padding: 16px 24px;
  margin: 0;
  color: #222;
  font-size: 1rem;
  background: var(--content-bg-color);
}

.content.info-detail .post .box p:first-of-type {
  border-right: none;
}

.content.info-detail .post .info {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 24px;
}

.content.info-detail .post .info .title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
}

.content.info-detail .post .info .text {
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
}

.content .service-detail-visual {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.content .service-detail-visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 550px;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .content .service-detail-visual img {
    max-height: 300px;
  }
}

.content .service-detail-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  line-height: 2;
  word-break: auto-phrase;
}

.content .service-detail-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.content .service-detail-features .feature-card {
  background: var(--content-bg-color);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.content .service-detail-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content .service-detail-features .feature-card .feature-icon {
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 20px;
  display: block;
}

.content .service-detail-features .feature-card .feature-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  color: var(--sub-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.content .service-detail-features .feature-card .feature-desc {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .content .service-detail-features .feature-card {
    padding: 20px;
  }
}

.content .price-section {
  background: var(--content-bg-color);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eee;
  word-break: auto-phrase;
}

.content .price-section .price-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  color: var(--sub-color);
  margin-bottom: 30px;
  display: inline-block;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 10px;
}

.content .price-section .price-content .price-label {
  font-weight: bold;
  margin-bottom: 10px;
}

.content .price-section .price-content .main-price {
  font-size: 2.5rem;
  color: var(--sub-color);
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 10px;
  white-space: nowrap;
}

.content .price-section .price-content .main-price span {
  font-size: 1.5rem;
}

.content .price-section .price-content .main-price small {
  font-size: 1rem;
  color: #666;
}

.content .price-section .price-content .sub-price {
  margin-top: 20px;
  color: #666;
  font-size: 0.9rem;
  line-height: 2;
  text-align: center;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .content .price-section {
    padding: 30px 20px;
  }
  .content .price-section .main-price {
    font-size: 2rem;
  }
}

footer {
  background: var(--sub-color);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  padding-top: 20px;
}

footer .copyright {
  display: block;
  width: 100%;
  text-align: center;
  color: white;
  background: var(--sub-color);
  padding: 4px 0;
}

footer .infos {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

@media screen and (max-width: 1023px) {
  footer .infos {
    width: 100%;
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }
}

footer .infos .info-block {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 1023px) {
  footer .infos .info-block {
    width: 100%;
    flex-direction: row;
  }
  footer .infos .info-block .company-info {
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  footer .infos .info-block {
    flex-direction: column;
  }
}

footer .infos .info-block .company-info {
  color: white;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px;
  line-height: 1.6;
}

footer .infos .info-block .company-info .name {
  font-size: 1rem;
  font-weight: 700;
}

footer .infos .info-block .company-info .tel,
footer .infos .info-block .company-info .mail,
footer .infos .info-block .company-info .address {
  font-size: 0.875rem;
}

footer .infos .info-block .company-info .address {
  margin-top: 8px;
}

footer .infos .info-block .image {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
}

footer .infos .info-block .image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
}

footer .infos .map {
  flex: 1;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

footer .infos .map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media screen and (max-width: 1023px) {
  footer .infos .map {
    aspect-ratio: 1.618 / 1;
  }
}

@media screen and (max-width: 767px) {
  footer .infos .map {
    min-height: min-content;
  }
}

#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  background-image: url("../images/splash-image/image.jpg");
  background-size: cover;
  background-position: center;
  z-index: 99999;
  /* Higher than anything on the site */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: opacity 1s ease, visibility 1s ease;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #333;
}

#intro.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.message-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#line1 {
  font-size: clamp(1.9rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 20px;
  min-height: 1.5em;
  line-height: 1.2;
  opacity: 0;
  /* Hide initially to prevent FOUC */
}

#line1.ready {
  opacity: 1;
}

.char {
  opacity: 0;
  display: inline-block;
  transition: opacity 0.8s ease;
}

.char.visible {
  opacity: 1;
}

#line2 {
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  font-weight: 700;
  opacity: 0;
  transform: scale(1.5);
  transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  line-height: 1.5;
}

#line2.visible {
  opacity: 1;
  transform: scale(1);
}

#click-guide {
  position: absolute;
  bottom: 50px;
  font-size: 0.9rem;
  opacity: 0;
  animation: pulse 2s infinite ease-in-out;
  transition: opacity 1s ease;
  pointer-events: none;
}

#click-guide.visible {
  opacity: 0.6;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.3;
  }
}

.mobile-menu-toggle {
  display: none;
}

@media screen and (max-width: 1023px) {
  /* 1. Header Adjustments */
  header {
    position: relative;
    z-index: 1001;
  }
  header .info {
    position: relative;
    /* SP Only adjustments */
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  header .info .left img {
    width: 20vw;
  }
  header .info .left p {
    font-size: calc(80vw / 10);
  }
  header .info .right {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  /* 2. Hamburger Button */
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: rgba(0, 40, 20, 0.8);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 2000;
    padding: 0;
    transition: all 0.3s ease;
  }
  .mobile-menu-toggle:active {
    transform: scale(0.95);
  }
  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 14px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }
  .mobile-menu-toggle span:nth-child(1) {
    top: 18px;
  }
  .mobile-menu-toggle span:nth-child(2) {
    top: 27px;
  }
  .mobile-menu-toggle span:nth-child(3) {
    top: 36px;
  }
  .mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    top: 27px;
    transform: rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    top: 27px;
    transform: rotate(-45deg);
  }
  /* 3. Navigation Menu Overlay */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 30, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }
  nav .mobile-menu-close {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  nav .mobile-menu-close span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 21px;
    left: 7px;
  }
  nav .mobile-menu-close span:nth-child(1) {
    transform: rotate(45deg);
  }
  nav .mobile-menu-close span:nth-child(2) {
    transform: rotate(-45deg);
  }
  nav .mobile-menu-close:active {
    transform: scale(0.9);
  }
  nav.active {
    opacity: 1;
    visibility: visible;
    align-items: start;
  }
  nav.active ul li {
    opacity: 1;
    transform: translateY(0);
  }
  nav ul {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    padding: 40px 20px 0;
    gap: 0;
  }
  nav ul li {
    width: 100%;
    text-align: center;
    display: block;
    height: auto;
    border-bottom: none;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* 4. Submenu Handling for Mobile */
  }
  nav ul li:nth-child(1) {
    transition-delay: 0.08s;
  }
  nav ul li:nth-child(2) {
    transition-delay: 0.16s;
  }
  nav ul li:nth-child(3) {
    transition-delay: 0.24s;
  }
  nav ul li:nth-child(4) {
    transition-delay: 0.32s;
  }
  nav ul li:nth-child(5) {
    transition-delay: 0.4s;
  }
  nav ul li:nth-child(6) {
    transition-delay: 0.48s;
  }
  nav ul li:nth-child(7) {
    transition-delay: 0.56s;
  }
  nav ul li:nth-child(8) {
    transition-delay: 0.64s;
  }
  nav ul li:nth-child(9) {
    transition-delay: 0.72s;
  }
  nav ul li:nth-child(10) {
    transition-delay: 0.8s;
  }
  nav ul li a {
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    color: white;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s;
  }
  nav ul li a:active {
    color: rgba(255, 255, 255, 0.6);
  }
  nav ul li a::after {
    display: none;
  }
  nav ul li.has-submenu {
    flex-direction: column;
  }
  nav ul li .submenu {
    position: static;
    transform: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border: none;
    display: block;
    padding: 0;
    border-radius: 8px;
    margin-top: 5px;
  }
  nav ul li .submenu li {
    opacity: 1;
    transform: none;
    margin-bottom: 0;
    border-bottom: none;
    border-top: none;
  }
  nav ul li .submenu li:nth-child(1) {
    transition-delay: 0s;
  }
  nav ul li .submenu li:nth-child(2) {
    transition-delay: 0s;
  }
  nav ul li .submenu li:nth-child(3) {
    transition-delay: 0s;
  }
  nav ul li .submenu li:nth-child(4) {
    transition-delay: 0s;
  }
  nav ul li .submenu li:nth-child(5) {
    transition-delay: 0s;
  }
  nav ul li .submenu li:nth-child(6) {
    transition-delay: 0s;
  }
  nav ul li .submenu li:nth-child(7) {
    transition-delay: 0s;
  }
  nav ul li .submenu li:nth-child(8) {
    transition-delay: 0s;
  }
  nav ul li .submenu li:nth-child(9) {
    transition-delay: 0s;
  }
  nav ul li .submenu li:nth-child(10) {
    transition-delay: 0s;
  }
  nav ul li .submenu li a {
    padding: 10px 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
  }
}

@media screen and (max-width: 767px) {
  /* Body Text: 18px - 20px -> 1rem - 1.11rem */
  body, p, li, dt, dd {
    font-size: 1rem;
  }
  /* Headings (H2, H3): 22px - 28px -> 1.22rem - 1.55rem */
  h3 {
    font-size: 1.22rem !important;
  }
  /* Annotations / Notes: 14px - 15px -> 0.77rem - 0.83rem */
  small, .note, .annotation, .date, .sub-text {
    font-size: 0.77rem !important;
  }
  /* Buttons: 18px or larger -> 1rem */
  button, .btn, input[type="submit"], input[type="button"], a.button {
    font-size: 1rem !important;
  }
  /* Form inputs to prevent zoom on iOS */
  input, textarea, select {
    font-size: 1rem !important;
  }
}

.pre-inquiry-message {
  margin: 60px auto 40px;
  max-width: 800px;
  background: var(--content-bg-color);
  border: 1px solid var(--main-color);
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}

.pre-inquiry-message h3 {
  color: var(--sub-color);
  font-size: 1.3rem;
  margin-bottom: 16px;
  border: none;
  box-shadow: none;
  padding: 0;
}

.pre-inquiry-message h3::after {
  content: none;
}

.pre-inquiry-message p {
  margin: 0;
  color: var(--text-color);
}

body.lp {
  /* LP Specific Styles */
  --main-color: #2c3e50;
  --main-bg-color: #ffecd2;
  --header-bg: #1b4f3b;
  --header-info-bg: #ffecd2;
  --header-info-text-color: #1a252f;
  --sub-color: #1b4f3b;
  --text-color: #1a252f;
  --accent-color: #2c3e50;
  --content-bg-color: #ffecd2;
  /* Override/Additions */
  /* Main Visual */
  /* Greeting */
  /* Service Flow (Genchi Chokoku) */
  /* Price Box */
  /* Proxy Service */
  /* FAQ */
  /* Contact (Reuse existing form styles, simplified here) */
  /* Photos */
  /* --- Emphasis Updates --- */
  /* Highlighted Section */
}

body.lp .lp-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

body.lp .lp-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--sub-color);
  border-bottom: 2px solid var(--main-color);
  display: inline-block;
  padding-bottom: 10px;
}

body.lp .lp-section h2.block-title {
  display: block;
  width: 100%;
  border: 1px solid var(--sub-color);
  background: white;
  padding: 16px 24px;
  text-align: left;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}

body.lp .main-visual {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-color: #333;
  overflow: hidden;
}

body.lp .main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

body.lp .main-visual .catch-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
  width: 90%;
}

body.lp .main-visual h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Noto Serif JP', serif;
}

body.lp .main-visual img {
  display: block;
}

body.lp .greeting-box {
  background: white;
  padding: 40px;
  border: 1px solid var(--sub-color);
  margin-top: 0;
}

body.lp .flow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

body.lp .flow-step {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

body.lp .step-num {
  background: var(--main-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

body.lp .step-content {
  flex-grow: 1;
}

body.lp .price-box {
  background: #fff8f0;
  border: 2px solid var(--main-color);
  padding: 30px;
  margin: 30px 0;
  text-align: center;
  border-radius: 10px;
}

body.lp .price-main {
  font-size: 2rem;
  color: #d35400;
  font-weight: bold;
}

body.lp .price-main span {
  font-size: 1rem;
  color: #333;
}

body.lp .price-note {
  font-size: 0.9rem;
  color: #666;
}

body.lp .proxy-service {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}

body.lp dl.faq-list {
  width: 100%;
}

body.lp .faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

body.lp .faq-item dt {
  font-weight: bold;
  color: var(--sub-color);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

body.lp .faq-item dt::before {
  content: "Q. ";
  color: var(--main-color);
}

body.lp .faq-item dd {
  margin-left: 20px;
  line-height: 1.8;
}

body.lp .faq-item dd::before {
  content: "A. ";
  color: #2d3436;
  font-weight: bold;
}

body.lp .contact-info {
  text-align: center;
  margin-bottom: 40px;
}

body.lp .phone-big {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--sub-color);
}

body.lp .photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

body.lp .photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}

body.lp .photo-grid img:hover {
  transform: scale(1.05);
}

body.lp .main-visual .catch-copy {
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
}

body.lp .main-visual h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

body.lp .sub-catch {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

body.lp .main-catch-strong {
  font-size: 1.8rem;
  color: var(--main-bg-color);
  font-weight: bold;
  text-shadow: 2px 2px 2px black;
}

body.lp .highlight-section-header {
  text-align: center;
  margin-bottom: 30px;
}

body.lp h2.block-title.strong-emphasis {
  background: var(--sub-color);
  color: white;
  padding: 20px 40px;
  font-size: 2.2rem;
  border: 4px solid var(--main-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: inline-block;
  width: auto;
}

body.lp .section-lead {
  font-size: 1.2rem;
  margin-top: 20px;
  font-weight: bold;
}

body.lp .highlight-post {
  border: 3px solid var(--main-color) !important;
  background: #fffafa !important;
  /* Slight red/warm tint */
}

body.lp .lead-text-box {
  font-size: 1.2rem;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 8px;
  border: 1px dashed var(--main-color);
  margin-bottom: 40px;
}

body.lp .attention-box {
  margin-top: 30px;
  padding: 20px;
  background: #fff3cd;
  border-left: 5px solid #ffc107;
}

body.lp .attention-box .box-title {
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
  color: #856404;
}

body.lp .price-box.emphasis {
  background: white;
  border: 4px double var(--main-color);
  position: relative;
}

body.lp .price-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-color);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  body.lp .main-visual {
    min-height: 350px;
  }
  body.lp .main-visual h2 {
    font-size: 2.5rem;
  }
  body.lp .sub-catch {
    font-size: 1.2rem;
  }
  body.lp .main-catch-strong {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  body.lp .main-visual {
    min-height: min-content;
  }
  body.lp .main-visual .catch-copy {
    padding: 16px 12px;
  }
  body.lp .main-visual h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  body.lp .sub-catch {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  body.lp .main-catch-strong {
    font-size: 1.05rem;
  }
}

body.lp nav {
  display: none !important;
}

.required-badge {
  display: inline-block;
  background-color: #e74c3c;
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: bold;
}

.form-note {
  font-size: 0.9rem;
  color: #e74c3c;
  margin-bottom: 16px;
  font-weight: bold;
}
/*# sourceMappingURL=style.css.map */