@charset "utf-8";

/* -----------------------------
	common.cssへ移動予定
-------------------------------- */
#service.tax-ai-service .page-title-area::after ,
#service.tax-ai-service .page-title-area::before {
	content: "AI × TAX ACC.";
}

/* -----------------------------
	イントロ
-------------------------------- */
#service.tax-ai-service .strengths-area {
	padding: 80px 0 80px 0;
	margin-bottom: 100px;
	background:
		radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 55%),
		linear-gradient(135deg, #d6ecfb 0%, #bfe0fa 45%, #eaf6ff 100%);
}
#service.tax-ai-service .strengths-area .flex .box {
	margin: 0 30px 0 0;
}

#service.tax-ai-service .strengths-area .badge-new {
	display: inline-block !important;
	padding: 8px 22px 8px 20px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #d9ad4d 0%, #c79b3b 100%);
	color: #0a2540;
	clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
	box-shadow: 0 4px 14px rgba(199, 155, 59, 0.35);

	font-size: 1.6rem;
	line-height: 1.1;
    font-family: var(--montserrat);
    font-weight: 700;
	letter-spacing: 0.08em;
}

#service.tax-ai-service .strengths-area .box .jp {
	color: #c79b3b;
	font-weight: 700;
}
#service.tax-ai-service .strengths-area .box .copy {
	color: var(--blue);
}

#service.tax-ai-service .strengths-area .sub-copy {
	font-size: 2.4rem;
    padding: 10px 0 10px;
    line-height: 1.7;
    position: relative;
	border-bottom: solid 3px #cce4ff;
}
#service.tax-ai-service .strengths-area .sub-copy:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px var(--blue);
  left: 0;
  bottom: -3px;
  width: 20%;
}
#service.tax-ai-service .strengths-area .sub-copy .bold {
	color: #c79b3b;
	font-weight: 700;
}

#service.tax-ai-service .strengths-area p {
	padding: 20px 0 0;
}
#service.tax-ai-service .strengths-area .list03 {
	counter-reset: number 0;
	margin: 10px 0 0;
}
#service.tax-ai-service .strengths-area .list03 li {
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--blue);
	font-weight: 700;
	padding: 5px 0 0 20px;
	position: relative;
}
#service.tax-ai-service .strengths-area .list03 li span {
	font-size: 1.4rem;
}
#service.tax-ai-service .strengths-area .list03 li::before {
	font-family: var(--montserrat);
	font-weight: 500;
	position: absolute;
	counter-increment: number 1;
	content: "・";
	width: auto;
	height: auto;
	left: 0;
	color: var(--blue);
}

/* チップ配置用のエリア */
#service.tax-ai-service .strengths-area .ai-orbit-wrap {
	position: relative;
	width: 660px;
	height: 540px;
	margin: 0 auto;

	display: flex;
	align-items: center;
	justify-content: center;
}

/* -----------------------------
	円グラフィック（縮小してブルー円と同サイズに）
-------------------------------- */
/* 円 */
#service.tax-ai-service .strengths-area .ai-circle-wrap {
	position: relative;
	flex: none;
	width: 240px;
	height: 240px;
	opacity: 0;
	transform: scale(.85);
	transition: opacity .6s ease,transform .6s ease;
}
/* 円全体の表示 */
#service.tax-ai-service .strengths-area .ai-orbit-wrap.is-active .ai-circle-wrap {
	opacity: 1;
	transform: scale(1);
}
/* SVG */
#service.tax-ai-service .strengths-area .ai-ring-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}
/* リングの下地 */
#service.tax-ai-service .strengths-area .ai-ring-track {
	fill: none;
	stroke: rgba(0, 107, 224, 0.25);
	stroke-width: 1;
}
/* 実際に描かれるリング */
#service.tax-ai-service .strengths-area .ai-ring-line {
	fill: none;
	stroke: var(--blue);
	stroke-width: 2;
	stroke-dasharray: 880;
	stroke-dashoffset: 880;
	transition: stroke-dashoffset 1.2s ease .2s;
}
/* 円が描かれる */
#service.tax-ai-service .strengths-area .ai-orbit-wrap.is-active .ai-ring-line {
	stroke-dashoffset: 0;
}

/* -----------------------------
	円の中央背景（リングとほぼ同サイズに）
-------------------------------- */
#service.tax-ai-service .strengths-area .ai-circle-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 230px;
	height: 230px;
	transform: translate(-50%, -50%) scale(.8);
	border-radius: 50%;
	background: var(--blue);
	opacity: 0;
	transition: opacity .6s ease 1.3s,transform .6s ease 1.3s;
	box-shadow: 0 15px 40px rgba(15, 30, 66, .12);
}
/* 中央背景表示 */
#service.tax-ai-service .strengths-area .ai-orbit-wrap.is-active .ai-circle-inner {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* -----------------------------
	外側の二重リング装飾（チップが触れる線）
-------------------------------- */
#service.tax-ai-service .strengths-area .ai-outer-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid rgba(0, 107, 224, 0.25);
	opacity: 0;
	transition: opacity .6s ease .3s, transform .6s ease .3s;
	pointer-events: none;
}
/* 外側のリング（大） */
#service.tax-ai-service .strengths-area .ai-outer-ring01 {
	width: 420px;
	height: 420px;
	transform: translate(-50%, -50%) scale(.9);
}
/* 内側のリング（やや小さめ） */
#service.tax-ai-service .strengths-area .ai-outer-ring02 {
	width: 320px;
	height: 320px;
	transform: translate(-50%, -50%) scale(.9);
	transition-delay: .45s;
}
/* 表示 */
#service.tax-ai-service .strengths-area .ai-orbit-wrap.is-active .ai-outer-ring {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* -----------------------------
	AI × 税理士
