/*
Theme Name:     Lightning-child
Description:    Lightningの子テーマ
Author:         login_user
Template:       lightning

(optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
*/

/* ========================================
   Lightning-child
   このファイルには「テーマ共通の調整だけ」を置く
   自治会プラグイン専用のCSSはプラグイン側 assets/style.css へ移動
======================================== */

/* -----------------------------
	改行
----------------------------- */

.hidden {
	display: none;
}

.hidden.pcBlock {
	display: inline;
}

@media screen and (max-width: 640px) {
	.hidden.pcBlock {
		display: none;
	}

	.hidden.spBlock {
		display: inline;
	}
}

/*スマホcenter⇒left*/
@media screen and (max-width: 800px) {
	.mobile-left {
		text-align:left;
	}
}

/* -----------------------------
	汎用
----------------------------- */

.clear {
    clear:both;
}

.floatL{
	float:left;
	margin: 0;
}

.floatR{
	float:right;
	margin: -15px 0 0 20px;
}

.center{
	text-align:center;
}

.right{
	text-align:right;
}

.left{
	text-align:left;
}

.underline {
    text-decoration:underline;
}

strong {
	font-weight:bold;
}

em {
	font-weight:bold;
}

.font-bold {
	font-weight:bold;
}

.font-normal {
	font-weight:normal;
}

.indent-1 {
	margin:0 0 0 1em;
	text-indent: -1em;
}

.indent1 {
	text-indent: 1em;
}



/*******************************
*
*イベントレポート管理プラグイン
*
*******************************/

/* Photo Frame Sales Page */
.pfs-page {
  --pfs-navy: #07175d;
  --pfs-blue: #1f75b8;
  --pfs-gold: #c7a34a;
  --pfs-text: #172033;
  --pfs-muted: #667085;
  --pfs-line: #e7eaf0;
  --pfs-bg: #f7f9fd;
  color: var(--pfs-text);
}

.pfs-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Hero */
.pfs-hero {
  padding: 76px 0 70px;
  background:
    radial-gradient(circle at 15% 10%, rgba(31,117,184,.12), transparent 34%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #f8f6ee 100%);
  overflow: hidden;
}

.pfs-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 42px;
  align-items: center;
}

.pfs-label,
.pfs-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--pfs-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pfs-label::before,
.pfs-section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--pfs-gold);
}

.pfs-hero h1 {
  margin: 0 0 22px;
  color: var(--pfs-navy);
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: .03em;
}

.pfs-lead {
  margin: 0 0 14px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.9;
}

.pfs-lead-sub {
  margin: 0;
  max-width: 720px;
  color: var(--pfs-muted);
  font-size: 16px;
  line-height: 1.9;
}

.pfs-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pfs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.pfs-btn-main {
  background: var(--pfs-navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7,23,93,.22);
}

.pfs-btn-main:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7,23,93,.28);
}

.pfs-btn-sub {
  background: #fff;
  color: var(--pfs-navy);
  border: 1px solid rgba(7,23,93,.16);
}

.pfs-btn-sub:hover {
  color: var(--pfs-navy);
  transform: translateY(-2px);
}

.pfs-hero-panel {
  position: relative;
}

.pfs-panel-card {
  background: #fff;
  border: 1px solid var(--pfs-line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(7,23,93,.14);
}

.pfs-panel-kicker {
  margin: 0 0 14px;
  color: var(--pfs-navy);
  font-weight: 900;
}

.pfs-panel-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfs-panel-card li {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f7f9fd;
  color: var(--pfs-navy);
  font-weight: 800;
}

/* Section */
.pfs-section {
  padding: 72px 0;
}

.pfs-section-soft {
  background: var(--pfs-bg);
}

.pfs-section-head {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.pfs-section-head h2 {
  margin: 0 0 14px;
  color: var(--pfs-navy);
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.45;
  font-weight: 900;
}

.pfs-section-head p {
  margin: 0;
  color: var(--pfs-muted);
  line-height: 1.9;
}

/* Problem */
.pfs-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pfs-problem-card {
  background: #fff;
  border: 1px solid var(--pfs-line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(7,23,93,.07);
}

.pfs-problem-card h3 {
  margin: 0 0 12px;
  color: var(--pfs-navy);
  font-size: 18px;
  font-weight: 900;
}

.pfs-problem-card p {
  margin: 0;
  color: var(--pfs-muted);
  line-height: 1.8;
}

/* Features */
.pfs-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pfs-feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--pfs-line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(7,23,93,.07);
}

.pfs-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(7,23,93,.08);
  color: var(--pfs-navy);
  font-size: 13px;
  font-weight: 900;
}

.pfs-feature-card h3 {
  margin: 0 0 10px;
  color: var(--pfs-navy);
  font-size: 19px;
  font-weight: 900;
}

.pfs-feature-card p {
  margin: 0;
  color: var(--pfs-muted);
  line-height: 1.8;
}

/* Display demo */
.pfs-display-box {
  max-width: 920px;
  margin: 0 auto;
}

.pfs-display-main {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  overflow: hidden;
  border: 1px solid var(--pfs-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7,23,93,.12);
}



.pfs-display-text {
  padding: 34px;
  background: linear-gradient(145deg, #ffffff 0%, #f7f9fd 100%);
}

.pfs-date {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(7,23,93,.08);
  color: var(--pfs-navy);
  font-weight: 900;
  font-size: 13px;
}

.pfs-display-text h3 {
  margin: 0 0 14px;
  color: var(--pfs-navy);
  font-size: 26px;
  font-weight: 900;
}

.pfs-display-text p:last-child {
  margin: 0;
  color: var(--pfs-muted);
  line-height: 1.9;
}

.pfs-thumb-demo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.pfs-thumb-demo div {
  min-height: 145px;
  border-radius: 18px;
  background: #eef2f7;
  box-shadow: 0 12px 28px rgba(7,23,93,.08);
}

.pfs-display-image {
  min-height: 330px;
  background:
    linear-gradient(135deg, rgba(7,23,93,.12), rgba(199,163,74,.1)),
    url("https://mihon1.gyosei-syoshi.com/images/1.jpg") center / cover;
}

.pfs-thumb-demo div:nth-child(1) {
  background: url("https://mihon1.gyosei-syoshi.com/images/1.jpg") center / cover;
}

.pfs-thumb-demo div:nth-child(2) {
  background: url("https://mihon1.gyosei-syoshi.com/images/2.jpg") center / cover;
}

.pfs-thumb-demo div:nth-child(3) {
  background: url("https://mihon1.gyosei-syoshi.com/images/3.jpg") center / cover;
}

.pfs-demo-link-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pfs-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--pfs-navy);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(7, 23, 93, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.pfs-demo-link:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 23, 93, .28);
}

