/* メインコンテナ */
.container {
	display: block;
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
}

.box {
	display: flex;
}

.box_left {
	width: 52%;
	margin-right: 3%;
}

.box_right {
	width: 45%;
}


/*****************************************
								Header
*****************************************/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	text-align: center;
	/* ヘッダー全体の背景色が変わる場合などのため一応指定 */
	transition: all 0.3s ease;
}

#logo {
	padding: 15px 0 60px 0;
	background: #fff;
	transition: padding 0.3s ease;
}

#logo img {
	transition: height 0.3s ease;
	display: block;
	margin: 0 auto;
}

/* ================= スクロール後（縮小時）のスタイル ================= */
#header.is-small {
	background: #fff;
}

#header.is-small #logo {
	padding: 10px 0 0 0;
}

#header.is-small #logo img {
	height: 75px;
}

#header.is-small nav {
	margin-top: 0;
}

#header.is-small nav {
	background: #fff;
}

/*****************************************
						グローバルメニュー
*****************************************/
nav {
	max-width: 785px;
	width: 100%;
	margin: 0 auto;
	padding: 15px 25px;
	border-radius: 10px;
	background-color: #ededed;
	margin-top: -20px;
	position: relative;
	z-index: 9999;
}

nav ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav li {
	display: flex;
	align-items: center;
	margin-right: auto;
}

nav li a {
	font-size: 1.6rem;
	line-height: 1;
	font-weight: 600;
	color: #126f2e;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

nav li a span {
	font-size: 1.2rem;
	margin-top: 5px;
	line-height: 1;
	color: #231815;
}

.contact {
	width: 65px;
	height: 65px;
	margin-right: 10px;
}

.contact img {
	display: block;
	margin: 0 auto 2px auto;
	width: 27px;
}

.contact a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #ff7733;
	color: #fff;
	font-size: 1.1rem;
	border-radius: 10px;
	line-height: 1;
	box-sizing: border-box;
}

/*****************************************
								メニューボタン
*****************************************/
.menu {
	margin-right: 0;
	width: 65px;
	height: 65px;
	background: #005141;
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	display: flex;
	/* 文字を下へ */
	justify-content: center;
	align-items: center;
}

/* 文字 */
.menu span {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	padding-top: 30px;
	z-index: 2;
	position: relative;
}

/* 上線 */
.menu::before,
.menu::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 32px;
	height: 2px;
	background: #fff;
	transition: 0.3s ease;
}

/* 上 */
.menu::before {
	top: 18px;
	box-shadow: 0 8px 0 #fff;
	/* ← 真ん中線 */
}

/* 下 */
.menu::after {
	top: 34px;
}

.menu.active::before {
	top: 26px;
	transform: translateX(-50%) rotate(45deg);
	box-shadow: none;
}

.menu.active::after {
	top: 26px;
	transform: translateX(-50%) rotate(-45deg);
}

/*****************************************
								メガメニュー
*****************************************/
#megamenu {
	width: 100%;
	margin: 0 auto;
	background: #005141;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s ease;
	border-radius: 20px;
}

#megamenu.open {
	opacity: 1;
	visibility: visible;
}

.mega-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	color: #fff;
}

.mega-inner li {
	padding: 0;
	padding-right: 70px;
	border-bottom: 1px dotted #fff;
	position: relative;
	line-height: 1;
}

.mega-inner li a {
	font-size: 2.5rem;
	padding: 30px 0;
	color: #fff;
	font-weight: 700;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.mega-inner li a span {
	font-size: 1.4rem;
	margin-left: 20px;
}

.mega-inner li a::after {
	content: url("../images/common/megamenu_arw.svg");
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.mega-inner li span.sub_text {
	display: block;
	width: 100%;
	margin-top: 15px;
	font-size: 1.6rem;
	color: #fff;
	line-height: 1.6;
	text-align: left;
	margin-left: 0;
}

.mega-inner li.sub_menu {
	padding: 0;
}

.mega-inner li.sub_menu a {
	font-size: 2rem;
	padding: 20px 0;
}

.mega-inner .contact_btn {
	padding-right: 0;
}

.mega-inner .contact_btn img {
	width: 100%;
}

.mega-inner .contact_btn a:after {
	content: "";
	display: none;
}

/* ================= SLIDE（ヒーロー） ================= */
#slide {
	max-width: 1195px;
	width: 100%;
	margin: 254px auto 0 auto;
	z-index: 1;
	position: relative;
}

#slide img {
	display: block;
	margin: 0 auto;
}