-------------------------------- */
#service.tax-ai-service .strengths-area .ai-circle-text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	opacity: 0;
	transition: opacity .5s ease 1.9s;
}
/* AI × 税理士 表示 */
#service.tax-ai-service .strengths-area .ai-orbit-wrap.is-active .ai-circle-text {
	opacity: 1;
}
/* AI */
#service.tax-ai-service .strengths-area .ai-label {
	display: block;
	font-family: var(--montserrat);
	font-size: 5rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}
/* 区切り線 */
#service.tax-ai-service .strengths-area .ai-divider {
	width: 50px;
	height: 1px;
	margin: 10px auto;
	background: #fff;
}
/* × 税理士 */
#service.tax-ai-service .strengths-area .ai-sub {
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
}

/* -----------------------------
	チップ全体
-------------------------------- */
#service.tax-ai-service .strengths-area .task-chip-list {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	pointer-events: none;
}

/* -----------------------------
	業務チップ
-------------------------------- */
#service.tax-ai-service .strengths-area .task-chip {
	position: absolute;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: #fff;
	padding: 20px;
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: bold;
	color: var(--blue);
	text-align: center;
	word-break: keep-all;
	overflow-wrap: break-word;
	box-shadow: 0 10px 24px -12px rgba(15, 30, 66, .25);
	opacity: 0;
	transform: translate(-50%, -50%) translateY(15px);
	transition:
		opacity .6s ease,
		transform .6s ease;
}

/* ドット */
#service.tax-ai-service .strengths-area .task-chip .dot {
	/* position: absolute;
	top: 28px;
	left: 50%;
	transform: translateX(-50%);
	flex: none;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--blue); */
	display: none;
}

/* -----------------------------
	チップ配置（外側リングの円周に沿うよう調整）
-------------------------------- */
/* 01：真上 */
#service.tax-ai-service .strengths-area .chip01 {
	top: 38px;
	left: 329px;
}
/* 02：右上 */
#service.tax-ai-service .strengths-area .chip02 {
	top: 205px;
	left: 558px;
}
/* 03：右下 */
#service.tax-ai-service .strengths-area .chip03 {
	top: 458px;
	left: 467px;
}
/* 04：左下 */
#service.tax-ai-service .strengths-area .chip04 {
	top: 450px;
    left: 180px;
}
/* 05：左上 */
#service.tax-ai-service .strengths-area .chip05 {
	top: 205px;
	left: 100px;
}


/* -----------------------------
	チップ表示アニメーション
-------------------------------- */
/* 01 */
#service.tax-ai-service .strengths-area .ai-orbit-wrap.is-active .chip01 {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
	transition-delay: 2.1s;
}
/* 02 */
#service.tax-ai-service .strengths-area .ai-orbit-wrap.is-active .chip02 {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
	transition-delay: 2.3s;
}
/* 03 */
#service.tax-ai-service .strengths-area .ai-orbit-wrap.is-active .chip03 {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
	transition-delay: 2.5s;
}
/* 04 */
#service.tax-ai-service .strengths-area .ai-orbit-wrap.is-active .chip04 {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
	transition-delay: 2.7s;
}
/* 05 */
#service.tax-ai-service .strengths-area .ai-orbit-wrap.is-active .chip05 {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
	transition-delay: 2.9s;
}


@media screen and (max-width: 768px) {
	#service.tax-ai-service .strengths-area {
		padding: 50px 20px 20px;
		margin-bottom: 60px;
	}

	#service.tax-ai-service .strengths-area .flex .box {
		margin: 0 0 20px 0;
	}

	#service.tax-ai-service .strengths-area .badge-new {
		padding: 7px 16px 7px 14px;
		margin-bottom: 14px;
		font-size: 1.3rem;
	}

	#service.tax-ai-service .strengths-area .sub-copy {
		font-size: 1.8rem;
		padding: 8px 0;
	}

	#service.tax-ai-service .strengths-area .list03 li {
		font-size: 1.4rem;
	}
	#service.tax-ai-service .strengths-area .list03 li span {
		font-size: 1.2rem;
	}

	/* -----------------------------
		チップ配置エリア：正方形に近い比率でコンパクト化
	-------------------------------- */
	#service.tax-ai-service .strengths-area .ai-orbit-wrap {
		width: 100%;
		max-width: 390px;
		height: 380px;
		margin: 0 auto;
	}

	/* -----------------------------
		円グラフィック：さらに縮小
	-------------------------------- */
	#service.tax-ai-service .strengths-area .ai-circle-wrap {
		width: 150px;
		height: 150px;
	}
	#service.tax-ai-service .strengths-area .ai-circle-inner {
		width: 144px;
		height: 144px;
	}

	/* -----------------------------
		外側の二重リング：SP用に縮小
	-------------------------------- */
	#service.tax-ai-service .strengths-area .ai-outer-ring01 {
		width: 320px;
		height: 320px;
	}
	#service.tax-ai-service .strengths-area .ai-outer-ring02 {
		width: 260px;
		height: 260px;
	}

	/* -----------------------------
		AI × 税理士 テキスト：縮小
	-------------------------------- */
	#service.tax-ai-service .strengths-area .ai-label {
		font-size: 2.8rem;
	}
	#service.tax-ai-service .strengths-area .ai-divider {
		width: 30px;
		margin: 6px auto;
	}
	#service.tax-ai-service .strengths-area .ai-sub {
		font-size: 1.5rem;
	}

	/* -----------------------------
		チップ：縮小しリング円周に再配置
	-------------------------------- */
	#service.tax-ai-service .strengths-area .task-chip {
		width: 110px;
		height: 110px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px;
		font-size: 1rem;
		line-height: 1.3;
		text-align: center;
		transform: translate(-50%, -50%) translateY(15px);
	}
	/* 01：真上 */
	#service.tax-ai-service .strengths-area .chip01 {
		top: 55px;
		left: 172px;
	}
	/* 02：右上 */
	#service.tax-ai-service .strengths-area .chip02 {
		top: 148px;
		left: 301px;
	}
	/* 03：右下 */
	#service.tax-ai-service .strengths-area .chip03 {
		top: 289px;
		left: 274px;
	}
	/* 04：左下 */
	#service.tax-ai-service .strengths-area .chip04 {
		top: 289px;
		left: 83px;
	}
	/* 05：左上 */
	#service.tax-ai-service .strengths-area .chip05 {
		top: 148px;
		left: 47px;
	}

}


