@charset "UTF-8";

/* ========================================
   Hero Section (New KV)
   ======================================== */
.hero-section {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 0;
	box-sizing: border-box;
	background-color: #fbfaf8;
	display: block;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* 画像コンテナ (フレーム) */
.hero-image-container {
	position: relative;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	border: none;
	overflow: hidden;
	display: block;
}

/* 背景画像用レイヤー (アニメーション用) */
.hero-img-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/kv.png');
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-color: transparent;
	z-index: 0;
	transform: scale(1.5);
	transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-section.is-active .hero-img-bg {
	transform: scale(1);
}

/* 縦書きキャッチコピー */
.hero-copy {
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	text-orientation: upright;
	height: auto;
	position: absolute;
	top: 14%;
	right: 8%;
	opacity: 0;
	transition: opacity 0.5s ease-out;
	z-index: 100;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hero-section.is-active .hero-copy {
	opacity: 1;
}

.hero-copy__line {
	background-color: #ffffff;
	color: #333;
	font-size: 2.5rem;
	letter-spacing: 0.3em;
	line-height: 1.4;
	padding: 1rem 0.5rem;
	margin: 0 0.4rem;
	flex-shrink: 0;
	-webkit-clip-path: inset(0 0 100% 0); /* 追加 */
	clip-path: inset(0 0 100% 0);
}

/* 文字カラー指定 */
.text-green {
	font-weight: 500;
	color: #009f56;
	-webkit-text-stroke: 1px #009f56;
}
.text-orange {
	font-weight: 500;
	color: #fd551b;
	-webkit-text-stroke: 1px #fd551b;
}
.text-yellow {
	font-weight: 500;
	color: #fda838;
	-webkit-text-stroke: 1px #fda838;
}

@keyframes wipeDown {
	0% {
		-webkit-clip-path: inset(0 0 100% 0); /* 追加 */
		clip-path: inset(0 0 100% 0);
	}
	100% {
		-webkit-clip-path: inset(0 0 0% 0); /* 追加 */
		clip-path: inset(0 0 0% 0);
	}
}

/* 【追加・修正】背景画像を「中央から」横に回転させるアニメーション定義 */
@keyframes bg-rotate {
	0% {
		/* 開始位置：中央下 */
		background-position: center bottom;
	}
	100% {
		/* 終了位置：中央から画像幅分（例:3000px）左へ移動 */
		/* 画像の実際の幅に合わせて 3000px の数値を調整してください */
		background-position: calc(50% - 3000px) bottom;
	}
}

/* アニメーション適用 */
.hero-section.is-active .hero-copy__line {
	animation: wipeDown 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-section.is-active .hero-copy__line:nth-child(1) {
	animation-delay: 2.5s;
}
.hero-section.is-active .hero-copy__line:nth-child(2) {
	animation-delay: 3.3s;
}

/* ========================================
   Message Section
   ======================================== */

.message-section {
	/* padding-bottom: 120px; */
}

.message-section .section-header {
	margin-bottom: 128px;
}

.message-section .section-header__main {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 8px;
}
.message-section__main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 80px;
}
.message-section__body {
	width: 741px;
}

.message-section__text {
	color: #53534b;
	font-size: 18px;
	line-height: 2.4;
	margin-bottom: 32px;
}

.message-section__text:last-child {
	margin-bottom: 0;
}

.message-section__text--bold {
	font-weight: 700;
}
.message-section__card-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

/* --- Card Grid (Flexbox for Center Alignment) --- */
.card-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	width: 100%;
}

/* 4カラム：(100% - ギャップ16px * 3) / 4 */
.card-grid--4-col > .service-card {
	width: calc((100% - 48px) / 4);
}

/* 3カラム：(100% - ギャップ16px * 2) / 3 */
.card-grid--3-col > .service-card {
	width: calc((100% - 32px) / 3);
}

/* Service Card */
.service-card {
	min-height: 72px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 12px;
	padding: 16px 20px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
	background-color: #fff;
	color: #8c7d6e;
	border: 1px solid #8c7d6e;
	flex-grow: 0;
	flex-shrink: 0;
}

.service-card:hover {
	background-color: #8c7d6e;
	color: #fff;
	border-color: #8c7d6e;
}

/* アイコン用コンテナ */
.service-card .arrow-icons {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	margin-left: 20px;
	flex-shrink: 0;
	position: relative;
	transition: background-color 0.3s;
}

/* 矢印画像の設定（90度回転） */
.service-card .arrow-icons img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 0.3s;
}

