/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 27 2026 | 12:24:45 */
/* =========================================
   LP Contact Page Styles
   Scope: .lp-contact-wrapper
   ========================================= */

/* --- Base & Reset within scope --- */
.lp-contact-wrapper {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS Mincho E", serif;
  color: #6d5d4d; /* 優しいブラウン */
  line-height: 1.8;
  background-color: #f5f0e6;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.lp-contact-wrapper * {
  box-sizing: border-box;
}

.lp-contact-wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.lp-contact-wrapper a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.lp-contact-wrapper a:hover {
  opacity: 0.7;
}

/* --- Common Utility --- */
.lp-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
	.lp-contact-inner {
	  padding: 0 20px;	
	}
}

.lp-contact-section {
  padding: 60px 0;
}

.lp-contact-title-serif {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 30px;
  letter-spacing: 0.1em;
  color: #6d5d4d;
  border: none;
}

.lp-contact-card-support {
  background-color: #fff;
  border: 1px solid #eaddcf;
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(109, 93, 77, 0.05);
  overflow: hidden;
  position: relative;
}

/* 飾り線 */
.lp-contact-card-support::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed #eaddcf;
  border-radius: 8px;
  pointer-events: none;
}

.lp-contact-text-body p {
  margin-bottom: 1.5em;
  font-size: 18px;
  text-align: left;
}
@media (max-width: 767px) {
  .lp-contact-text-body p {
    font-size: 16px;		
  }
}

.lp-contact-text-body p:last-child {
  margin-bottom: 0;
}

/* 背景の肉球アイコン（CSSで表現） */
.lp-contact-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 150px;
    opacity: 0.05;
    color: #6d5d4d;
    pointer-events: none;
    z-index: 0;
}
.lp-contact-bg-icon::after {
    content: "🐾"; /* 簡易的に文字で代用 */
}

/* ボタン */
.lp-contact-btn-area {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.lp-contact-btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: sans-serif;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.lp-contact-btn-primary {
  background-color: #ffffff;
  border: 1px solid #8ca67e; /* 落ち着いた緑 */
  color: #556b4d;
}

.lp-contact-btn-primary:hover {
  background-color: #8ca67e;
  color: #fff;
}

/* --- Visual Break --- */
.lp-contact-visual-break {
  margin: 60px 0 0;
  width: 100%;
}
.lp-contact-break-img {
  position: relative;
  margin: 0;
}
.lp-contact-break-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.lp-contact-break-img figcaption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.85);
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 4px;
  color: #6d5d4d;
}
@media (max-width: 767px) {
  .lp-contact-break-img figcaption {
    font-size: 16px;		
  }
}


/* --- Reserve Section --- */
.lp-contact-reserve-section {
  background-color: #fdfcf8;
}

.lp-contact-section-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #6d5d4d;
  border: none;
}

.lp-contact-section-desc {
  text-align: center;
  font-size: 18px;
}
@media (max-width: 767px) {
  .lp-contact-section-desc {
    font-size: 16px;		
  }
}

.lp-contact-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.lp-contact-grid-item {
  background: #fff;
  flex: 1;
  min-width: 280px;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-contact-subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #6d5d4d;
  border-bottom: 2px solid #f5f0e6;
  padding-bottom: 15px;
  width: 100%;
}

.lp-contact-subtitle .en {
  display: block;
  font-size: 14px;
  font-family: sans-serif;
  color: #998a7b;
  margin-top: 5px;
  font-weight: normal;
}

.lp-contact-text-sm {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  margin-top: 20px;
  color: #555;
  font-family: sans-serif; /* 読みやすさ重視 */
}
@media (max-width: 767px) {
  .lp-contact-text-sm {
    font-size: 16px;		
  }
}

.en-text {
  margin-top: 15px;
  font-size: 16px;
  color: #888;
}
@media (max-width: 767px) {
  .en-text {
    font-size: 14px;		
  }
}

/* 各種ボタン・リンク */
.lp-contact-btn-area-sm {
  margin-bottom: 10px;
}

.lp-contact-btn-line {
  background-color: #06c755;
  color: #fff;
  width: 100%;
  min-width: 200px;
  text-align: center;
}
.lp-contact-btn-line:hover {
  background-color: #05b34c;
  color: #fff;
}

.lp-contact-phone-area {
  margin: 10px 0;
}
.lp-contact-tel {
  font-size: 24px;
  font-weight: bold;
  color: #6d5d4d;
  font-family: sans-serif;
  border-bottom: 1px dotted #6d5d4d;
}

.lp-contact-btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  width: 100%;
  min-width: 200px;
  text-align: center;
}
.lp-contact-btn-whatsapp:hover {
  background-color: #20bd5a;
  color: #fff;
}

/* --- Mobile Responsive --- */
@media (max-width: 767px) {
  .lp-contact-title-serif {
    font-size: 22px;
  }
  .lp-contact-card-support {
    padding: 30px 20px;
  }
  .lp-contact-grid {
    flex-direction: column;
  }
  .lp-contact-grid-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .lp-contact-break-img img {
    height: 250px;
  }
}

.lp-contact-wrapper .ats-faq-grid {
	margin-bottom: 60px;
}