/* =============================================================================
   司法書士法人 宮野事務所 — index.html 専用スタイル
   ============================================================================= */

:root {
	--color-text: #333;
	--color-muted: #666;
	--color-accent: #0461b4;
	--color-nav: #114778;
	--color-line: #4a90e2;
	--color-bg-soft: #f6fbff;
	--font-mincho: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	--font-gothic: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	--max-width: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--color-text);
	font-family: var(--font-gothic);
	line-height: 1.6;
	background: #fff;
	font-weight:400;
}

@media (max-width: 768px) {
	body {
		overflow-x: hidden;
	}
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: inherit;
}

/* -----------------------------------------------------------------------------
   ヘッダー（ロゴ・電話・CTA）
   ----------------------------------------------------------------------------- */
.site-header {
	font-family: "Noto Serif JP", "Noto Serif", var(--font-mincho);
}

/* 親テーマの上書き対策：ヘッダー内テキスト色を固定 */
.site-header .logo-link,
.site-header .logo-link:visited {
	color: var(--color-text) !important;
}

.site-header .company-name {
	color: var(--color-text) !important;
}

.site-header .phone-label,
.site-header .phone-label span {
	color: var(--color-accent) !important;
}

.site-header .business-hours {
	color: #757b81 !important;
}

.site-header .cta-button,
.site-header .cta-button:visited {
	color: #fff !important;
}

.site-navigation .desktop-menu a,
.site-navigation .desktop-menu a:visited,
.site-navigation .mobile-menu a,
.site-navigation .mobile-menu a:visited {
	color: #fff !important;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
        width: 1200px;
	max-width: 100%;
    margin: 0 auto;
}

.header-phone-link {
	text-decoration: none;
	color: var(--color-accent) !important;
}

.header-phone-link:hover {
	opacity: 0.85;
}

.logo-link {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.logo-link img {
	width: auto;
	height: 60px;
}

.company-name {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-text);
	letter-spacing: 0.1em;
}

.header-contact {
	display: flex;
	align-items: center;
	gap: 30px;
}

.phone-section {
	text-align: left;
}

.phone-label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 28px;
	font-weight: bold;
	color: var(--color-accent);
}

.phone-label img {
	width: 25px;
	height: 25px;
}

.header-contact .contact-text {
	margin-top: -10px;
}

.header-contact .business-hours {
	font-size: 14px;
	color: #757b81;
	margin-top: -5px;
}

.cta-button {
	background-color: var(--color-accent);
	color: #fff !important;
	padding: 10px 20px;
	border: none;
	font-size: 16px;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: background-color 0.3s;
}

.cta-button:hover {
	background-color: #357abd;
}

/* -----------------------------------------------------------------------------
   グローバルナビ
   ----------------------------------------------------------------------------- */
.site-navigation {
	background: var(--color-nav);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	min-height: 56px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 16px;
}

.desktop-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	flex: 1;
	gap: 0;
}

.desktop-menu li {
	position: relative;
}

.desktop-menu a {
	display: block;
	color: #fff !important;
	text-decoration: none;
	padding: 18px 16px;
	font-size: 16px;
	font-family: var(--font-gothic);
	letter-spacing: 0.05em;
	transition: background 0.3s ease, border-color 0.3s ease;
	border-bottom: 3px solid transparent;
}

.desktop-menu a:hover {
	background: rgba(255, 255, 255, 0.1);
	border-bottom-color: #fff;
}

