@charset "utf-8";

/*----------------------------
    全体
----------------------------*/
:root {
	--color-main: #1F2A44;
	--color-accent: #E60013;
	--color-accent2: #FFBE0B;
	--color-base: #1A1A1A;
	--color-sub: #2F4766;
	--color-border: #B3BAC4;
	--color-bg-base: #FFFFFF;
	--color-bg1: #FFDE7E;
	--color-bg2: #2F4766;
	--color-bg3: #F9F9F9;

	--color-white: #FFFFFF;
	--color-red: #E60013;
	--color-red-d: #FF7676;
	--color-yellow: #FFBE0B;
	--color-blue: #1BB9EE;
	--color-green: #41AD41;
	--color-pink: #F293FF;
	--color-beige: #D7B98E;
	--color-skin: #F9DEC4;


	--size-base: 1rem;
	--size-xxl: 4rem;
	--size-xl: 2.5rem;
	--size-lg: 2rem;
	--size-md: 1.5rem;
	--size-sm: 0.875rem;
	--size-xs: 0.5rem;
	--size-xxs: 0.25rem;


	--text-lg: 1.25rem;
	--text-md: 1.125rem;
	--text-sm: 0.9375rem;


	--br-size-base: 1rem;
	--br-size-lg: 2.5rem;
	--br-size-sm: 0.5rem;

	--ngmargin: calc(50% - 50cql);
	--shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
}

body {
	background: var(--color-bg-base);
	color: var(--color-base);
	font-size: var(--size-base);
	font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
	font-weight: 400;
	line-height: 1.5;
}

a {
	transition: all 0.3s;
	text-decoration: none;
}

img {
	height: auto;
	max-width: 100%;
}

.display_none {
	display: none;
}

.sp_only {
	display: none;
}
.tab_only {
	display: none;
}

@media screen and (max-width: 1024px) {
    .tab_only {
        display: block;
    }
}

@media screen and (max-width: 767px) {
	.sp_only {
		display: block;
	}

	.pc_only {
		display: none !important;
	}
}

/*---------------------------
    ボタン
----------------------------*/
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	padding: 1.5rem 2rem;
	background: var(--color-accent);
	border: none;
	border-radius: 50px;
	color: var(--color-bg-base);
	cursor: pointer;
	font-size: var(--size-base);
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.04em;
	transition: 0.3s;
}
.btn span {
	text-box: trim-both cap alphabetic;
}
@media (hover: hover) {
	.btn:hover {
		background-color: var(--color-red-d);
	}
}

.header_btn {
	padding: 1rem 2rem;
	max-width: 180px;
	font-size: 0.9375rem;
}

.btn_small {
	gap: 0.25rem;
	margin: auto;
	padding: 0.625rem 2rem;
	min-width: 9.5rem;
	font-size: 0.9375rem;
	font-weight: 400;
	border: 1px solid var(--color-accent);
	background: var(--color-bg-base);
	color: var(--color-accent);
}
.btn_small img {
	width: 16px;
	aspect-ratio: 1/1;
}

.btn_small:hover {
	border: 1px solid var(--color-red-d);
	background: var(--color-white);
	color: var(--color-red-d);
}

.submit_btn {
	margin-inline: auto;
	min-width: 22rem;
	font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
    .submit_btn {
        min-width: 18rem;
    }
}
input[type="submit"] {
	background-color: var(--color-sub);
	border-radius: 50px;
	border: none;
	color: var(--color-bg-base);
	cursor: auto;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: 0.04em;
	transition: all 0.3s;
	padding: 1.5rem;
	width: 5rem;
}

@media (hover: hover) {
	input[type="submit"]:not(:disabled):hover {
		background-color: var(--color-sub) !important;
	}
}

@media screen and (max-width: 767px) {
	input[type="submit"] {
		padding: 1rem;
		width: 100%;
	}
}

.ripples_btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin: auto;
	width: 20rem;
	height: 4rem;
	background: var(--color-accent);
	border-radius: 50px;
	color: var(--color-bg-base);
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.72px;
	text-align: center;
	text-decoration: none;
	transition: 0.2s;
}
.ripples_btn:before,
.ripples_btn:after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 20rem;
	height: 4rem;
	top: 0;
	left: 0;
	border-radius: 50px;
	background: var(--color-accent);
	transform: translate3d(0, 0, 0);
	animation-play-state: running;
	opacity: 1;
	transition: opacity 0.2s ease;
}
.ripples_btn:before {
	animation: ripplePulse 5s ease-out infinite;
}
.ripples_btn:after {
	animation: ripplePulse 5s ease-out 0.8s infinite;
}
@media screen and (max-width: 767px) {
    .ripples_btn {
        width: 18rem;
    }
    .ripples_btn:before,
    .ripples_btn:after {
        width: 18rem;
    }
}

/* ホバー＋クリック時：波紋そのものを非表示（フェードアウト） */
.ripples_btn:hover::before,
.ripples_btn:hover::after,
.ripples_btn:active::before,
.ripples_btn:active::after {
	animation: none !important;
	animation-play-state: paused !important;
	opacity: 0 !important;
}

@keyframes ripplePulse {
	0% {
		transform: scale(0.95);
		opacity: 1;
	}
	35% {
		transform: scale(1.2, 1.4);
		opacity: 0;
	}
	100% {
		transform: scale(1.2, 1.4);
		opacity: 0;
	}
}

