/* ===========================================================
 * Event LP 専用CSS
 * GranDesign
 * =========================================================== */

/* ------------------ リセットに近い基本 ------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #333;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
}

.sp { display: none; }

@media screen and (max-width: 767px) {
  .sp { display: inline; }
}

/* ------------------ 共通レイアウト ------------------ */

.section {
  padding: 64px 16px;
}

.section.bg-light {
  background: #f7f7f9;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 24px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 16px auto 0;
  background: #f08a24;
  border-radius: 999px;
}

.section-lead {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 720px;
  font-size: 0.98rem;
}

/* ボタン */
.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  background: #f08a24;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* 必須マーク */
.required {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  font-size: 0.75rem;
  color: #fff;
  background: #e53935;
  border-radius: 4px;
}

/* ------------------ ヘッダー ------------------ */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.site-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}

.site-header-contact {
  text-align: right;
  font-size: 0.85rem;
}

.header-tel {
  margin: 2px 0;
  font-weight: 700;
}

.header-tel span {
  font-size: 1.1rem;
}

.header-tel-time {
  margin: 0 0 4px;
}

@media screen and (max-width: 767px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .site-header-contact {
    text-align: left;
  }
}

/* ------------------ FV ------------------ */

.fv {
  background: linear-gradient(135deg, #ffe0b2 0%, #fff3e0 40%, #ffffff 100%);
  padding: 32px 16px 48px;
}

.fv-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.fv-text {
  flex: 1;
}

.fv-label {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.85rem;
  background: #fff;
  border-left: 4px solid #f08a24;
  border-radius: 999px;
  margin: 0 0 12px;
}

.fv-title {
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 0 0 16px;
}

.fv-lead {
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.fv-point-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 0.9rem;
}

.fv-point-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}

.fv-point-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.7rem;
  color: #f08a24;
}

.fv-cta {
  margin-top: 8px;
}

.fv-cta-note {
  font-size: 0.85rem;
  margin-top: 4px;
}

.fv-image {
  flex: 1;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .fv-inner {
    flex-direction: column;
  }
  .fv-title {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .fv {
    padding-top: 24px;
  }
  .fv-title {
    font-size: 1.6rem;
  }
}

/* ------------------ 活用シーン ------------------ */

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.scene-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.scene-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 12px 0 8px;
}

.scene-text {
  font-size: 0.9rem;
  margin: 0;
}

@media screen and (max-width: 959px) {
  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .scene-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------ 強み ------------------ */

.strength-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.strength-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  position: relative;
}

.strength-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(240, 138, 36, 0.15);
}

.strength-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.strength-text {
  font-size: 0.9rem;
  margin: 0;
}

@media screen and (max-width: 959px) {
  .strength-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .strength-list {
    grid-template-columns: 1fr;
  }
}

/* ------------------ 料金表 ------------------ */

.price-table-wrapper {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
}

.price-table th {
  background: #ffe0b2;
  text-align: center;
}

.price-table td {
  vertical-align: top;
}

.price-note {
  margin-top: 16px;
  font-size: 0.9rem;
  text-align: center;
}

/* ------------------ 流れ ------------------ */

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: flow;
}

.flow-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed #ddd;
}

.flow-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f08a24;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-body {
  flex: 1;
}

.flow-title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.flow-text {
  margin: 0;
  font-size: 0.9rem;
}

@media screen and (max-width: 767px) {
  .flow-item {
    flex-direction: row;
  }
}

/* ------------------ Q&A ------------------ */

.qa-list {
  margin: 0;
  padding: 0;
}

.qa-item {
  margin-bottom: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.qa-item dt {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.qa-item dd {
  margin: 0;
  font-size: 0.9rem;
}

/* ------------------ フォーム ------------------ */

.section-form {
  background: #fff8e8;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 24px 16px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 0.9rem;
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.95rem;
}

.form-row textarea {
  resize: vertical;
}

/* honeypotは画面非表示 */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  text-align: center;
  margin-top: 24px;
}

.form-note {
  font-size: 0.85rem;
  margin-top: 8px;
}

/* ------------------ フッター ------------------ */

.site-footer {
  background: #333;
  color: #fff;
  padding: 24px 16px;
  font-size: 0.85rem;
}

.site-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.footer-name {
  margin: 0 0 4px;
}

.footer-address,
.footer-tel,
.footer-copy {
  margin: 0;
}

/* ------------------ サンクスページ ------------------ */

.thanks-body {
  background: #f7f7f9;
}

.section-thanks .section-inner {
  max-width: 720px;
}

.thanks-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  font-size: 0.95rem;
}

.thanks-tel {
  margin-top: 12px;
  font-weight: 700;
  text-align: center;
}

.thanks-tel span {
  font-size: 1.05rem;
}

.thanks-back {
  text-align: center;
  margin-top: 24px;
}
.section-cta {
  text-align: center;
  margin: 40px 0 20px;
}

.section-cta .btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: #e85a00;
  color: #fff;
  border-radius: 6px;
  font-size: 1.1rem;
  text-decoration: none;
}

.section-cta .btn-primary:hover {
  opacity: 0.85;
}