@charset "utf-8";
  
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

:where(html) {
	-webkit-text-size-adjust: none;
	-moz-tab-size: 2;
	-o-tab-size: 2;
	tab-size: 2
}

:where(body) {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased
}

:where(button) {
	all: unset
}

:where(input, button, textarea, select) {
	font: inherit;
	color: inherit
}

:where(button, label, select, summary, [role=button], [role=option]) {
	cursor: pointer
}

:where(a) {
	color: inherit;
	text-underline-offset: .2ex
}

:where(ul, ol) {
	list-style: none
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block
}

:where(img, picture, svg, video) {
	max-inline-size: 100%;
	block-size: auto
}

:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word
}

:where(h1, h2, h3) {
	line-height: calc(1em + .5rem)
}

:root {
	--color-white: #fff;
	--color-black: #2e2e2e;
	--color-gray: #999;
	--color-gray2: #f4f4f4;
	--color-green: #1f3a70;
	--color-orenge: #FE6900;
	--color-background_2: #E0F2FF;
	--color-background_3: #217BBE;

	--vw: 1vw;
	--header: 66px;
	--header-sp: 76px;
	--fixed-menu: 0
}

html {
	color: var(--color-black);
	font-family: "Noto Sans JP", "Lato", sans-serif;
	line-height: 1.5;
	font-feature-settings: "palt";
	font-weight: 500;
	min-height: 100%;
	-webkit-text-size-adjust: 100%;
	scrollbar-gutter: stable;
	overscroll-behavior: none;
	scroll-behavior: smooth;
}

body {
	position: relative;
	min-height: 100vh;
	overscroll-behavior: none
}

body::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease
}

a {
	text-decoration: none
}

img {
	width: 100%
}

.button a {
	position: relative;
	overflow: hidden;
	border-radius: calc(infinity*1px);
	box-sizing: border-box;
	transition: all .6s cubic-bezier(0.23, 1, 0.32, 1)
}

.button a span {
	position: relative;
	z-index: 2
}

.button a .arrow {
	width: 10px;
	height: 10px;
	transition: all .6s cubic-bezier(0.23, 1, 0.32, 1);
	transform: translateZ(0)
}

.top__main {
	overflow: hidden
}

.top__gray {
	position: relative
}

.top__gray::before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	background-color: var(--color-gray2);
	z-index: -1
}

@media screen and (min-width:769px) {
	.top__gray::before {
		height: calc(100% + 1100px);
		top: -1100px
	}

	.sp-br {
		display: none;
	}

}

@media screen and (max-width:768px) {
	.sp-br {
		display: block;
	}

}

/* ------------------------------------------------------------------
	  header
	------------------------------------------------------------------ */
.header {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: var(--color-white);
	transition: transform .3s ease;
}

.header__continer {
	display: grid;
	align-items: center;
	position: relative;
	grid-template-areas: "logo nav list";
	grid-template-columns: auto 1fr auto;
	align-items: center;
	height: 68px;
	padding-left: 40px;
	padding-right: 40px;
}

.header__logo {
	max-width: 200px;
	margin-right: 16px;
	padding-right: 16px;
}

.header__logo_center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	max-width: 360px;
	padding-right: 10px;
	align-items: center;
}

.header__logo_center img {
	max-width: 145px;
	width: 100%;
}

.header__logo_center span {
	padding-left: 10px;
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

.header__btn-list {
	display: flex;
	column-gap: 12px;
	align-items: center;
}

.header__hamburger {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	row-gap: 6px;
	cursor: pointer;
	margin-left: auto;
}

.header__hamburger>span {
	display: block;
	width: 28px;
	height: 2px;
	background-color: var(--color-black);
	transition: transform .3s ease, opacity .3s ease;
}

.header__btn {
	height: 48px;
	width: 120px;
	border-radius: 4px;
	font-size: .8125rem;
	letter-spacing: .04em;
	line-height: 1.3;
	font-weight: 700;
	transition: color .6s cubic-bezier(0.23, 1, 0.32, 1);
}

.header__download,
.header__contact {
	color: var(--color-white);
}

.header__hamburger {
	display: none;
}

@media screen and (min-width:1025px) {
	.header__continer {
		grid-template-columns: auto 1fr auto;
	}

	.header__logo {
		column-gap: 16px;
		margin-right: 24px;
		padding-right: 24px;
	}

}

/* --------------------------------------
	  global nav
	----------------------------------------- */
body.is-menu-open {
	overflow: hidden;
}

.header-global-nav {
	/* background-color: var(--color-black); */
	background-color: var(--color-green);
	position: relative;
}

.header-global-nav__list {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 60px;
	height: 100%;
}

.header-global-nav__item {
	position: relative;
}

.header-global-nav__link {
	display: block;
	padding: 17px 18px;
	font-size: .875rem;
	letter-spacing: .08em;
	line-height: 1;
	font-weight: 700;
	color: var(--color-white);
	transition: color .3s;
}

/* 下線は li に付ける */
.header-global-nav__item::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 10px;
	height: 1px;
	background-color: var(--color-orenge);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .3s ease;
}