/*----------------------------
    ヘッダー
----------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	padding-inline: 1.5rem;
	background-color: var(--color-bg-base);
    container-type: inline-size;
	transition: transform 0.3s ease;
	will-change: transform;
}
header.is-hidden {
	transform: translateY(-100%);
}

header:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--color-red) 0%,
		var(--color-red) 25%,
		var(--color-yellow) 25%,
		var(--color-yellow) 50%,
		var(--color-blue) 50%,
		var(--color-blue) 75%,
		var(--color-green) 75%,
		var(--color-green) 100%
	);
}

.header_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
	height: 5rem;
}

.header_logo {
	line-height: 1;
}
.header_logo img {
	width: 6.25rem;
}

.header_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	gap: 2.5rem;
}

.header_nav {
	display: flex;
	justify-content: flex-end;
	gap: 2.5rem;
}

@container (max-width: 1200px) {
    .header_right {
        gap: 2rem;
    }
    .header_nav {
        gap: 2rem;
    }
}

.header_nav li a {
	color: var(--color-main);
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
}
.header_nav li.active a {
	color: var(--color-accent);
}

@media (hover: hover) {
	.header_nav li a:hover {
		color: var(--color-red-d);
	}
}

.hamburger {
    display: none;
}

@media screen and (max-width: 767px) {
	header {
		padding: 0.625rem 1rem;
		height: 3.75rem;
	}
    .header_wrap {
        height: auto;
    }
    .header_logo img {
		height: 2.5rem;
	}

	/*　ハンバーガー　*/
	.hamburger {
		cursor: pointer;
		display: block;
		position: relative;
		height: 26px;
		width: 35px;
		z-index: 99;
	}
	.hamburger span {
		display: block;
		margin: auto;
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		right: 0;
		background: var(--color-main);
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	.hamburger span:nth-child(1) {
		top: 0;
	}
	.hamburger span:nth-child(2) {
		top: 0.75rem;
	}
	.hamburger span:nth-child(3) {
		bottom: 0;
	}

	/* ナビ開いてる時のボタン */
	.hamburger.active span:nth-child(1) {
		top: 0.625rem;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.hamburger.active span:nth-child(2) {
		display: none;
	}
	.hamburger.active span:nth-child(3) {
		top: 0.625rem;
		bottom: auto;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.header_right {
		background-color: var(--color-bg-base);
		padding: 2rem;
		position: fixed;
		z-index: 2;
		top: 3.75rem;
		left: 0;
        display: block;
		color: var(--color-main);
		transform: translateX(100%);
		transition: all 0.3s;
		width: 100%;
		height: 100vh;
	}

	/* このクラスを、jQueryで付与・削除する */
	.header_right.active {
		transform: translateX(0%);
		height: calc(100vh - 3.75rem);
	}

	.header_nav {
		border-bottom: 1px solid var(--color-border);
		margin: 0 0 1rem;
		padding: 0 0 1.25rem;
		width: 100%;
        display: block;
		color: var(--color-main);
		font-weight: 500;
		letter-spacing: 0.018em;
	}
	.header_nav li {
		margin-bottom: 1.75rem;
		width: 100%;
	}
	.header_btn {
		display: block;
		margin: 2rem auto;
		width: 17.5rem;
	}
}

/*----------------------------
    スタイル共通
----------------------------*/
.text {
	color: var(--color-base);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
}
.text_en {
	font-family: "Roboto", sans-serif;
}

.text_black {
	color: var(--color-main);
}

.text_red, .is_accent {
	color: var(--color-accent);
}

.text_link {
	color:  var(--color-accent);
}
.text_link:hover {
	color:  var(--color-red-d);
	text-decoration: underline;
}
.text_bold {
	font-weight: 700;
}

.bg_white {
	background: var(--color-bg-base);
}

hr {
	width: 100%;
	border-top: 1px solid var(--color-border);
}

/*---------------------------
    アニメーション共通
----------------------------*/
.fade_in {
    opacity: 0;
    animation: wavyFadeIn 1.8s ease-out forwards;
}

@keyframes wavyFadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px) rotateZ(0.5deg);
    }
    50% {
      transform: translateY(-10px) rotateZ(-0.5deg);
    }
    100% {
      opacity: 1;
      transform: translateY(0) rotateZ(0deg);
    }
}

.fade_trigger {
    opacity: 0;
}
.fade_trigger.is_visible {
    opacity: 1;
    animation: wavyFadeIn 1.8s ease-out forwards;
}

/*----------------------------
    section共通
----------------------------*/
.section_area {
	padding-block: 6rem 6.5rem;
}

.section_inner {
	box-sizing: revert;
	max-inline-size: 1100px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}
@media screen and (max-width: 767px) {
    .section_area {
        padding-block: 4rem;
    }

}

/* bar */
.section_bar {
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--color-red) 0%,
		var(--color-red) 25%,
		var(--color-yellow) 25%,
		var(--color-yellow) 50%,
		var(--color-blue) 50%,
		var(--color-blue) 75%,
		var(--color-green) 75%,
		var(--color-green) 100%
	);
}