/* -----------------------------
	slide-area
-------------------------------- */
.img-slider{
	margin: 50px 0 100px;
}
.img-slider li {
	margin: 0 15px;
}
.img-slider li:nth-child(2n) {
	margin: 40px 15px 0;
}
.img-slider li img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

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

	.img-slider{
		margin: 0 0 20px;
	}
	.img-slider li {
		margin: 0 5px;
	}
	.img-slider li:nth-child(2n) {
		margin: 20px 5px 0;
	}
	.img-slider li img {
		height: 150px;
	}

}


/* -----------------------------
	consultation-area
-------------------------------- */
#service.tax-ai-service .consultation-area {
	background: none;
	border-top: none;
	padding: 0 0 50px;
}
#service.tax-ai-service .consultation-area div {
	padding: 0 0 0;
	margin: 0 0 0;
	background: none;
}
#service.tax-ai-service .consultation-area .consultation-box {
	width: 100%;
	padding: 50px 50px 70px;
	background: var(--lightblue);

	display: flex;
	justify-content: center;

	position: relative;
}
#service.tax-ai-service .consultation-area .consultation-box .image {
	position: absolute;
	right: -60px;
	bottom: -60px;
}
#service.tax-ai-service .consultation-area .consultation-box .image img {
	width: 190px;
	object-fit: cover;
	object-position: center;
}

#service.tax-ai-service .consultation-area .consultation-box .kadai-box {
	position: relative;
}
#service.tax-ai-service .consultation-area .consultation-box .kadai-box img {
	width: 110px;
	object-fit: cover;
	object-position: center;

	position: absolute;
	top: -75px;
    right: 90px;
}

#service.tax-ai-service .consultation-area .kadai-label {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 5px 10px 2px;
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}

#service.tax-ai-service .consultation-area .list01 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 30px;
}

#service.tax-ai-service .consultation-area .list01 li {
  font-size: 1.6rem;
  line-height: 2;
  padding: 0 0 0 25px;
  position: relative;
}

#service.tax-ai-service .consultation-area .list01 li::before {
  content: "\f056";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  color: var(--blue);
  position: absolute;
  width: auto;
  height: auto;
  left: 0;
}

@media screen and (max-width: 768px){
	#service.tax-ai-service .consultation-area {
        background: url(../img/service-illustration.png) no-repeat center top 30px / 150px auto;
        padding: 120px 20px 0;
        margin: 0;
    }
	#service.tax-ai-service .consultation-area div {
		padding: 0 0 0;
		margin: 0 0 0;
		background: none;
	}
	#service.tax-ai-service .consultation-area .consultation-box {
		width: 100%;
		padding: 20px 20px;

		flex-direction: column;
		gap: 50px;
	}
	#service.tax-ai-service .consultation-area .consultation-box .image {
		display: none;
	}


	#service.tax-ai-service .consultation-area .consultation-box .kadai-box {
		position: relative;
	}
	#service.tax-ai-service .consultation-area .consultation-box .kadai-box img {
		width: 95px;
		object-fit: cover;
		object-position: center;

		position: absolute;
		top: -50px;
		right: 0;
	}
	
	#service.tax-ai-service .consultation-area .kadai-label {
		font-size: 1.3rem;
		padding: 3px 10px 2px;
		margin: 20px 0 10px;
		letter-spacing: 0.04em;
	}

	#service.tax-ai-service .consultation-area .list01 {
		width: 100%;
		flex-direction: column;
		gap: 5px;
	}

	#service.tax-ai-service .consultation-area .list01 li {
		font-size: 1.6rem;
		line-height: 1.6;
	}

}


/* -----------------------------
	実現する未来
-------------------------------- */

#service.tax-ai-service .achieve-area {
	padding: 100px 0 100px;
}

#service.tax-ai-service .achieve-area .inner > p{
	padding: 30px 0 0;
}