.header-global-nav__head {
	display: none;
}

/* hover */
.header-global-nav__item:hover .header-global-nav__link {
	color: var(--color-orenge);
}

.header-global-nav__item:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-global-nav__item.is-current .header-global-nav__link {
	color: var(--color-white);
}

.header-global-nav__item.is-current::after {
	transform: scaleX(1);
	transform-origin: left;
}

@media screen and (max-width:767px) {
	.header {
		position: sticky;
		top: 0;
		z-index: 100;
	}

	.header__continer {
		grid-template-columns: 1fr auto;
		align-items: center;
		min-height: 64px;
		padding: 0 16px;
	}

	/* KAIGI GROUPロゴは非表示 */
	.header__logo {
		display: none;
	}

	/* 環境ビジネスロゴだけ残す */
	.header__logo_center {
		position: static;
		left: auto;
		transform: none;
		display: flex;
		align-items: center;
		max-width: none;
		padding: 0;
	}

	.header__logo_center img {
		max-width: 130px;
		width: 100%;
	}

	.header__logo_center span {
		display: none;
	}

	.header__hamburger {
		display: flex;
		width: 72px;
		height: 64px;
		padding: 0;
		border: 0;
		background: var(--color-green);
		align-items: center;
		justify-content: center;
		flex-direction: column;
		row-gap: 6px;
		cursor: pointer;
		margin-left: 0;
		position: relative;
		z-index: 120;
	}

	.header__hamburger>span {
		width: 28px;
		height: 2px;
		background-color: var(--color-white);
	}

	/* .header__hamburger.is-open {
																																																																																																																																																																																																																		background: transparent;
																																																																																																																																																																																																																		  } */
	.header__hamburger.is-open>span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

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

	.header__hamburger.is-open>span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	/* 全画面メニュー */
	.header-global-nav {
		position: fixed;
		inset: 0;
		z-index: 110;
		background: var(--color-green);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .3s ease, visibility .3s ease;
		overflow-y: auto;
		padding: 10px 16px 32px;
	}

	.header-global-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.header-global-nav nav {
		height: 100%;
	}

	.header-global-nav__list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		row-gap: 0;
		column-gap: 0;
		height: auto;
	}

	.header-global-nav__item {
		border-top: 1px dotted rgba(255, 255, 255, 0.55);
	}

	.header-global-nav__item:last-child {
		border-bottom: 1px dotted rgba(255, 255, 255, 0.55);
	}

	.header-global-nav__item::after {
		display: none;
	}

	.header-global-nav__link {
		display: block;
		padding: 20px 36px 20px 4px;
		font-size: 1.125rem;
		line-height: 1.4;
		font-weight: 700;
		color: var(--color-white);
		position: relative;
	}

	.header-global-nav__link::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 4px;
		width: 20px;
		height: 20px;
		transform: translateY(-50%);
		background-image: url("../images/icon-arrow-right-white.svg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 20px;
	}

	.header-global-nav__item:hover .header-global-nav__link {
		color: var(--color-white);
	}

	.header-global-nav__head {
		display: block;
		margin-bottom: 28px;
	}

	.header-global-nav__logo {
		margin: 0;
		display: flex;
		flex-direction: column;
		gap: 6px;
	}

	.header-global-nav__logo img {
		width: 140px;
		height: auto;
		display: block;
	}

	.header-global-nav__logo span {
		font-size: 0.75rem;
		color: var(--color-white);
		font-family: YakuHanJP, "Noto Sans JP", sans-serif;
	}

}

/* ------------------------------------------------------------------
	  fv
	------------------------------------------------------------------ */
.top-mv {
	position: relative
}

.top-mv__content {
	z-index: 1;
	position: relative;
	padding-top: 64px
}

.top-mv__heading {
	white-space: nowrap;
	letter-spacing: .04em;
	line-height: 1.5;
	font-weight: 700;
	font-size: min(3.59375vw, 46px);
}

.top-mv__heading strong {
	color: var(--color-green)
}

.top-mv__logo img {
	max-width: 130px;
	margin-left: -8px;
}

@media screen and (max-width:767px) {
	.top-mv__logo {
		display: none;
	}
}

.top-mv__lead {
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
	/* margin-top: 26px; */
	font-size: 1rem;
	letter-spacing: .08em;
	line-height: 2
}

.top-mv__gallery {
	margin-top: 66px;
	padding-right: 20px;
	display: flex;
	justify-content: flex-end
}