/* ver1 */
.section_heading {
	display: grid;
	width: fit-content;
	margin-inline: auto;
	margin-bottom: 2rem;
	text-align: center;
}
.heading_en {
	color: var(--color-accent);
	font-family: "Roboto", sans-serif;
	font-size: clamp(0.938rem, 0.799rem + 0.56vw, 1.25rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: clamp(0.5rem, 0.057rem + 1.8vw, 1.5rem);
}
.heading_ja {
	color: var(--color-main);
	font-size: clamp(2rem, 0.6667rem + 2.6667vw, 2.875rem);

	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
	margin-bottom: 2rem;
}
.heading_bar {
	display: block;
	width: clamp(3rem, -1.209rem + 17.14vw, 12.5rem);
	height: 0.1875rem;
	margin-inline: auto;
	background-color: var(--color-accent2);
	border-radius: 999px;
}
.section_heading.no_en .heading_en {
	display: none;
}


/* ver2 */
.section_heading_2 {
	display: grid;
	gap: 0.75rem;
	text-align: center;
	margin-bottom: 2.5rem;
}
.section_ttl {
	color: var(--color-main);
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.section_ttl_sub {
	color: var(--color-accent);
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.2em;
}

.read {
	padding-block: 2rem 0;
	color: var(--color-main);
	font-size: clamp(1.125rem, 0.7083rem + 1.3333vw, 2rem);
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.02em;
	text-align: center;
}
.read .is_accent {
	text-decoration: underline dotted;
	text-underline-offset: 0.3em;
}

.intro {
	padding-block: 1.5rem 2.5rem;
	font-size: clamp(1rem, 0.945rem + 0.23vw, 1.125rem);
	font-weight: 500;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.heading_ja {
		letter-spacing: 0;
	}
	.read {
		padding-top: 1rem;
	}
	.intro {
		padding-block: 0rem 2rem;
	}
}

/*---------------------------
    カード共通
----------------------------*/
.card {
	padding: 0 1.5rem 2rem;
	background: var(--color-bg3);
	min-width: 0;
}

.card_head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	margin: 0 -1.5rem 1rem;
	padding-block: 0.5rem;
	background: var(--color-main);
	color: var(--color-bg-base);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.2em;
	text-align: center;
}
.card_head strong {
	font-family: "Roboto", sans-serif;
	font-size: 1.125rem;
	line-height: 1;
	letter-spacing: 0;
}

.card_title {
	margin-bottom: 1rem;
	color: var(--color-main);
	font-size: clamp(1.125rem, 1.07rem + 0.23vw, 1.25rem);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.card_box {
	position: relative;
	margin-bottom: 2.5rem;
	padding: 2rem 0.5rem 0.75rem;
	border: 4px solid;
	border-radius: 0.5rem;
	background: var(--color-bg-base);
}
.card_box::before,
.card_box::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
}
.card_box::before {
	top: calc(100% + 0.75rem);
	width: 0.75rem;
    height: 0.5rem;
}
.card_box::after {
	top: calc(100% + 1.25rem);
	width: 0;
	height: 0;
	border-left: 0.75rem solid transparent;
	border-right: 0.75rem solid transparent;
}
.card_box_label {
	position: absolute;
	top: 0;
    left: 0;
	padding: 0.125rem 1.25rem 0.5rem 1rem;
	background: var(--color-main);
	color: var(--color-bg-base);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1;
	border-radius: 0 0 8px 0;
}

.card_box_list {
	margin: 0;
	display: grid;
	gap: 0.25rem;
	font-size: 0.875rem;
	line-height: 1.5;
}
.card_box_list li {
	display: flex;
	color: var(--color-base);
}
.card_box_list li:before {
	content: "・";
}

.card_person {
	position: absolute;
	right: -0.6875rem;
	top: -0.875rem;
	width: clamp(3.5rem, 3.112rem + 1.58vw, 4.375rem);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	background: var(--color-bg1);
}
.card_person img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card_box_arrow {
	margin: 0.5rem 0;
	color: var(--color-accent);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.card_box.before {
	border-color: var(--color-accent2);
}
.card_box.before::before {
	background: var(--color-accent2);
}
.card_box.before::after {
	border-top: 0.75rem solid var(--color-accent2);
}
.card_box.before .card_box_label {
	background: var(--color-accent2);
}
.card_box.after {
	border-color: var(--color-accent);
}
.card_box.after::before {
	background: var(--color-accent);
}
.card_box.after::after {
	border-top: 0.75rem solid var(--color-accent);
}
.card_box.after .card_box_label {
	background: var(--color-accent);
}

@media screen and (max-width: 767px) {
	.card {
		padding: 0 1rem 1.5rem;
	}
	.card_head {
		margin: 0 -1rem 0.875rem;
	}
	.card_person {
		right: -0.5rem;
	}
}

/*---------------------------
    FV
----------------------------*/
.fv {
	position: relative;
	margin-top: 5rem;
	padding: 3.5rem 1rem 5rem;
	background: var(--color-bg3);
	overflow: hidden;
}
.fv::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: min(100%, 1300px);
	height: 100%;
	transform: translateX(-50%);
	background: url("../img/fv_image.svg") no-repeat center bottom / 105% auto;
	pointer-events: none;
}

.fv_inner {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	height: 100%;
	margin: 0 auto;
	text-align: center;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fv_copy {
	margin-bottom: clamp(0.75rem, 0.528rem + 0.9vw, 1.25rem);
	color: var(--color-main);
	font-size: clamp(1.25rem, 0.641rem + 2.48vw, 2.625rem);
	font-weight: 700;
	line-height: 1.5;
}

.fv_title {
	display: grid;
	gap: clamp(0.5rem, 0.278rem + 0.9vw, 1rem);
	margin-bottom: clamp(1.75rem, 1.307rem + 1.8vw, 2.75rem);
}
.fv_title span {
	display: inline-block;
	width: fit-content;
	margin-inline: auto;
	padding: 0.25rem 1rem 0.5rem;
	background: var(--color-accent2);
	color: var(--color-main);
	font-size: clamp(1.625rem, 0.794rem + 3.38vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
}
.fv_title strong {
	color: var(--color-bg-base);
	font-style: normal;
}

.fv_lead {
	display: inline-flex;
	align-items: center;
	gap: clamp(0.5rem, 0.278rem + 0.9vw, 1rem);
	margin-bottom: clamp(1rem, 0.557rem + 1.8vw, 2rem);
	color: var(--color-base);
	font-size: clamp(1rem, 0.612rem + 1.58vw, 1.875rem);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
}
.fv_lead::before,
.fv_lead::after {
	content: "";
	display: block;
	width: clamp(1.25rem, 0.918rem + 1.35vw, 2rem);
	height: 0.125rem;
	background: currentColor;
	transform: rotate(60deg);
}
.fv_lead::after {
	transform: rotate(-60deg);
}

.fv + .section_bar {
	height: 8px;
}
@media screen and (min-width: 1300px) {
	.fv::before {
		background-size: 100% auto;
	}
}
@media screen and (max-width: 959px) {
	.fv {
		padding: 2.5rem 1rem 11rem;
		min-height: 46rem;
	}
	.fv::before {
		background: url("../img/fv_image_sp.svg") no-repeat center bottom / 100% auto;
	}
}
@media screen and (max-width: 787px) {
	.fv {
		margin-top: 3.75rem;
		min-height: 30rem;
	}
}


/*---------------------------
    サイト運用でこんな状況になっていませんか
----------------------------*/
#worry {
	background: var(--color-bg-base);
}

.worry_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(2rem, 1.778rem + 0.9vw, 2.5rem);
	padding-block: clamp(1rem, 0.557rem + 1.8vw, 2rem);
}

.worry_item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.worry_bubble {
	position: relative;
	display: grid;
	place-content: center;
	height: clamp(8.5rem, 7.614rem + 3.61vw, 10.5rem);
	width: 100%;
	padding-inline: 1rem;
	padding-bottom: clamp(0rem, -0.222rem + 0.9vw, 0.5rem);
	border: 3px solid var(--color-main);
	border-radius: 4px;
	background: var(--color-bg-base);
	text-align: center;
}
.worry_bubble::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -1.125rem;
	transform: translateX(-50%);
	width: 1rem;
	height: 1rem;
	background: var(--color-bg-base);
	border-right: 3px solid var(--color-main);
	border-bottom: 3px solid var(--color-main);
	rotate: 45deg;
}
.worry_bubble {
	color: var(--color-main);
	font-size: clamp(1.125rem, 1.014rem + 0.45vw, 1.375rem);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.04em;
}
.worry_bubble strong {
	font-size: clamp(1.25rem, 1.028rem + 0.9vw, 1.75rem)!important;
	font-weight: 700;
	letter-spacing: 0.0625rem;
}

