body {
	margin: 0;
	color: #0E2C40;
	font-family: "Noto Sans JP", sans-serif;
}

a {
	text-decoration: none;
}

ul,
ol {
	padding-left: 0;
	list-style: none;
}

em {
	font-style: normal;
}

strong {
	font-size: 18px;
	line-height: 1.6;
}

img {
	width: 100%;
	height: auto;
}

* {
	box-sizing: border-box;
	margin: 0;
}

*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
}

.col2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 40px;
	row-gap: 40px;
}

.col3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 24px;
	row-gap: 24px;
}

section:not(.wp-works-detail) .hdg-l2 {
	margin-top: 0;
	margin-bottom: 40px;
}

.hdg-l2 {
	display: flex;
	align-items: center;
}

.hdg-l2 h2 {
	background: linear-gradient(90deg, #4869BB, #D7B2C8);
	font-size: 60px;
	font-family: "Roboto", sans-serif;
	letter-spacing: 6px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-right: 16px;
}

.hdg-l2 p {
	font-weight: bold;
	font-size: 16px;
}

.hdg-l3 {
	position: relative;
	margin: 48px 0 40px;
	padding-left: 24px;
	color: #4869BB;
	font-size: 24px;
}

.hdg-l3::before {
	position: absolute;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(135deg, #4869BB, #D7B2C8);
	content: "";
}

.hdg-l4 {
	margin: 40px 0;
	color: #0E2C40;
	font-size: 20px;
}

.hdg-l4 .hdg-num {
	display: inline-block;
	margin-right: 8px;
	color: #4869BB;
	font-family: "Roboto", sans-serif;
}

.issue-hdg {
	display: flex;
	align-items: center;
	margin: 64px 0 54px;
	padding: 16px;
	border-top: 1px solid #DDE8F2;
	border-bottom: 1px solid #DDE8F2;
	color: #0E2C40;
}

.issue-hdg h3 {
	font-size: 24px;
	line-height: 1.4;
}

.issue-hdg .issue-hdg__label {
	min-width: 100px;
	margin-right: 16px;
	padding: 16px;
	background-color: #DDE8F2;
	color: #4869BB;
	font-weight: bold;
	font-size: 18px;
	vertical-align: middle;
}

.issue-hdg .issue-hdg__label > span {
	display: inline-block;
	margin-left: 4px;
	font-size: 24px;
	font-family: "Roboto", sans-serif;
}

.solution-hdg {
	display: flex;
	align-items: center;
	margin: 56px 0 48px;
}

.solution-hdg h3 {
	color: #4869BB;
	font-weight: bold;
	font-size: 24px;
	line-height: 1.4;
}

.solution-hdg .solution-hdg__label {
	min-width: 120px;
	margin-right: 16px;
	padding: 16px;
	background: linear-gradient(135deg, #4869BB, #D7B2C8);
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	vertical-align: middle;
}

.solution-hdg .solution-hdg__label > span {
	display: inline-block;
	margin-left: 4px;
	font-size: 24px;
	font-family: "Roboto", sans-serif;
}

.btn {
	box-sizing: border-box;
	position: relative;
	max-width: 400px;
	margin: auto;
	margin-top: 40px;
	font-family: "Roboto", sans-serif;
}

.btn::before {
	display: block;
	z-index: -1;
	position: absolute;
	top: 0;
	width: 100%;
	max-width: 400px;
	height: 100%;
	border-radius: 100px;
	background: linear-gradient(90deg, #4869BB, #D7B2C8);
	content: "";
	transition: all 0.3s;
}

.btn:hover::before {
	opacity: 0;
}

.btn::after {
	z-index: -2;
	position: absolute;
	top: 0;
	width: 100%;
	max-width: 400px;
	height: 100%;
	border-radius: 100px;
	background: linear-gradient(90deg, #D7B2C8, #4869BB);
	content: "";
}

.btn a {
	box-sizing: border-box;
	display: block;
	width: 100%;
	padding: 24px 60px 24px 40px;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}

.btn a::before {
	position: absolute;
	top: calc(50% - 0.5px);
	right: 24px;
	width: 24px;
	height: 2px;
	border-top: 3px solid #fff;
	content: "";
	transition: all 0.3s;
}

.btn a::after {
	position: absolute;
	top: calc(50% - 7px);
	right: 24px;
	width: 16px;
	height: 16px;
	transform: rotate(45deg);
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	content: "";
	transition: all 0.3s;
}

.btn a:hover::before {
	right: 16px;
}

.btn a:hover::after {
	right: 16px;
}

.btn__back {
	box-sizing: border-box;
	position: relative;
	max-width: 400px;
	margin: auto;
	margin-top: 40px;
}

.btn__back::before {
	display: block;
	z-index: -1;
	position: absolute;
	top: 0;
	width: 100%;
	max-width: 400px;
	height: 100%;
	border-radius: 100px;
	background: linear-gradient(90deg, #4869BB, #D7B2C8);
	content: "";
	transition: all 0.3s;
}

.btn__back:hover::before {
	opacity: 0;
}

.btn__back::after {
	z-index: -2;
	position: absolute;
	top: 0;
	width: 100%;
	max-width: 400px;
	height: 100%;
	border-radius: 100px;
	background: linear-gradient(90deg, #D7B2C8, #4869BB);
	content: "";
}

.btn__back a {
	box-sizing: border-box;
	display: block;
	width: 100%;
	padding: 24px 40px 24px 60px;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}

.btn__back a::before {
	position: absolute;
	top: calc(50% - 0.5px);
	left: 24px;
	width: 24px;
	height: 2px;
	border-top: 3px solid #fff;
	content: "";
	transition: all 0.3s;
}

.btn__back a::after {
	position: absolute;
	top: calc(50% - 7px);
	left: 24px;
	width: 16px;
	height: 16px;
	transform: rotate(-45deg);
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
	content: "";
	transition: all 0.3s;
}

.btn__back a:hover::before {
	left: 16px;
}

.btn__back a:hover::after {
	left: 16px;
}

.link__pnl {
	display: flex;
	position: relative;
	flex-direction: column;
	height: 100%;
	padding: 24px;
	border: 2px solid #DDE8F2;
	background-color: #DDE8F2;
	transition: all 0.3s;
}

.link__pnl::before {
	z-index: 1;
	position: absolute;
	right: 36px;
	bottom: 37px;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
	border-top: 3px solid #4869BB;
	border-right: 3px solid #4869BB;
	content: "";
	transition: all 0.3s;
}

.link__pnl::after {
	z-index: 1;
	position: absolute;
	right: 36px;
	bottom: 41.5px;
	width: 18px;
	height: 3px;
	background-color: #4869BB;
	content: "";
	transition: all 0.3s;
}

.link__pnl:hover {
	border: 2px solid #DDE8F2;
	background-color: #fff;
}

.link__pnl:hover::before {
	right: 30px;
}

.link__pnl:hover::after {
	right: 30px;
}

.link__pnl:hover img {
	background-color: #DDE8F2;
}

.link__pnl:hover .link__pnl--list li {
	background-color: #DDE8F2;
}

.link__pnl:hover p::after {
	right: -6px;
	border: 2px solid #4869BB;
}

.link__pnl img {
	background-image: url(/common/img/component/bg_link_pnl.webp);
	background-position: bottom;
	background-size: 100%;
	background-repeat: no-repeat;
	background-color: #fff;
}

.link__pnl h3 {
	display: flex;
	flex-grow: 1;
	justify-content: center;
	margin-top: 24px;
	color: #0E2C40;
	font-size: 24px;
}

.link__pnl .link__pnl--list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 8px;
	row-gap: 8px;
	margin: 24px 0;
}

.link__pnl .link__pnl--list li {
	padding: 4px 4px 6px;
	background-color: #fff;
	color: #0E2C40;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	transition: all 0.3s;
}

.link__pnl p {
	position: relative;
	padding: 5px 56px 5px 0;
	color: #4869BB;
	font-weight: bold;
	font-size: 20px;
	text-align: right;
}

.link__pnl p::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	border: 2px solid #fff;
	border-radius: 50px;
	background-color: #fff;
	content: "";
	transition: all 0.3s;
}

.list {
	margin: 0;
}

.list .list {
	margin: 16px 0 0 16px;
}

.list__item + .list__item {
	margin-top: 16px;
}

.list__item {
	position: relative;
	padding-left: 16px;
	font-size: 16px;
}

.list__item::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background-color: #4869BB;
	content: "";
}

.explain__list dl + dl {
	margin-top: 16px;
}

.explain__list dl {
	display: grid;
	grid-template-columns: 160px 1fr;
	column-gap: 16px;
	align-items: center;
}

.explain__list dl dt,
.explain__list dl dd {
	display: inline-block;
	font-size: 18px;
	vertical-align: middle;
}

.explain__list dl dt {
	padding: 8px 16px 10px;
	background-color: #DDE8F2;
	font-weight: bold;
	text-align: center;
}

.issue-solution__list {
	display: flex;
	position: relative;
	flex-direction: column;
	width: 100%;
	max-width: 660px;
	padding: 40px 0 0 0;
}

.issue-solution__list + .issue-solution__list {
	padding-right: 24px;
}

.issue-solution__list > dt {
	display: flex;
	position: relative;
	flex-grow: 1;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	margin-bottom: 136px;
	padding: 80px 48px 40px;
	background-color: #DDE8F2;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}

.issue-solution__list > dt::before {
	position: absolute;
	right: calc(50% - 2.5px);
	bottom: -88px;
	width: 5px;
	height: 80px;
	background: linear-gradient(45deg, #4869BB, #D7B2C8);
	content: "";
}

.issue-solution__list > dt::after {
	position: absolute;
	right: calc(50% - 15px);
	bottom: -88px;
	width: 30px;
	height: 30px;
	transform: rotate(135deg);
	border-top: 5px solid #4869BB;
	border-right: 5px solid #4869BB;
	content: "";
	transition: all 0.3s;
}

.issue-solution__list > dt .issue__ttl {
	display: flex;
	position: absolute;
	top: -40px;
	right: calc(50% - 50px);
	flex-direction: column;
	justify-content: center;
	width: 100px;
	height: 100px;
	border: 3px solid #DDE8F2;
	border-radius: 50px;
	background-color: #fff;
	font-size: 18px;
}

.issue-solution__list > dt .issue__ttl > span {
	display: block;
	color: #4869BB;
	font-size: 30px;
	font-family: "Roboto", sans-serif;
}

.issue-solution__list > dd {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	padding: 80px 48px 40px;
	border: 2px solid #4869BB;
	color: #4869BB;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}

.issue-solution__list > dd .solution__ttl {
	display: flex;
	position: absolute;
	top: -40px;
	right: calc(50% - 50px);
	flex-direction: column;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	background: linear-gradient(90deg, #4869BB, #D7B2C8);
	color: #fff;
	font-size: 18px;
}

.issue-solution__list > dd .solution__ttl > span {
	display: block;
	color: #fff;
	font-size: 30px;
	font-family: "Roboto", sans-serif;
}

section {
	padding: 40px;
}

header {
	padding: 24px 40px;
}

header h1 {
	margin: 0;
	line-height: 0;
}

header h1 a {
	background: linear-gradient(90deg, #4869BB, #D7B2C8);
	font-size: 24px;
	font-family: "Roboto", sans-serif;
	letter-spacing: 6px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s;
}

header h1 a:hover {
	opacity: 0.5;
}

.btn.wp-works a {
	padding: 24px 40px 24px 60px;
}

.btn.wp-works a:hover::before {
	left: 16px;
}

.btn.wp-works a:hover::after {
	left: 16px;
}

.btn.wp-works a::before {
	left: 24px;
}

.btn.wp-works a::after {
	left: 24px;
	transform: rotate(-45deg);
	border-right: none;
	border-left: 3px solid #fff;
}

nav ol {
	display: flex;
	flex-wrap: wrap;
	padding: 0 40px;
	gap: 16px;
}

nav ol li {
	display: inline-block;
}

nav ol li a {
	border-bottom: 1px solid #0E2C40;
	color: #0E2C40;
}

nav ol li a:hover {
	border-bottom: none;
}

nav ol li + li {
	position: relative;
	margin-left: 8px;
	padding-left: 16px;
}

nav ol li + li::before {
	display: inline-block;
	position: absolute;
	top: calc(50% - 4px);
	left: -4px;
	width: 8px;
	height: 8px;
	transform: rotate(135deg);
	border-top: 2px solid #4869BB;
	border-left: 2px solid #4869BB;
	content: "";
}

nav ol li:last-of-type {
	font-weight: bold;
}

footer {
	margin-top: 16px;
	padding: 8px 16px;
	background-color: #DDE8F2;
	font-weight: bold;
	font-size: 14px;
	font-family: "Roboto", sans-serif;
	text-align: center;
}

section.wp-works {
	position: relative;
}

section.wp-works::after {
	z-index: -10;
	position: absolute;
	right: 0;
	bottom: 56px;
	-webkit-text-stroke: 3px #DDE8F2;
	content: "WORKS";
	color: #fff;
	font-weight: 600;
	font-size: 120px;
	line-height: 1.2;
	font-family: "Roboto", sans-serif;
}

section.wp-works .hdg-l2.wp-works {
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

section.wp-works .hdg-l2.wp-works h2 {
	margin-right: 0;
}

section.wp-works-detail {
	background-image: url(/works/wp-content/themes/portfolio/assets/img/bg_works-detail_hero.webp);
	background-position: top;
	background-size: 100%;
	background-repeat: no-repeat;
}

section.wp-works-detail .hdg-l2 {
	margin: 64px 0 24px;
}

section.wp-works-detail > ul {
	margin: 0;
}

section.wp-works-detail > ul ul {
	margin: 8px 0 0 16px;
}

section.wp-works-detail > ul li + li {
	margin-top: 16px;
}

section.wp-works-detail > ul li {
	position: relative;
	padding-left: 16px;
	font-size: 16px;
}

section.wp-works-detail > ul li::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background-color: #4869BB;
	content: "";
}

section.wp-works-detail > ol {
	margin: 0;
	list-style-type: decimal;
}

section.wp-works-detail > ol ul {
	margin: 16px 0 0 16px;
}

section.wp-works-detail > ol li + li {
	margin-top: 16px;
}

section.wp-works-detail > ol li {
	font-size: 16px;
	list-style-position: inside;
}

section.wp-works-detail > ol li::marker {
	color: #4869BB;
	font-weight: bold;
	font-size: 18px;
}

section.wp-works-detail > ol li ul > li {
	position: relative;
	padding-left: 16px;
	font-size: 16px;
}

section.wp-works-detail > ol li ul > li::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background-color: #4869BB;
	content: "";
}

section.wp-works-detail .wp-block-button {
	box-sizing: border-box;
	position: relative;
	max-width: 400px;
	margin: auto;
	margin-top: 40px;
}

section.wp-works-detail .wp-block-button::before {
	display: block;
	z-index: -1;
	position: absolute;
	top: 0;
	width: 100%;
	max-width: 400px;
	height: 100%;
	border-radius: 100px;
	background: linear-gradient(90deg, #4869BB, #D7B2C8);
	content: "";
	transition: all 0.3s;
}

section.wp-works-detail .wp-block-button:hover::before {
	opacity: 0;
}

section.wp-works-detail .wp-block-button::after {
	z-index: -2;
	position: absolute;
	top: 0;
	width: 100%;
	max-width: 400px;
	height: 100%;
	border-radius: 100px;
	background: linear-gradient(90deg, #D7B2C8, #4869BB);
	content: "";
}

section.wp-works-detail .wp-block-button a {
	box-sizing: border-box;
	display: block;
	width: 100%;
	padding: 24px 60px 24px 40px;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}

section.wp-works-detail .wp-block-button a::before {
	position: absolute;
	top: calc(50% - 0.5px);
	right: 24px;
	width: 24px;
	height: 2px;
	border-top: 3px solid #fff;
	content: "";
	transition: all 0.3s;
}

section.wp-works-detail .wp-block-button a::after {
	position: absolute;
	top: calc(50% - 7px);
	right: 24px;
	width: 16px;
	height: 16px;
	transform: rotate(45deg);
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	content: "";
	transition: all 0.3s;
}

section.wp-works-detail .wp-block-button a:hover::before {
	right: 16px;
}

section.wp-works-detail .wp-block-button a:hover::after {
	right: 16px;
}

section.wp-works-detail .wp-block-columns {
	display: flex;
	column-gap: 40px;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-top: 40px;
}

section.wp-works-detail .wp-block-columns .wp-block-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

section.wp-works-detail .asis-tobe .wp-block-columns {
	display: grid;
	position: relative;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 96px;
}

section.wp-works-detail .asis-tobe .wp-block-columns::before {
	position: absolute;
	top: calc(50% - 2.5px);
	left: calc(50% - 40px);
	width: 80px;
	height: 5px;
	background: linear-gradient(-45deg, #4869BB, #D7B2C8);
	content: "";
}

section.wp-works-detail .asis-tobe .wp-block-columns::after {
	position: absolute;
	top: calc(50% - 15px);
	right: calc(50% - 40px);
	width: 30px;
	height: 30px;
	transform: rotate(45deg);
	border-top: 5px solid #4869BB;
	border-right: 5px solid #4869BB;
	content: "";
	transition: all 0.3s;
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow:first-of-type {
	margin-right: 16px;
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow:first-of-type .asis-tobe__item {
	position: relative;
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow:last-of-type {
	margin-left: 16px;
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow:last-of-type .asis-tobe__item .hdg-l4 {
	color: #4869BB;
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow .asis-tobe__item {
	text-align: center;
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow .asis-tobe__item .hdg-l4 {
	margin: 0 0 24px;
}

section.wp-works-detail * + p {
	margin-top: 24px;
}

section.wp-works-detail * + ul {
	margin-top: 24px;
}

section.wp-works-detail * + ol {
	margin-top: 24px;
}

section.wp-works-detail * + figure {
	margin-top: 24px;
}

section.wp-works-detail .wp-block-image > img {
	width: auto;
}

.wp-works-detail_hero {
	position: relative;
}

.wp-works-detail_hero::before {
	z-index: -10;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-text-stroke: 3px #DDE8F2;
	content: "WORKS";
	color: #fff;
	font-weight: 600;
	font-size: 120px;
	line-height: 1.2;
	font-family: "Roboto", sans-serif;
}

.wp-works-detail_hero .wp-works-detail__hdg-l1 {
	margin-bottom: 16px;
}

.wp-works-detail_hero .wp-works-detail__hdg-l1 p {
	color: #4869BB;
}

.wp-works-detail_hero .wp-works-detail__hdg-l2 {
	margin-bottom: 16px;
}

.wp-works-detail_hero .wp-works-detail__hdg-l2 p {
	color: #4869BB;
	font-weight: bold;
	font-size: 20px;
	font-family: "Roboto", sans-serif;
	letter-spacing: 6px;
}

.wp-works-detail_hero .wp-works-detail__hdg-l2 h2 {
	font-weight: bold;
	font-size: 40px;
	line-height: 1.4;
}

.wp-works-detail_hero a {
	display: inline-block;
	color: #4869BB;
	font-size: 18px;
	word-break: break-all;
	transition: all 0.3s;
}

.wp-works-detail_hero a:hover {
	opacity: 0.5;
}

.wp-works-detail_hero a > img {
	width: 18px;
	height: 18px;
	margin-left: 8px;
}

.wp-works-detail_hero ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 24px;
	gap: 8px;
}

.wp-works-detail_hero ul li {
	display: inline-block;
	padding: 8px 8px 10px;
	background-color: #DDE8F2;
	font-weight: bold;
	font-size: 14px;
}

.wp-works-detail_hero p {
	font-weight: bold;
	font-size: 18px;
	line-height: 1.6;
}

.wp-block-video {
	width: auto;
	height: 100%;
}

.wp-block-video video {
	width: 100%;
	height: auto;
}

.explain__list dl {
	grid-template-columns: 240px 1fr;
}

.wp-block-table {
	width: 100%;
}

.wp-block-table .has-fixed-layout {
	width: 100%;
	border: 2px solid #DDE8F2;
}

.wp-block-table .has-fixed-layout tr td {
	box-sizing: border-box;
	width: 33.3333%;
	padding: 16px;
	border-right: 2px solid #DDE8F2;
	border-bottom: 2px solid #DDE8F2;
}

.wp-block-table .has-fixed-layout tr td strong {
	color: #4869BB;
}

.wp-block-table .has-fixed-layout tr td:last-of-type {
	border-right: none;
}

.wp-block-table .has-fixed-layout tr:last-of-type td {
	border-bottom: none;
}

.has-text-align-center {
	text-align: center;
}

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

.col2 {
	display: block;
}

.col2__item + .col2__item {
	margin-top: 24px;
}

.col3 {
	display: block;
}

.col3__item + .col3__item {
	margin-top: 24px;
}

section:not(.wp-works-detail) .hdg-l2 {
	margin-bottom: 16px;
}

.hdg-l2 {
	display: block;
}

.hdg-l2 h2 {
	margin: 0 0 8px 0;
	font-size: 40px;
	line-height: 1;
}

.hdg-l4 {
	margin: 24px 0;
	font-size: 18px;
}

.issue-hdg {
	padding: 8px 8px 8px 0;
}

.issue-hdg h3 {
	font-size: 20px;
}

.issue-hdg {
	margin: 48px 0 40px;
	font-size: 20px;
}

.issue-hdg .issue-hdg__label {
	min-width: 80px;
	padding: 8px;
	text-align: center;
}

.issue-hdg .issue-hdg__label > span {
	display: block;
	margin-left: 0;
}

.solution-hdg h3 {
	font-size: 20px;
}

.solution-hdg {
	margin: 40px 0 24px;
}

.solution-hdg .solution-hdg__label {
	min-width: 88px;
	padding: 8px;
	text-align: center;
}

.solution-hdg .solution-hdg__label > span {
	display: block;
	margin-left: 0;
}

.btn a {
	padding: 16px 40px;
}

.btn__back a {
	padding: 16px 40px;
}

.list__item + .list__item {
	margin-top: 8px;
}

.explain__list dl {
	display: block;
}

.explain__list dl dt,
.explain__list dl dd {
	width: 100%;
	text-align: center;
}

.explain__list dl dt {
	margin: 0 0 16px 0;
}

.issue-solution__list {
	padding: 40px 0 0 0;
}

.issue-solution__list > dt {
	margin-bottom: 104px;
	padding: 48px 16px 24px;
	font-size: 20px;
}

.issue-solution__list > dt::before {
	bottom: -64px;
	height: 54px;
}

.issue-solution__list > dt::after {
	bottom: -64px;
}

.issue-solution__list > dt .issue__ttl {
	top: -24px;
	right: calc(50% - 42px);
	width: 84px;
	height: 84px;
}

.issue-solution__list > dt .issue__ttl > span {
	font-size: 24px;
}

.issue-solution__list > dd {
	padding: 48px 16px 24px;
	font-size: 20px;
}

.issue-solution__list > dd .solution__ttl {
	top: -24px;
	right: calc(50% - 42px);
	width: 84px;
	height: 84px;
}

.issue-solution__list > dd .solution__ttl > span {
	font-size: 24px;
}

section {
	padding: 24px 16px;
}

header {
	padding: 24px 16px;
}

.btn.wp-works a {
	padding: 16px 40px;
}

section.wp-works::after {
	font-size: 70px;
}

section.wp-works-detail .wp-block-button a {
	padding: 16px 40px;
}

section.wp-works-detail .wp-block-columns {
	display: block;
	column-gap: 0px;
	margin-top: 24px;
}

section.wp-works-detail .wp-block-columns .wp-block-column + .wp-block-column {
	margin: 24px 0 0 0;
}

section.wp-works-detail .asis-tobe .wp-block-columns {
	display: block;
}

section.wp-works-detail .asis-tobe .wp-block-columns::before {
	content: none;
}

section.wp-works-detail .asis-tobe .wp-block-columns::after {
	content: none;
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow:first-of-type {
	margin-right: 0;
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow:first-of-type .asis-tobe__item::before {
	position: absolute;
	bottom: -45px;
	left: calc(50% - 27px);
	width: 54px;
	height: 5px;
	transform: rotate(90deg);
	background: linear-gradient(-45deg, #4869BB, #D7B2C8);
	content: "";
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow:first-of-type .asis-tobe__item::after {
	position: absolute;
	right: calc(50% - 15px);
	bottom: -70px;
	width: 30px;
	height: 30px;
	transform: rotate(135deg);
	border-top: 5px solid #4869BB;
	border-right: 5px solid #4869BB;
	content: "";
	transition: all 0.3s;
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow:last-of-type {
	margin-left: 0;
}

section.wp-works-detail .asis-tobe .wp-block-columns .is-layout-flow:last-of-type .asis-tobe__item {
	margin-top: 64px;
}

section.wp-works-detail .wp-block-image > img {
	width: 100%;
}

.wp-works-detail_hero::before {
	bottom: -48px;
	font-size: 70px;
}

.wp-works-detail_hero .wp-works-detail__hdg-l2 h2 {
	font-size: 30px;
}

.wp-block-table {
	overflow: scroll;
}

.wp-block-table .has-fixed-layout {
	width: 500px;
	font-size: 14px;
}

}