.top-mv__gallery::before {
	top: -11.171875vw;
	left: -3.125vw;
	width: 52.03125vw
}

.top-mv__img {
	max-height: 300px;
	display: inline-block;
	/* opacity: .85; */
}

.top-mv {
	display: flex;
	align-items: flex-start;
	-moz-column-gap: 0;
	column-gap: 0;
	max-width: 1280px;
	margin-inline: auto;
	padding: 0 80px
}

/*-------*/
.top-mv__btn {
	display: inline-block;
	margin-top: 40px
}

.top-mv__btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	width: 220px;
	padding: 14px 32px 15px;
	font-size: .9375rem;
	letter-spacing: .04em;
	line-height: 1;
	font-weight: 700;
	color: var(--color-white);
	background-color: var(--color-orenge);
	border: solid 2px var(--color-orenge);
	border-radius: 999px;
	text-decoration: none;
	transition: color .3s ease;
}

/* アイコン */
.top-mv__btn a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 33px;
	transform: translateY(-50%);
	z-index: 2;
	width: 20px;
	height: 20px;
	background-image: url("../images/icon_pamphlet.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* 白円アニメーション */
.top-mv__btn a::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-white);
	transform: translate(-50%, -50%) scale(0);
	transition: transform .6s ease;
}

.top-mv__btn a span {
	position: relative;
	z-index: 2;
	padding-left: 17px;
}

/* :hover */
.top-mv__btn a:hover {
	color: var(--color-orenge);
}

.top-mv__btn a:hover::before {
	background-image: url("../images/icon_pamphlet_orange.svg");
}

.top-mv__btn a:hover::after {
	transform: translate(-50%, -50%) scale(35);
}

/*-------*/
.top-mv__gallery {
	container-type: inline-size;
	width: 100%;
}

.top-mv__img img {
	height: 100%;
	width: auto;
	max-height: 300px;
	opacity: .85;
}

@media screen and (max-width:768px) {
	.top-mv {
		display: block;
		padding: 0 16px;
	}

	.top-mv__content {
		padding-top: 32px;
	}

	.top-mv__heading {
		white-space: normal;
		font-size: max(8.5vw, 32px);
		line-height: 1.4;
	}

	.top-mv__lead {
		margin-top: 16px;
		font-size: .9375rem;
		line-height: 1.8;
		letter-spacing: .04em;
	}

	.top-mv__btn {
		display: block;
		margin-top: 28px;
	}

	.top-mv__btn a {
		width: 100%;
		max-width: 220px;
		min-height: 56px;
		padding: 14px 20px 14px 48px;
		justify-content: center;
	}

	.top-mv__btn a::before {
		left: 45px;
		width: 20px;
		height: 20px;
	}

	.top-mv__btn a span {
		padding-left: 8px;
		font-size: .9375rem;
		letter-spacing: .04em;
	}

	.top-mv__gallery {
		margin-top: 28px;
		padding-right: 0;
		justify-content: center;
	}

	.top-mv__gallery::before {
		top: -30px;
		left: 50%;
		transform: translateX(-50%);
		width: 88vw;
		max-width: 360px;
	}

	.top-mv__img {
		max-height: none;
		width: 100%;
		text-align: center;
	}

	.top-mv__img img {
		width: 100%;
		max-width: 340px;
		height: auto;
		max-height: none;
	}

}

/* ------------------------------------------------------------------
	  サービス
	------------------------------------------------------------------ */
.top-service {
	margin-top: 60px;
	max-width: 1280px;
	padding: 0 38px;
	margin-left: auto;
	margin-right: auto
}

.top-service__inner {
	padding: 60px 0;
	background-color: var(--color-background_3);
	border-radius: 4px;
	position: relative;
	z-index: 1;
}

/* イラスト */
.illust-service {
	position: absolute;
	top: 11%;
	right: -5%;
	z-index: 2;
	max-width: 220px !important;
}

@media screen and (max-width:768px) {
	.illust-service {
		top: 6%;
		right: 5%;
		max-height: 100px !important;
	}

}

.top-service__heading {

	/* margin-bottom: 32px; */
	min-height: 110px;
}

.top-service__title-en {
	text-align: center;
	font-size: .75rem;
	letter-spacing: .04em;
	line-height: 1.5;
	font-weight: 900;
	color: var(--color-black);
}

.top-service__title-jp {
	text-align: center;
	font-size: 2rem;
	letter-spacing: .04em;
	line-height: 1.5;
	font-weight: 700;
	margin-top: 6px;
	margin-bottom: 1.2em;
	color: var(--color-white);
}

.top-service__list {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 35px;
}

.top-service__item {
	grid-column: span 2;
	/* フェード */
	opacity: 0;
	transform: translateY(20px);
	transition: .6s ease;
}