#service.tax-ai-service .achieve-area .inner .t-txt {
	font-size: 2.0rem;
    font-weight: bold;
}

#service.tax-ai-service .achieve-area .box {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

#service.tax-ai-service .achieve-area .box li {
	width: 24%;
	margin: 0 5px;
	border: var(--blue) solid 1px;
}

#service.tax-ai-service .achieve-area .box li .image {
	width: 100%;
	height: 375px;
}

#service.tax-ai-service .achieve-area .box li .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#service.tax-ai-service .achieve-area .box li h4 {
	font-size: 2.3rem;
	line-height: 1.5;
	color: var(--blue);
	padding: 30px 20px 10px;
}

#service.tax-ai-service .achieve-area .box li .sub {
	font-size: 1.6rem;
	font-weight: bold;
	padding: 0 0 5px;
	margin: 0 20px 20px;

	position: relative;
    display: inline-block;
	border-bottom: var(--gray) solid 1px;
}
#service.tax-ai-service .achieve-area .box li .sub::before {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--blue);
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: 0.8s;
}

#service.tax-ai-service .achieve-area .box li .txt {
	padding: 0 20px 20px;
}

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

	#service.tax-ai-service .achieve-area {
		padding: 50px 0 ;
	}

	#service.tax-ai-service .achieve-area .inner > p {
		padding: 15px 0 0;
	}

	#service.tax-ai-service .achieve-area .inner .t-txt {
		font-size: 1.8rem;
	}

	#service.tax-ai-service .achieve-area .box {
		display: block;
		padding: 0 20px;
		margin-top: 30px;
	}

	#service.tax-ai-service .achieve-area .box li {
		width: 100%;
		margin: 0 0 10px;
	}

	#service.tax-ai-service .achieve-area .box li .image {
		width: 100%;
		height: 200px;
	}

	#service.tax-ai-service .achieve-area .box li h4 {
		font-size: 2.0rem;
		padding: 20px 20px 0;
	}

	#service.tax-ai-service .achieve-area .box li .sub {
		margin: 10px 20px 20px;
	}
	
}


/* -----------------------------
	feature-area
-------------------------------- */
#service.tax-ai-service .feature-area {
	background: var(--lightblue);
	padding: 280px 0 100px;
	margin: 0 0 0;
}

#service.tax-ai-service .feature-area .inner {
	position: relative;
}
#service.tax-ai-service .feature-area .inner::before {
    content: "SERVICE";
    color: var(--blue);
    font-size: 20rem;
    font-weight: 100;
    font-family: var(--montserrat);
    position: absolute;
    left: 0;
    top: -230px;
    opacity: 0.1;
}

#service.tax-ai-service .feature-area .t-txt {
	font-size: 1.6rem;
	line-height: 2;
	padding: 40px 0 0;
}

#service.tax-ai-service .feature-area .box {
	background: var(--white);
	line-height: 0;
	padding: 0 0 50px;
	margin-top: 50px;
}

#service.tax-ai-service .feature-area .box section {
	display: flex;
	align-items: center;
	min-height: 540px;
}

#service.tax-ai-service .feature-area .box section:nth-child(2n+1) {
	flex-direction: row-reverse;
}

#service.tax-ai-service .feature-area .box section .com {
	line-height: 1.7;
	padding: 70px;
}

#service.tax-ai-service .feature-area .box section .com.feature-01 {
	padding: 70px 70px 50px 70px;
}

#service.tax-ai-service .feature-area .box section .en {
	font-family: var(--montserrat);
	font-size: 1.4rem;
	font-weight: 400;
	background: var(--yellow);
}

#service.tax-ai-service .feature-area .box section h4 {
	font-size: 3rem;
	line-height: 1.5;
	padding: 10px 0 10px;
}

#service.tax-ai-service .feature-area .box section .sub-ttl {
	font-size: 2.6rem;
	line-height: 1.5;
	padding: 0 0 20px;
	color: var(--navy);
}

#service.tax-ai-service .feature-area .box section .txt {
	line-height: 2;
}

/* point-box */
#service.tax-ai-service .feature-area .point-box dl {
	padding: 30px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#service.tax-ai-service .feature-area .point-box dl dt {
	font-weight: bold;
	padding: 5px 10px;
	width: 100%;
	display: block;
	background: var(--lightgray);
	border: var(--gray) solid 1px;
}

#service.tax-ai-service .feature-area .point-box dl dd {
	border-bottom: var(--gray) solid 1px;
	display: flex;
	align-items: center;
	letter-spacing: 0;
	width: 100%;
	margin: 10px 0 0;
	padding: 0 0 5px;
}

#service.tax-ai-service .feature-area .point-box dl dd svg {
	margin: 0 5px 0 0;

}

#service.tax-ai-service .feature-area .point-box dl dd.long {
	width: 100%;
}

#service.tax-ai-service .feature-area .point-box dl dd span {
	font-size: 1.4rem;
}