.worry_avatar {
	display: grid;
	place-items: center;
	width: clamp(12.5rem, 11.115rem + 5.64vw, 15.625rem);
	aspect-ratio: 1 / 1;
	margin-top: 0.125rem;
	border-radius: 50%;
	background: var(--color-bg1);
}
.worry_avatar img {
	width: 65%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.worry_impact {
	display: grid;
	gap: clamp(0.5rem, 0.278rem + 0.9vw, 1rem);
	width: fit-content;
	margin-top: clamp(3rem, 2.114rem + 3.61vw, 5rem);
	margin-inline: auto;
	text-align: center;
}
.worry_impact span {
	display: inline-block;
	padding: 0.25rem 1rem 0.5rem;
	background: var(--color-main);
	color: var(--color-bg-base);
	font-size: clamp(1.375rem, 0.655rem + 2.93vw, 3rem);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.02em;
	white-space: nowrap;
}
.worry_impact em {
	color: var(--color-accent2);
	font-style: normal;
}

@media screen and (max-width: 787px) {
	.worry_list {
		grid-template-columns: 1fr;
		max-width: 33rem;
		margin-inline: auto;
	}
	.worry_bubble {
		width: 75%
	}
	.worry_impact span {
		padding: 0.5rem 0.75rem;
		white-space: normal;
	}
}

/*---------------------------
    成果を止めない３つの運用力
----------------------------*/
#strength {
	padding-top: 4rem;
	background: var(--color-bg1);
	border-radius: var(--br-size-lg);
	margin-inline: 1rem;
}

#strength .section_inner {
	padding-bottom: 1.5rem;
}

#strength .heading_bar {
	background-color: var(--color-main);
}

