body {
	font-family: "Noto Sans JP", sans-serif;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

/* ハンバーガーメニュー表示時にページのスクロールを禁止 */

body.no-scroll {
	overflow: hidden;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

/* 導入事例 */

.cases {
	background-color: #fff;
	padding: 8rem 0;
}

.cases__grid {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(2, 1fr); /* レスポンシブ対応 */
}

.case-card {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.case-card__image {
	-o-object-fit: cover;
	aspect-ratio: 16/9;
	object-fit: cover;
	overflow: hidden;
	width: 100%;
}

.case-card__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.case-card__content {
	padding: 1.875rem 1.25rem;
}

.case-card__title {
	color: #075326;
	font-size: 1.25rem;
	font-weight: 700;
}

.case-card__text {
	color: #333333;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-top: 1rem;
}

.case-card__link {
	-webkit-text-decoration: none;
	color: #075326;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	margin-left: 2rem;
	margin-top: 2rem;
	position: relative;
	text-decoration: none;
}

.case-card__link::after {
	border-right: 0.125rem solid #075326;
	border-top: 0.125rem solid #075326;
	content: "";
	display: inline-block;
	height: 0.375rem;
	margin-left: 0.5rem;
	position: relative;
	top: -0.0625rem;
	transform: rotate(45deg);
	width: 0.375rem;
}

.case-card__link:hover {
	color: #032410;
}

.case-card__link:hover::after {
	border-color: #032410;
}

.cases__more {
	margin-top: 4rem;
	text-align: center;
}

/* お問い合わせ完了ページのスタイル */

.page-contact-complete {
	background-color: #f9f9f9;
}

.contact-complete {
	background-color: #f8f9fa;
	padding: 4rem 0;
}

.contact-complete__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.contact-complete__header {
	margin-bottom: 4rem;
	text-align: center;
}

.contact-complete__title {
	color: #075326;
	font-size: 2rem;
	margin-bottom: 1rem;
}

.contact-complete__subtitle {
	color: #333333;
	font-size: 1.125rem;
}

.contact-complete__body {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 4rem;
}

.contact-complete__message {
	margin-bottom: 4rem;
	text-align: center;
}

.contact-complete__message p {
	line-height: 1.8;
	margin-bottom: 2rem;
}

.contact-complete__section-title {
	color: #075326;
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.contact-complete__cards {
	grid-gap: 20px;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 4rem;
}

/* おすすめコンテンツ */

.contact-complete__recommendations {
	margin-top: 20px;
}

/* 戻るリンク */

.contact-complete__links {
	margin-top: 30px;
	text-align: center;
}

/* レスポンシブ対応 */

/* 資料請求完了ページのスタイル */

.page-document-complete {
	background-color: #f9f9f9;
}

.document-complete {
	background-color: #f8f9fa;
	padding: 4rem 0;
}

.document-complete__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.document-complete__header {
	margin-bottom: 4rem;
	text-align: center;
}

.document-complete__title {
	color: #075326;
	font-size: 2rem;
	margin-bottom: 1rem;
}

.document-complete__subtitle {
	color: #333333;
	font-size: 1.125rem;
}

.document-complete__body {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 4rem;
}

.document-complete__message {
	margin-bottom: 4rem;
	text-align: center;
}

.document-complete__message p {
	line-height: 1.8;
	margin-bottom: 2rem;
}

.document-complete__section-title {
	color: #075326;
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.document-complete__cards {
	margin-bottom: 4rem;
}

/* 面談日程登録セクション */

.document-complete__meeting {
	background-color: #f5f5f5;
	border-radius: 6px;
	padding: 25px;
}

.document-complete__meeting-text {
	line-height: 1.6;
	margin-bottom: 20px;
}

.document-complete__meeting-buttons {
	display: flex;
	justify-content: center;
}

.button--calendar {
	-webkit-text-decoration: none;
	align-items: center;
	background-color: #0056b3;
	border-radius: 4px;
	color: white;
	display: flex;
	font-weight: 600;
	gap: 8px;
	justify-content: center;
	padding: 15px 25px;
	text-decoration: none;
	transition: background-color 0.3s;
}

.button--calendar:hover {
	background-color: #004494;
}

.button__icon {
	align-items: center;
	display: flex;
	height: 18px;
	width: 18px;
}

/* 追加情報入力セクション */

.document-complete__additional-info {
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 25px;
}

.document-complete__additional-text {
	line-height: 1.6;
	margin-bottom: 25px;
}

.document-complete__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	margin-bottom: 15px;
}

.form-label {
	color: #333;
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
}

.form-radio-group,
.form-checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-radio,
.form-checkbox {
	align-items: center;
	cursor: pointer;
	display: flex;
}

.form-radio input,
.form-checkbox input {
	margin-right: 8px;
}

.form-select {
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	padding: 10px;
	width: 100%;
}

.form-actions {
	display: flex;
	justify-content: center;
	margin-top: 25px;
}

.button--primary {
	background-color: #0056b3;
	border: none;
	border-radius: 4px;
	color: white;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 25px;
	transition: background-color 0.3s;
}

.button--primary:hover {
	background-color: #004494;
}

/* おすすめコンテンツ */

.document-complete__recommendations {
	margin-top: 20px;
}

.document-complete__cards {
	grid-gap: 20px;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 20px;
}

.recommendation-card {
	-webkit-text-decoration: none;
	border: 1px solid #eee;
	border-radius: 6px;
	color: inherit;
	display: block;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
}

.recommendation-card:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.recommendation-card__image {
	height: 160px;
	overflow: hidden;
}

.recommendation-card__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
	width: 100%;
}

.recommendation-card:hover .recommendation-card__image img {
	transform: scale(1.05);
}

.recommendation-card__content {
	padding: 15px;
}

.recommendation-card__title {
	color: #333;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.recommendation-card__text {
	color: #666;
	font-size: 14px;
	line-height: 1.5;
}

/* 戻るリンク */

.document-complete__links {
	margin-top: 30px;
	text-align: center;
}

.document-complete__home-link {
	-webkit-text-decoration: none;
	border: 1px solid #0056b3;
	border-radius: 4px;
	color: #0056b3;
	display: inline-block;
	font-weight: 600;
	padding: 8px 16px;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}

.document-complete__home-link:hover {
	background-color: #0056b3;
	color: white;
}

/* レスポンシブ対応 */

/* ブログカードのグリッドレイアウト */

.blog-grid {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* LINE公式アカウントのメリット */

.features {
	background-image: url(../images/top/features-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 8rem 0;
}

.features__grid {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(3, 1fr); /* レスポンシブ対応 */
}

.feature-card {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
	padding: 2.5rem;
	transition: transform 0.3s, box-shadow 0.3s; /* レスポンシブ対応 */
}

.feature-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.feature-card__title {
	align-items: center;
	color: #075326;
	display: flex;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	margin-top: 0;
}

.feature-card__title::before {
	background-color: #075326;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 24px;
	margin-right: 1rem;
	width: 24px;
}

.feature-card__text {
	color: #333333;
	font-size: 1.125rem;
	line-height: 1.6;
	margin: 0;
}

/* ヒーロー */

.hero {
	background-color: #f8f9fa;
	overflow: hidden;
	padding: 8rem 0;
	position: relative;
	text-align: center;
}

.hero::before {
	background: radial-gradient(circle, rgba(6, 199, 85, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
	content: "";
	height: 18.75rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 18.75rem;
	z-index: 0;
}

.hero__container {
	position: relative;
	z-index: 1;
}

.hero__title {
	color: #075326;
	font-family: "Noto Serif JP", serif;
	font-size: 2.875rem;
	font-weight: 700;
	line-height: 1.6;
	margin-top: 0; /* レスポンシブ対応 */
}

.hero__text {
	font-size: 1.5rem;
	margin-top: 2rem; /* レスポンシブ対応 */
}

.hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	margin-top: 4rem; /* レスポンシブ対応 */
}

.hero .button--line {
	min-width: 16.25rem; /* レスポンシブ対応 */
}

.layout-header {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 900;
}

/* サービスヒーローセクション */

.service-hero {
	background-color: #f3f9ef;
	padding: 4rem 0;
	text-align: center;
}

.service-hero__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.service-hero__title {
	color: #075326;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 2rem;
	margin-top: 0;
}

.service-hero__lead {
	color: #333333;
	font-size: 1.25rem;
	margin-bottom: 4rem;
}

.service-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

/* サービス概要セクション */

.service-overview {
	padding: 8rem 0;
}

.service-overview__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.service-overview__content {
	align-items: center;
	display: flex;
	gap: 4rem;
}

.service-overview__text {
	flex: 1;
}

.service-overview__text p {
	font-size: 1rem;
	margin-bottom: 2rem;
}

.service-overview__text p:last-child {
	margin-bottom: 0;
}

/* 強みセクション */

.service-strengths {
	background-color: #f8f9fa;
	padding: 8rem 0;
}

.service-strengths__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.service-strengths__cards {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	margin-top: 4rem;
}

.service-strength-card {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	height: 100%;
	padding: 2rem;
	position: relative;
}

.service-strength-card__number {
	align-items: center;
	background-color: #075326;
	border-radius: 50%;
	color: #ffffff;
	display: flex;
	font-weight: bold;
	height: 30px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: -15px;
	transform: translateX(-50%);
	width: 30px;
}

.service-strength-card__title {
	color: #075326;
	font-size: 1.125rem;
	margin-bottom: 2rem;
	margin-top: 1rem;
	text-align: center;
}

.service-strength-card__extra-title {
	color: #075326;
	font-size: 1.125rem;
	margin-bottom: 2rem;
	margin-top: 0;
	text-align: center;
}

.service-strength-card__list {
	margin: 0;
	padding-left: 2rem;
}

.service-strength-card__list li {
	margin-bottom: 0.5rem;
	position: relative;
}

.service-strength-card__list li::before {
	color: #075326;
	content: "✓";
	left: -2rem;
	position: absolute;
}

.service-strength-card--extra {
	background-color: #f9f9e4;
	grid-column: 1/-1;
}

/* 効果セクション */

.service-effects {
	background-color: #f8f9fa;
	padding: 8rem 0;
}

.service-effects__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.service-effects__cards {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fill, minmax(calc(50% - 2rem), 1fr));
	margin-top: 4rem;
}

.service-effect-card {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	height: 100%;
	padding: 2rem;
}

.service-effect-card__title {
	color: #075326;
	font-size: 1.25rem;
	margin-bottom: 2rem;
	margin-top: 0;
	text-align: center;
}

.service-effect-card__content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.service-effect-card__before,
.service-effect-card__after {
	border-radius: 4px;
	padding: 1rem;
}

.service-effect-card__before h4,
.service-effect-card__after h4 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	margin-top: 0;
}

.service-effect-card__before p,
.service-effect-card__after p {
	margin: 0;
}

.service-effect-card__before {
	background-color: #f8e4e4;
}

.service-effect-card__before h4 {
	color: #c84040;
}

.service-effect-card__after {
	background-color: #e4f8e4;
}

.service-effect-card__after h4 {
	color: #40c840;
}

/* プランセクション */

.service-plans {
	background-color: #f8f9fa;
	padding: 8rem 0;
}

.service-plans__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.service-plans__content {
	margin-top: 4rem;
}

.service-plans__plan {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem; /* 3つの構築プラン用 */
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 8rem;
}

.service-plans__subtitle {
	color: #333333;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 8rem 0 4rem;
	text-align: center;
}

.service-plans__subtitle:first-of-type {
	margin-top: 4rem;
}

.service-plans__plan-wrapper {
	margin: 0 auto;
	max-width: 31.25rem;
}

.service-plan-card {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-bottom: 2rem;
	padding: 2.5rem;
	position: relative;
}

.service-plan-card:hover {
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
	transform: translateY(-0.25rem);
	transition: transform 0.3s, box-shadow 0.3s;
}

/* おすすめプラン */

.service-plan-card--recommended {
	border: 0.125rem solid #075326;
	transform: scale(1.02);
}

/* おすすめバッジ */

.service-plan-card__badge {
	background-color: #075326;
	border-radius: 1.25rem;
	color: #fff;
	font-size: 0.875rem;
	font-weight: bold;
	left: 50%;
	padding: 0.375rem 1.25rem;
	position: absolute;
	top: -0.75rem;
	transform: translateX(-50%);
	z-index: 1;
}

.service-plan-card__title {
	color: #075326;
	font-size: 1.125rem;
	margin-bottom: 1rem;
	margin-top: 0;
	text-align: center;
}

.service-plan-card--secondary .service-plan-card__title {
	color: #123818;
}

.service-plan-card__price {
	color: #333333;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 2rem;
	text-align: center;
}

.service-plan-card__tax {
	color: #666666;
	font-size: 0.875rem;
	font-weight: normal;
}

.service-plan-card__list {
	flex-grow: 1;
	margin: 0;
	padding-left: 2rem;
}

.service-plan-card__list li {
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 0.5rem;
	position: relative;
}

.service-plan-card__list li::before {
	color: #075326;
	content: "✓";
	left: -2rem;
	position: absolute;
}

.service-plan-card--secondary .service-plan-card__list li::before {
	color: #123818;
}

.service-plan-card__note {
	color: #666666;
	font-size: 0.875rem;
	font-style: italic;
	margin-bottom: 2rem;
	margin-top: 2rem;
	text-align: center;
}

.service-plan-card--primary {
	border: 2px solid #075326;
}

.service-plan-card--secondary {
	border: 2px solid #123818;
}

.service-plan-card .button {
	margin-top: auto;
	width: 100%;
}

.service-details {
	margin-top: 8rem;
}

.service-details__title {
	color: #075326;
	font-size: 1.5rem;
	margin-bottom: 4rem;
	margin-top: 0;
	text-align: center;
}

.service-details__items {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-detail-item {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 2.5rem;
}

.service-detail-item__title {
	color: #075326;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	margin-top: 0;
}

.service-detail-item__list {
	margin: 0;
	padding-left: 1.25rem;
}

.service-detail-item__list li {
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	position: relative;
}

.service-detail-item__list li::before {
	color: #075326;
	content: "✓";
	left: -2rem;
	position: absolute;
}

/* 導入フローセクション */

.service-flow {
	padding: 8rem 0;
}

.service-flow__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.service-flow__steps {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	margin-top: 4rem;
	position: relative;
}

.service-flow__steps::before {
	background-color: #075326;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 30px;
	z-index: 0;
}

.service-flow-step {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 2rem;
	position: relative;
	z-index: 1;
}

.service-flow-step__number {
	background-color: #075326;
	border-radius: 4px;
	color: #ffffff;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: bold;
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
}

.service-flow-step__title {
	color: #075326;
	font-size: 1.125rem;
	margin-bottom: 2rem;
	margin-top: 0;
}

.service-flow-step__list {
	margin: 0;
}

.service-flow-step__list li {
	margin-bottom: 0.5rem;
}

.service-flow-step__list li:last-child {
	margin-bottom: 0;
}

/* FAQセクション */

.service-faq {
	padding: 8rem 0;
}

.service-faq__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.service-faq__items {
	margin-top: 4rem;
}

.service-faq-item {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 2rem;
}

.service-faq-item__question {
	cursor: pointer;
	font-size: 1.125rem;
	margin-bottom: 1rem;
	margin-top: 0;
	padding-left: 2.5rem;
	position: relative;
}

.service-faq-item__question::before {
	color: #075326;
	content: "Q";
	font-size: 1.25rem;
	font-weight: bold;
	left: 0;
	position: absolute;
	top: 0;
}

.service-faq-item__answer {
	margin-bottom: 2rem;
	padding-left: 2.5rem;
	position: relative;
}

.service-faq-item__answer::before {
	color: #c84040;
	content: "A";
	font-size: 1.25rem;
	font-weight: bold;
	left: 0;
	position: absolute;
	top: 0;
}

.service-faq-item__answer p {
	margin: 0;
}

/* ボタンスタイル */

.button {
	-webkit-text-decoration: none;
	align-items: center;
	border-radius: 4px;
	display: inline-flex;
	font-weight: bold;
	justify-content: center;
	min-width: 200px;
	padding: 1rem 2rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.button--primary {
	background-color: #075326;
	color: #ffffff;
}

.button--primary:hover {
	background-color: #032410;
}

.button--secondary {
	background-color: #ffffff;
	border: 2px solid #075326;
	color: #075326;
}

.button--secondary:hover {
	background-color: #075326;
	color: #ffffff;
}

.button--outline {
	background-color: #ffffff;
	border: 2px solid #075326;
	color: #075326;
}

.button--outline:hover {
	background-color: #075326;
	color: #ffffff;
}

.button--line {
	background-color: #06c755;
	color: #ffffff;
}

.button--line:hover {
	background-color: #059540;
}

.button__icon {
	align-items: center;
	display: flex;
	height: 20px;
	justify-content: center;
	margin-right: 0.5rem;
	width: 20px;
}

/* LINEサクセスセクション */

.line-strategy {
	background-color: #f8f9fa;
	padding: 8rem 0;
	position: relative;
}

.line-strategy::after {
	background-color: #e5e5e5;
	bottom: 0;
	content: "";
	height: 0.0625rem;
	left: 0;
	position: absolute;
	width: 100%;
}

.line-strategy__container {
	align-items: center;
	display: flex;
	gap: 5rem; /* レスポンシブ対応 */
}

.line-strategy__content {
	flex: 1;
}

.line-strategy__title {
	color: #075326;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 0; /* レスポンシブ対応 */
}

.line-strategy__text-block {
	margin-top: 4rem;
}

.line-strategy__text {
	color: #333333;
	font-size: 1.125rem;
	line-height: 1.8;
	margin-top: 0; /* レスポンシブ対応 */
}

.line-strategy__text + .line-strategy__text {
	margin-top: 1.25rem;
}

.line-strategy__link {
	-webkit-text-decoration: none;
	align-items: center;
	color: #333333;
	display: inline-flex;
	font-size: 1.125rem;
	font-weight: 700;
	margin-top: 4rem;
	padding-right: 2.5rem;
	position: relative;
	text-decoration: none;
}

.line-strategy__link::after {
	background-color: #075326;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M3 1L7 5L3 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	content: "";
	height: 2rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
}

.line-strategy__link:hover {
	color: #075326;
}

.line-strategy__image {
	align-items: center;
	display: flex;
	justify-content: center;
	max-width: 25rem;
	width: 36%; /* レスポンシブ対応 */
}

.line-strategy__img {
	height: auto;
	max-width: 100%;
}

/* オウンドメディアセクション */

.owned-media {
	background-color: #f8f9fa;
	padding: 8rem 0;
}

.owned-media__description {
	color: #333333;
	font-size: 1.125rem;
	margin-top: 0;
	text-align: center;
}

.owned-media__grid {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 4rem; /* レスポンシブ対応 */
}

.owned-media__more {
	margin-top: 4rem;
	text-align: center;
}

/*-------------------------------------
私たちについて
-------------------------------------*/

.page-about-hero {
	background-color: #f8f9fa;
	padding: 4rem 0;
	text-align: center;
}

.page-about-hero__title {
	color: #075326;
	font-size: 2.25rem;
	font-weight: 700;
	margin: 0;
}

.page-about-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	margin-top: 4rem;
}

/* アバウトセクション */

.page-about-section {
	font-size: 1.125rem;
	padding: 8rem 0;
}

.page-about-section__container {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
}

.page-about-section__content {
	flex: 1;
	min-width: 45%;
}

.page-about-section__title {
	margin-bottom: 2rem;
}

.page-about-section__text {
	font-size: 1.125rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.page-about-section__image {
	flex: 1;
	min-width: 45%;
}

.page-about-section__image img {
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	height: auto;
	width: 100%;
}

/* 理念セクション */

.page-about-philosophy {
	background-color: #f8f9fa;
	padding: 8rem 0;
}

.page-about-philosophy__title {
	margin-bottom: 2rem;
	text-align: center;
}

.page-about-philosophy__content {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.page-about-philosophy-card {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	flex: 1;
	min-width: calc(33.333% - 2rem);
	padding: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-philosophy-card:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.page-about-philosophy-card__title {
	color: #075326;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	position: relative;
}

.page-about-philosophy-card__title::after {
	background-color: #075326;
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 40px;
}

.page-about-philosophy-card__text {
	line-height: 1.8;
}

/* プロフィールセクション */

.page-about-profile {
	font-size: 1.125rem;
	padding: 8rem 0;
}

.page-about-profile__title {
	margin-bottom: 2rem;
	text-align: center;
}

.page-about-profile__content {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
	margin: 0 auto;
	max-width: 900px;
}

.page-about-profile__image {
	flex: 1;
	min-width: 30%;
}

.page-about-profile__image img {
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	height: auto;
	width: 100%;
}

.page-about-profile__info {
	flex: 2;
}

.page-about-profile__name {
	color: #075326;
	font-size: 1.75rem;
	margin: 0 0 0.5rem;
}

.page-about-profile__position {
	color: #666666;
	font-size: 1rem;
	margin: 0 0 2rem;
}

.page-about-profile__description {
	line-height: 1.8;
	margin-bottom: 1rem;
}

/* 実績セクション */

.page-about-achievements {
	background-color: #f8f9fa;
	padding: 8rem 0;
}

.page-about-achievements__title {
	margin-bottom: 1rem;
	text-align: center;
}

.page-about-achievements__description {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 700px;
	text-align: center;
}

.page-about-achievements__results {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 4rem;
}

.page-about-achievement-card {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	flex: 1;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s ease;
}

.page-about-achievement-card:hover {
	transform: translateY(-5px);
}

.page-about-achievement-card__number {
	color: #075326;
	display: block;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.page-about-achievement-card__percent {
	font-size: 1.5rem;
}

.page-about-achievement-card__title {
	font-size: 1.25rem;
	margin: 0 0 0.5rem;
}

.page-about-achievement-card__text {
	line-height: 1.6;
}

.page-about-achievements__industries {
	margin: 0 auto;
	max-width: 800px;
	text-align: center;
}

.page-about-achievements__subtitle {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.page-about-achievements__industries-list {
	line-height: 1.8;
}

/* ブログヒーローセクション */

.page-blog-hero {
	background-color: #f3f9ef;
	padding: 2.5rem 0;
	text-align: center;
}

.page-blog-hero__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.page-blog-hero__title {
	color: #075326;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 2rem;
	margin-top: 0;
}

.page-blog-hero__lead {
	color: #333333;
	font-size: 1.25rem;
}

/* ブログ一覧コンテンツ */

.page-blog-content {
	padding: 2.5rem 0;
}

.page-blog-content__container {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.page-blog-content__main {
	flex: 1;
	min-width: 0;
}

.page-blog-content__sidebar {
	width: 300px;
}

/* ブログカード */

.page-blog-list {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.page-blog-card {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	height: 100%;
	overflow: hidden;
}

.page-blog-card__link {
	-webkit-text-decoration: none;
	color: inherit;
	display: block;
	height: 100%;
	text-decoration: none;
	transition: transform 0.3s;
}

.page-blog-card__link:hover {
	transform: translateY(-5px);
}

.page-blog-card__image {
	height: 200px;
	overflow: hidden;
}

.page-blog-card__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
	width: 100%;
}

.page-blog-card__link:hover .page-blog-card__image img {
	transform: scale(1.05);
}

.page-blog-card__content {
	padding: 2rem;
}

.page-blog-card__category {
	margin-bottom: 1rem;
}

.page-blog-category {
	background-color: #075326;
	border-radius: 50px;
	color: #ffffff;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: bold;
	padding: 0.2em 0.8em;
}

.page-blog-card__title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1rem;
	margin-top: 0;
}

.page-blog-card__meta {
	color: #666666;
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.page-blog-card__excerpt {
	color: #333333;
	font-size: 0.875rem;
	line-height: 1.6;
}

/* ブログページネーション */

.page-blog-pagination {
	margin-top: 8rem;
	text-align: center;
}

.page-blog-pagination .nav-links {
	display: inline-flex;
	gap: 0.3125rem;
}

.page-blog-pagination .page-numbers {
	-webkit-text-decoration: none;
	align-items: center;
	border-radius: 4px;
	color: #333333;
	display: inline-flex;
	font-weight: bold;
	height: 2.25rem;
	justify-content: center;
	text-decoration: none;
	width: 2.25rem;
}

.page-blog-pagination .page-numbers.current {
	background-color: #075326;
	color: #ffffff;
}

.page-blog-pagination .page-numbers:not(.current):hover {
	background-color: #38ee82;
}

.page-blog-pagination .prev,
.page-blog-pagination .next {
	padding: 0 0.625rem;
	width: auto;
}

/* 記事が見つからないメッセージ */

.page-blog-no-results {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 4rem;
	text-align: center;
}

/* ブログ詳細ページ */

.page-blog-single {
	background-color: #f8f9fa;
	padding-bottom: 8rem;
}

.page-blog-single__hero {
	background-color: #f3f9ef;
	padding: 2.5rem 0;
}

.page-blog-single__hero-container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
	text-align: center;
}

.page-blog-single__category {
	margin-bottom: 2rem;
}

.page-blog-single__meta {
	color: #666666;
	font-size: 0.875rem;
}

.page-blog-single__date {
	display: inline-block;
}

.page-blog-single__title {
	color: #000000;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 0;
}

.page-blog-single__thumbnail {
	-o-object-fit: cover;
	aspect-ratio: 16/9;
	border-radius: 4px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
	max-width: 50rem;
	object-fit: cover;
	overflow: hidden;
	width: 100%;
}

.page-blog-single__thumbnail img {
	height: auto;
	width: 100%;
}

.page-blog-single__content {
	margin-top: 2.5rem;
}

.page-blog-single__container.container {
	display: flex;
	gap: 4rem;
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.page-blog-single__main {
	flex: 1;
	min-width: 0;
}

.page-blog-single__sidebar {
	width: 300px;
}

.page-blog-single__body {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-bottom: 4rem;
	padding: 1.25rem;
}

.page-blog-single__main-content {
	margin-top: 2.5rem;
}

.page-blog-single__main-content h2 {
	border-bottom: 2px solid #075326;
	color: #075326;
	font-size: 1.5rem;
	line-height: 1.4;
	margin-bottom: 1.5rem;
	margin-top: 3rem;
	padding-bottom: 0.625rem;
}

.page-blog-single__main-content h3 {
	color: #075326;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.page-blog-single__main-content p {
	margin-bottom: 1.75rem;
}

.page-blog-single__main-content ul,
.page-blog-single__main-content ol {
	list-style-type: disc;
	margin-bottom: 1.875rem;
	padding-left: 1.25rem;
}

.page-blog-single__main-content li {
	margin-bottom: 1.25rem;
}

.page-blog-single__main-content img {
	border-radius: 4px;
	height: auto;
	max-width: 100%;
}

.page-blog-single__main-content pre {
	background-color: #f5f5f5;
	border-radius: 4px;
	margin-bottom: 1.5rem;
	overflow-x: auto;
	padding: 2rem;
}

.page-blog-single__main-content code {
	background-color: #f5f5f5;
	border-radius: 3px;
	padding: 0.2em 0.4em;
}

.page-blog-single__main-content table {
	border-collapse: collapse;
	margin-bottom: 1.5rem;
	width: 100%;
}

.page-blog-single__main-content table th,
.page-blog-single__main-content table td {
	border: 1px solid #e5e5e5;
	padding: 1rem;
}

.page-blog-single__main-content table th {
	background-color: #4ff091;
}

.page-blog-single__main-content blockquote {
	border-left: 4px solid #075326;
	color: #666666;
	font-style: italic;
	margin-left: 0;
	margin-right: 0;
	padding-left: 2rem;
}

/* ブログCTA */

.page-blog-cta {
	background-color: #ffffff;
	border-radius: 4px;
	margin-top: 4rem;
	padding: 2rem;
}

.page-blog-cta--first-view {
	margin-bottom: 4rem;
}

.page-blog-cta--in-content {
	margin: 4rem 0;
}

.page-blog-cta__inner {
	text-align: center;
}

.page-blog-cta__title {
	color: #075326;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	margin-top: 0;
}

.page-blog-cta__text {
	margin-bottom: 2rem;
}

.page-blog-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

/* ブログシェアボタン */

.page-blog-share {
	margin-bottom: 4rem;
}

.page-blog-share__inner {
	text-align: center;
}

.page-blog-share__title {
	font-size: 1rem;
	margin-bottom: 1rem;
}

.page-blog-share__list {
	display: flex;
	gap: 1.875rem;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-blog-share__item {
	margin: 0;
}

.page-blog-share__link {
	align-items: center;
	display: inline-flex;
	height: 2.5rem;
	justify-content: center;
	transition: opacity 0.3s;
}

.page-blog-share__link:hover {
	opacity: 0.8;
}

.page-blog-share__link--x {
	aspect-ratio: 1;
}

.page-blog-share__link--facebook {
	aspect-ratio: 1;
}

.page-blog-share__link--linkedin {
	aspect-ratio: 635/540;
}

/* ブログサービス紹介 */

.page-blog-service-intro {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	margin-bottom: 4rem;
	padding: 2rem;
}

.page-blog-service-intro__title {
	color: #075326;
	font-size: 1.125rem;
	margin-bottom: 1rem;
	margin-top: 0;
	text-align: center;
}

.page-blog-service-intro__text {
	font-size: 0.875rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.page-blog-service-intro__buttons {
	text-align: center;
}

/* 関連記事 */

.page-blog-related {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	margin-top: 4rem;
	padding: 2rem;
}

.page-blog-related__title {
	color: #075326;
	font-size: 1.125rem;
	margin-bottom: 2rem;
	margin-top: 0;
	text-align: center;
}

.page-blog-related__list {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.page-blog-related-card {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 1rem;
}

.page-blog-related-card:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.page-blog-related-card__link {
	-webkit-text-decoration: none;
	color: inherit;
	display: flex;
	gap: 1rem;
	text-decoration: none;
}

.page-blog-related-card__image {
	border-radius: 4px;
	flex-shrink: 0;
	height: 80px;
	overflow: hidden;
	width: 80px;
}

.page-blog-related-card__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.page-blog-related-card__content {
	flex: 1;
	min-width: 0;
}

.page-blog-related-card__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-size: 0.875rem;
	font-weight: normal;
	margin: 0 0 0.5rem 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.page-blog-related-card__meta {
	color: #666666;
	font-size: 0.75rem;
}

.page-blog-single__categories {
	margin-top: 1.25rem;
}

.page-blog-single__category-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.page-blog-single__category-item {
	background-color: #666666;
	border-radius: 50px;
	color: #f8f9fa;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: bold;
	padding: 0.2em 0.8em;
}

/* お問い合わせページのスタイル */

.page-contact {
	background-color: #f9f9f9;
}

.contact {
	min-height: 100vh;
	padding: 60px 0;
}

.contact__container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	margin: 0 auto;
	max-width: 800px;
	padding: 40px;
}

.contact__title {
	color: #333;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
	padding-bottom: 15px;
	position: relative;
	text-align: center;
}

.contact__title:after {
	background-color: #0056b3;
	bottom: 0;
	content: "";
	height: 3px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 60px;
}

.contact__description {
	color: #555;
	line-height: 1.8;
	margin-bottom: 40px;
	text-align: center;
}

/* フォームスタイル */

.contact__form-wrapper {
	margin-bottom: 40px;
}

.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	margin-bottom: 20px;
}

.form-label {
	color: #333;
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.required-label {
	color: #ff4500;
	margin-left: 5px;
}

.form-input,
.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	padding: 12px 15px;
	transition: border-color 0.3s;
	width: 100%;
}

.form-input:focus,
.wpcf7-text:focus,
.wpcf7-textarea:focus,
.wpcf7-select:focus {
	border-color: #0056b3;
	box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
	outline: none;
}

/* テキストエリア */

.wpcf7-textarea {
	min-height: 150px;
	resize: vertical;
}

/* ラジオボタンとチェックボックス */

.wpcf7-radio,
.wpcf7-checkbox {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wpcf7-list-item label {
	align-items: center;
	display: flex;
	margin: 0;
}

.wpcf7-list-item input[type=radio],
.wpcf7-list-item input[type=checkbox] {
	height: 20px;
	margin-right: 8px;
	width: 20px;
}

/* エラーメッセージ */

.error-message {
	color: #ff4500;
	display: block;
	font-size: 14px;
	margin-top: 5px;
}

.wpcf7-not-valid {
	background-color: #fff9f9;
	border-color: #ff4500;
}

/* 送信ボタン */

.wpcf7-submit {
	background-color: #0056b3;
	border: none;
	border-radius: 4px;
	color: white;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	max-width: 300px;
	padding: 15px 30px;
	transition: background-color 0.3s;
	width: 100%;
}

.wpcf7-submit:hover {
	background-color: #004494;
}

.wpcf7-submit.disabled {
	background-color: #cccccc;
	cursor: not-allowed;
}

/* プライバシーポリシー同意 */

.privacy-policy-agreement {
	background-color: #f9f9f9;
	border-radius: 4px;
	margin-top: 30px;
	padding: 15px;
	text-align: center;
}

.privacy-policy-agreement label {
	font-weight: 600;
}

.privacy-policy-link {
	-webkit-text-decoration: underline;
	color: #0056b3;
	text-decoration: underline;
}

/* レスポンシブ対応 */

/* 資料請求ページのスタイル */

.page-document-request {
	background-color: #f9f9f9;
}

.document-request {
	min-height: 100vh;
	padding: 60px 0;
}

.document-request__container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	margin: 0 auto;
	max-width: 800px;
	padding: 40px;
}

.document-request__title {
	color: #333;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
	padding-bottom: 15px;
	position: relative;
	text-align: center;
}

.document-request__title:after {
	background-color: #0056b3;
	bottom: 0;
	content: "";
	height: 3px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 60px;
}

.document-request__description {
	color: #555;
	line-height: 1.8;
	margin-bottom: 40px;
	text-align: center;
}

.document-request__progress {
	background-color: #f0f8ff;
	border-radius: 6px;
	margin-bottom: 30px;
	padding: 10px 20px;
}

.document-request__progress-text {
	color: #0056b3;
	font-size: 16px;
	font-weight: 600;
}

.document-request__progress-text span {
	color: #ff4500;
	font-weight: 700;
}

/* フォームスタイル */

.document-request__form-wrapper {
	margin-bottom: 40px;
}

.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	margin-bottom: 20px;
}

.form-label {
	color: #333;
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.required-label {
	color: #ff4500;
	margin-left: 5px;
}

.form-input,
.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	padding: 12px 15px;
	transition: border-color 0.3s;
	width: 100%;
}

.form-input:focus,
.wpcf7-text:focus,
.wpcf7-textarea:focus,
.wpcf7-select:focus {
	border-color: #0056b3;
	box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
	outline: none;
}

/* 郵便番号入力フィールド */

.p-postal-code {
	width: 150px;
}

/* 住所フィールド */

.p-region,
.p-locality,
.p-street-address,
.p-extended-address {
	margin-top: 10px;
}

/* ラジオボタンとチェックボックス */

.wpcf7-radio,
.wpcf7-checkbox {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wpcf7-list-item label {
	align-items: center;
	display: flex;
	margin: 0;
}

.wpcf7-list-item input[type=radio],
.wpcf7-list-item input[type=checkbox] {
	height: 20px;
	margin-right: 8px;
	width: 20px;
}

/* エラーメッセージ */

.error-message {
	color: #ff4500;
	display: block;
	font-size: 14px;
	margin-top: 5px;
}

.wpcf7-not-valid {
	background-color: #fff9f9;
	border-color: #ff4500;
}

/* 送信ボタン */

.wpcf7-submit {
	background-color: #0056b3;
	border: none;
	border-radius: 4px;
	color: white;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	max-width: 300px;
	padding: 15px 30px;
	transition: background-color 0.3s;
	width: 100%;
}

.wpcf7-submit:hover {
	background-color: #004494;
}

.wpcf7-submit.disabled {
	background-color: #cccccc;
	cursor: not-allowed;
}

/* プライバシーポリシー同意 */

.privacy-policy-agreement {
	background-color: #f9f9f9;
	border-radius: 4px;
	margin-top: 30px;
	padding: 15px;
	text-align: center;
}

.privacy-policy-agreement label {
	font-weight: 600;
}

.privacy-policy-link {
	-webkit-text-decoration: underline;
	color: #0056b3;
	text-decoration: underline;
}

/* レスポンシブ対応 */

/* プレゼントページ */

.gift {
	background-color: #f8f9fa;
	padding: 2.5rem 0;
}

.gift__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.gift__title {
	color: #075326;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 2rem;
	margin-top: 0;
	text-align: center;
}

.gift__description {
	color: #333333;
	font-size: 1.125rem;
	margin-bottom: 4rem;
	text-align: center;
}

.gift__content {
	margin-top: 4rem;
}

.gift__item {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	display: flex;
	gap: 4rem;
	margin-bottom: 4rem;
	padding: 4rem;
}

.gift__item-image {
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	flex: 0 0 40%;
	overflow: hidden;
}

.gift__item-img {
	display: block;
	height: auto;
	width: 100%;
}

.gift__item-text {
	flex: 1;
}

.gift__item-title {
	color: #075326;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 2rem;
	margin-top: 0;
}

.gift__item-description {
	color: #333333;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 4rem;
}

.gift__item-button {
	margin-top: 2rem;
}

.gift__cta {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	margin-bottom: 4rem;
	padding: 2rem;
}

.gift__recommendations {
	margin-top: 4rem;
}

.gift__section-title {
	color: #075326;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	margin-top: 0;
	text-align: center;
}

.gift__cards {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	margin-bottom: 4rem;
}

.gift__links {
	margin-bottom: 4rem;
	margin-top: 4rem;
	text-align: center;
}

/* お知らせヒーローセクション */

.page-news-hero {
	background-color: #f3f9ef;
	padding: 3.75rem 0;
	text-align: center;
}

.page-news-hero__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.page-news-hero__title {
	color: #075326;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 2rem;
	margin-top: 0;
}

.page-news-hero__lead {
	color: #333333;
	font-size: 1.25rem;
}

/* お知らせ一覧コンテンツ */

.page-news-content {
	padding: 8rem 0;
}

.page-news-content__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.page-news-content__main {
	width: 100%;
}

/* お知らせアイテム */

.page-news-list {
	display: flex;
	flex-direction: column;
	gap: 0.0625rem;
}

.page-news-item {
	border-bottom: 1px solid #e5e5e5;
}

.page-news-item__link {
	-webkit-text-decoration: none;
	color: inherit;
	display: flex;
	padding: 2rem;
	text-decoration: none;
	transition: background-color 0.3s;
}

.page-news-item__link:hover {
	background-color: #f3f9ef;
}

.page-news-item__meta {
	margin-right: 2rem;
	min-width: 120px;
}

.page-news-item__date {
	color: #666666;
	font-size: 0.875rem;
}

.page-news-item__title {
	flex: 1;
	font-size: 1rem;
	font-weight: normal;
	margin: 0;
}

/* ページネーション */

.page-news-pagination {
	margin-top: 4rem;
	text-align: center;
}

.page-news-pagination .nav-links {
	display: inline-flex;
	gap: 0.3125rem;
}

.page-news-pagination .page-numbers {
	-webkit-text-decoration: none;
	align-items: center;
	border-radius: 4px;
	color: #333333;
	display: inline-flex;
	font-weight: bold;
	height: 2.25rem;
	justify-content: center;
	text-decoration: none;
	width: 2.25rem;
}

.page-news-pagination .page-numbers.current {
	background-color: #075326;
	color: #ffffff;
}

.page-news-pagination .page-numbers:not(.current):hover {
	background-color: #38ee82;
}

.page-news-pagination .prev,
.page-news-pagination .next {
	padding: 0 0.625rem;
	width: auto;
}

/* 記事が見つからないメッセージ */

.page-news-no-results {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 4rem;
	text-align: center;
}

/* お知らせ詳細ページ */

.page-news-single__hero {
	background-color: #f3f9ef;
	padding: 8rem 0;
}

.page-news-single__hero-container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
	text-align: center;
}

.page-news-single__meta {
	color: #666666;
	font-size: 0.875rem;
	margin-bottom: 2rem;
}

.page-news-single__date {
	display: inline-block;
}

.page-news-single__title {
	color: #000000;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 2rem;
	margin-top: 0;
}

.page-news-single__content {
	padding: 8rem 0;
}

.page-news-single__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 2rem;
}

.page-news-single__body {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 4rem;
	padding: 4rem;
}

.page-news-single__body h2 {
	border-bottom: 2px solid #075326;
	color: #075326;
	font-size: 1.375rem;
	margin-bottom: 1.25rem;
	margin-top: 2.5rem;
	padding-bottom: 0.625rem;
}

.page-news-single__body h3 {
	color: #075326;
	font-size: 1.125rem;
	margin-bottom: 0.9375rem;
	margin-top: 1.875rem;
}

.page-news-single__body p {
	margin-bottom: 1.25rem;
}

.page-news-single__body ul,
.page-news-single__body ol {
	margin-bottom: 1.25rem;
	padding-left: 1.25rem;
}

.page-news-single__body img {
	border-radius: 4px;
	height: auto;
	max-width: 100%;
}

/* 関連のお知らせ */

.page-news-related {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 2rem;
}

.page-news-related__title {
	color: #075326;
	font-size: 1.125rem;
	margin-bottom: 2rem;
	margin-top: 0;
	text-align: center;
}

.page-news-related__list {
	display: flex;
	flex-direction: column;
	gap: 0.0625rem;
}

.page-news-related__list .page-news-item {
	border-bottom: 1px solid #e5e5e5;
}

.page-news-related__list .page-news-item:last-child {
	border-bottom: none;
}

/* プライバシーポリシー・特定商取引法ページのスタイリング */

.page-policy {
	background-color: #f5f5f5;
	padding: 80px 0 40px;
}

.page-policy__container {
	text-align: center;
}

.page-policy__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px;
}

.page-policy-content {
	padding: 60px 0;
}

.page-policy-content__container {
	margin: 0 auto;
	max-width: 800px;
}

.page-policy-content__inner {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	padding: 40px;
}

.page-policy-content__heading {
	border-bottom: 2px solid #0056b3;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
	padding-bottom: 15px;
}

.page-policy-content__subheading {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 40px;
}

.page-policy-content__text {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
}

.page-policy-content__list {
	margin-bottom: 20px;
	margin-left: 20px;
}

.page-policy-content__list li {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 8px;
}

.page-policy-content__date {
	color: #666;
	font-size: 14px;
	margin-top: 40px;
	text-align: right;
}

.page-policy-content__table {
	border-collapse: collapse;
	margin-bottom: 30px;
	width: 100%;
}

.page-policy-content__table th,
.page-policy-content__table td {
	border: 1px solid #ddd;
	padding: 15px;
}

.page-policy-content__table th {
	background-color: #f5f5f5;
	font-weight: 600;
	text-align: left;
	width: 30%;
}

.page-policy-content__table td {
	width: 70%;
}

/* 料金プラン */

.price {
	background-color: #f8f9fa;
	padding: 8rem 0;
}

.price__subtitle {
	color: #333333;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 8rem 0 4rem;
	text-align: center;
}

.price__subtitle:first-of-type {
	margin-top: 4rem;
}

.price__grid {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
	margin-left: auto;
	margin-right: auto; /* 従来の2つ横並び（後方互換性） */
}

.price__grid:not(.price__grid--three):not(.price__grid--single) {
	grid-template-columns: repeat(2, 1fr);
	max-width: 56.25rem;
}

/* 3つ横並び（構築プラン用） */

.price__grid--three {
	grid-template-columns: repeat(3, 1fr);
}

/* 1つ表示（運用サポートプラン用） */

.price__grid--single {
	grid-template-columns: 1fr;
	max-width: 31.25rem;
}

.price-card {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	padding: 2.5rem;
	position: relative;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s; /* レスポンシブ対応 */
}

.price-card:hover {
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
	transform: translateY(-0.25rem);
}

/* おすすめプラン */

.price-card--recommended {
	border: 0.125rem solid #075326;
	transform: scale(1.05);
}

/* 運用サポートプラン */

.price-card--support {
	border: 0.125rem solid #123818;
}

/* おすすめバッジ */

.price-card__badge {
	background-color: #075326;
	border-radius: 1.25rem;
	color: #fff;
	font-size: 0.875rem;
	font-weight: bold;
	left: 50%;
	padding: 0.375rem 1.25rem;
	position: absolute;
	top: -0.75rem;
	transform: translateX(-50%);
	z-index: 1;
}

/* 従来のfeaturedクラス（後方互換性） */

.price-card--featured {
	border: 0.125rem solid #075326;
	position: relative;
}

.price-card--featured::before {
	background-color: #075326;
	border-radius: 1.25rem;
	color: #fff;
	content: "おすすめ";
	font-size: 0.875rem;
	font-weight: bold;
	left: 50%;
	padding: 0.25rem 1rem;
	position: absolute;
	top: -0.75rem;
	transform: translateX(-50%);
}

.price-card__title {
	color: #075326;
	font-size: 1.25rem;
	font-weight: 700;
	margin-top: 0;
}

.price-card--support .price-card__title {
	color: #123818;
}

.price-card__cost {
	color: #333333;
	font-size: 2rem;
	font-weight: 700;
	margin-top: 2rem;
}

.price-card__cost span {
	color: #666666;
	font-size: 1rem;
	font-weight: normal;
	margin-left: 0.5rem;
}

.price-card__features {
	flex-grow: 1;
	list-style: none;
	margin-top: 4rem;
	padding: 0;
	text-align: left;
}

.price-card__features li {
	color: #333333;
	font-size: 0.9375rem;
	line-height: 1.6;
	padding-left: 2rem;
	position: relative;
}

.price-card__features li + li {
	margin-top: 1rem;
}

.price-card__features li::before {
	background-color: #075326;
	border-radius: 50%;
	content: "";
	height: 0.375rem;
	left: 0;
	position: absolute;
	top: 0.625rem;
	width: 0.375rem;
}

.price-card--support .price-card__features li::before {
	background-color: #123818;
}

.price-card__note {
	color: #666666;
	font-size: 0.875rem;
	font-style: italic;
	margin-top: 2rem;
}

.price-card .button {
	margin-left: auto;
	margin-right: auto;
	margin-top: 4rem;
	width: 100%;
}

/* 解決できる課題セクション */

.problems {
	background-color: #fff;
	padding: 8rem 0;
}

.problems__grid {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(3, 1fr); /* レスポンシブ対応 */
}

.problem-card {
	background-color: #f8f9fa;
	border-left: 0.25rem solid #06C755;
	border-radius: 4px;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
	padding: 1.25rem;
	transition: transform 0.3s, box-shadow 0.3s; /* レスポンシブ対応 */
}

.problem-card__title {
	align-items: center;
	color: #075326;
	font-size: 1.25rem;
	font-weight: 700;
	margin-top: 0;
}

.problem-card__text {
	color: #333333;
	font-size: 1.125rem;
	line-height: 1.6;
	margin-top: 1.25rem;
}

/* サービス */

.services {
	padding: 8rem 0;
}

.services__grid {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(2, 1fr); /* レスポンシブ対応 */
}

.service-card {
	background-color: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	padding: 4rem;
	transition: transform 0.3s, box-shadow 0.3s; /* レスポンシブ対応 */
}

.service-card:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transform: translateY(-5px);
}

.service-card__title {
	color: #075326;
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
	margin-top: 0; /* レスポンシブ対応 */
}

.service-card__text {
	color: #666666;
	font-size: 1.125rem;
	margin-bottom: 1.25rem;
	margin-top: 0; /* レスポンシブ対応 */
}

.service-card__link {
	-webkit-text-decoration: none;
	align-items: center;
	color: #094e43;
	display: inline-flex;
	font-weight: 500;
	text-decoration: none;
}

.service-card__link::after {
	content: "→";
	margin-left: 0.625rem;
	transition: transform 0.3s;
}

.service-card__link:hover::after {
	transform: translateX(5px);
}

.top-news.news {
	background-color: #fff;
	padding: 8rem 0;
}

/* ブログ著者情報 */

.page-blog-author {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	margin-bottom: 4rem;
	padding: 2rem;
}

.page-blog-author__inner {
	grid-gap: 2rem;
	align-items: center;
	display: grid;
	gap: 2rem;
	grid-template-columns: 5rem 1fr;
}

.page-blog-author__image {
	aspect-ratio: 1/1;
	border-radius: 50%;
	overflow: hidden;
}

.page-blog-author__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.page-blog-author__content {
	flex: 1;
}

.page-blog-author__name {
	font-size: 1.125rem;
	margin-bottom: 1rem;
	margin-top: 0;
}

.page-blog-author__description {
	color: #333333;
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0;
}

.blog-card {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
	transform: translateY(-0.3125rem);
}

.blog-card__image-container {
	position: relative;
}

.blog-card__image {
	-o-object-fit: cover;
	height: 13.75rem;
	object-fit: cover;
	width: 100%;
}

.blog-card__category {
	background-color: #06C755;
	border-radius: 0 1.25rem 1.25rem 0;
	color: #fff;
	font-size: 0.75rem;
	font-weight: bold;
	left: 0;
	padding: 0.25rem 1rem;
	position: absolute;
	top: 1rem;
}

.blog-card__content {
	padding: 1.25rem;
}

.blog-card__date {
	color: #666666;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	margin-top: 0;
}

.blog-card__title {
	color: #075326;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 0.625rem; /* レスポンシブ対応 */
}

.blog-card__excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: #333333;
	display: -webkit-box;
	font-size: 0.875rem;
	line-height: 1.6;
	margin-top: 0.625rem;
	overflow: hidden;
}

.blog-card__next {
	-webkit-text-decoration: none;
	color: #075326;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	margin-top: 1rem;
	position: relative;
	text-decoration: none;
}

.blog-card__next::after {
	border-right: 0.125rem solid #075326;
	border-top: 0.125rem solid #075326;
	content: "";
	display: inline-block;
	height: 0.375rem;
	margin-left: 0.5rem;
	position: relative;
	top: -0.0625rem;
	transform: rotate(45deg);
	width: 0.375rem;
}

.breadcrumb {
	color: #666666;
	padding: 0.625rem 0;
}

.button {
	-webkit-text-decoration: none;
	border: none;
	border-radius: 0rem;
	cursor: pointer;
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.75rem 1.875rem;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease; /* レスポンシブ対応 */
}

.button:hover {
	background-color: #05ae4a;
	box-shadow: 0 0.375rem 0.75rem rgba(6, 199, 85, 0.4);
	transform: translateY(-0.125rem);
}

.button--primary {
	background-color: #075326;
	color: #fff;
	max-width: 16.25rem;
	width: 100%;
}

.button--primary:hover {
	background-color: #032410;
}

.button--secondary {
	background-color: #123818;
	color: #fff;
	max-width: 16.25rem;
	width: 100%;
}

.button--secondary:hover {
	background-color: #061107;
}

.button--outline {
	background-color: transparent;
	border: 0.0625rem solid #075326;
	color: #075326;
}

.button--outline:hover {
	background-color: rgba(7, 83, 38, 0.1);
}

.button--line {
	align-items: center;
	background-color: #06C755;
	box-shadow: 0 0.25rem 0.625rem rgba(6, 199, 85, 0.3);
	color: #fff;
	display: inline-flex;
	justify-content: center;
	max-width: 16.25rem;
	padding: 0.875rem 1.875rem;
	transform: translateY(0);
	width: 100%;
}

.button--line .button__icon {
	align-items: center;
	display: inline-flex;
	margin-right: 0.5rem;
}

.button--line .button__icon svg {
	height: 1.25rem;
	width: 1.25rem;
}

/* お問い合わせセクション */

.contact-section {
	background-color: #094e43;
	color: #fff;
	padding: 8rem 0;
}

.contact-section__title.section-title {
	color: #fff;
}

.contact-section__title.section-title::after {
	background-color: #fff;
}

.contact-section__text {
	font-size: 1.125rem;
	margin-top: 0;
	text-align: center;
}

.contact-section__appeal {
	color: #FFE259;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.0625rem;
	margin-top: 0.625rem;
	text-align: center;
	text-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.2);
}

.contact-section__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	margin-top: 4rem; /* レスポンシブ対応 */
}

.contact-section .button--line {
	animation: pulse 2s infinite;
	min-width: 16.25rem; /* レスポンシブ対応 */
}

.contact-section .button--primary {
	background-color: #fff;
	color: #094e43;
}

.contact-section .button--primary:hover {
	background-color: #e6e6e6;
}

.contact-section .button--secondary {
	background-color: transparent;
	border: 0.125rem solid #fff;
	color: #fff;
}

.contact-section .button--secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	padding-left: 2rem;
	padding-right: 2rem;
}

/* フッター */

.footer {
	background-color: #dee7df;
	color: #075326;
	padding-top: 8rem;
}

.footer__container {
	grid-gap: 8rem;
	display: grid;
	gap: 8rem;
	grid-template-columns: 1fr 12.5rem;
	justify-content: space-between; /* レスポンシブ対応 */
}

.footer__logo {
	width: 25rem; /* レスポンシブ対応 */
}

.footer__address {
	font-style: normal;
	line-height: 1.5;
}

.footer__nav-title {
	border-bottom: 1px solid rgb(3, 29, 11);
	font-size: 1rem;
	margin-bottom: 2rem;
	margin-top: 0;
	padding-bottom: 0.5rem; /* レスポンシブ対応 */
}

.footer__nav-list {
	list-style: none; /* レスポンシブ対応 */
}

.footer__nav-link {
	-webkit-text-decoration: none;
	color: #123818;
	display: inline-block;
	padding: 0.5rem 0;
	text-decoration: none;
	transition: -webkit-text-decoration 0.3s;
	transition: text-decoration 0.3s;
	transition: text-decoration 0.3s, -webkit-text-decoration 0.3s; /* レスポンシブ対応 */
}

.footer__nav-link:hover {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.footer__bottom {
	border-top: 1px solid rgba(6, 33, 13, 0.1);
	margin-top: 8rem;
	padding: 2rem 0;
	text-align: center;
}

.footer__menu {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}

.footer__menu-list {
	display: flex;
	font-size: 0.875rem;
	gap: 2rem;
	justify-content: center;
}

.footer__copyright {
	color: rgba(2, 17, 6, 0.6);
	font-size: 0.75rem;
}

/*-------------------------------------
ヘッダー
-------------------------------------*/

/* ヘッダー */

.header {
	background-color: #ffffff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header__container {
	align-items: center;
	display: flex;
	height: 80px;
	justify-content: space-between; /* レスポンシブ対応 */
}

.header__logo {
	margin: 0;
	width: 12.5rem; /* レスポンシブ対応 */
}

.header__logo-link {
	display: block;
}

.header__logo-link img {
	height: auto;
	max-width: 100%;
}

.header__nav { /* レスポンシブ対応 */
}

.header__menu-list {
	display: flex;
	gap: 1.25rem;
	margin: 0;
	padding: 0; /* レスポンシブ対応 */
}

.header__menu-item {
	margin: 0; /* レスポンシブ対応 */
}

.header__menu-link {
	-webkit-text-decoration: none;
	color: #333333;
	font-weight: 500;
	padding: 0.5rem 0;
	text-decoration: none;
	transition: color 0.3s; /* レスポンシブ対応 */
}

.header__menu-link:hover {
	color: #094e43;
}

.header__menu-link--contact {
	background-color: #075326;
	border-radius: 4px;
	color: #fff;
	padding: 0.5rem 1rem; /* レスポンシブ対応 */
}

.header__menu-link--contact:hover {
	background-color: #123818;
	color: #fff;
}

/* ハンバーガーメニュー */

.hamburger-wrapper {
	display: none; /* レスポンシブ対応 */
}

.hamburger {
	cursor: pointer;
	height: 1.5rem;
	position: relative;
	width: 1.875rem;
	z-index: 300;
}

.hamburger span {
	background-color: #075326;
	border-radius: 3px;
	height: 3px;
	position: absolute;
	transition: all 0.2s ease-in-out;
	width: 100%;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
	bottom: 0;
}

.hamburger.is-open span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
	opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}

/* ハンバーガーメニューのテキスト */

.hamburger__text {
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1;
	margin: 0;
	padding: 0;
	text-align: center;
}

.hamburger__text-close {
	display: none;
}

.hamburger.is-open + .hamburger__text .hamburger__text-menu {
	display: none;
}

.hamburger.is-open + .hamburger__text .hamburger__text-close {
	color: #075326;
	display: block;
}

.header__overlay {
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.3s ease;
	width: 100%;
	z-index: 50;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1150px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

/* お知らせ */

.news {
	background-color: #fff;
	padding: 2.5rem 0 7.5rem;
}

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

.news__link {
	align-items: center;
	border-bottom: 0.0625rem solid #e5e5e5;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	padding: 2rem 0; /* レスポンシブ対応 */
}

.news__link:hover .news__title {
	-webkit-text-decoration: underline;
	color: #075326;
	text-decoration: underline;
}

.news__date {
	color: #666666;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
}

.news__category {
	background-color: rgba(7, 83, 38, 0.1);
	border-radius: 1.25rem;
	color: #075326;
	font-size: 0.75rem;
	font-weight: bold;
	padding: 0.25rem 0.75rem;
}

.news__title {
	-webkit-text-decoration: none;
	color: #333333;
	flex: 1;
	font-size: 1rem;
	text-decoration: none;
}

.news__more {
	margin-top: 4rem;
	text-align: center;
}

/* ブログサイドバー */

.page-blog-sidebar {
	position: sticky;
	top: 100px;
}

.page-blog-sidebar__section {
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	margin-bottom: 4rem;
	padding: 2rem;
}

.page-blog-sidebar__title {
	color: #075326;
	font-size: 1.125rem;
	margin-bottom: 2rem;
	margin-top: 0;
	text-align: center;
}

.page-blog-sidebar-post {
	border-bottom: 1px solid #e5e5e5;
	padding: 1rem 0;
}

.page-blog-sidebar-post:last-child {
	border-bottom: none;
}

.page-blog-sidebar-post__link {
	-webkit-text-decoration: none;
	align-items: center;
	color: inherit;
	display: flex;
	gap: 1rem;
	text-decoration: none;
	transition: color 0.3s;
}

.page-blog-sidebar-post__link:hover {
	color: #075326;
}

.page-blog-sidebar-post__image {
	border-radius: 4px;
	flex-shrink: 0;
	height: 60px;
	overflow: hidden;
	width: 60px;
}

.page-blog-sidebar-post__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.page-blog-sidebar-post__title {
	flex: 1;
	font-size: 0.875rem;
	font-weight: normal;
	margin: 0;
	min-width: 0;
}

.page-blog-sidebar-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.page-blog-sidebar-categories__item {
	margin-bottom: 1rem;
}

.page-blog-sidebar-categories__link {
	-webkit-text-decoration: none;
	background-color: #f5f5f5;
	border-radius: 50px;
	color: #333333;
	display: inline-block;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}

.page-blog-sidebar-categories__link:hover {
	background-color: #075326;
	color: #ffffff;
}

.page-blog-sidebar-cta {
	border-radius: 4px;
	text-align: center;
}

.page-blog-sidebar-cta__title {
	color: #075326;
	font-size: 1rem;
	margin-bottom: 1rem;
	margin-top: 0;
}

.page-blog-sidebar-cta__text {
	font-size: 0.875rem;
	margin-bottom: 2rem;
}

.page-blog-sidebar-cta__buttons {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.section-title {
	color: #075326;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 4rem;
	margin-top: 0;
	text-align: center;
}

@media (max-width: 1100px) {

html {
	font-size: 1.4545454545vw;
}

}

@media screen and (max-width: 1023px) {

.service-plans__plan {
	grid-template-columns: repeat(2, 1fr);
}

.owned-media__grid {
	grid-template-columns: repeat(2, 1fr);
}

.price__grid--three {
	grid-template-columns: repeat(2, 1fr);
}

}

@media (max-width: 768px) {

.contact-complete {
	padding: 30px 0;
}

.contact-complete__container {
	padding: 20px;
}

.document-complete {
	padding: 30px 0;
}

.document-complete__container {
	padding: 20px;
}

.document-complete__cards {
	grid-template-columns: repeat(1, 1fr);
}

.contact {
	padding: 30px 0;
}

.contact__container {
	padding: 20px;
}

.contact__title {
	font-size: 24px;
}

.document-request {
	padding: 30px 0;
}

.document-request__container {
	padding: 20px;
}

.document-request__title {
	font-size: 24px;
}

.page-policy {
	padding: 60px 0 30px;
}

.page-policy__title {
	font-size: 28px;
}

.page-policy-content {
	padding: 40px 0;
}

.page-policy-content__inner {
	padding: 30px;
}

.page-policy-content__heading {
	font-size: 22px;
	margin-bottom: 25px;
}

.page-policy-content__subheading {
	font-size: 18px;
	margin-top: 30px;
}

.page-policy-content__table th {
	width: 35%;
}

.page-policy-content__table td {
	width: 65%;
}

}

@media screen and (max-width: 767px) {

.pc {
	display: none;
}

.sp {
	display: block;
}

html {
	font-size: 16px;
}

body.no-scroll {
	height: 100%;
	position: fixed;
	width: 100%;
}

.cases__grid {
	gap: 2rem;
	grid-template-columns: 1fr;
}

.contact-complete__cards {
	grid-template-columns: 1fr;
}

.blog-grid {
	grid-template-columns: 1fr;
}

.features {
	background-image: url(../images/top/features-bg-sp.webp);
}

.features__grid {
	gap: 2rem;
	grid-template-columns: 1fr;
}

.feature-card {
	padding: 2rem;
}

.hero__title {
	font-size: 1.875rem;
}

.hero__text {
	font-size: 1.125rem;
}

.hero__buttons {
	align-items: center;
	flex-direction: column;
	gap: 1rem;
}

.hero .button--line {
	order: -1;
	width: 100%;
}

.service-hero {
	padding: 2rem 0;
}

.service-overview {
	padding: 4rem 0;
}

.service-strengths {
	padding: 4rem 0;
}

.service-effects {
	padding: 4rem 0;
}

.service-plans {
	padding: 4rem 0;
}

.service-plans__plan {
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

.service-plan-card {
	margin-bottom: 0;
	padding: 1.25rem;
}

.service-plan-card--recommended {
	transform: none;
}

.service-detail-item {
	padding: 1.25rem;
}

.service-flow {
	padding: 4rem 0;
}

.line-strategy {
	padding: 4rem 0;
}

.line-strategy__container {
	flex-direction: column;
	gap: 0;
}

.line-strategy__content {
	display: contents;
}

.line-strategy__title {
	font-size: 1.375rem;
	order: 1;
	text-align: center;
}

.line-strategy__text-block {
	order: 3;
}

.line-strategy__text br {
	display: none;
}

.line-strategy__link {
	margin-top: 1.25rem;
	order: 4;
}

.line-strategy__image {
	margin-top: 1.25rem;
	order: 2;
	width: 100%;
}

.owned-media__grid {
	gap: 2rem;
	grid-template-columns: 1fr;
}

.page-about-hero {
	padding: 2rem 0;
}

.page-about-hero__title {
	font-size: 1.75rem;
}

.page-about-hero__buttons {
	align-items: center;
	flex-direction: column;
	gap: 1rem;
}

.page-about-section {
	padding: 4rem 0;
}

.page-about-section__container {
	flex-direction: column;
	gap: 2rem;
}

.page-about-section__content {
	width: 100%;
}

.page-about-section__image {
	width: 100%;
}

.page-about-philosophy {
	padding: 4rem 0;
}

.page-about-philosophy__content {
	flex-direction: column;
}

.page-about-philosophy-card {
	min-width: 100%;
	width: 100%;
}

.page-about-philosophy-card__text {
	font-size: 1rem;
}

.page-about-profile {
	font-size: 1rem;
	padding: 4rem 0;
}

.page-about-profile__content {
	flex-direction: column;
	gap: 2rem;
}

.page-about-profile__image {
	margin: 0 auto;
	max-width: 300px;
	width: 100%;
}

.page-about-profile__info {
	width: 100%;
}

.page-about-achievements {
	padding: 4rem 0;
}

.page-about-achievements__results {
	flex-direction: column;
	margin-bottom: 2rem;
}

.page-about-achievement-card {
	width: 100%;
}

.page-blog-hero {
	padding: 1.25rem 0;
}

.page-blog-hero__title {
	font-size: 1.75rem;
}

.page-blog-hero__lead {
	font-size: 1rem;
}

.page-blog-content__main {
	flex: none;
	width: 100%;
}

.page-blog-content__sidebar {
	margin-top: 4rem;
	width: 100%;
}

.page-blog-list {
	grid-template-columns: 1fr;
}

.page-blog-single__title {
	font-size: 1.75rem;
}

.page-blog-single__container.container {
	flex-direction: column;
	padding: 0 0.625rem;
}

.page-blog-single__sidebar {
	width: 100%;
}

.page-blog-single__body {
	padding: 0.625rem;
}

.page-blog-single__main-content h2 {
	font-size: 1.25rem;
}

.page-blog-single__main-content h3 {
	font-size: 1.125rem;
}

.page-blog-cta__buttons {
	gap: 1rem;
}

.gift {
	padding: 1.25rem 0;
}

.gift__title {
	font-size: 1.75rem;
}

.gift__description {
	font-size: 1rem;
}

.gift__item {
	flex-direction: column;
	padding: 2rem;
}

.gift__item-image {
	margin-bottom: 2rem;
}

.gift__item-title {
	font-size: 1.25rem;
}

.gift__section-title {
	font-size: 1.25rem;
}

.gift__cards {
	grid-template-columns: 1fr;
}

.price__grid:not(.price__grid--three):not(.price__grid--single) {
	gap: 8rem;
	grid-template-columns: 1fr;
}

.price__grid--three {
	gap: 8rem;
	grid-template-columns: 1fr;
}

.price-card {
	padding: 2rem;
}

.price-card--recommended {
	transform: none;
}

.problems__grid {
	gap: 2rem;
	grid-template-columns: 1fr;
}

.problem-card {
	padding: 2rem;
}

.services__grid {
	gap: 2rem;
	grid-template-columns: 1fr;
}

.service-card {
	padding: 2rem;
}

.service-card__title {
	font-size: 1.125rem;
}

.service-card__text {
	font-size: 1rem;
}

.page-blog-author__inner {
	grid-template-columns: 1fr;
	text-align: center;
}

.page-blog-author__image {
	margin-left: auto;
	margin-right: auto;
	max-width: 7.5rem;
}

.blog-card__title {
	font-size: 1rem;
}

.button {
	font-size: 0.875rem;
	padding: 0.625rem 1.25rem;
}

.button--line {
	padding: 0.75rem 1.5rem;
}

.contact-section {
	padding: 4rem 0;
}

.contact-section__buttons {
	align-items: center;
	flex-direction: column;
	gap: 1rem;
}

.contact-section .button--line {
	order: -1;
	width: 100%;
}

.container {
	padding-left: 1rem;
	padding-right: 1rem;
}

.footer {
	padding-top: 4rem;
}

.footer__container {
	gap: 4rem;
	grid-template-columns: 1fr;
	text-align: center;
}

.footer__logo {
	margin: 0 auto;
	max-width: 18.75rem;
	width: 80%;
}

.footer__nav-title {
	margin: 0 auto;
	max-width: 12.5rem;
	text-align: center;
	width: 100%;
}

.footer__nav-list {
	padding: 0;
	text-align: center;
}

.footer__nav-link {
	display: inline-block;
	font-size: 1rem;
	padding: 0.5rem 0;
}

.footer__bottom {
	margin-top: 4rem;
}

.footer__menu {
	flex-direction: column;
}

.footer__menu-list {
	flex-direction: column;
	gap: 0.625rem;
}

.header__container {
	height: 60px;
	padding: 0 2rem;
}

.header__logo {
	width: 9.375rem;
}

.header__nav {
	background-color: #ffffff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	display: none;
	height: calc(100vh - 60px);
	left: 0;
	overflow-y: auto;
	padding: 2.5rem 1.25rem;
	position: fixed;
	top: 60px;
	width: 100%;
	z-index: 200;
}

.header__menu-list {
	align-items: center;
	flex-direction: column;
}

.header__menu-item {
	border-bottom: 1px solid rgba(7, 83, 38, 0.1);
	padding-bottom: 1rem;
	text-align: center;
	width: 100%;
}

.header__menu-item:last-child {
	border-bottom: none;
}

.header__menu-link {
	display: block;
	font-size: 1.125rem;
	padding: 1rem;
	text-align: center;
	width: 100%;
}

.header__menu-link--contact {
	display: inline-block;
	margin-top: 2rem;
	padding: 1rem 2rem;
	width: 100%;
}

.hamburger-wrapper {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	width: 5rem;
}

.inner {
	padding-left: 20px;
	padding-right: 20px;
}

.news__link {
	align-items: flex-start;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem 0;
}

.page-blog-sidebar__section {
	margin-bottom: 2rem;
}

}

@media (max-width: 480px) {

.contact-complete__title {
	font-size: 24px;
}

.contact-complete__body {
	padding: 15px;
}

.document-complete__title {
	font-size: 24px;
}

.document-complete__meeting {
	padding: 15px;
}

.document-complete__additional-info {
	padding: 15px;
}

.wpcf7-submit {
	width: 100%;
}

.wpcf7-submit {
	width: 100%;
}

.page-policy {
	padding: 40px 0 20px;
}

.page-policy__title {
	font-size: 24px;
}

.page-policy-content {
	padding: 30px 0;
}

.page-policy-content__inner {
	padding: 20px;
}

.page-policy-content__heading {
	font-size: 20px;
	margin-bottom: 20px;
}

.page-policy-content__subheading {
	font-size: 17px;
	margin-top: 25px;
}

.page-policy-content__text {
	font-size: 15px;
	line-height: 1.7;
}

.page-policy-content__list li {
	font-size: 15px;
	line-height: 1.7;
}

.page-policy-content__table th,
.page-policy-content__table td {
	padding: 10px;
}

.page-policy-content__table th {
	width: 40%;
}

.page-policy-content__table td {
	width: 60%;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@media (max-width: 62rem) {

.service-flow__steps::before {
	display: none;
}

}

@media (max-width: 48rem) {

.service-hero {
	padding: 4rem 0;
}

.service-hero__title {
	font-size: 1.75rem;
}

.service-hero__lead {
	font-size: 1rem;
}

.service-hero__buttons {
	gap: 1rem;
}

.service-overview__content {
	flex-direction: column-reverse;
	gap: 2rem;
}

.service-effects__cards {
	grid-template-columns: 1fr;
}

.button {
	font-size: 0.875rem;
	min-width: 160px;
	padding: 0.5rem 1rem;
}

.page-news-hero {
	padding: 4rem 0;
}

.page-news-hero__title {
	font-size: 1.75rem;
}

.page-news-hero__lead {
	font-size: 1rem;
}

.page-news-item__link {
	flex-direction: column;
}

.page-news-item__meta {
	margin-bottom: 0.3125rem;
}

.page-news-single__body {
	padding: 2rem;
}

}

@keyframes pulse {

0% {
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
}

70% {
	box-shadow: 0 0 0 0.625rem rgba(255, 255, 255, 0);
}

100% {
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

}


/*# sourceMappingURL=style.css.map */