.slide_copy {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5%;
}


/*****************************************
								トップページ
*****************************************/
.section {
	padding: 35px 20px;
}

.about-section {
	padding: 35px 20px 55px 20px;
	background-color: #fff;
}

.about-section .section-header {
	margin-bottom: 55px;
}

.service-section {
	background-color: var(--bg-green);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

/* テキストスタイル */
.section-header {
	margin-bottom: 20px;
}

.color-green {
	color: #005f52;
}

.color-white {
	color: #fff;
}

h2 {
	font-size: 3.7rem;
	margin-bottom: 25px;
	color: #005141;
	line-height: 1;
}

h2 span {
	display: block;
	font-size: 1.5rem;
	margin-top: 10px;
	font-weight: bold;
	font-family: "fot-rodin-pron", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #231815;
	line-height: 1;
}

.description {
	display: block;
	margin-bottom: 25px;
	font-size: 1.8rem;
	font-family: "hiragino-mincho-pron", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.4;
}

/* グリッドレイアウト（事業案内用） */
.grid-layout {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/* 4列構成 */
	gap: 40px 20px;
}

.grid-span-2 {
	grid-column: span 2;
}

/* ヘッダーは2列分使う */

/* カードグリッド（私たちについて用） */
.card-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 35px;
}

/* 共通カードデザイン */
.service-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--card-bg);
	padding: 20px;
	font-size: 1.6rem;
	height: 80px;
	border-radius: 0 40px 40px 0;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	position: relative;
	box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.3);
	transition: 0.4s ease;
}

/* カード左側の縦ライン（より深い影を演出） */
.service-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: -20px;
	/* カードより上下に長くして隙間を埋める */
	bottom: -20px;
	width: 10px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
}

.card01,
.card02 {
	margin-top: 40px;
}

