/* ConnectForce - quick-lake-130.css */
/* DP04182026 */

/* === RESET / BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; font-size: 16px; color: #000000; background-color: #FFFFFF; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .3s ease; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: 'Noto Serif JP', serif; font-weight: 700; line-height: 1.2; color: #313330; }
h1 { font-size: 46px; }
h2 { font-size: 34px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
p { margin-bottom: 16px; color: #252525; }
p:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  h1 { font-size: 32px !important; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
}

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; }

/* === PLACEHOLDERS === */
::-webkit-input-placeholder { font-family: 'Noto Sans JP', sans-serif; font-weight: normal !important; color: #000 !important; font-size: 15px !important; }
::-moz-placeholder { font-family: 'Noto Sans JP', sans-serif; font-weight: normal !important; color: #000 !important; font-size: 15px !important; }
:-ms-input-placeholder { font-family: 'Noto Sans JP', sans-serif; font-weight: normal !important; color: #000 !important; font-size: 15px !important; }
:-moz-placeholder { font-family: 'Noto Sans JP', sans-serif; font-weight: normal !important; color: #000 !important; font-size: 15px !important; }
textarea { font-family: 'Noto Sans JP', sans-serif; resize: none !important; font-weight: normal !important; color: #000 !important; font-size: 15px !important; }

/* === BUTTONS === */
.btn { display: inline-block; font-size: 15px !important; padding: 14px 40px !important; font-family: 'Noto Sans JP', sans-serif !important; cursor: pointer; transition: background .3s ease, border-color .3s ease, color .3s ease; text-align: center; letter-spacing: 0.03em; }
.btn--dark { color: #545952 !important; border: 2px solid #545952 !important; background: transparent; }
.btn--light { color: #fff !important; border: 2px solid #fff !important; background: transparent; }
.btn:hover { background: #6e736b !important; border-color: #6e736b !important; color: #fff !important; }

/* === HEADER === */
.site-header { background: #FFFFFF; position: sticky; top: 0; z-index: 999; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.header__main { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 20px; }

.header__logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header__logo svg { height: 44px; width: auto; }
.header__logo-text { font-family: 'Noto Serif JP', serif; font-size: 18px; font-weight: 700; color: #313330; line-height: 1.1; }
.header__logo-sub { font-size: 11px; font-weight: 400; color: #6e736b; font-family: 'Noto Sans JP', sans-serif; letter-spacing: 0.05em; display: block; }

.header__nav ul { display: flex; align-items: center; gap: 4px; }
.header__nav ul li { margin: 0 5px; }
.header__nav ul li a { font-size: 14px; color: #313330; padding: 6px 4px; font-weight: 500; transition: color .3s ease; }
.header__nav ul li a:hover, .header__nav ul li.current > a { color: #6e736b !important; }

.header__call { background: #313330 !important; color: #fff; padding: 12px 22px 12px 16px; display: flex; align-items: center; gap: 8px; transition: background .3s ease !important; text-decoration: none; white-space: nowrap; }
.header__call:hover { background: #6e736b !important; }
.header__call i { font-size: 16px; color: #fff; }
.header__call-number { font-size: 14px; font-weight: 600; color: #fff; font-family: 'Noto Sans JP', sans-serif; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #313330; transition: .3s ease; }
.hamburger:hover span { background: #bfbfbf; }

@media (max-width: 900px) {
  .header__nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
  .header__nav.is-open { display: block; }
  .header__nav ul { flex-direction: column; gap: 0; }
  .header__nav ul li { margin: 0; border-bottom: 1px solid #f0f0f0; }
  .header__nav ul li a { display: block; padding: 10px 4px; font-size: 15px; }
  .hamburger { display: flex; }
  .site-header { position: relative; }
  .header__main { position: relative; }
}
@media (max-width: 600px) {
  .header__call-number { display: none; }
  .header__call { padding: 12px 16px; }
}

/* === HERO === */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; background-position: center center; background-repeat: no-repeat; background-size: cover; }
.hero__overlay { position: absolute; inset: 0; background: rgba(48, 51, 47, 0.68); }
.hero__content { position: relative; z-index: 1; max-width: 700px; padding: 80px 0; }
.hero__content h1 { color: #fff; margin-bottom: 20px; }
.hero__content p { color: rgba(255,255,255,0.88); font-size: 17px; margin-bottom: 28px; max-width: 580px; }

/* === SERVICES ROW === */
.services-row { background: #313330; }
.services-row .container { padding-top: 0; padding-bottom: 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-card { position: relative; min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 24px 16px; overflow: hidden; cursor: default; transition: .3s ease; }
.service-card__bg { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; transition: transform .4s ease; }
.service-card::before { content: ''; position: absolute; inset: 0; background: rgba(48, 51, 47, 0.65); z-index: 1; transition: background .3s ease; }
.service-card:hover::before { background: rgba(110, 115, 107, 0.6); }
.service-card:hover .service-card__bg { transform: scale(1.04); }
.service-card__icon { position: relative; z-index: 2; color: #fff; font-size: 28px; margin-bottom: 10px; }
.service-card__title { position: relative; z-index: 2; color: #fff; font-size: 14px; font-weight: 600; font-family: 'Noto Serif JP', serif; text-align: center; line-height: 1.4; }

@media (max-width: 767px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 160px; }
}
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* === CONTENT AREA: SINGLE CENTERED === */
.section--single { padding-top: 60px; padding-bottom: 60px; }
.section--single.bg-white { background-color: #ffffff; }
.section--single.bg-gray { background-color: #f6f6f6; }
.content--centered { text-align: center; }
.content--medium { max-width: 800px; margin: 0 auto; }
.content--medium h2 { margin-bottom: 20px; }
.content--medium p { margin-bottom: 16px; }
.section__button { margin-top: 28px; }

/* === CONTENT AREA: IMAGE LEFT === */
.section--image-left { padding-top: 60px; padding-bottom: 60px; background-color: #f6f6f6; }
.image-left__flex { display: flex; align-items: center; gap: 50px; }
.image-left__img { flex: 0 0 42%; max-width: 42%; }
.image-left__img img { width: 100%; object-fit: cover; }
.image-left__content { flex: 1; }
.image-left__content h2 { margin-bottom: 18px; }
.image-left__content p { margin-bottom: 14px; }

@media (max-width: 767px) {
  .image-left__flex { flex-direction: column; gap: 24px; }
  .image-left__img { flex: 0 0 100%; max-width: 100%; }
}

/* === PARALLAX === */
.section--parallax { padding-top: 80px; padding-bottom: 80px; background-position: center center; background-repeat: no-repeat; background-size: cover; position: relative; }
.section--parallax .parallax-overlay { position: absolute; inset: 0; background: rgba(48, 51, 47, 0.72); }
.section--parallax .container { position: relative; z-index: 1; }
.section--parallax h2 { color: #fff; margin-bottom: 18px; }
.section--parallax p { color: rgba(255,255,255,0.88); font-size: 17px; margin-bottom: 24px; }

/* === PRICING === */
.section--pricing { padding-top: 60px; padding-bottom: 60px; background-color: #ffffff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.price-card { border: 2px solid #e4e4e4; padding: 36px 28px; text-align: center; transition: border-color .3s ease, transform .3s ease; }
.price-card:hover { border-color: #6e736b; transform: translateY(-4px); }
.price-card--featured { border-color: #313330; background: #313330; color: #fff; }
.price-card--featured h3, .price-card--featured p, .price-card--featured .price-card__price, .price-card--featured li { color: #fff; }
.price-card__label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #6e736b; margin-bottom: 10px; font-weight: 600; }
.price-card--featured .price-card__label { color: #bfbfbf; }
.price-card h3 { margin-bottom: 14px; }
.price-card__price { font-size: 38px; font-family: 'Noto Serif JP', serif; font-weight: 700; color: #313330; line-height: 1; margin-bottom: 6px; }
.price-card__period { font-size: 13px; color: #6e736b; margin-bottom: 20px; }
.price-card__features { text-align: left; margin-bottom: 28px; }
.price-card__features li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.price-card--featured .price-card__features li { border-bottom-color: rgba(255,255,255,0.1); }
.price-card__features li i { color: #6e736b; margin-top: 2px; flex-shrink: 0; }
.price-card--featured .price-card__features li i { color: #bfbfbf; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

/* === LIST COLUMNS === */
.list-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 36px; justify-content: center; }
.list-column { padding: 28px 20px; }
.list-column__icon { font-size: 26px; color: #6e736b; margin-bottom: 14px; }
.list-column__title { font-family: 'Noto Serif JP', serif; font-weight: 600; font-size: 18px; line-height: 1.3; margin-bottom: 10px; color: #313330; }
.list-column p { font-size: 14px; color: #545952; }

@media (max-width: 767px) {
  .list-columns { grid-template-columns: 1fr; }
  .list-column { padding: 16px 10px; }
}

/* === CONTACT SECTION === */
.section--contact { padding-top: 60px; padding-bottom: 60px; background: #ffffff; }
.contact__flex { display: flex; gap: 50px; align-items: flex-start; }
.contact__info { flex: 0 0 45%; }
.contact__info h2 { margin-bottom: 24px; }
.contact__info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact__info-item i { font-size: 16px; color: #6e736b; margin-top: 3px; flex-shrink: 0; width: 20px; text-align: center; }
.contact__info-item p { margin: 0; font-size: 15px; line-height: 1.6; }
.contact__info-item a { color: #6e736b; font-weight: 600; }
.contact__info-item a:hover { color: #000; }
.contact__form { flex: 1; }
.contact__form h3 { margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; border: 1px solid #e4e4e4; padding: 12px 16px; font-family: 'Noto Sans JP', sans-serif; font-size: 15px; color: #000; outline: none; transition: border-color .3s ease; background: #fff; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #6e736b; }
.form-group textarea { min-height: 120px; resize: none; }
.form__submit .btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .contact__flex { flex-direction: column; gap: 36px; }
  .contact__info { flex: 0 0 100%; }
}

/* === PAGE HEADER === */
.page__header { background: #545952; padding: 50px 0; }
.page__header h1 { color: #fff; font-size: 36px; }
.page__header p { color: rgba(255,255,255,0.8); margin-top: 8px; font-size: 16px; margin-bottom: 0; }

/* === CONTENT PAGES === */
.page-content { padding: 60px 0; }
.page-content h2 { margin-top: 32px; margin-bottom: 12px; font-size: 22px; }
.page-content h3 { margin-top: 24px; margin-bottom: 10px; font-size: 18px; }
.page-content p { margin-bottom: 14px; color: #252525; }
.page-content ul, .page-content ol { margin-bottom: 16px; padding-left: 24px; }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 8px; color: #252525; font-size: 15px; }
.page-content a { color: #6e736b; font-weight: 600; }
.page-content a:hover { color: #000; }

/* === FAQ (help.html) === */
.faq-item { border-bottom: 1px solid #e4e4e4; padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; }
.faq-question h4 { font-size: 16px; font-weight: 600; color: #313330; margin: 0; font-family: 'Noto Sans JP', sans-serif; }
.faq-question i { color: #6e736b; flex-shrink: 0; transition: transform .3s ease; }
.faq-item.is-open .faq-question i { transform: rotate(45deg); }
.faq-answer { display: none; padding-top: 14px; }
.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { color: #545952; font-size: 15px; margin: 0; }

/* === FOOTER === */
.footer-scroll-top { text-align: right; padding: 14px 0; background: #3d3d3a; }
.footer-scroll-top a { color: #6e736b !important; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.footer-scroll-top a:hover { color: #fff !important; }

.site-footer { background: #313330; color: #fff; }
.footer__top { background: #313330; padding: 36px 0 24px; }
.footer__top .row { gap: 0; }
.footer__nav-col { flex: 0 0 50%; max-width: 50%; }
.footer__nav-col ul { display: flex; flex-wrap: wrap; gap: 4px 0; flex-direction: column; }
.footer__top a { font-size: 14px !important; color: rgba(255,255,255,0.75); }
.footer__top a:hover, .footer__top .current > a { color: #bfbfbf !important; }
.footer__top li { margin-bottom: 6px; }
.footer__logo-col { flex: 0 0 50%; max-width: 50%; display: flex; align-items: flex-start; justify-content: flex-end; }
.footer__logo-col svg { height: 38px; width: auto; filter: drop-shadow(0 0 0.015rem #f8f3e8); opacity: 0.8; }

.footer__bottom { background: #313330; border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.footer__bottom .row { align-items: center; justify-content: space-between; }
.footer__copyright { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer__aux-links { display: flex; gap: 18px; }
.footer__aux-links a { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer__aux-links a:hover { color: #bfbfbf; }

@media (max-width: 767px) {
  .footer__nav-col, .footer__logo-col { flex: 0 0 100%; max-width: 100%; }
  .footer__logo-col { justify-content: center; margin-top: 20px; }
  .footer__bottom .row { flex-direction: column; gap: 12px; text-align: center; }
  .footer__aux-links { flex-wrap: wrap; justify-content: center; }
  footer * { text-align: center !important; }
  .footer__nav-col ul { align-items: center; }
}

/* === GDPR COOKIE BANNER === */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #313330; color: #fff; padding: 18px 24px; z-index: 9999; display: flex; align-items: center; justify-content: space-between; gap: 20px; box-shadow: 0 -2px 10px rgba(0,0,0,0.2); }
.cookie-banner p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.cookie-banner a { color: #bfbfbf; text-decoration: underline; }
.cookie-banner a:hover { color: #fff; }
.cookie-banner__buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { font-size: 13px; padding: 8px 20px; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; border: none; transition: .3s ease; }
.cookie-btn--accept { background: #6e736b; color: #fff; }
.cookie-btn--accept:hover { background: #545952; }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
.cookie-btn--decline:hover { border-color: #fff; color: #fff; }
.cookie-banner.is-hidden { display: none; }

@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* === TESTIMONIALS === */
.section--testimonials { padding: 60px 0; background: #f6f6f6; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.testimonial-card { background: #fff; padding: 28px 24px; border-left: 3px solid #6e736b; }
.testimonial-card p { font-size: 15px; color: #545952; font-style: italic; margin-bottom: 16px; }
.testimonial-card__meta { font-size: 14px; font-weight: 600; color: #313330; }
.testimonial-card__meta span { font-weight: 400; color: #6e736b; display: block; font-size: 12px; }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

/* === SEND.PHP PAGE === */
.send-result { padding: 80px 0; text-align: center; }
.send-result i { font-size: 52px; color: #6e736b; margin-bottom: 20px; }
.send-result h1 { margin-bottom: 16px; }
.send-result p { max-width: 500px; margin: 0 auto 28px; }

/* === MISC === */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.section-tag { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #6e736b; font-weight: 600; display: block; margin-bottom: 10px; }