.top-service__item.is-show {
	opacity: 1;
	transform: translateY(0);
}

.top-service__item:nth-child(1) {
	transition-delay: .1s;
}

.top-service__item:nth-child(2) {
	transition-delay: .2s;
}

.top-service__item:nth-child(3) {
	transition-delay: .3s;
}

.top-service__item:nth-child(4) {
	transition-delay: .4s;
}

.top-service__item:nth-child(5) {
	transition-delay: .5s;
}

/* 2段目（4,5枚目）だけ中央寄せ配置 */
.top-service__item:nth-child(4) {
	grid-column: 2 / span 2;
}

.top-service__item:nth-child(5) {
	grid-column: 4 / span 2;
}

.top-service__link {
	display: block;
	position: relative;
	border-radius: 4px;
	background: var(--color-white);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .08);
	transition: color .3s;
	height: 100%
}

.top-service__link .circle {
	position: absolute;
	width: 22px;
	height: 22px;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: .3s ease;
	color: var(--color-white);
}

/* ベースの黒丸 */
.top-service__link .circle::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--color-black);
	z-index: 0;
}

/* ホバー時に広がるグリーン */
.top-service__link .circle::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--color-green);
	transform: scale(0);
	opacity: 0;
	transition: transform .3s ease, opacity .05s ease;
	z-index: 1;
}

/* hoverアニメーション */
.top-service__link:hover .circle::before {
	transform: scale(1);
	opacity: 1;
}

/* SVG */
.top-service__link .circle svg {
	position: relative;
	width: 14px;
	height: 14px;
	z-index: 2;
	/* グリーンより上 */
	display: block;
}

.top-service__num {
	position: relative;
	display: block;
	font-size: .75rem;
	letter-spacing: .024em;
	line-height: 1;
	font-weight: 700;
	color: var(--color-green);
	padding-left: 18px
}

.top-service__num::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 10px;
	height: 8px;
	background-image: url("../images/icon_tryangle.svg");
	background-position: right;
	background-size: contain;
	background-repeat: no-repeat
}

.top-service__title {
	font-size: 1.25rem;
	letter-spacing: .04em;
	line-height: 1.5;
	font-weight: 700;
	margin-top: 6px
}

.top-service__list>li:first-child .top-service__title {
	line-height: 3;
}

.top-service__img {
	overflow: hidden;
	border-radius: 4px;
	margin-top: 24px
}

.top-service__img--border {
	border: solid 1px #e6e6e6;
	border-radius: 4px
}

.top-service__img img {
	width: 100%;
	height: auto;
	transition: transform .35s ease;
}

/* .top-service__item:hover .top-service__img img {
	transform: scale(1.05);
} */

.top-service__item:last-child:hover .top-service__img img {
	opacity: 0.7;
}

.top-service__text {
	font-size: .875rem;
	letter-spacing: .04em;
	line-height: 1.6;
	font-weight: 400;
	margin-top: 16px
}

/* ctaボタン */
.top-service__button {
	display: block;
		width: fit-content;
		margin: 12px auto 0;
		justify-content: center;
	gap: 6px;
	padding: 2px 12px;
	font-size: 13px;
	color: var(--color-background_3);
	border: 1px solid rgba(47, 111, 163, 0.3);
	border-radius: 999px;
	background-color: transparent;
	transition: all 0.3s ease;
}

.top-service__button::after {
	content: "→";
	font-size: 12px;
	padding-left:3px;
	transition: transform 0.3s ease;
}

/* hover */
.top-service__link:hover .top-service__button {
	border-color: #2f6fa3;
	background-color: rgba(47, 111, 163, 0.08);
}

.top-service__link:hover .top-service__button::after {
	transform: translateX(4px);
}

/* --- */

.top-service__link {
	padding: 32px 32px 50px 32px
}

.top-service__link .circle {
	bottom: 20px;
	right: 20px
}

.service-more-wrap {
	margin-top: 24px;
	text-align: center;
}

.service-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 60px;
	border: 1px solid var(--color-white);
	border-radius: 999px;
	color: var(--color-white);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	background: transparent;
	transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(4px);
}

.service-more:hover {
	background: var(--color-white);
	color: var(--color-green);
}

.service-more:focus-visible {
	outline: 2px solid var(--color-white);
	outline-offset: 3px;
}

.service-more__arrow {
	font-size: 16px;
	line-height: 1;
	transition: transform 0.25s;
}

.service-more:hover .service-more__arrow {
	transform: translateX(3px);
}