.hamburger-menu {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.hamburger-menu span {
	display: block;
	width: 100%;
	height: 3px;
	background: #fff;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 100%;
	background: var(--color-nav);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	z-index: 1001;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.mobile-menu-overlay.active {
	max-height: 500px;
}

@media (min-width: 901px) {
	.mobile-menu-overlay {
		display: none;
	}
}

.mobile-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
	display: block;
	color: #fff !important;
	text-decoration: none;
	padding: 20px;
	font-size: 16px;
	font-family: var(--font-gothic);
	text-align: center;
	transition: background 0.3s ease;
}

.mobile-menu a:hover {
	background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
	.nav-inner {
		justify-content: flex-end;
		min-height: 48px;
	}

	.desktop-menu {
		display: none;
	}

	.hamburger-menu {
		display: flex;
		position: relative;
	}

	/* PC 用の display:none を打ち消し（リサイズ時もメニューが使えるように） */
	.mobile-menu-overlay {
		display: block;
	}
}

@media (max-width: 768px) {
	.header-bar {
		flex-direction: column;
		justify-content: center;
		gap: 8px 10px;
		padding: 8px 12px;
		text-align: center;
	}

	.logo-section {
		flex: 1;
		min-width: 0;
		width: auto;
	}

	.logo-link {
		flex-direction: row;
		align-items: center;
		gap: 8px;
		justify-content: flex-start;
	}

	.logo-link img {
		width: 36px;
		height: auto;
		flex-shrink: 0;
	}

	.company-name {
		font-size: 22px;
		line-height: 1.35;
		font-weight: bold;
		margin-top: 5px;
	}

	.header-contact {
		flex-direction: column;
		gap: 6px;
	width: 100%;

	}

	.phone-label {
		font-size: 18px;
		align-items: flex-start;
		gap: 6px;
		position: relative;
	}

	.header-phone-link {
		font-size: 18px;
	}

	.phone-label img {
		width: 20px;
		height: 20px;
		flex-shrink: 0;
		position: absolute;
		left: -35px;
		top: 3px;
	}

	.header-contact .contact-text {
		margin-top: 0;
		display: flex;
		align-items: center;
		gap: 5px;
		
	}

	.header-contact .business-hours {
		font-size: 12px;
		line-height: 1.35;
		margin-top: 2px;
		text-align: center;
	}

	.cta-button {
		width: 200px;
		height: 35px;
		padding: 0;
		font-size: 14px;
		line-height: 1.2;
		text-align: center;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
	}
}

@media (max-width: 400px) {
	.header-contact .contact-text {
		flex-direction: column;
		align-items: center;
		gap: 4px;
	}
	.phone-label img {
		left: 2px;
	}
}

@media (max-width: 380px) {
	.company-name {
		font-size: 18px;
	}


}

/* -----------------------------------------------------------------------------
   メイン
   ----------------------------------------------------------------------------- */
.site-main {
	display: block;
}

/* スライダー */
.slider-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	aspect-ratio: 15 / 4;
	background: #f0f0f0;
}

.slider-track {
	display: flex;
	width: 300%;
	height: 100%;
	animation: slide-hero 15s infinite;
}

.slide {
	width: 33.333%;
	flex-shrink: 0;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

@keyframes slide-hero {
	0%,
	30% {
		transform: translateX(0);
	}
	33%,
	63% {
		transform: translateX(-33.333%);
	}
	66%,
	96% {
		transform: translateX(-66.666%);
	}
	100% {
		transform: translateX(0);
	}
}



/* セクション見出し */
.section-title {
	text-align: center;
	margin: 48px 0 40px;
	font-family: noto-srif, serif;
}

.section-title small {
	display: block;
	font-size: 14px;
	color: #555;
	margin-bottom: 8px;
}

.section-title h2 {
	font-size: 24px;
	margin: 0;
	font-weight: bold;
	position: relative;
	display: inline-block;
	padding: 0 40px;
	color: #000 !important;
}

.section-title h2::before,
.section-title h2::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	background: var(--color-line);
}

.section-title h2::before {
	right: 100%;
	margin-right: 20px;
}

.section-title h2::after {
	left: 100%;
	margin-left: 20px;
}


/* 業務内容カード */
.services-container {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
	padding: 0 16px;
	margin-bottom: 40px;
}

.service-card {
	text-align: center;
	padding: 40px 20px;
	max-width: 400px;
	flex: 0 1 400px;
	background: #F6FBFF;
}