/* その他オプションサービス */
#service.tax-ai-service .feature-area .box section.option {
	flex-direction: column;
	align-items: flex-start;
	min-height: auto;
}
#service.tax-ai-service .feature-area .box section.option .com {
	padding-bottom: 0;
}
#service.tax-ai-service .feature-area .box section.option .option-list {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding: 0 70px 0;
	margin-top: 20px;
}
#service.tax-ai-service .feature-area .box section.option .option-list li {
	padding: 40px 50px;
	border: var(--gray) solid 1px;
}
#service.tax-ai-service .feature-area .box section.option .option-list li .ttl-flex {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
#service.tax-ai-service .feature-area .box section.option .option-list li img {
	width: auto;
	height: 35px;
	object-fit: cover;
	object-position: center;
	margin: 0 0 0;
}
#service.tax-ai-service .feature-area .box section.option .sub-ttl {
	padding: 0 0 0;
}

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

	#service.tax-ai-service .feature-area {
		padding: 110px 20px 50px;
		margin: 0 0 0;
	}

	#service.tax-ai-service .feature-area .inner::before {
		top: -90px;
        font-size: 7.5rem;
	}

	#service.tax-ai-service .feature-area .t-txt {
		padding: 20px 0 0;
	}

	#service.tax-ai-service .feature-area .box {
		width: 100%;
		height: 100%;
		margin: 30px auto 0;
		padding: 0 0 30px;
	}

	#service.tax-ai-service .feature-area .box section {
		display: block;
	}

	#service.tax-ai-service .feature-area .box section .image img {
		width: 100%;
	}

	#service.tax-ai-service .feature-area .box section .com {
		padding: 30px 20px ;
	}

	#service.tax-ai-service .feature-area .box section .com.feature-01 {
		padding: 30px 20px ;
	}

	#service.tax-ai-service .feature-area .box section h4 {
		font-size: 2.2rem;
		padding: 10px 0;
	}

	#service.tax-ai-service .feature-area .box section .sub-ttl {
		font-size: 1.8rem;
		padding: 0 0 10px;
	}

	#service.tax-ai-service .feature-area .box section .txt {
		line-height: 1.7;
	}

	/* point-box */
	#service.tax-ai-service .feature-area .point-box dl {
		padding: 10px 0 0;
	}
	
	#service.tax-ai-service .feature-area .point-box dl dd {
		width: 100%;
		margin: 10px 0 0;
		padding: 0 0 5px;
		flex-wrap: wrap;
	}
		
	#service.tax-ai-service .feature-area .point-box dl dd span {
		font-size: 1.2rem;
	}
		
	#service.tax-ai-service .feature-area .point-box dl dd span.span {
		padding: 0 0 0 30px;
	}

	/* その他オプションサービス */
	#service.tax-ai-service .feature-area .box section.option {
		display: block;
	}
	#service.tax-ai-service .feature-area .box section.option .option-list {
		flex-direction: column;
		gap: 20px;
		padding: 0 20px 0;
		margin-top: 0;
	}
	#service.tax-ai-service .feature-area .box section.option .option-list li {
		padding: 20px 20px;
	}
	#service.tax-ai-service .feature-area .box section.option .option-list li .ttl-flex {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 10px;
		margin-bottom: 10px;
	}
	#service.tax-ai-service .feature-area .box section.option .option-list li img {
		width: auto;
		height: 25px;
		object-fit: cover;
		object-position: center;
	}

}


/* -----------------------------
	3つのサポート
-------------------------------- */

#service.tax-ai-service .support-area{
	padding: 100px 0;
}
#service.tax-ai-service .support-area p.t-txt {
	padding: 20px 0 0;
}

/* support-box */
#service.tax-ai-service .support-area .support-box .support-list{
	display: flex;
	gap: 0;
	margin-top: 50px;
	padding: 0;
}
#service.tax-ai-service .support-area .support-box .support-list li{
	width: calc( 100% / 3 );
	padding: 120px 40px 50px;
	position: relative;
}
#service.tax-ai-service .support-area .support-box .support-list li img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0 0 20px;
}
#service.tax-ai-service .support-area .support-box .support-list li .num{
	position: absolute;
	top: 15px;
	right: 10px;
	font-size: 10rem;
	font-weight: 700;
	line-height: 1;
	font-family: var(--montserrat);
	opacity: .08;
	z-index: 1;
}
#service.tax-ai-service .support-area .support-box .support-list li h4,
#service.tax-ai-service .support-area .support-box .support-list li p{
	position: relative;
	z-index: 2;
}
#service.tax-ai-service .support-area .support-box .support-list li h4{
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 15px;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.5;
}
#service.tax-ai-service .support-area .support-box .support-list li h4::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 80px;
	height: 1px;
}
#service.tax-ai-service .support-area .support-box .support-list li p{
	line-height: 2;
	font-size: 1.6rem;
}

/* 色分け */
#service.tax-ai-service .support-area .support-list li:nth-child(1) .num{
	color: var(--blue);
}
#service.tax-ai-service .support-area .support-list li:nth-child(1){
	background: #E0EDF7;
}
#service.tax-ai-service .support-area .support-list li:nth-child(1) h4::after{
	background: var(--blue);
}

#service.tax-ai-service .support-area .support-list li:nth-child(2) .num{
	color: var(--blue);
}
#service.tax-ai-service .support-area .support-list li:nth-child(2){
	background: var(--lightblue);
}
#service.tax-ai-service .support-area .support-list li:nth-child(2) h4::after{
	background: var(--blue);
}

#service.tax-ai-service .support-area .support-list li:nth-child(3) .num{
	color: var(--blue);
}
#service.tax-ai-service .support-area .support-list li:nth-child(3){
	background: #E0EDF7;
}
#service.tax-ai-service .support-area .support-list li:nth-child(3) h4::after{
	background: var(--blue);
}