@media screen and (max-width:767px) {
	.top-service {
		margin-top: 40px;
		padding: 0 16px;
	}

	.top-service__inner {
		padding: 40px 20px;
	}

	.top-service__heading {
		margin-bottom: 28px;
	}

	.top-service__title-jp {
		font-size: 1.5rem;
		margin-bottom: 1em;
	}

	/* カード */
	.top-service__list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.top-service__item {
		grid-column: auto;
	}

	/* PCの中央寄せ指定を解除 */
	.top-service__item:nth-child(4),
	.top-service__item:nth-child(5) {
		grid-column: auto;
	}

	.top-service__link {
		padding: 22px 20px 26px;
	}

	.top-service__heading {
		margin-bottom: 12px;
	}

	.top-service__title {
		font-size: 1.1rem;
	}

	.top-service__img {
		margin-top: 14px;
	}

	.top-service__text {
		font-size: .8125rem;
		margin-top: 12px;
		line-height: 1.7;
	}

	/* hover拡大をSPでは無効にしておく */
	.top-service__item:hover .top-service__img img {
		transform: none;
	}

	/* circleボタン */
	.top-service__link .circle {
		bottom: 14px;
		right: 14px;
	}

	/* moreボタン */
	.service-more-wrap {
		margin-top: 20px;
	}

	.service-more {
		width: 100%;
		padding: 14px 20px;
		font-size: 15px;
	}

}

/* ------------------------------------------------------------------
	  特徴
	------------------------------------------------------------------ */
.top-features {
	max-width: 1280px;
	padding: 60px 38px 80px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

/* イラスト */
.illust-features {
	position: absolute;
	z-index: 2;
	bottom: 17%;
	left: 49%;
	max-width: 150px !important;
}

@media screen and (max-width:768px) {
	.illust-features {
		bottom: unset;
		top: -6%;
		left: 16%;
		max-height: 120px !important;
	}

}

.top-features-heading {
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
	padding: 48px 56px;
	border-radius: 8px;
	background: var(--color-white);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
	padding-bottom: 40px;
}

.top-features-heading__content {
	flex: 1;
	min-width: 0;
}

.top-features-heading__title-en {
	display: inline-block;
	font-size: .75rem;
	letter-spacing: .08em;
	line-height: 1.5;
	font-weight: 900;
	color: var(--color-green);
	text-transform: lowercase;
}

.top-features-heading__title-jp {
	font-size: 2em;
	letter-spacing: .02em;
	line-height: 1.35;
	font-weight: 700;
	margin-top: 4px;
}

.top-features-heading__list {
	margin-top: 32px;
	display: grid;
	gap: 14px;
}

.top-features-heading__item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	border-radius: 14px;
	background: var(--color-background_2);
	margin-top: 14px;
}

.top-features-heading__num {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--color-gray2);
	color: var(--color-green);
	font-size: 0.85rem;
	font-weight: 700;
}

.top-features-heading__text {
	margin: 0;
	font-size: 1.1em;
	line-height: 1.6;
}

.top-features-heading__text span {
	font-size: .8em;
	color: #777;

}

.top-features-heading__note {
	margin-top: 14px;
	font-size: .8125rem;
	line-height: 1.6;
	color: #777;
}

.top-features-heading__img {
	flex: 0 0 340px;
	transform: translate(-80px);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.top-features-heading__img img {
	display: block;
	height: auto;
	position: absolute;
	width: 420px;
	max-width: none;
}

@media screen and (max-width:767px) {
	.top-features {
		padding: 40px 16px 56px;
	}

	.top-features-heading {
		display: block;
		padding: 28px 20px 24px;
		border-radius: 8px;
	}

	.top-features-heading__title-jp {
		font-size: 1.75rem;
		line-height: 1.4;
	}

	.top-features-heading__list {
		margin-top: 20px;
		gap: 10px;
	}

	.top-features-heading__item {
		gap: 12px;
		padding: 16px 14px;
		margin-top: 0;
		border-radius: 12px;
	}

	.top-features-heading__num {
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
		font-size: 0.75rem;
	}

	.top-features-heading__text {
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	.top-features-heading__note {
		margin-top: 10px;
		font-size: 0.75rem;
	}

	.top-features-heading__img {
		flex: none;
		transform: none;
		position: static;
		width: 100%;
		margin-top: 24px;
	}

	.top-features-heading__img img {
		position: static;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}

}

/* ------------------------------------------------------------------
	  お問い合わせ
	------------------------------------------------------------------ */
.top-contact__inner {
	max-width: 1280px;
	padding: 60px 80px 64px;
	margin-inline: auto;
	position: relative
}

/* イラスト */
.illust-download {
	position: absolute;
	z-index: 2;
	top: 7%;
	right: 8%;
}

.illust-contact {
	position: absolute;
	z-index: 2;
	bottom: -31%;
	left: 14%;
	max-height: 200px !important;
}

@media screen and (max-width:768px) {
	.illust-download {
		top: -24%;
		right: 0%;
	}

	.illust-contact {
		left: 7%;
		max-height: 120px !important;
	}

}

.top-contact__heading {
	text-align: center
}

.top-contact__title-en {
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	display: block;
	font-size: .75rem;
	letter-spacing: .04em;
	line-height: 1.5;
	font-weight: 900;
	color: var(--color-green)
}

.top-contact__title-jp {
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
	font-size: 1.75rem;
	letter-spacing: .08em;
	line-height: 1.5;
	font-weight: 700;
	margin-top: 6px
}

.top-contact__text {
	margin-top: 16px;
	font-size: 1.125rem;
	letter-spacing: .04em;
	line-height: 1.6;
	font-weight: 400;
	text-align: center
}

.top-contact__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-inline: auto;
	-moz-column-gap: 40px;
	column-gap: 40px;
	row-gap: 20px;
	padding-top: 40px
}

/* ボタン */
.top-contact__link {
	display: flex;
	align-items: center;
	overflow: hidden;
	position: relative;
	width: 380px;
	height: 85px;
	padding-left: 79px;
	border-radius: 999px;
	border: 2px solid var(--color-orenge);
	background-color: var(--color-orenge);
	color: var(--color-white);
	text-decoration: none;
	transition: color 0.3s ease;
}

/* アイコン */
.top-contact__link::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translateY(-50%);
	z-index: 2;
	width: 30px;
	height: 30px;
	background-image: url("../images/icon_pamphlet.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* 中央から広がる白丸 */
.top-contact__link::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-white);
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.7s ease;
}