.strength_catch {
	display: grid;
	width: fit-content;
	margin: 0 auto -.5rem;
	color: var(--color-sub);
	font-size: clamp(1rem, 0.834rem + 0.68vw, 1.375rem);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-align: left;
	transform: translateX(-16.5rem);
}
.strength_catch .line1,
.strength_catch .line2 {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	width: fit-content;
	white-space: nowrap;
}
.strength_catch .line1::before,
.strength_catch .line1::after,
.strength_catch .line2::before,
.strength_catch .line2::after {
	content: "";
	display: block;
	width: 0.875rem;
	height: 0.125rem;
	background: currentColor;
	border-radius: 999px;
}
.strength_catch .line1::before,
.strength_catch .line2::before {
	transform: rotate(50deg);
}
.strength_catch .line1::after,
.strength_catch .line2::after {
	transform: rotate(288deg);
}
.strength_catch .line1 {
	transform: rotate(-8deg) translateX(-0.75rem);
	transform-origin: left center;
}
.strength_catch .line2 {
	transform: rotate(-5deg) translateX(2.8rem);
	transform-origin: left center;
}

.strength_lead {
	padding-block: 1.5rem 2.5rem;
	color: var(--color-main);
	font-size: clamp(1.125rem, .9rem + 1vw, 1.75rem);
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.04em;
	text-align: center;
}
.strength_lead strong {
	font-weight: 700;
}
.strength_lead .is_accent {
	text-decoration: underline dotted;
	text-underline-offset: 0.2em;
}

.strength_list {
	display: grid;
	gap: 1.5rem;
}

.strength_card {
	position: relative;
	display: grid;
	grid-template-columns: 12rem 1fr;
	gap: 2rem;
	align-items: start;
	padding: 1.75rem 2rem 1.75rem 1.75rem;
	background: var(--color-bg3);
	border: 4px solid var(--color-main);
	border-radius: 1rem;
	box-shadow: 8px 8px 0 var(--color-main);
}

.strength_num {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
	align-self: start;
	z-index: 2;
	color: var(--color-accent);
	font-family: "Roboto", sans-serif;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	text-align: left;
}

.strength_thumb {
	display: grid;
	grid-column: 1;
	grid-row: 1;
	justify-self: end;
	align-self: start;
	width: 8.75rem;
	aspect-ratio: 1 / 1;
}
.strength_thumb img {
	margin: auto;
}

.strength_body {
	grid-column: 2;
	grid-row: 1;
	display: grid;
	gap: 1rem;
}
.strength_body .text {
	font-size: 1rem;
}

.strength_title {
	color: var(--color-main);
	font-size: clamp(1.125rem, calc(0.8481rem + 1.1274vw), 1.75rem);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
}
.strength_title .is_accent {
	color: var(--color-accent);
	text-decoration: underline dotted;
	text-underline-offset: 0.2em;
}

@media screen and (max-width: 959px) {
	#strength {
		padding-top: 3rem;
	}
	#strength .section_inner {
		padding-bottom: 0;
	}
	.strength_catch {
		gap: 0rem;
		margin-bottom: 0.5rem;
		transform: translateX(0rem);
	}
	.strength_catch .line1 {
		transform: rotate(0deg) translateX(0rem);
	}
	.strength_catch .line2 {
		transform: rotate(0deg) translateX(0rem);
	}
	.strength_catch .line1::before,
	.strength_catch .line1::after,
	.strength_catch .line2::before,
	.strength_catch .line2::after {
		width: 0.75rem;
	}

	.strength_lead {
		padding-block: 0rem 1.5rem;
	}
	.strength_card {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.25rem 1rem;
		text-align: center;
	}
	.strength_num {
		justify-self: start;
		font-size: 3rem;
	}
	.strength_thumb {
		justify-self: center;
		margin-top: 0.25rem;
		width: 6.5rem;
	}
	.strength_body {
		grid-column: 1;
		grid-row: 2;
	}
	.strength_body .text {
		text-align: left;
	}
}

/*---------------------------
    Issue
----------------------------*/
#issue {
	background: var(--color-bg-base);
}

.issue_grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem 1.5rem;
	margin-bottom: clamp(0rem, -1.108rem + 4.51vw, 2.5rem);
}

/* card */
.issue_card .card_title {
	text-decoration: underline dotted;
    text-underline-offset: 0.2em;
}

.issue_result {
	display: grid;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
}
.issue_result span {
	display: inline-block;
	width: fit-content;
	padding: 0.125rem 0.5rem;
	background: var(--color-accent2);
	color: var(--color-main);
	font-size: clamp(1.125rem, 1.07rem + 0.23vw, 1.25rem);
	font-weight: 700;
	line-height: 1.5;
}

.issue_achievement {
	display: grid;
	place-content: baseline;
	gap: 1rem;
	margin-inline: auto;
	padding: 2rem .25rem;
	text-align: center;
}
.issue_achievement_desc {
	font-size: var(--text-lg);
	font-weight: 700;
}

@media screen and (max-width: 1023px) {
	.issue_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 767px) {
	.issue_grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

/*---------------------------
    Team
----------------------------*/
#team {
    container-type: inline-size;
	background: var(--color-bg3);
}