/* support-plus */
#service.tax-ai-service .support-area .support-plus{
	display:flex;
	justify-content:center;
	align-items:center;
	padding: 20px 0 20px;
}

#service.tax-ai-service .support-area .support-plus span{
	font-size: 7rem;
	font-weight:300;
	line-height:1;
	color: var(--blue);
	font-family:var(--montserrat);
}

/* option-box */
#service.tax-ai-service .support-area .option-box{
	padding: 0 20px;
}
#service.tax-ai-service .support-area .option-box .option-head{
	text-align: center;
	margin-bottom: 40px;
}
#service.tax-ai-service .support-area .option-box .option-head h4{
	font-size: 3rem;
}
#service.tax-ai-service .support-area .option-list{
	display: flex;
	justify-content: space-between;
}

#service.tax-ai-service .support-area .option-list li{
	/* width: calc( ( 100% - 30px ) / 2 ); */
	width: 100%;
	padding: 40px 30px;
    background: var(--lightgray);
	position: relative;
}
#service.tax-ai-service .support-area .option-list li .num {
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--montserrat);
    opacity: .08;
    z-index: 1;
}
#service.tax-ai-service .support-area .option-content .copy{
	font-size: 2.3rem;
	color: var(--blue);
	margin-bottom: 15px;
	text-align: center;
}
#service.tax-ai-service .support-area .option-content p{
	font-size: 1.6rem;
	line-height: 2;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#service.tax-ai-service .support-area{
		padding: 50px 0 50px;
	}
	#service.tax-ai-service .support-area p.t-txt {
		padding: 20px 0 0;
	}

	/* support-box */
	#service.tax-ai-service .support-area .support-box .support-list{
		display: block;
		margin-top: 30px;
	}

	#service.tax-ai-service .support-area .support-box .support-list li{
		width: 100%;
		padding: 80px 20px 30px;
	}

	#service.tax-ai-service .support-area .support-box .support-list li img {
		width: 100%;
		height: 180px;
		object-fit: cover;
		object-position: center;
		margin: 0 0 20px;
	}

	#service.tax-ai-service .support-area .support-box .support-list li .num{
		position: absolute;
		top: 15px;
		right: 10px;
		font-size: 6rem;
	}
	#service.tax-ai-service .support-area .support-box .support-list li h4{
		margin-bottom: 20px;
		padding-bottom: 10px;
		font-size: 2rem;
	}
	#service.tax-ai-service .support-area .support-box .support-list li h4::after{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 60px;
		height: 2px;
	}
	#service.tax-ai-service .support-area .support-box .support-list li p{
		line-height: 2;
		font-size: 1.5rem;
	}

	/* support-plus */
	#service.tax-ai-service .support-area .support-plus{
		padding: 10px 0 10px;
	}

	#service.tax-ai-service .support-area .support-plus span{
		font-size: 5rem;
	}

	/* option-box */
	#service.tax-ai-service .support-area .option-box{
		padding: 0 20px;
	}
	#service.tax-ai-service .support-area .option-box .option-head{
		text-align: center;
		margin-bottom: 20px;
	}
	#service.tax-ai-service .support-area .option-box .option-head h4{
		font-size: 2rem;
		line-height: 1.5;
	}
	#service.tax-ai-service .support-area .option-list{
		flex-wrap: wrap;
		gap: 20px;
	}
	#service.tax-ai-service .support-area .option-list li{
		width: 100%;
		padding: 70px 20px 20px;
	}
	#service.tax-ai-service .support-area .option-list li .num {
		position: absolute;
		top: 15px;
		right: 10px;
		font-size: 4rem;
	}
	#service.tax-ai-service .support-area .option-content .copy{
		font-size: 1.6rem;
		margin-bottom: 10px;
		text-align: left;
	}
	#service.tax-ai-service .support-area .option-content p{
		font-size: 1.5rem;
		text-align: left;
	}

}


/* -----------------------------
	料金体系
-------------------------------- */
#service.tax-ai-service .price-area .inner table {
    width: 900px;
}
#service.tax-ai-service .price-area .inner table th {
	width: 150px;
}
#service.tax-ai-service .price-area .inner table td {
	width: calc( 100% - 150px );
}
#service.tax-ai-service .price-area .inner table td p.txt {
	font-size: 1.4rem;
	padding-bottom: 0;
	padding-left:1em;
	text-indent:-1em;
}

@media screen and (max-width: 768px) {
	#service.tax-ai-service .price-area .inner table {
		width: 100%;
	}
	#service.tax-ai-service .price-area .inner table th {
		width: 100%;
	}
	#service.tax-ai-service .price-area .inner table td {
		width: 100%;
	}
	#service.tax-ai-service .price-area .inner table td p.txt {
		font-size: 1.4rem;
	}
}