.top-contact__link span {
	position: relative;
	z-index: 2;
	font-size: 1.125rem;
	letter-spacing: .08em;
	line-height: 1;
	font-weight: 700;
	padding-left: 22px;
}

/* hover */
.top-contact__link:hover {
	color: var(--color-orenge);
}

.top-contact__link:hover::before {
	background-image: url("../images/icon_pamphlet_orange.svg");
}

.top-contact__link:hover::after {
	transform: translate(-50%, -50%) scale(40);
}

@media screen and (max-width:767px) {
	.top-contact__inner {
		padding: 40px 16px 48px;
	}

	.top-contact__title-jp {
		font-size: 1.5rem;
		letter-spacing: .04em;
	}

	.top-contact__text {
		margin-top: 12px;
		font-size: .9375rem;
		line-height: 1.7;
	}

	.top-contact__list {
		padding-top: 28px;
		row-gap: 12px;
	}

	.top-contact__link {
		max-width: 300px;
		height: 64px;
		padding-left: 56px;
	}

	.top-contact__link::before {
		left: 24px;
		width: 22px;
		height: 22px;
	}

	.top-contact__link span {
		font-size: 1rem;
		padding-left: 10px;
		letter-spacing: .04em;
	}

	.top-contact__link:hover::after {
		transform: translate(-50%, -50%) scale(32);
	}

	.top-contact__link::after {
		display: none;
	}

}

/* ------------------------------------------------------------------
		  事例紹介
		------------------------------------------------------------------ */
.top-case {
	margin-top: 48px;
	width: 100%;
	padding: 60px 38px;
	padding-bottom: 80px;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--color-gray2);
}

.top-case__heading {
	text-align: center;
	margin-bottom: 32px
}

.top-case__title-en {
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	display: block;
	font-size: .75rem;
	letter-spacing: .04em;
	line-height: 1.5;
	font-weight: 900;
	color: var(--color-green)
}

.top-case__title-jp {
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
	font-size: 2rem;
	letter-spacing: .04em;
	line-height: 1.5;
	font-weight: 700;
	margin-top: 6px
}

/* ----- */
.top-case__grid {
	max-width: 1280px;
	padding: 0 38px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 35px;
}

.case-card {
	background: var(--color-white);
	border: 1px solid #cfcfcf;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: box-shadow .25s ease;
}