.service-card .arrow-color {
	opacity: 1;
}
.service-card .arrow-white {
	opacity: 0;
}

.service-card:hover .arrow-color {
	opacity: 0;
}
.service-card:hover .arrow-white {
	opacity: 1;
}

/* ========================================
   Service Section (Base & PC Styles)
   ======================================== */
.service-section {
	background-color: #f5f0e7;
	/* padding-bottom: 120px; */
	overflow: hidden; /* 回転アニメーションのはみ出し防止 */
}

.service-section__list {
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* サービスアイテム（共通） */
.service-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;

	background-color: #fff;
	border-radius: 40px;
	padding: 64px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	z-index: 1;
}

.service-item__text {
	width: 100%;
	max-width: 520px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.service-item__number {
	font-family: 'Crimson Text', serif;
	font-weight: 500;
	font-size: 80px;
	color: #8c7d6e;
	line-height: 1;
	letter-spacing: 0;
	margin-bottom: 10px;
}

.service-item__title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-item__description {
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-size: 16px;
	line-height: 1.8;
}

.service-item__subtitle {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
}

.service-item__subtitle--small {
	font-size: 16px;
}

.service-item__magazines {
	font-size: 14px;
	line-height: 1.8;
}

.service-item__image-wrapper {
	flex-shrink: 0;
	width: 45%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

/* アニメーション用クラス（共通） */
.service-item__image-wrapper,
.item__image-wrapper,
.contact-section__image-container {
	flex-shrink: 0;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition-delay: 0.2s;
}
.is-loaded {
	opacity: 1;
	transform: scale(1);
}

.item__image-wrapper {
	position: absolute;
	transition-delay: 0s;
}
.image-message {
	bottom: 10%;
	left: -4%;
}
.image-company {
	bottom: 0%;
	right: 8%;
}
.illust-width {
	width: 100%;
	max-width: 400px;
	height: auto;
}
.illust-height {
	width: auto;
	height: auto;
	max-height: 400px;
}

/* ベースのスタイル */
.book-list-container {
	margin: 0 auto;
}

/* リストのスタイル */
.book-list {
	list-style: none;
	padding: 0;
	margin: 0;
	/* border-top: 1px solid #ddd; */
}

.book-list li {
	padding: 12px 0;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
	line-height: 1.8;
}

/* 出版社名のスタイル（少し小さく薄く） */
.publisher {
	font-size: 12px;
	color: #777;
	/* margin-left: 0.5em; */
	display: inline-block;
}

/* 非表示用クラス */
.is-hidden {
	display: none;
}

/* フェードインアニメーション（シンプル版） */
.fade-in {
	animation: simpleFade 0.4s ease-out;
}
@keyframes simpleFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ボタンエリア */
.button-area {
	text-align: center;
	margin-top: 20px;
}

/* ボタンのスタイル（シンプル） */
.toggle-btn {
	background-color: transparent;
	border: 1px solid #8c7d6e;
	border-radius: 4px;
	color: #8c7d6e;
	padding: 10px 30px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s;
}

.toggle-btn:hover {
	background-color: #8c7d6e;
	color: #fff;
}

/* 矢印アイコン（CSSで作成） */
.arrow {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
	margin-left: 8px;
	margin-bottom: 3px;
	transition: transform 0.3s;
}

/* 閉じる状態の矢印 */
.toggle-btn.open .arrow {
	transform: rotate(-135deg);
	margin-bottom: -1px;
}

/* ========================================
   Company Section
   ======================================== */
.company-section {
	/* padding-bottom: 80px; */
}
/* PC: Flexboxで横並び */
.company-section__content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 80px;
}
.company-section__image {
	width: 458px; /* 固定幅 */
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
}
.company-section__info {
	flex: 1;
	min-width: 0; /* Flexboxのはみ出し防止 */
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.info-item {
	padding-bottom: 20px;
	border-bottom: 1px solid #dddddd;
	display: flex;
	color: #53534b;
}
.info-item__label {
	font-weight: 700;
	width: 120px;
	flex-shrink: 0;
	margin: 0;
}
.info-item__list {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-left: 4px;
	/* padding-left: 1em;
	text-indent: -1.5em; */
}
/* .info-item__list li::before {
	content: '・';
	margin-right: 0.5em;
} */

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
	/* padding-bottom: 200px; */
}

.contact-section__text .annotation {
	font-size: 12px;
	line-height: 1.8;
}

/* PC: Flexboxで横並び (フォーム左、イラスト右) */
.contact-section__form-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
}
.contact-section__form-container {
	flex: 1; /* 余ったスペースを埋める */
	max-width: 648px;
	min-width: 0;
}
.contact-section__text {
	color: #53534b;
	margin-bottom: 40px;
}
.contact-section__text p {
	margin-bottom: 10px;
}
.contact-section__text .annotation {
	font-size: 14px;
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contact-form__group {
	display: flex;
	flex-direction: column;
}
.contact-form__label {
	font-weight: 700;
	font-size: 16px;
	color: #53534b;
	margin-bottom: 8px;
}
.contact-form__label span {
	padding-left: 2px;
	color: #fd551b;
}
.contact-form__input,
.contact-form__textarea {
	width: 100%;
	border: 1px solid #8c7d6e;
	border-radius: 8px;
	padding: 12px;
	font-size: 14px;
	color: #53534b;
	box-sizing: border-box; /* コンテンツ内包ズレ防止 */
}
.contact-form__input {
	height: 48px;
}
.contact-form__textarea {
	resize: none;
}

/* 【修正】送信ボタンのスタイル (矢印なし・シンプル版) */
.contact-form__submit-button {
	display: inline-flex;
	justify-content: center; /* テキストを中央寄せ */
	align-items: center;
	min-height: 72px;
	min-width: 240px;
	border-radius: 12px;
	padding: 20px 24px;

	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.04em;

	background-color: #8c7d6e;
	color: #fff;
	border: 1px solid #8c7d6e;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;

	align-self: flex-start; /* 左寄せ */
	cursor: pointer;
}

/* ホバー時の反転アニメーション */
.contact-form__submit-button:hover {
	background-color: #fff;
	color: #8c7d6e;
	border-color: #8c7d6e;
}

.contact-section__image-container {
	width: 400px; /* 固定幅 */
	max-width: 100%;
	flex-shrink: 0;
}

/* ========================================
   Background Decoration (Blurred Circles)
   ======================================== */
.message-section,
.company-section,
.contact-section {
	position: relative;
	/* overflow: hidden; */ /* イラスト配置のため調整 */
}

.message-section .container,
.company-section .container,
.contact-section .container {
	position: relative;
	z-index: 2;
}

.section-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	overflow: hidden; /* 装飾のはみ出しはここでカット */
}