.pfs-demo-link-text,
.pfs-demo-link-arrow {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.pfs-demo-link-arrow {
  font-size: 17px;
  transform: translateY(0);
}


/* Use cases */
.pfs-use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pfs-use-grid div {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--pfs-line);
  color: var(--pfs-navy);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(7,23,93,.06);
}

/* Admin list */
.pfs-admin-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pfs-admin-list div {
  padding: 24px;
  border: 1px solid var(--pfs-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7,23,93,.07);
}

.pfs-admin-list h3 {
  margin: 0 0 10px;
  color: var(--pfs-navy);
  font-size: 18px;
  font-weight: 900;
}

.pfs-admin-list p {
  margin: 0;
  color: var(--pfs-muted);
  line-height: 1.8;
}

/* Price */
.pfs-price-section {
  background:
    radial-gradient(circle at 80% 15%, rgba(199,163,74,.16), transparent 32%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
}

.pfs-price-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--pfs-line);
  box-shadow: 0 20px 50px rgba(7,23,93,.12);
}

.pfs-price-text h2 {
  margin: 0 0 14px;
  color: var(--pfs-navy);
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 900;
}

.pfs-price-text p {
  margin: 0;
  color: var(--pfs-muted);
  line-height: 1.9;
}

.pfs-price-box {
  padding: 28px;
  border-radius: 24px;
  background: var(--pfs-navy);
  color: #fff;
  text-align: center;
}

.pfs-price-label {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: .08em;
}

.pfs-price {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.pfs-price span {
  font-size: 18px;
}

.pfs-price-note {
  margin: 16px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.8;
}

.pfs-price-option {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.2);
  text-align: left;
}

.pfs-price-option-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.pfs-price-option ul {
  margin: 0;
  padding-left: 1.2em;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  line-height: 1.8;
}

.pfs-price-option li {
  margin: 0;
}

/* CTA */
.pfs-cta {
  padding: 68px 0;
  background: var(--pfs-navy);
}

.pfs-cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 42px 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 15%, rgba(199, 163, 74, .24), transparent 32%),
    rgba(255, 255, 255, .06);
  text-align: center;
  color: #fff;
}

.pfs-cta .pfs-section-label {
  color: #fff;
  margin: 0 0 14px;
}

.pfs-cta h2 {
  margin: 0 0 18px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.28;
}

.pfs-cta h2::before,
.pfs-cta h2::after {
  content: none !important;
  display: none !important;
}

.pfs-cta-title-pc,
.pfs-cta-title-sp {
  display: none;
}

.pfs-cta-title-pc span {
  display: block;
}

/* PCだけ2行表示＋余白調整 */
@media (min-width: 769px) {
  .pfs-cta-title-pc {
    display: block;
  }

  .pfs-cta h2 {
    margin-bottom: -80px;
  }
}

/* スマホでは自然な文章として表示 */
@media (max-width: 768px) {
  .pfs-cta-title-sp {
    display: inline;
  }

  .pfs-cta h2 {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 1.45;
  }
}

.pfs-cta-lead {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.9;
}

.pfs-cta .pfs-btn-main {
  background: #fff;
  color: var(--pfs-navy);
}

/* Responsive */
@media (max-width: 960px) {
  .pfs-hero-inner,
  .pfs-display-main,
  .pfs-price-card {
    grid-template-columns: 1fr;
  }

  .pfs-problem-grid,
  .pfs-feature-grid,
  .pfs-use-grid,
  .pfs-admin-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pfs-display-image {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .pfs-container {
    width: min(100% - 24px, 1120px);
  }

  .pfs-hero {
    padding: 52px 0;
  }

  .pfs-section {
    padding: 52px 0;
  }

  .pfs-problem-grid,
  .pfs-feature-grid,
  .pfs-use-grid,
  .pfs-admin-list,
  .pfs-thumb-demo {
    grid-template-columns: 1fr;
  }

  .pfs-panel-card ul {
    grid-template-columns: 1fr;
  }

  .pfs-buttons {
    flex-direction: column;
  }

  .pfs-btn {
    width: 100%;
  }

  .pfs-price-card,
  .pfs-cta-box {
    padding: 26px 20px;
  }

  .pfs-price {
    font-size: 40px;
  }
}