.case-card:hover {
	box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.case-card__link {
	display: grid;
	grid-template-columns: 1fr 250px;
	grid-template-areas: "body image"
		"tags tags";
	height: 100%;
}

.case-card__body {
	grid-area: body;
	padding: 17px;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.case-card__image {
	grid-area: image;
	padding: 17px 17px 17px 0;
}

.case-card__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.case-card__title {
	font-size: 18px;
	line-height: 1.4;
	margin: 0 0 8px;
	font-weight: 700;
}

.case-card__text {
	font-size: 15px;
	line-height: 1.5;
	color: #444;
	margin: 0 0 8px;
}

.case-card__company {
	display: block;
	font-size: 12px;
	color: #666;
	width: fit-content;
}

.case-card__company:hover {
	text-decoration: underline;
}

.case-card__tags {
	grid-area: tags;
	border-top: 1px dashed #ccc;
	padding: 8px 12px 12px;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	font-size: 11px;
	color: #666;
}

.case-card__tags li {
	margin: 0;
}

.top-case__tag {
	margin-top: 32px
}

.top-case__tag-list {
	gap: 16px
}

.top-case__tag-item {
	width: 120px;
	height: 32px;
	font-size: .8125rem;
	letter-spacing: .04em;
	line-height: 1;
	font-weight: 500
}

@media screen and (max-width:767px) {
	.top-case {
		margin-top: 40px;
		padding: 40px 16px 56px;
	}

	.top-case__heading {
		margin-bottom: 24px;
	}

	.top-case__title-jp {
		font-size: 1.5rem;
	}

	.top-case__grid {
		padding: 0;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.case-card__link {
		grid-template-columns: 1fr;
		grid-template-areas: "image"
			"body"
			"tags";
	}

	.case-card__image {
		padding: 0;
	}

	.case-card__image img {
		aspect-ratio: 16 / 9;
	}

	.case-card__body {
		padding: 16px 16px 12px;
	}

	.case-card__title {
		font-size: 1rem;
		line-height: 1.5;
		margin-bottom: 8px;
	}

	.case-card__text {
		font-size: .875rem;
		line-height: 1.7;
		margin-bottom: 8px;
	}

	.case-card__company {
		font-size: .75rem;
	}

	.case-card__tags {
		padding: 10px 16px 14px;
		gap: 6px;
		font-size: .6875rem;
	}

	.case-card:hover {
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	}

}

.top-case .top-mv__btn {
	margin: 30px auto 0;
	width: 220px;
	display: block;
}


/* ------------------------------------------------------------------
		  footer
		------------------------------------------------------------------ */
.footer {

	/* background-color: #dcebeb; */
	overflow-x: clip
}

/* footerの中身はheadfoot.cssで記述 */

/* ------------------------------------------------------------------
		  issue page
		------------------------------------------------------------------ */
.issue-support {
	padding: 100px 0 110px;
	background: #f3f4f5;
}

.issue-support__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

.issue-support__head {
	text-align: center;
	margin-bottom: 52px;
}

.issue-support__title-en {
	display: block;
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	line-height: 1.5;
	font-weight: 900;
	color: var(--color-green);
}

.issue-support__heading {
	margin-top: 8px;
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
	font-size: 2rem;
	letter-spacing: 0.04em;
	line-height: 1.5;
	font-weight: 700;
	color: #2f2f2f;
}

.issue-support__panel {
	background: var(--color-white);
	border-radius: 20px;
	padding: 64px 56px 72px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.issue-group+.issue-group {
	margin-top: 72px;
}

.issue-group__heading {
	position: relative;
	margin-bottom: 28px;
	padding-bottom: 16px;
	margin-top: 1em;
}

.issue-group__heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg,
			#1f3a70 0%,
			rgba(31, 58, 112, 0.7) 45%,
			rgba(130, 196, 223, 0.3) 80%,
			rgba(130, 196, 223, 0) 100%);
}

.issue-group.is-visible .issue-group__heading::after {
	animation: issueLineWidth 1.8s ease-out forwards;
}

@keyframes issueLineWidth {
	from {
		width: 0;
	}

	to {
		width: 100%;
	}

}

.issue-group__eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	line-height: 1.4;
	font-weight: 900;
	color: var(--color-green);
}

.issue-group__title {
	margin: 0;
	font-size: 1.625rem;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--color-green);
}

.issue-group__cards {
	display: grid;
	gap: 24px;
}

.issue-group__cards--3 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.issue-group__cards--3 .issue-card:nth-child(3) {
	grid-column: span 2;
}

.issue-group__cards--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.issue-card {
	position: relative;
	overflow: hidden;
	min-height: 210px;
	border-radius: 18px;
	background: var(--color-white);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

/* 背景画像 */
.issue-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.4;
	transform: scale(1);
	transition: transform 0.5s ease;
	z-index: 0;
}

/* 白グラデーション */
.issue-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 55%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}

.issue-card:hover::before {
	transform: scale(1.04);
}

/* テキスト */
.issue-card__content {
	position: relative;
	z-index: 2;
	padding: 28px 26px 26px;
}

.issue-card__title {
	margin: 0 0 12px;
	font-size: 1.25rem;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #2f2f2f;
}

.issue-card__text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.9;
	color: #444;
}

.issue-card--img01-1::before {
	background-image: url("../images/issue01-1.webp");
}

.issue-card--img01-2::before {
	background-image: url("../images/issue01-2.webp");
}

.issue-card--img02-1::before {
	background-image: url("../images/issue02-1.webp");
}

.issue-card--img02-2::before {
	background-image: url("../images/issue02-2.webp");
}