.arrow {
	background-color: var(--accent-green);
	color: #fff;
	width: 50px;
	height: 25px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-card:hover .arrow {
	background-color: #ff7733;
}

/* レスポンシブ：画面が狭いときは1列にする */
@media (max-width: 900px) {

	.grid-layout,
	.card-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.grid-span-2 {
		grid-column: span 2;
	}
}

/*****************************************
							事業案内
*****************************************/
.service-section h2 span {
	color: #fff;
}

.service-section .description {
	color: #000000;
}

/*****************************************
								お知らせ
*****************************************/
.news-section {
	padding: 80px 20px;
	background-color: #fff;
}

/* タブエリアの設定 */
.tab-wrapper {
	margin-top: 55px;
	border-bottom: 1px solid #333;
	/* 下のライン */
	margin-bottom: 30px;
	padding-left: 20px;
}

.tab-menu {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.tab-menu li {
	padding: 12px 30px;
	font-size: 1.6rem;
	background-color: #eceae8;
	cursor: pointer;
	margin-right: 10px;
	border-radius: 10px 10px 0 0;
	position: relative;
	font-weight: bold;
	transition: 0.3s;
	line-height: 1;
}

/* アクティブなタブ（白背景にする） */
.tab-menu li.active {
	background-color: #fff;
	border: 1px solid #333;
	border-bottom: 1px solid #fff;
	margin-bottom: -1px;
	color: #005141;
}

/* ニュースリスト */
.news-list {
	margin-bottom: 40px;
}

.news-item {
	display: flex;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px dotted #565656;
}

.date {
	font-weight: bold;
	width: 95px;
	font-size: 1.4rem;
}

/* ラベル共通 */
.label {
	padding: 7px 20px;
	border-radius: 20px;
	font-size: 1.4rem;
	margin-right: 30px;
	width: 125px;
	text-align: center;
	line-height: 1;
}

.label-info {
	background-color: #ffcc5c;
}

/* お知らせ：オレンジ */
.label-column {
	background-color: #99ff7e;
}

/* コラム：黄緑 */

.news-title {
	text-decoration: none;
	color: #333;
	flex: 1;
	font-size: 1.4rem;
}

.news-title:hover {
	text-decoration: underline;
}

/* 全てをみるボタン */
.btn-container {
	text-align: center;
}

.btn-more {
	display: inline-flex;
	align-items: center;
	background-color: #005f52;
	color: #fff;
	padding: 15px 120px 15px 20px;
	border-radius: 40px;
	font-size: 1.6rem;
	text-decoration: none;
	font-weight: bold;
	position: relative;
	transition: 0.4s;
}

button.btn-more {
	padding: 20px 120px 20px 20px;
	cursor: pointer;
	border: none;
}

.btn-more:hover {
	opacity: 0.7;
}

.btn-arrow {
	background: #fff;
	color: #005f52;
	width: 50px;
	height: 25px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 20px;
}



/*****************************************
							制作実績
*****************************************/
.works-container {
	margin-bottom: 50px;
}


.works-section {
	padding: 100px 20px;
	background-color: #ececec;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
}

/* 実績アイテムのリスト */
.works-item {
	display: flex;
	gap: 50px;
	padding: 40px 0;
	border-bottom: 1px dotted #aaa;
	/* 下の点線 */
	position: relative;
}

/* 画像エリア */
.works-image-box {
	flex: 0 0 320px;
	padding: 10px 0;
	height: auto;
	background-color: #dcdcdc;
	/* 画像がない時のグレー */
	border-radius: 20px;
	overflow: hidden;
}

.works-image-box img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

/* テキストコンテンツエリア */
.works-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.works-item-title {
	display: block;
	font-weight: 500;
	font-size: 1.6rem;
	margin: 0 0 15px 0;
	line-height: 1.4;
	color: #000;
}

.works-details {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	font-size: 1.3rem;
	line-height: 1.8;
}

.works-details li::before {
	content: "・";
}

.works-category {
	font-size: 1.3rem;
	color: #333;
	margin-top: auto;
	/* ボタンと同じラインまで押し下げる */
	padding-bottom: 10px;
}

/* 「詳しくみる」ボタン（各アイテム内） */
.btn-detail {
	position: absolute;
	right: 0;
	bottom: 40px;
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 12px 25px;
	border-radius: 40px;
	text-decoration: none;
	color: #000;
	font-weight: bold;
	font-size: 1.2rem;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.arrow-icon {
	background-color: #005f52;
	color: #fff;
	width: 50px;
	height: 25px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
	font-size: 1.2rem;
}

.btn-detail:hover .arrow-icon {
	background-color: #ff7733;
}

/* 「全ての実績をみる」ボタン（中央下部） */
.btn-center {
	text-align: center;
	margin-top: 60px;
}

.btn-all {
	display: inline-flex;
	align-items: center;
	background-color: #005f52;
	color: #fff;
	padding: 18px 60px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1rem;
}

.arrow-circle {
	background-color: #fff;
	color: #005f52;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
}


/*****************************************
							Instagram
*****************************************/
.instagram-section {
	padding: 50px 20px;
	background-color: #d9ffd9;
	position: relative;
}

.instagram-section:before {
	content: url("../images/instagram_bg.png");
	position: absolute;
	right: 0;
	top: 0;
}

#instagram {
	width: 100%;
	margin-bottom: 50px;
}

.instagram-section h2 {
	margin-bottom: 40px;
}

.instagram-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	width: 100%;
	margin-bottom: 40px;
}

.instagram-item {
	overflow: hidden;
}

.instagram-item :last-child {
	margin-right: 0;
}

.instagram-item img {
	width: 100%;
	object-fit: cover;
	height: 220px;
	vertical-align: bottom;
}

.instagram-item span.time {
	display: block;
	padding: 0 5px;
	font-size: 1.2rem;
	color: #000;
}

.instagram-card__comment {
	display: block;
	overflow: hidden;
	height: 70px;
	margin-top: 5px;
	line-height: 24px;
	padding: 0 5px;
	color: #000;
	font-size: 1.2rem;
}

#instagram ul {
	-js-display: flex;
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px dotted #bfbfbf;
}

#instagram ul li {
	width: 19%;
	margin-right: 1%;
}

#instagram ul li:last-child {
	margin-right: 0;
}

#instagram ul li span.day {
	padding: 5px;
	font-size: 14px;
}

#instagram ul li p.description {
	font-size: 12px;
	padding: 5px 0;
}

/*****************************************
							フッター
*****************************************/
/* フッターメイン背景（緑色） */
.main-footer {
	background-color: #529952;
	color: #ffffff;
	padding-top: 60px;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
}

/* お問い合わせボタン：白枠のデザイン */
.footer-contact-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}

.footer-contact-btn {
	background-color: #ffffff;
	color: #333333;
	text-decoration: none;
	display: flex;
	align-items: center;
	padding: 8px 50px 8px 8px;
	/* アイコン分の左余白を調整 */
	border-radius: 60px;
	width: 100%;
	max-width: 540px;
	justify-content: space-between;
	transition: transform 0.2s ease;
}