/* タイトル */
.ttl {
    margin-bottom: 1rem;
    color: var(--color-sub);
    font-size: clamp(1.125rem, 1.07rem + 0.23vw, 1.25rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

/* 流れ */
.flow_area {
    margin-block: clamp(3rem, 2.114rem + 3.61vw, 5rem);
}
.flow_list {
    position: relative;
    display: flex;
	justify-content: space-between;
	gap: 2rem;
    counter-reset: step;
}
.flow_item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg-base);
	border: 4px solid var(--color-main);
    border-radius: var(--br-size-base);
    box-shadow: var(--shadow);
}
.flow_item h4 {
    display: grid;
	grid-template-columns: 1fr auto;
    align-items: center;
    gap: .5rem;
	color: var(--color-accent);
	font-size: 1.125rem;
    font-weight: 500;
}
.flow_item h4::before {
	content: counter(step, decimal-leading-zero);
	counter-increment: step;
    display: flex;
	align-items: center;
	justify-content: center;
    width: 2.5rem;
	aspect-ratio: 1 / 1;
	background: var(--color-accent);
    border-radius: 50%;
	color: var(--color-bg-base);
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
	font-weight: bold;
    letter-spacing: 0.04em;
}
.flow_item p.text {
    color: var(--color-base);
	font-size: 1rem;
	line-height: 1.7;
}
.flow_item:not(:last-child)::before {
	content: '';
	position: absolute;
	right: -1.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: .5rem solid transparent;
	border-bottom: .5rem solid transparent;
	border-left: .75rem solid var(--color-accent);
}
@container (max-width: 1023px) {
    .flow_item {
        padding: 1rem;
    }
}
@media screen and (max-width: 767px) {
	.flow_list {
		flex-direction: column;
        align-items: center;
		gap: 3rem;
	}
    .flow_item {
		width: 100%;
		max-width: 500px;
	}
    .flow_item:not(:last-child)::before {
        top: auto;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        border-top: .75rem solid var(--color-accent);
        border-right: .5rem solid transparent;
        border-left: .5rem solid transparent;
        border-bottom: none;
    }
}

/* staff */
.staff_area {
    margin-bottom: clamp(1rem, 0.114rem + 3.61vw, 3rem);
}
.staff_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1rem, 0.335rem + 2.71vw, 2.5rem);
	container-type: inline-size;
}
.staff_item {
	display: flex;
    flex-direction: column;
    align-items: anchor-center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: var(--color-bg-base);
    border: 4px solid var(--color-main);
    border-radius: var(--br-size-base);
    box-shadow: var(--shadow);
	text-align: center;
}
.staff_item dt {
	color: var(--color-main);
	font-size: clamp(1rem, 0.945rem + 0.23vw, 1.125rem);
	font-weight: 500;
	letter-spacing: 0.04em;
}
.staff_item dd {
	color: var(--color-base);
	font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
}

@media screen and (max-width: 767px) {
	.staff_list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.staff_item {
		padding: 1rem .5rem;
	}
	.staff_item img {
		width: 5rem;
	}
}

/*---------------------------
	Price Plan
----------------------------*/
#price {
	position: relative;
    container-type: inline-size;
}

.table_grid {
	display: grid;
	grid-template-columns: 180px 1fr 1fr 1fr;
	gap: 0 0.125rem;
	margin-bottom: 1.5rem;
}

.row {
	display: contents;
}
.cell {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: clamp(0.625rem, -0.375rem + 2vw, 1rem);
    border-bottom: 1px solid var(--color-border);
	font-size: 1rem;
	text-align: center;
}
.row.header .cell {
	border-bottom: none;
}
.row.header .cell_label {
	background-color: transparent;
	border: none;
}
.cell_label {
	background-color: var(--color-sub);
	color: var(--color-bg-base);
	font-size: clamp(0.875rem, 0.5417rem + 0.6667vw, 1rem);
	font-weight: 500;
}

.row.header .cell_lite,
.row.header .cell_standard,
.row.header .cell_custom {
	padding: 1.5rem 0.5rem;
	color: var(--color-white);
	font-size: clamp(1rem, 0.3333rem + 1.3333vw, 1.25rem);
	font-weight: 500;
	letter-spacing: 0.04rem;
}

.cell_lite {
	border-right: 4px solid var(--color-yellow);
	border-left: 4px solid var(--color-yellow);
}
.row.header .cell_lite {
	background-color: var(--color-yellow);
}
.row:last-child .cell_lite {
	border-bottom: 4px solid var(--color-yellow);
}

.cell_standard {
	border-right: 4px solid var(--color-blue);
	border-left: 4px solid var(--color-blue);
}
.row.header .cell_standard {
	background-color: var(--color-blue);
}
.row:last-child .cell_standard {
	border-bottom: 4px solid var(--color-blue);
}

.cell_custom {
	border-right: 4px solid var(--color-red);
	border-left: 4px solid var(--color-red);
}
.row.header .cell_custom {
	background-color: var(--color-red);
}
.row:last-child .cell_custom {
	border-bottom: 4px solid var(--color-accent);
}

.price_cards {
	display: none;
}