.issue-card--img03-1::before {
	background-image: url("../images/issue03-1.webp");
}

.issue-card--img03-2::before {
	background-image: url("../images/issue03-2.webp");
}

.issue-card--img04-1::before {
	background-image: url("../images/issue04-1.webp");
}

.issue-card--img04-2::before {
	background-image: url("../images/issue04-2.webp");
}

.issue-card--img04-3::before {
	background-image: url("../images/issue04-3.webp");
}

.issue-card--img04-4::before {
	background-image: url("../images/issue04-4.webp");
}

.issue-group__actions {
	display: flex;
	gap: 24px;
	justify-content: center;
	margin: 34px auto 0;
}

.issue-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	min-height: 56px;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 0.9375rem;
	line-height: 1.4;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.issue-btn--primary {
	background: var(--color-white);
	border: 2px solid var(--color-gray);
	color: #333;
}

.issue-btn--secondary {
	background: var(--color-orenge);
	border: 2px solid var(--color-orenge);
	color: var(--color-white);
	box-shadow: 0 8px 20px rgba(255, 122, 0, 0.18);
}

.issue-btn--primary:hover,
.issue-btn--secondary:hover {
	transform: translateY(-2px);
}

.issue-btn--secondary:hover {
	box-shadow: 0 12px 26px rgba(255, 122, 0, 0.24);
}

.issue-btn--primary:hover {
	background: #fafafa;
	border-color: #bfc5ca;
}

/* イラスト */
.illust {
	max-width: 250px;
	max-height: 250px;
	width: auto;
}

.issue-group_01 {
	position: relative;
	z-index: 1;
}

.illust.issue01 {
	position: absolute;
	z-index: 2;
	top: 5%;
	right: -5%;
}

.issue-group_02 {
	position: relative;
	z-index: 1;
}

.illust.issue02 {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	max-width: 105px;
}

.issue-group_03 {
	position: relative;
	z-index: 1;
}

.illust.issue03 {
	position: absolute;
	z-index: 2;
	bottom: -20%;
	right: 0;
}

.issue-group_04 {
	position: relative;
	z-index: 1;
}

.illust.issue04 {
	position: absolute;
	z-index: 2;
	bottom: 2%;
	left: 4%;
	max-width: 200px;
}

@media screen and (max-width:767px) {
	.issue-support {
		padding: 64px 0 72px;
	}

	.issue-support__inner {
		padding: 0 16px;
	}

	.issue-support__head {
		margin-bottom: 32px;
	}

	.issue-support__heading {
		font-size: 1.5rem;
	}

	.issue-support__panel {
		border-radius: 16px;
		padding: 32px 20px 40px;
	}

	.issue-group+.issue-group {
		margin-top: 48px;
	}

	.issue-group__heading {
		margin-bottom: 18px;
		padding-bottom: 12px;
	}

	.issue-group__title {
		font-size: 1.125rem;
	}

	.issue-group__cards {
		gap: 16px;
	}

	.issue-group__cards--2,
	.issue-group__cards--3 {
		grid-template-columns: 1fr;
	}

	.issue-group__cards--3 .issue-card:nth-child(3) {
		grid-column: auto;
	}

	.issue-card {
		min-height: auto;
		border-radius: 14px;
	}

	.issue-card:hover::before {
		transform: scale(1);
	}

	.issue-card__content {
		padding: 22px 18px 20px;
	}

	.issue-card__title {
		font-size: 1.0625rem;
		margin-bottom: 10px;
	}

	.issue-card__text {
		font-size: 0.875rem;
		line-height: 1.8;
	}

	.issue-group__actions {
		flex-direction: column;
		gap: 12px;
		margin-top: 24px;
	}

	.issue-btn {
		width: 100%;
		min-width: 100%;
		min-height: 52px;
	}

	.illust {
		max-width: 150px;
		max-height: 150px;
		width: auto;
	}

	.illust.issue01 {
		top: 5%;
		right: -5%
	}

	.illust.issue02 {
		max-width: 75px;
		top: 10%;
		right: -1%;
		left: unset;
		bottom: unset;
	}

	.illust.issue03 {
		bottom: unset;
		right: 0;
		top: 13%;
	}

	.illust.issue04 {
		bottom: unset;
		left: unset;
		max-width: 150px;
		right: -4%;
		top: -1%;
	}

}

/* ------------------------------------------------------------------
		  contact page　 / Media Kit　page
		------------------------------------------------------------------ */
.contact,
.media-kit {
	padding: 60px 0;
}

.form-iframe {
	display: block;
	width: 100%;
	min-height: 600px;
	border: 0;
	overflow: hidden;
}

.p_underline {
	margin: 30px auto;
	font-size: 18px;
	text-decoration-line: underline;
}

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

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