/* オプション料金 */
#service.tax-ai-service .price-area .option-price-box {
	margin-top: 50px;
}
#service.tax-ai-service .price-area .option-price-box .option-price-ttl {
	font-size: 1.6rem;
	font-weight: bold;
    letter-spacing: 0.05em;
	color: var(--blue);
    margin-bottom: 20px;
}
#service.tax-ai-service .price-area .option-price-box .option-price-detail {
	margin-top: 10px;
	padding: 30px 30px;
	background-color: #fff;
}
#service.tax-ai-service .price-area .option-price-box .option-price-detail.detail02 {
	margin-top: 30px;
}
#service.tax-ai-service .price-area .option-price-box .option-price-detail .ttl-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
#service.tax-ai-service .price-area .option-price-box .option-price-detail .ttl-flex img {
    width: auto;
    height: 25px;
    object-fit: cover;
    object-position: center;
    margin: 0 0 0;
}
#service.tax-ai-service .price-area .option-price-box .option-price-detail .ttl-flex .sub-ttl {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 0 0 0;
    color: var(--navy);
}


/* アコーディオン */
.accordion-003 {
    width: 100%;
    margin-bottom: 10px;
    border-bottom: var(--gray) solid 1px;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 10px;
    cursor: pointer;

	font-size: 1.6rem;
    letter-spacing: 0.05em;
    font-weight: bold;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::before,
.accordion-003 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #333333b3;
    content: '';
}

.accordion-003 summary::before {
    position: absolute;
    right: 10px;
    rotate: 90deg;
}

.accordion-003 summary::after {
    transition: rotate .3s;
}

.accordion-003[open] summary::after {
    rotate: 90deg;
}

.accordion-003 .accordion-box {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 0 0;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] .accordion-box {
    transform: none;
    opacity: 1;
}

/* table */
.accordion-003 table {
	width: 100%!important;
	border-collapse: collapse;
}
.accordion-003 th {
	background: var(--lightblue)!important;
}
.accordion-003 th,
.accordion-003 td {
	padding: 15px;
	border: 1px solid #ddd;
}


@media screen and (max-width: 768px) {
	/* オプション料金 */
	#service.tax-ai-service .price-area .option-price-box {
		margin-top: 30px;
	}
	#service.tax-ai-service .price-area .option-price-box .option-price-ttl {
		margin-bottom: 10px;
	}
	#service.tax-ai-service .price-area .option-price-box .option-price-detail {
		margin-top: 10px;
	}
	#service.tax-ai-service .price-area .option-price-box .option-price-detail .ttl-flex {
		gap: 7px;
		margin-bottom: 20px;
	}
	#service.tax-ai-service .price-area .option-price-box .option-price-detail .ttl-flex img {
		width: auto;
		height: 20px;
	}
	#service.tax-ai-service .price-area .option-price-box .option-price-detail .ttl-flex .sub-ttl {
		font-size: 1.8rem;
	}

	/* アコーディオン */
	.accordion-003 summary {
		padding: 15px 10px;
	}

	/* table */
	.accordion-003 table {
		margin: 0 0 0!important;
	}
	.accordion-003 table,
	.accordion-003 tbody,
	.accordion-003 tr,
	.accordion-003 td {
		display: block;
		width: 100%;
	}

	.accordion-003 tr:first-child {
		display: none;
	}

	.accordion-003 tr {
		margin-bottom: 10px;
		border: 1px solid #ddd;
		overflow: hidden;
		background: #fff;
	}

	.accordion-003 td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 12px 15px;
		border: none;
		border-bottom: 1px solid #eee;
		text-align: left;
	}

	.accordion-003 td:first-of-type {
		background: var(--lightblue) !important;
	}

	.accordion-003 td:last-child {
		border-bottom: none;
	}

	.accordion-003 td::before {
		content: attr(data-label);
		margin-right: 20px;
		flex-shrink: 0;

		font-size: 1.5rem;
		line-height: 1.7;
		font-weight: bold;
		text-align: left;
		color: #333;
	}

}


/* -----------------------------
	税理士法人 中山＆パートナーズの強み
-------------------------------- */
#service.tax-ai-service .strength-area {
	padding: 100px 0 100px;
	background: var(--lightblue);
}
#service.tax-ai-service .strength-area .ttl-m {
    text-align: center;
}

#service.tax-ai-service .strength-area .strength-box {
	display: flex;
    justify-content: flex-start;
    gap: 80px;
	margin-top: 40px;
}
#service.tax-ai-service .strength-area .strength-box .strength-img {
	width: 450px;
    margin: 0 0;
}
#service.tax-ai-service .strength-area .strength-box .strength-img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#service.tax-ai-service .strength-area .strength-box .strength-txt {
	width: calc( 100% - 500px );
}
#service.tax-ai-service .strength-area .strength-box .strength-txt .strength-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
#service.tax-ai-service .strength-area .strength-box .strength-txt .strength-list p.item-ttl {
	font-size: 2.3rem;
    line-height: 1.5;
    color: var(--blue);
	padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
	#service.tax-ai-service .strength-area {
		padding: 50px 0 50px;
	}
	#service.tax-ai-service .strength-area .ttl-m {
		text-align: center;
	}

	#service.tax-ai-service .strength-area .strength-box {
		flex-wrap: wrap;
		gap: 30px;
		margin-top: 20px;
	}
	#service.tax-ai-service .strength-area .strength-box .strength-img {
		width: 100%;
		margin: 0 0;
	}
	#service.tax-ai-service .strength-area .strength-box .strength-txt {
		width: 100%;
	}
	#service.tax-ai-service .strength-area .strength-box .strength-txt .strength-list {
		gap: 10px;
	}
	#service.tax-ai-service .strength-area .strength-box .strength-txt .strength-list p.item-ttl {
		font-size: 2rem;
	}

}