@media screen and (max-width: 767px) {
	.table_grid {
		display: none;
	}
	.price_cards {
		display: grid;
		gap: 1rem;
		margin-bottom: 1.5rem;
	}
	.price_card {
		background: var(--color-bg-base);
		border: 1px solid var(--color-border);
		border-radius: 0.75rem;
		overflow: hidden;
	}
	.is_lite.price_card {
		border-color: var(--color-yellow);
	}
	.is_standard.price_card{
		border-color: var(--color-blue);
	}
	.is_custom.price_card {
		border-color: var(--color-red);
	}
	.price_card_head {
		padding: 0.875rem 1rem;
		color: var(--color-bg-base);
		font-size: 1.125rem;
		font-weight: 700;
		line-height: 1.4;
	}
	.is_lite .price_card_head {
		background: var(--color-yellow);
		color: var(--color-main);
	}
	.is_standard .price_card_head {
		background: var(--color-blue);
	}
	.is_custom .price_card_head{
		background: var(--color-red);
	}
	.price_card_list {
		padding: 0.75rem 1rem 1rem;
		display: grid;
		gap: 0.625rem;
	}
	.price_card_list div {
		display: grid;
		grid-template-columns: 5.5rem 1fr;
		gap: 0.5rem;
		padding-bottom: 0.5rem;
		border-bottom: 1px solid var(--color-border);
	}
	.price_card_list div:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
	.price_card_list dt {
		color: var(--color-sub);
		font-size: 0.875rem;
		font-weight: 700;
		line-height: 1.5;
	}
	.price_card_list dd {
		color: var(--color-base);
		font-size: 0.9375rem;
		line-height: 1.6;
	}
	.price_card_list .price_value {
		font-size: 1rem;
		font-weight: 700;
	}
}

/*----------------------------
    case
----------------------------*/
#case {
	background: var(--color-bg1);
	border-radius: var(--br-size-lg);
    margin-inline: 1rem;
}
#case .heading_bar {
    background-color: var(--color-main);
}

.case_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3.5rem 2.5rem;
	margin-block: 4rem 2.5rem;
	container-type: inline-size;
}

.case_card .card_head span {
	font-size: 0.875rem;
}
.case_card .card_title {
	font-size: clamp(1.25rem, 1.139rem + 0.45vw, 1.5rem);
}
.case_card .card_title .is_accent {
	color: var(--color-accent);
	text-decoration: underline dotted;
	text-underline-offset: 0.2em;
}

.card_box.result {
	margin-bottom: 1rem;
}
.card_box.result .card_box_list {
	padding: 0 0.5rem;
	gap: 0.5rem;
}
.card_box.result .card_box_list div {
	display: grid;
    grid-template-columns: 10rem 1fr;
	gap: 0.5rem;
	border-bottom: 1px solid var(--color-border);
}
.card_box.result .card_box_list .adjust {
	grid-template-columns: auto max-content;
}
.card_box.result .card_box_list div:last-child {
	border-bottom: none;
}
.card_box.result .card_box_list dd {
	font-weight: 700;
}

.case_data {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 1rem;
	padding-block: 0.5rem;
}
.case_data_body {
	display: grid;
	gap: 0.5rem;
}
.case_data_label {
	width: fit-content;
	padding: 0.5rem 1.25rem 0.5rem 1rem;
	background: var(--color-green);
	border-radius: 0 0 8px 0;
	color: var(--color-bg-base);
	font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
}
.case_data_title {
	margin-bottom: .5rem;
	color: var(--color-main);
	font-size: var(--text-md);
	font-weight: 700;
	line-height: 1.5;
}
.case_data_list {
	padding-bottom: 0.25rem;
	border-bottom: 2px solid var(--color-base);
	width: max-content;
}
.case_data_list div {
	display: grid;
	grid-template-columns: 4rem 1fr;
	gap: 0.5rem;
}
.case_data_list dt,
.case_data_list dd {
	color: var(--color-base);
	font-size: var(--text-sm);
	letter-spacing: 0.02em;
	line-height: 1.5;
}
.case_data_list dd:before {
	content: "：";
	padding-right: .25rem;
}
.case_data_person {
	width: 7.5rem;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	background: var(--color-green);
}
.case_data_person img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case_data.is_red .case_data_label,
.case_data.is_red .case_data_person {
	background: var(--color-red-d);
}
.case_data.is_pink .case_data_label,
.case_data.is_pink .case_data_person {
	background: var(--color-pink);
}
.case_data.is_blue .case_data_label,
.case_data.is_blue .case_data_person {
	background: var(--color-blue);
}

@media screen and (max-width: 959px) {
	#case {
		margin-inline: 0;
		padding-bottom: 3rem;
	}
	.case_grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
    	margin-block: 2rem 1rem;
	}
}

@media screen and (max-width: 767px) {
	.case_data {
		grid-template-columns: 1fr;
	}
	.case_data_label {
		font-size: 1rem;
	}
	.card_box.result {
		padding-bottom: 0.25rem;
	}
	.card_box.result .card_box_list div {
		grid-template-columns: 1fr;
		gap: 0rem;
		padding-bottom: .5rem;
	}
	.card_box.result .card_box_list .adjust {
		grid-template-columns: 1fr;
	}
	.case_data_person {
		position: absolute;
		right: 0;
		top: 0;
		width: 4rem;
	}
}

/*----------------------------
    cta
----------------------------*/
.cta {
	container-type: inline-size;
	padding: 6.25rem 0 3.125rem;
	background: var(--color-bg-base);
}
.cta .contents {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	max-width: 1280px;
	min-height: 37.5rem;
	margin-inline: auto;
	padding-right: 2rem;
	overflow: hidden;
}
.cta .contents::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 -8.57%;
	width: 82.08%;
	background: url("../img/cta.png") no-repeat left center / cover;
	pointer-events: none;
}