/* オレンジの大きな円 */
.contact-icon {
	background-color: #ff7028;
	color: #ffffff;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-label {
	font-size: 0.8rem;
	font-weight: bold;
	margin-top: 5px;
}

/* 中央のテキスト */
.contact-text {
	font-family: "fot-seurat-pron", sans-serif;
	font-size: 1.9rem;
	font-weight: bold;
	color: #000000;
	flex: 1;
	text-align: center;
	letter-spacing: 0.05em;
}

/* 右側の小さなオレンジ矢印 */
.contact-arrow {
	background-color: #005f52;
	color: #ffffff;
	width: 50px;
	height: 25px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
	transition: 0.4s;
}

.footer-contact-btn:hover .contact-arrow {
	background-color: #ff7028;
}

/* ロゴと住所エリア */
.footer-info {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
}

.footer-logo {
	line-height: 1;
}

.footer-address p {
	font-size: 1.2rem;
	margin: 0;
}


.footer-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 25px 0;
	border-top: 1px solid #ffffff;
	margin: 0;
	flex-wrap: wrap;
}

.footer-nav li {
	position: relative;
	padding: 0 12px;
	font-size: 1.3rem;
}

.footer-nav li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 80%;
	background: #fff;
}

.footer-nav a {
	color: #ffffff;
	text-decoration: none;
}

/* SNSアイコン（Instagramなど） */
.sns-icon-inst {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	border-radius: 50%;
	text-indent: -9999px;
	/* 文字を隠して画像を入れる準備 */
	position: relative;
}

/* コピーライト（最下部・濃い緑） */
.copyright-bar {
	background-color: #005141;
	text-align: center;
	padding: 15px 0;
}

.copyright-bar p {
	margin: 0;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
}




/*****************************************
							次階層
*****************************************/
#next_main {
	margin-top: 250px;
}

#next_main article {
	padding: 40px 0;
}

#next_main article section {
	margin-bottom: 50px;
	padding-top: 0;
}

#next_main article section .section_inner {
	padding: 0 40px;
}

/* 共通セクションタイトル */
.section-title {
	color: #00894d;
	font-size: 2.8rem;
	line-height: 1;
	margin-bottom: 20px;
}

p.next_copy {
	display: block;
	font-size: 1.6rem;
	line-height: 1.8;
}

/*****************************************
						次階層ヘッダー
*****************************************/
/* ヒーローセクション */
.hero-section {
	max-width: 1195px;
	width: 100%;
	margin: 0 auto;
	background: #005141;
	color: #fff;
	padding: 60px 45px;
	text-align: left;
	border-radius: 20px;
	position: relative;
}

.hero-section:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url("/images/common/next_header_bg.png") no-repeat;
	background-size: cover;
	background-position: center center;
}

.hero-inner h1 {
	font-size: 3.8rem;
	margin: 0;
}

.hero-inner p {
	font-size: 1.8rem;
	margin: 5px 0 0 0;
}

/* リード文 */
.lead-area {
	display: block;
	margin-bottom: 20px;
}

.lead-area p {
	display: block;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.8;
	font-family: "hiragino-mincho-pron", sans-serif;
	font-weight: 500;
}

.lead-area p.lead_sub {
	display: block;
	font-size: 1.7rem;
	margin-top: 5px;
}

/*****************************************
						私たちについて
*****************************************/
/* 私たちの強み（グレーボックス） */
.strength-box {
	background-color: #ededed;
	padding: 30px 40px !important;
	border-radius: 20px;
	margin-bottom: 60px;
}

.strength-text p {
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 2;
}

/* 会社概要リスト */
.company-list {
	display: flex;
	flex-wrap: wrap;
}

.company-list dt {
	width: 15%;
	padding: 15px 10px;
	border-bottom: 1px dashed #515151;
	font-weight: 500;
	font-size: 1.7rem;
}

.company-list dd {
	width: 85%;
	margin: 0;
	padding: 15px 0;
	border-bottom: 1px dashed #515151;
	font-size: 1.7rem;
	font-weight: 500;
}

.googlemap {
	margin-bottom: 10px;
}

.googlemap iframe {
	width: 100%;
}

.access-section .btn-container {
	margin-top: 60px;
}

/* 代表挨拶セクションの調整 */
.greeting-section {
	margin-bottom: 80px;
}

.greeting-content-wrap {
	position: relative;
	background-color: #ededed;
	padding: 30px 40px;
	border-radius: 20px;
}