/* -----------------------------
	ご利用の流れ
-------------------------------- */
.flow-area.style02 .t-txt {
	font-size: 1.6rem;
	line-height: 2;
	padding: 20px 0 0;
}

.flow-area.style02 .flow-box.flow05 {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	list-style: none;
	margin: 0;
	padding: 8px 0 0;
}

/* 接続ライン（点線）: img-box circle の中心の高さに固定 */
.flow-area.style02 .flow-box.flow05::before {
	content: '';
	position: absolute;
	top: 120px;
	left: 10%;
	right: 10%;
	height: 0;
	border-top: 2px dashed #cfe0f0;
	z-index: 0;
}

.flow-area.style02 .flow-box.flow05 > li {
	position: relative;
	z-index: 1;
	flex: 1;
	padding: 0 14px;
	text-align: center;

	background: none;
}

/* 円アイコン（img-box） */
.flow-area.style02 .flow-box.flow05 .img-box {
	position: relative;
	width: 170px;
	height: 170px;
	margin: 0 auto 20px;
}

/* 円右下バッジ */
.flow-area.style02 .flow-box.flow05 .img-box .no {
	position: absolute;
	right: -6px;
	bottom: -4px;
	z-index: 2;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: var(--gradation);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-shadow: 0 3px 8px rgba(10, 77, 140, .25);
}
.flow-area.style02 .flow-box.flow05 .img-box .no span {
	font-family: var(--montserrat);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: .04em;
	opacity: .85;
}
.flow-area.style02 .flow-box.flow05 .img-box .no em {
	font-family: var(--montserrat);
	font-style: normal;
	font-size: 1.5rem;
	font-weight: 800;
}

/* イラストを包む白円 */
.flow-area.style02 .flow-box.flow05 .img-box .image {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #dce8f5;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(10, 77, 140, .10);
	transition: transform .3s ease, box-shadow .3s ease;
}
.flow-area.style02 .flow-box.flow05 .img-box .image img {
	width: 58%;
	height: 58%;
	object-fit: contain;
}

/* テキスト */
.flow-area.style02 .flow-box.flow05 .txt {
	font-size: 15px;
	font-weight: 700;
	color: var(--blue);
	margin: 0 0 10px;
}
.flow-area.style02 .flow-box.flow05 > li > p:not(.no):not(.txt) {
	font-size: 12.5px;
	line-height: 1.85;
	color: #5b6b80;
	margin: 0;
	text-align: left;
}
.flow-area.style02 .flow-box li p {
	text-align: left;
}

/* STEP01のみ表示される問い合わせボタン群 */
.flow-area.style02 .flow-box.flow05 .step-contact {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.flow-area.style02 .flow-box.flow05 .contact-btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: var(--orange);
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	padding: 10px 30px;
	text-decoration: none;
	transition: opacity .25s ease;
}
.flow-area.style02 .flow-box.flow05 .contact-btn a:hover {
  	opacity: .85;
}
.flow-area.style02 .flow-box.flow05 .btn-tel a img {
	max-width: 180px;
	height: auto;
}

@media screen and (max-width: 768px) {
	.flow-area.style02 .t-txt {
		font-size: 1.4rem;
		line-height: 1.8;
		padding: 12px 0 0;
	}

	.flow-area.style02 .flow-box.flow05 {
		flex-direction: column;
		gap: 40px;
	}

	/* 接続ラインを縦・左側に切り替え */
	.flow-area.style02 .flow-box.flow05::before {
		top: 20px;
		bottom: 0;
		left: 70px;
		right: auto;
		width: 0;
		height: auto;
		border-top: none;
		border-left: 2px dashed #cfe0f0;
	}

	.flow-area.style02 .flow-box.flow05 > li {
		display: flex;
		align-items: flex-start;
		gap: 16px;
		text-align: left;
		padding: 0;
	}

	/* 円アイコン縮小 */
	.flow-area.style02 .flow-box.flow05 .img-box {
		width: 110px;
		height: 110px;
		margin: 0;
		flex-shrink: 0;
	}

	/* バッジ縮小 */
	.flow-area.style02 .flow-box.flow05 .img-box .no {
		width: 40px;
		height: 40px;
		right: -4px;
		bottom: -2px;
	}
	.flow-area.style02 .flow-box.flow05 .img-box .no span {
		font-size: 1rem;
	}
	.flow-area.style02 .flow-box.flow05 .img-box .no em {
		font-size: 1.2rem;
	}

	/* テキスト側 */
	.flow-area.style02 .flow-box.flow05 .txt {
		font-size: 1.5rem;
		margin: 0 0 8px;
	}
	.flow-area.style02 .flow-box.flow05 > li > p:not(.no):not(.txt) {
		font-size: 1.3rem;
		line-height: 1.8;
	}
	#service .flow-area .flow-box li .txt {
		text-align: left;
	}

	/* ボタン群 */
	.flow-area.style02 .flow-box.flow05 .step-contact {
		align-items: flex-start;
		margin-top: 12px;
	}
	.flow-area.style02 .flow-box.flow05 .contact-btn a {
		font-size: 1.4rem;
		padding: 10px 20px;
	}
	.flow-area.style02 .flow-box.flow05 .btn-tel a img {
		max-width: 160px;
	}
}


/* -----------------------------
	新規ページ
-------------------------------- */
@media screen and (max-width: 768px) {}