.bg-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.6;
}

/* Message Section Decoration */
.message-section .bg-circle--1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(120deg, rgba(255, 179, 171, 1) 0%, rgba(251, 207, 72, 1) 100%);
	top: 200px;
	left: -100px;
	opacity: 0.5;
	filter: blur(100px);
}

/* Company Section Decoration */
.company-section .bg-circle--1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(120deg, rgba(255, 179, 171, 1) 0%, rgba(251, 207, 72, 1) 100%);
	top: 100px;
	left: -80px;
	/* transform: translate(-50%, -50%); */
	opacity: 0.5;
	filter: blur(100px);
}

/* Contact Section Decoration */
/* .contact-section .bg-circle--1 {
	width: 300px;
	height: 300px;
	background-color: #009f56;
	top: 50px;
	left: -50px;
	opacity: 0.4;
} */

.contact-section .bg-circle--2 {
	width: 500px;
	height: 500px;
	/* background-color: #fdd44e; */
	background-color: #fcb239;
	bottom: -150px;
	right: -100px;
	opacity: 0.4;
}

@media (max-width: 1401px) {
	.image-message {
		width: 100%;
		max-width: 300px;
		left: 0;
	}
}

/* ----------------------------------------------------
   PC Specific Styles (アニメーション重視)
   min-width: 1001px (Updated)
   ---------------------------------------------------- */