/* 画像の回り込み設定 */
.greeting-float-img {
	float: right;
	width: 45%;
	/* コンテナに対する画像の幅 */
	max-width: 480px;
	margin: 10px 0 20px 30px;
	/* 左側に30pxの余白を空けてテキストを離す */
	border-radius: 5px;
	height: auto;
}

.greeting-content-wrap p {
	font-size: 1.6rem;
	line-height: 1.8;
	margin-bottom: 2em;
	text-align: justify;
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
}

.greeting-content-wrap p:last-child {
	margin-bottom: 0;
}

.greeting-content-wrap .name {
	display: block;
	margin-top: 1em;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
}

.greeting-content-wrap .name span {
	margin-left: 1em;
	font-weight: 500;
	font-size: 2.8rem;
}

/* 日付・署名部分 */
.greeting-signature {
	text-align: right;
	margin-top: 20px;
}

.greeting-signature p {
	font-size: 1.6rem;
	font-weight: 500;
	margin: 0;
	text-align: right;
}

/* スタッフ紹介 共通 */
.staff-category {
	font-size: 2.3rem;
	color: #00894d;
	border-top: 1px solid #515151;
	border-bottom: 1px solid #515151;
	margin: 25px 0 40px;
	padding: 15px 5px;
	line-height: 1;
}

.staff-item {
	display: flex;
	gap: 30px;
	margin-bottom: 35px;
	padding-bottom: 40px;
	border-bottom: 1px dashed #515151;
}

.staff-item.last {
	border-bottom: none;
}

.staff-img {
	width: 235px;
	flex-shrink: 0;
}

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

.staff-info h4 {
	font-size: 2.8rem;
	margin: 0 0 10px 0;
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
}

.staff-info h4 span {
	font-size: 2.1rem;
	font-weight: normal;
	margin-left: 10px;
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
}

.staff-info p {
	font-size: 1.7rem;
	line-height: 2;
	font-family: "Sawarabi Mincho", serif;
	font-weight: 500;
}






/*****************************************
						事業案内
*****************************************/
.number_colum3 {
	display: flex;
}

.number_colum3 ol {
	margin-right: 50px;
}

.number_colum3 ol:last-child {
	margin-right: 0;
}

.manual-list {
	list-style: none;
	/* デフォルトの番号を消す */
	padding-left: 2.5em;
	/* 全体を右に寄せて、ラベル用の余白を作る */
}

.manual-list li {
	text-indent: -1.5em;
	font-size: 1.6rem;
	line-height: 1.6;
	margin-bottom: 1em;
}

h2.service_title {
	display: block;
	width: calc(100% - 45px);
	min-height: 108px;
	background: url("/images/title_bg.png") no-repeat;
	background-position: top left;
	font-size: 3rem;
	color: #fff;
	padding: 20px 20px 30px 35px;
	line-height: 1;
	position: relative;
}

h2.service_title::after {
	content: "";
	position: absolute;
	top: 0;
	right: -45px;
	width: 45px;
	/* 三角形の横幅（お好みで調整） */
	height: 73px;
	/* 親要素と同じ高さ */
	background-color: #006252;
	/* 三角形の色 */

	/* 右向き三角形に切り抜く設定 */
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.shadow-left-fade {
	background: #fff;
	position: relative;
	padding: 10px 20px 50px 20px;
	margin-top: -60px;
	margin-left: 25px;
	margin-bottom: 30px;
}

.shadow-left-fade p {
	display: block;
	font-family: "hiragino-mincho-pron", sans-serif;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.6;
}

.shadow-left-fade::before {
	content: "";
	position: absolute;
	top: 0;
	left: -8px;
	width: 8px;
	height: 100%;
	background: linear-gradient(to left, rgba(0, 0, 0, 0.7), transparent);
	mask-image: linear-gradient(to bottom, black, transparent);
	-webkit-mask-image: linear-gradient(to bottom, black, transparent);
	pointer-events: none;
}

#card01:before {
	content: url("/images/service_num01.svg");
	position: absolute;
	left: 0;
	top: 0;
}

#card02:before {
	content: url("/images/service_num02.svg");
	position: absolute;
	left: 0;
	top: 0;
}

#card03:before {
	content: url("/images/service_num03.svg");
	position: absolute;
	left: 0;
	top: 0;
}

.service_card_inner {
	display: block;
	padding: 0 30px;
	box-sizing: border-box;
}