.service-icon {
	width: 100px;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.service-icon img {
	width: 100%;
	height: auto;
}

.service-title {
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: var(--color-text);
	margin: 0 0 5px;
	font-family: var(--font-mincho);
}

.service-title-note {
	font-size: 0.85em;
}

.service-subtitle {
	font-size: 16px;
	color: #107ed5;
	margin: 0 0 10px;
	font-weight: bold;
	font-family: var(--font-mincho);
}

.service-description {
	font-size: 14px;
	color: #000 !important;
	line-height: 1.8;
	margin: 0;
	text-align: left;
}

.add {
	padding-bottom:20px;
	padding-top:20px;
}

.sp-only {
	display: none;
}

.service-detail-link {
	display: inline-block;
	margin-top: 10px;
	color: #004CE3;
	text-decoration: none;
	border-bottom: 1px solid #3b4675;
	line-height: 1rem;
}

.service-detail-link:visited {
	color: #004CE3;
}

.service-detail-link:hover {
	opacity: 0.85;
}

/* 業務内容：3列（.service-subtitle なし） */
.services-container.services-container--three {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px 24px;
	align-items: start;
	justify-content: stretch;
	flex-wrap: unset;
	max-width: var(--max-width);
	margin: 0 auto 48px;
	padding: 0 16px;
}

.services-container.services-container--three .service-card {
	flex: none;
	max-width: none;
	width: 100%;
}

@media (max-width: 900px) {
	.services-container {
		flex-direction: column;
		align-items: center;
		gap: 28px;
	}

	.service-card {
		flex: 0 1 100%;
		width: 100%;
		max-width: 500px;
	}

	.services-container.services-container--three {
		grid-template-columns: 1fr;
		gap: 28px;
		max-width: 500px;
		justify-items: stretch;
	}
}

@media (max-width: 768px) {
	.service-icon {
		width: min(100px, 85vw);
		margin: 0 auto 10px;
	}

	.service-title {
		font-size: 20px;
	}

	.service-subtitle {
		font-size: 14px;
	}

	.service-description {
		font-size: 13px;
	}
}

/* 新着・事務所概要 */
.info-sections {
	display: flex;
	gap: 100px; 
		margin: 48px 0;
	padding: 40px max(16px, calc((100vw - var(--max-width)) / 2));
	background: var(--color-bg-soft);
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	box-sizing: border-box;
}

.info-column {
	background: transparent;
	padding: 0;
	border-radius: 0;
}

.info-column:first-child {
	flex: 7;
}

.info-column:last-child {
	flex: 3;
}

.info-heading {
	font-size: 24px;
	font-weight: 600;
	padding-bottom: 10px;
	font-family: var(--font-mincho);
	color: #353535;
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.news-list ul {
	list-style: none;
	padding: 20px 30px;
	margin: 0 0 20px;
	background: #fff;
	border: 1px solid #cdd7e0;
}

.news-list li {
	padding: 12px 0;
	display: flex;
	gap: 15px;
}

.news-date {
	color: var(--color-muted);
	font-size: 14px;
	white-space: nowrap;
	font-family: var(--font-gothic);
}

.news-text {
	color: var(--color-text);
	font-size: 14px;
	line-height: 1.6;
}

.news-more {
	text-align: right;
	margin-top: 15px;
}

.news-more a {
	color: var(--color-muted);
	text-decoration: none;
	font-size: 14px;
	border-bottom: 1px solid #666;
}

.news-more a:hover {
	color: #107ed5;
	border-bottom-color: #107ed5;
}

.news-pagination {
	margin-top: 16px;
}

.news-pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.news-pagination a,
.news-pagination span {
	display: inline-block;
	padding: 8px 10px;
	border: 1px solid #cdd7e0;
	background: #fff;
	color: var(--color-text);
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1;
}

.news-pagination .current {
	background: var(--color-bg-soft);
	border-color: var(--color-line);
	font-weight: 600;
}

.news-pagination a:hover {
	color: #107ed5;
	border-color: #107ed5;
}

.office-image img {
	width: 100%;
	border-radius: 4px;
	margin-bottom: 15px;
}

.office-details p {
	font-size: 14px;
	line-height: 1;
	color: var(--color-text);
}

.postal-code,
.access {
	font-family: var(--font-gothic);
}

.map-link a {
	color: var(--color-text);
	text-decoration: none;
	border-bottom: 1px solid #000;
}

.map-link a:hover {
	opacity: 0.8;
	color: #107ed5;
	
}

.map-link img {
	width: 18px;
	height: 18px;
	margin-left: 6px;
	vertical-align: middle;
}

@media (max-width: 768px) {
	.sp-only {
		display: inline;
	}

	.info-sections {
		flex-direction: column;
		gap: 24px;
		padding: 28px 12px;
	}

	.news-list li {
		flex-direction: column;
		gap: 5px;
	}
}

/* 初回相談の流れ */
.flow-section {
	padding: 24px 16px 40px;
	text-align: center;
	max-width: var(--max-width);
	margin: 0 auto;
}

.flow-section .flow-title {
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 24px;
	font-family: "Noto Serif JP", "Noto Serif", var(--font-mincho);
}

.flow-section img {
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	
}

.hero-section {
	position: relative;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {

	background: rgba(30, 90, 150, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-content {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 32px 20px;
	color: #fff !important;
}

.hero-subtitle {
	text-align: center;
	font-size: 18px;
	margin: 0 0 32px;
	font-family: var(--font-mincho);
	letter-spacing: 0.1em;
}

.hero-main {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}

.firm-name h1 {
	font-size: 30px;
	font-weight: normal;
	font-family: var(--font-mincho);
	letter-spacing: 0.1em;
	margin: 0;

}

.hero-contact {
	text-align: right;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	padding-left: 30px;
}

.hero-phone {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
}

.hero-phone .phone-icon {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.hero-phone .phone-number {
	font-size: 25px;
	font-family: var(--font-gothic);
	letter-spacing: 0.05em;
	text-decoration: none;
	color: #fff;
}

/* 親テーマの上書き対策：フッター帯の法人名は白固定 */
.site-footer .hero-section .firm-name h1 {
	color: #fff !important;
}

@media (min-width: 769px) {
	.hero-main {
		margin-right: 65px;
	}
}

.hero-hours {
	display: flex;
	gap: 20px;
	font-size: 14px;
	opacity: 0.9;
	font-family: noto-srif, serif;
}

.hero-hours .hours::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	margin-left: 20px;
}

@media (max-width: 768px) {
	.hero-section {
		min-height: 0;
	}

	.hero-main {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		margin-right: 0;
		gap: 0px;
	}

	.firm-name h1 {
		font-size: 24px;
		margin-bottom: 24px;
		padding-right: 0;
	}

	.hero-contact {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		padding-left: 0;
		padding-top: 24px;
		text-align: center;
	}

	.hero-phone {
		justify-content: center;
	}

	.hero-phone .phone-number {
		font-size: 28px;
	}

	.hero-hours {
		flex-direction: column;
		gap: 8px;
	}

	.hero-hours .hours::after {
		display: none;
	}
}

/* お問い合わせ帯 */
.cta-banner {
	background: var(--color-nav);
	padding: 40px 20px;
}

.cta-inner {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 30px;
	max-width: 800px;
	margin: 0 auto;
}

.cta-text-block {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 20px;
	flex: 1;
	min-width: 0;
	text-align: center;
}

.cta-banner .cta-message {
	color: #fff ;
	font-size: 16px;
	margin: 0;
	font-family: var(--font-mincho);
	letter-spacing: 0.1em;
}

.free-consultation-badge {
	flex-shrink: 0;
}

.free-consultation-badge img {
	width: 120px;
	height: auto;
	display: block;
}

.cta-banner .contact-button {
	display: inline-block;
	align-self: center;
	background: #fff;
	color: var(--color-nav);
	padding: 10px 20px;
	font-size: 30px;
	text-decoration: none;
	border-radius: 8px;
	font-family: var(--font-mincho);
	letter-spacing: 0.1em;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;

}

.cta-banner .contact-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
	.cta-inner {
		flex-direction: column;
		gap: 20px;
	}

	.cta-text-block {
		gap: 16px;
		width: 100%;
		text-align: center;
	}

	.free-consultation-badge img {
		width: 100px;
	}

	.cta-banner .contact-button {
		width: 100%;
		max-width: 100%;
		font-size: 18px;
		padding: 18px 30px;
		align-self: stretch;
		box-sizing: border-box;
	}

	.cta-banner .cta-message {
		font-size: 14px;
	}
}

/* フッター */
.site-footer {
	background: transparent;
	padding: 0;
	text-align: center;
	padding-top: 40px;
}

.footer-bottom {
	background: #F6FBFF;
	padding: 40px 20px 30px;
}

.footer-nav ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
}

.footer-nav li {
	display: inline-block;
	position: relative;
}

.footer-nav li:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 12px;
	background: #ccc;
	margin: 0 25px;
	vertical-align: middle;
}

.footer-nav a {
	color: var(--color-muted);
	text-decoration: none;
	font-size: 14px;
	font-family: var(--font-gothic);
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: #107ed5;
}

.footer-copy {
	padding-top: 20px;
	
}

.footer-copy p {
	color: var(--color-text);
	font-size: 14px;
	font-family: var(--font-mincho);
	letter-spacing: 0.1em;
	margin: 0;
}

@media (max-width: 768px) {
	.footer-nav ul {
		flex-direction: column;
		gap: 15px;
	}

	.footer-nav li:not(:last-child)::after {
		display: none;
	}

	.footer-nav a {
		font-size: 16px;
	}

	.site-footer {
		padding: 0;
	}

	.footer-bottom {
		padding: 30px 20px 20px;
	}
}

/* =============================================================================
   768px 以下 — レイアウト上書き（ベースより後に記述してカスケードを確実に効かせる）
   ============================================================================= */
@media (max-width: 768px) {
	.site-main {
		width: 100%;
		overflow-x: hidden;
	}

	/* 見出し：装飾線がはみ出さないよう線幅・余白を調整（レイアウトはPCと同様） */
	.section-title {
		margin: 20px 0 16px;
		padding: 0 12px;
		max-width: 100%;
		overflow-x: hidden;
		box-sizing: border-box;
	}

	.section-title small {
		font-size: 0.8125rem;
		margin-bottom: 6px;
	}

	.section-title h2 {
		font-size: 1.25rem;
		padding: 0 clamp(8px, 4vw, 40px);
		max-width: min(100%, calc(100vw - 24px));
		box-sizing: border-box;
	}

	.section-title h2::before,
	.section-title h2::after {
        width: min(100px, 25vw);
	}

	.section-title h2::before {
		margin-right: 8px;
	}

	.section-title h2::after {
		margin-left: 8px;
	}

	.services-container {
		margin: 0 0 28px;
		padding: 0 12px;
		gap: 16px;
	}

	.services-container.services-container--three {
		gap: 16px;
	}

	.service-card {
		padding: 16px 12px;
	}

	.info-sections {
		margin: 28px 0;
		padding: 24px 12px;
		gap: 20px;
	}

	.news-list ul {
		padding: 16px 12px;
	}

	.news-date {
		white-space: normal;
	}

	.flow-section {
		padding: 16px 12px 28px;
	}

	.flow-section .flow-title {
		font-size: 1.25rem;
		margin-bottom: 16px;
	}

	.hero-content {
		padding: 24px 16px;
	}

	.hero-subtitle {
		margin-bottom: 20px;
		font-size: 16px;
	}

	.cta-banner {
		padding: 28px 16px 32px;
	}
}

/* -----------------------------------------------------------------------------
   新着一覧ページ（page-news.php）専用
   ----------------------------------------------------------------------------- */
.news-archive {
	max-width: 960px;
	margin: 0 auto;
	padding: 12px;
	box-sizing: border-box;
}

.news-archive .info-sections {
	width: auto;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	padding-left: 12px;
	padding-right: 12px;
}

/*追加*/

.cps-post .cps-post-header .cps-post-title {
	font-weight: 500;
	color:#1e1e1e;
}

.h2-style01 h2 {
	line-height: 1.8rem;
}

.wpcf7-form input[type=submit] {
    padding: 10px 100px;
	margin-top: 30px;
}
.wpcf7-form > .cps-post-main p {
    padding-bottom: 2rem; !important;
	line-height: 2.4em; !important;
}