@media (min-width: 1001px) {
	.service-section__list {
		gap: 80px; /* PCは通常の余白で縦積み */
	}

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

	.service-item--reverse {
		flex-direction: row-reverse;
	}

	/* PC用アニメーション：右下からくるっと */
	.service-item {
		opacity: 0;
		transform: translateY(100px) rotate(8deg);
		transform-origin: bottom right;
		transition: opacity 1s ease-out, transform 1s cubic-bezier(0.1, 0.5, 0.2, 1);
		will-change: transform, opacity;
	}

	.service-item.is-animated {
		opacity: 1;
		transform: translateY(0) rotate(0deg);
	}
}

/* ----------------------------------------------------
   SP Specific Styles (Sticky重なり重視)
   max-width: 1000px (Updated)
   ---------------------------------------------------- */
@media (max-width: 1000px) {
	.hero-section {
		height: 100vh;
		padding: 0;
	}
	.hero-image-container {
		width: 100%;
		height: 100%;
		border-radius: 0;
	}

	.hero-img-bg {
		/* 【修正】SP用の画像に切り替え */
		background-image: url('../img/kv-sp.png');

		/* 【修正】横に回転させるための設定 */
		background-repeat: repeat-x; /* 横に繰り返す */
		background-size: auto 100%; /* 高さを画面いっぱいに、横幅は自動 */
		/* 【修正】初期位置を「中央下」に変更 */
		background-position: center bottom;
	}

	/* 【追加】.is-activeが付与された後（出現後）のスタイル */
	.hero-section.is-active .hero-img-bg {
		/* 既存の縮小アニメーション(transform)終了状態 */
		transform: scale(1);

		/* 追加: 横回転アニメーション */
		/* 60秒かけてゆっくり回転、無限ループ */
		animation: bg-rotate 60s linear infinite;

		/* 重要: 「出現後」に動き出すよう、既存のtransition(6s)に合わせて遅延を設定 */
		animation-delay: 6s;
	}

	.hero-copy {
		height: 60vh;
		padding-left: 0;
		/* align-items: center; */
		right: 4%;
	}
	.hero-copy__line {
		font-size: 2.2rem;
		/* padding: 1rem 0.5rem; */
		margin: 0 0.4rem;
	}

	.content-section {
		padding: 0 !important;
	}

	/* Message Section Adjustment */
	.message-section .section-header {
		width: 100%;
		margin-bottom: 0;
	}
	.section-header--with-line--sp .section-header__main::after {
		content: '';
		flex: 1;
		height: 1px;
		background-color: #8c7d6e;
	}
	.message-section__main {
		flex-direction: column;
		/* イラストをフロー配置にするためgapを調整 */
		gap: 20px;
	}
	.message-section__body {
		width: 100% !important;
	}
	.message-section__text {
		font-size: 16px;
		line-height: 2;
	}

	/* Service Images: 縦横比維持・大きすぎない調整 */
	.service-item__image-wrapper img {
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: 400px;
	}

	/* --- Service Section SP Overrides (Sticky Stack) --- */
	.service-section {
		padding-bottom: 80px;
	}

	.service-section__list {
		gap: 0; /* Stickyで重なるためgapは不要 */
	}

	.service-item {
		/* Stickyによる重なり設定 */
		position: -webkit-sticky;
		position: sticky;
		top: 80px; /* ヘッダー下の固定位置 */
		margin-bottom: 40px; /* 次のカードが重なるまでのスクロール距離 */

		flex-direction: column !important;
		align-items: flex-start;
		gap: 30px;

		padding: 40px;
		border-radius: 24px;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); /* 重なったときに境界が見えるよう上影を追加 */

		/* SP用アニメーション：シンプルにフェードアップ */
		/* Stickyの邪魔をしないよう回転は解除 */
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	}

	/* スクロール時の表示状態 */
	.service-item.is-animated {
		opacity: 1;
		transform: translateY(0);
	}

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

	.service-item__text {
		width: 100% !important;
		max-width: 100%;
		text-align: left !important;
		margin-bottom: 0;
	}

	.service-item__number {
		font-size: 80px;
	}

	.service-item__image-wrapper {
		width: 100%;
		display: flex;
		justify-content: center;
		margin-top: 10px;
	}

	.illust-width,
	.illust-height {
		max-width: 100%;
	}

	/* --- Company Info Section Responsive (修正: 縦並び・幅調整) --- */
	.company-section__content {
		flex-direction: column; /* 縦並び */
		gap: 20px;
	}
	.company-section__image {
		width: 100% !important;
		height: 300px;
		margin-bottom: 24px;
	}
	.company-section__image iframe {
		width: 100% !important;
		height: 100% !important;
	}
	.company-section__info {
		width: 100% !important;
		min-width: 0; /* 固定解除 */
		padding-bottom: 88px;
	}

	/* --- Contact Section Responsive (修正: 縦並び・幅調整) --- */
	.contact-section__form-wrapper {
		flex-direction: column; /* 縦並び */
		width: 100% !important;
		align-items: center; /* 中央揃え */
	}
	.contact-section__form-container {
		width: 100% !important;
		min-width: 0; /* 固定解除 */
		max-width: 100%;
		/* margin-bottom: 40px; */
	}
	.contact-section__image-container {
		width: 100%;
		max-width: 240px;
		margin: 0 auto; /* 中央揃え */
	}

	/* --- イラストの配置調整（SP用） --- */
	/* absoluteを解除し、フロー配置（static）に変更して文字被りを防ぐ */
	/* 透過度も1に戻し、はっきり表示 */

	/* Message: タイトルの下、本文の上に配置される位置関係 */
	.image-message {
		position: static !important;
		margin: 0 auto;
		transform: none !important;
		opacity: 1 !important;
	}

	/* Company: 情報の下に配置 */
	.image-company {
		/* position: static !important; */
		width: 100%;
		max-width: 240px;
		transform: none !important;
		opacity: 1 !important;
		bottom: -2%;
		right: 4%;
	}

	/* SP Adjustments for circles (Decoration) */
	.bg-circle {
		filter: blur(50px);
	}
	.message-section .bg-circle--1 {
		width: 200px;
		height: 200px;
		top: -50px;
		right: -50px;
	}
	.message-section .bg-circle--2 {
		width: 150px;
		height: 150px;
		bottom: 100px;
		left: -40px;
	}
	.company-section .bg-circle--1 {
		width: 300px;
		height: 300px;
	}
	.contact-section .bg-circle--1 {
		width: 150px;
		height: 150px;
	}
	.contact-section .bg-circle--2 {
		width: 250px;
		height: 250px;
	}
}