.service_card {
	display: block;
	min-height: 192px;
	background: #fff;
	position: relative;
	padding: 20px 20px 20px 180px;
	margin-bottom: 40px;
	border-radius: 40px 20px 20px 40px;
	box-shadow: 5px 5px 12px 0px rgba(0, 0, 0, 0.13);
}

.service_card .inner_card {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.service_card .inner_card .sub_title {
	display: block;
	width: 100%;
	font-size: 1.8rem;
	margin-bottom: 25px;
	font-family: "hiragino-mincho-pron", sans-serif;
	font-weight: 500;
}

.service_card .inner_card .title {
	display: block;
	width: 100%;
	font-size: 3rem;
	margin-bottom: 20px;
	font-family: "bokutoh-rera", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.service_card .inner_card .copy {
	display: block;
	width: 100%;
	font-size: 1.5rem;
	line-height: 1.8;
}

/*****************************************
						お知らせ詳細
*****************************************/
.news_category {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 80px;
}

.news_category li {
	width: auto;
	padding: 0 5px;
	font-size: 1.4rem;
	text-align: center;
	color: #000;
	line-height: 1;
	border-right: 1px solid #000;
}

.news_category li:first-child {
	border-left: 1px solid #000;
}

.news_title {
	display: block;
	position: relative;
	margin-bottom: 30px;
}

.news_title h2 {
	display: block;
	font-size: 3.6rem;
	color: #126f2e;
	font-weight: 500;
	padding: 10px 20px;
	margin: 0;
	line-height: 1;
	border-bottom: 1px solid #005141;
}

.news_title .date {
	display: block;
	text-align: right;
	font-size: 1.3rem;
	margin: -20px 0 0 auto;
	line-height:1;
}

.news_detail h3 {
	display: block;
	font-size: 2.4rem;
	margin-bottom: 5px;
}

.news_detail .h3_sub {
	display: block;
	font-size: 1.8rem;
	margin-bottom: 45px;
	line-height: 1.6;
}

p.colum_title {
	display: block;
	font-size: 2.1rem;
	margin-bottom: 45px;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 600;
}

.photo_inner {
	max-width: 875px;
	width: 100%;
	margin: 0 auto;
}

.photo_inner .news_copy {
	display: block;
	margin-top: 30px;
	font-size: 1.8rem;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 600;
	line-height: 2;
}

.news_detail .btn-container {
	margin-top: 70px;
}

.photo_box {
	display: flex;
}

.photo_box_left {
	width: 62%;
	margin-right: 5%;
}

.photo_box_right {
	width: 33%;
}

.photo_box_right img {
	display: block;
	margin: 0 auto;
}

/*****************************************
						制作実績一覧
*****************************************/
.lead-area p.lead_sub {
	display: block;
	font-size: 1.7rem;
	margin-top: 5px;
}

#works_category .tab-menu li {
	padding: 12px 20px;
}

.works-container .btn-detail {
	background: #ededed;
	font-size: 1.4rem;
	padding: 12px 40px 12px 25px;
}

/*****************************************
						制作実績詳細
*****************************************/
.works_title {
	display: block;
	position: relative;
	margin-bottom: 10px;
}

.works_title h2 {
	display: block;
	font-size: 2.1rem;
	color: #000000;
	font-weight: 500;
	padding: 10px 20px;
	margin: 0;
	line-height: 1;
	border-bottom: 1px solid #005141;
}

.works_detail .works-item {
	border-bottom: none;
	margin-bottom: 140px;
}

.works_detail .works-image-box a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.works_detail .works-image-box a:after {
	content: url("/images/common/popup.svg");
	position: absolute;
	right: 5px;
	bottom: 5px;
}

.works_copy {
	display: block;
	font-size: 1.8rem;
	line-height: 2;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 600;
}

.works_colum2 {
	display: flex;
	width: 100%;
	display: flex;
	gap: 140px;
	align-items: stretch;
	margin-bottom: 70px;
}

.works_colum2 .works_colum2_col {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.works_colum2 .works_colum2_col .col_inner {
	background: #f2f2f2;
	padding: 50px 15px;
	margin-bottom: 10px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 470px;
}

.works_colum2 .works_colum2_col .img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.works_colum2 .works_colum2_col .img img {
	display: block;
	max-width: 100%;
	height: auto;
}

.works_colum2 .works_colum2_col p.text {
	display: block;
	font-size: 1.5rem;
	line-height: 1.8;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 600;
	flex-shrink: 0;
}

.works_detail .btn-container {
	margin-top: 90px;
}