.cta_text {
	position: relative;
	z-index: 1;
	width: min(31.25rem, 100%);
	padding: 3rem 3rem 3.5rem;
	border-radius: clamp(1rem, 0.778rem + 0.9vw, 1.5rem);
	background: var(--color-bg3);
	box-shadow: 0 4px 4px rgba(110, 122, 138, 0.14);
}
.cta .section_title {
	color: var(--color-main);
	font-size: clamp(1.5rem, 1.278rem + 0.9vw, 2rem);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
	margin: 0;
}
.cta .text {
	margin-block: 1.5rem 3.5rem;
}

@media screen and (max-width: 959px) {
	.cta {
		padding: 4rem 0 0;
	}
	.cta .contents {
		padding: 1rem;
		justify-content: center;
		align-items: end;
	}
	.cta .contents::before {
		inset: 0;
		width: 100%;
		opacity: 0.9;
		background-position: left top;
		background-size: contain;
	}
	.cta .text {
		margin-bottom: 2rem;
	}
}
@media screen and (max-width: 787px) {
	.cta_text {
		padding: 2rem 1.5rem 3rem;
	}
}

/*-----------------
    FAQ
-----------------*/
#faq {
}

.faq_list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
.faq_item {
	padding: 1.125rem 1rem;
	border-radius: var(--br-size-sm);
    background: var(--color-bg1);
	transition: all 0.3s ease;
}
.faq_item.is_open .faq_answer {
	max-height: 1000px;
	margin-top: 1rem;
}
.faq_question {
	display: grid;
	grid-template-columns: 1fr 2rem;
	align-items: center;
	font-weight: 500;
	color: var(--color-base);
	cursor: pointer;
}
.faq_question span:first-of-type {
	display: block grid;
	align-items: center;
	grid-template-columns: auto 1fr;
	-moz-column-gap: 0.625rem;
	column-gap: 0.625rem;
	font-weight: 500;
	padding: 1rem 0.75rem;
}
.faq_question span:first-of-type:before {
	content: "Q";
	color: var(--color-accent);
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1;
}
.faq_answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq_answer span {
	display: block grid;
	align-items: baseline;
	grid-template-columns: auto 1fr;
	-moz-column-gap: 0.625rem;
	column-gap: 0.625rem;
	padding: var(--size-sm) 1rem;
	border-radius: 1rem;
	background: var(--color-white);
}
.faq_answer span:before {
	content: "A";
	position: relative;
    top: 2px;
	color: var(--color-sub);
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1;
}

.faq_icon {
	width: 1.5rem;
	aspect-ratio: 1;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.ico_plus {
	background: url("../img/ico_plus.svg");
}
.ico_minus {
	background: url("../img/ico_minus.svg");
}

@media screen and (max-width: 767px) {
	.faq_question {
		grid-template-columns: 1fr 1.5rem;
	}
	.faq_question span:first-of-type {
		align-items: baseline;
		padding: 0;
	}
}

/*-----------------
    フォーム：全体
-----------------*/
#contact {
	background: var(--color-bg2);
	border-radius: var(--br-size-lg) var(--br-size-lg) 0 0;
	container-type: inline-size;
}
#contact .section_ttl {
	color: var(--color-bg-base);
}
.form_area {
	color: var(--color-base);
}

.form_contents {
	max-width: 767px;
	margin: auto;
	color: var(--color-bg-base);
}
@container (max-width: 820px) {
	.form_contents {
		max-width: 600px;
	}
}
.attention {
	font-size: 1rem;
	text-align: right;
}

.required {
	margin-left: 0.5rem;
	color: var(--color-red);
}

.form_area dl {
	margin-bottom: 2.5rem;
}
.form_area dl:last-of-type {
	margin-bottom: 3.75rem;
}
.form_area dt {
	margin-bottom: 0.625rem;
	font-size: 1rem;
}

.form_area input {
	width: 100%;
	border: none;
	border-radius: 0.5rem;
	background-color: var(--color-bg-base);
	font-size: 1rem;
}
.form_area input.error,
.form_area textarea.error {
	border: 1px solid var(--color-red-d);
}

.form_area label.error {
	color: var(--color-red-d);
}

.form_area textarea {
	width: 100%;
	height: 7.5rem;
	padding: 0.625rem;
	border: none;
	border-radius: 0.25rem;
	background-color: var(--color-bg-base);
	font-size: 1rem;
}
.form_text {
	margin-bottom: 2rem;
	color: var(--color-bg-base);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 10000px #FFFFFF inset !important;
}
::placeholder {
	color: #CCCCCC;
}

@media (min-width: 960px) {
	.form_area input,
	.form_area textarea {
		padding: 1.25rem;
	}
	input[type="submit"] {
		padding: 0;
	}
	.form_area textarea {
		height: 10rem;
	}
}
@media (max-width: 959px) {
	input[type="submit"] {
		padding: 0;
	}
	.form_area {
		padding: 3.5rem 0;
	}
	.attention {
		font-size: var(--size-sm);
	}
	.form_area dl {
		margin-bottom: 2rem;
	}
	.form_area dl:last-of-type {
		margin-bottom: 2.5rem;
	}
	.form_area dt {
		margin-bottom: 0.25rem;
		font-size: var(--size-sm);
	}
	.form_area input {
		padding: 1rem 0.625rem;
	}
	.form_area textarea {
		padding: 1rem 0.625rem;
	}
}

/*----------------------------
    footer
----------------------------*/
footer {
	display: grid;
	place-items: center;
	height: 100px;
	background: var(--color-base);
}
footer .copyright {
	color: var(--color-bg-base);
	font-size: var(--size-sm);
}