/* ----------------------------------------------------
   SP Specific Styles (768px以下のみ適用)
   ---------------------------------------------------- */
@media (max-width: 768px) {
	.hero-copy {
		height: 60vh;
		padding-left: 0;
		/* align-items: center; */
		right: 4%;
	}
	.hero-copy__line {
		font-size: 1.8rem;
		/* padding: 1rem 0.5rem; */
		margin: 0 0.4rem;
	}
	.message-section .section-header__main {
		gap: 12px;
	}
	/* Card Grid: 横幅いっぱいに (1列) */
	.card-grid--4-col > .service-card,
	.card-grid--3-col > .service-card {
		width: 100% !important;
		grid-template-columns: 1fr;
		padding: 16px;
		min-height: 64px;
	}

	/* Flexboxレイアウトなのでflex-directionで制御 */
	.card-grid {
		flex-direction: column;
	}
	.service-item__text {
		/* align-items: center; */
	}
	.service-item__number {
		font-size: 56px;
	}
	.service-item__title {
		/* font-size: 22px; */
		margin-bottom: 20px;
		/* text-align: center; */
	}
}
/* ----------------------------------------------------
   SP Specific Styles (428px以下のみ適用)
   ---------------------------------------------------- */
@media (max-width: 428px) {
	.service-item {
		gap: 20px;
		padding: 20px;
		margin-bottom: 20px;
	}
	.service-item__title {
		font-size: 20px;
	}
	.service-item__subtitle {
		/* font-size: 16px; */
		/* margin-bottom: 4px; */
	}
	.service-item__description {
		gap: 10px;
	}
	.service-item__description p {
		font-size: 15px;
	}
	.service-item__image-wrapper {
		margin-top: 0;
		margin-bottom: 8px;
	}
	.service-item__image-wrapper img {
		max-width: 240px;
	}
	.info-item__label,
	.info-item__data,
	.info-item__list {
		font-size: 15px;
	}
	.contact-section__text {
		font-size: 15px;
		margin-bottom: 32px;
	}
	.contact-section__text .annotation {
		font-size: 12px;
	}
	.contact-form__submit-button {
		padding: 16px;
		width: 100%;
		min-height: 70px;
		min-width: 280px;
		margin: 0 auto;
	}
}
