@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Castoro&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@500&family=Roboto:wght@700&display=swap");
/* reset
---------------------------------------- */
*,*::before,*::after {box-sizing: border-box;margin: 0;padding: 0;border: 0;vertical-align: baseline;background: transparent;font-weight: inherit;font-size: inherit;font-style: inherit;-webkit-tap-highlight-color: transparent;}
article,aside,details,figcaption,figure,picture,main,footer,header,hgroup,menu,nav,section {display: block;}
ul,ol {list-style: none;}
blockquote,q {quotes: none;}
blockquote::before,blockquote::after,q::before,q::after {content: none;}
table {border-collapse: collapse;border-spacing: 0;empty-cells: show;}
button {font-family: inherit;}

/* base
---------------------------------------- */
html {
	width: 100%;
	font-size: 62.5%;
	background-color: #fff;
}
html.locked {
	overflow: hidden;
}
body {
	font-size: 1.6rem;
	line-height: var(--line-height-xl);
	font-family: var(--font-sans);
	font-weight: 500;
	letter-spacing: 0;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
@media (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}
a {
	text-decoration: underline;
	color: var(--color-text-link);
}
img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
table {
	width: 100%;
	text-align: left;
	border: none;
	font-size: 1.4rem;
	line-height: var(--line-height-m);
}
@media (min-width: 768px) {
	table {
		font-size: 1.6rem;
	}
}
th, td {
	padding: 8px;
	border: 1px solid var(--color-border);
	vertical-align: top;
}
@media (min-width: 768px) {
	th, td {
		padding: 16px 24px;
	}
}
sup {
	font-size: 70%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
input[type=text],
textarea,
select {
	font-family: inherit;
	font-size: 1.6rem;
}
.l-section {
	width: 100%;
	max-width: calc(1200px + 12vw);
	margin-left: auto;
	margin-right: auto;
	padding-left: 5.3vw;
	padding-right: 5.3vw;
}
@media (min-width: 768px) {
	.l-section {
		padding-left: 6vw;
		padding-right: 6vw;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.l-section {
		padding-left: 7vw;
		padding-right: 7vw;
	}
}

/* vars */
:root,
::before, ::after {
	/* color */
	--color-prim: #003C8A;
	--color-seco: #61ADFF;
	--color-border: #C2C9CB;
	--color-bg: #ECF5FF;
	--color-caution: #E62E5C;
	--color-text: #222;
	--color-text_2: #333;
	--color-text_3: #2C394E;
	--color-text-caption: #707783;
	/* font family */
	--font-sans: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", Meiryo, sans-serif;
	--font-serif: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--font-castoro: "Castoro", "Noto Serif JP", serif;
	/* line height */
	--line-height-s: 1.4;
	--line-height-m: 1.6;
	--line-height-l: 1.8;
	--line-height-xl: 2;
}

/* utility */
@media (max-width: 767px) {
	.u-pc-v {display: none !important;}
}
@media (min-width: 768px) {
	.u-sp-v {display: none !important;}
}
.font-roboto {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}

/* margin */
.u-mt-xs {margin-top: 10px !important;}
.u-mt-s {margin-top: 20px !important;}
.u-mt-m {margin-top: 30px !important;}
.u-mt-l {margin-top: 50px !important;}
.u-mt-xl {margin-top: 60px !important;}
.u-mt-xxl {margin-top: 80px !important;}
@media (min-width: 768px) {
	.u-mt-xs {margin-top: 20px !important;}
	.u-mt-s {margin-top: 30px !important;}
	.u-mt-m {margin-top: 40px !important;}
	.u-mt-l {margin-top: 60px !important;}
	.u-mt-xl {margin-top: 80px !important;}
	.u-mt-xxl {margin-top: 120px !important;}
}

.p-pos_anchor {
	position: relative;
}
.p-pos_anchor > span {
	position: absolute;
	top: -70px;
}
@media (min-width: 768px), print {
	.p-pos_anchor > span {
		top: -100px;
	}
}

/* conponents 
---------------------------------------- */
.c-heading-secondary {
	padding-bottom: 20px;
	position: relative;
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: 2.4rem;
	line-height: var(--line-height-m);
	color: var(--color-text);
}
.c-heading-secondary::after {
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--color-text);
}
.c-heading-secondary + * {
	margin-top: 0 !important;
}
@media (min-width: 768px) {
	.c-heading-secondary {
		padding-bottom: 30px;
		font-size: 3.2rem;
	}
	.c-heading-secondary::after {
		width: 100px;
	}
}

/*----------
	heading-tertiary
----------*/
.c-heading-tertiary {
	position: relative;
	padding: 15px 20px;
	color: var(--color-text);
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: 2rem;
	line-height: var(--line-height-m);
}
.c-heading-tertiary::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background-color: var(--color-text);
}
.c-heading-tertiary + * {
	margin-top: 0 !important;
}
@media (min-width: 768px) {
	.c-heading-tertiary {
		font-size: 2.8rem;
		padding: 20px 40px;
	}
}


/*----------
	button
----------*/
.c-button__inner {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 56px;
	border: 1px solid var(--color-prim);
	border-radius: 100px;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	text-decoration: none;
	color: var(--color-text);
	cursor: pointer;
}
.c-button__inner > span {
	padding: 12px 42px;
	text-align: center;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: var(--line-height-s);
	color: inherit;
}
.c-button__inner::after {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: "\ea05";
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 50%;
	right: 12px;
	font-size: 32px;
	transform: translateY(-50%);
}
@media (min-width: 768px) {
	.c-button__inner {
		min-height: 72px;
		border-radius: 36px;
	}
	.c-button__inner > span {
		padding: 16px 54px;
	}
	.c-button__inner::after {
		width: 40px;
		height: 40px;
		right: 16px;
		font-size: 40px;
	}
}
@media (hover: hover) {
	.c-button__inner {
		transition-property: border-color, background-color, color;
		transition-duration: 0.2s;
		transition-timing-function: linear;
	}
	.c-button__inner:hover {
		border-color: var(--color-seco);
		background-color: var(--color-seco);
		color: #fff;
	}
}
/*----------
	button container
----------*/
.g-button-container {
	margin: 0 auto;
}
.g-button-container__item {
	max-width: 450px;
}
@media (max-width: 767px) {
	.g-button-container__item {
		margin-left: auto;
		margin-right: auto;
	}
	.g-button-container__item + .g-button-container__item {
		margin-top: 20px;
	}
	.g-button-container--left .g-button-container__item {
		margin-left: 0;
		margin-right: auto;
	}
	.g-button-container--right .g-button-container__item {
		margin-left: auto;
		margin-right: 0;
	}
}
@media (min-width: 768px) {
	.g-button-container {
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: stretch;
		gap: 40px 40px;
		column-gap: 40px;
	}
	.g-button-container__item {
		flex: 1 1 450px;
	}
	.g-button-container--3up, .g-button-container--4up {
		grid-template-columns: repeat(2, 1fr);
	}
	.g-button-container--2up {
		justify-content: center;
	}
	.g-button-container--3up, .g-button-container--4up {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

/*----------
	grid
----------*/
.g-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 40px 15px;
}
@media (max-width: 767px) {
	.g-grid--sp2up {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 768px) {
	.g-grid {
		display: grid;
		gap: 40px;
	}
	.g-grid--2up, .g-grid--3up, .g-grid--4up {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.g-grid {
		gap: 46px;
	}
	.g-grid--3up {
		grid-template-columns: repeat(3, 1fr);
	}
	.g-grid--4up {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (min-width: 1280px) {
	.g-grid {
		gap: 48px;
	}
}
@media (min-width: 1440px) {
	.g-grid {
		gap: 60px;
	}
}


/* override
---------------------------------------- */

/* h2 */
.c-heading-secondary {
	position: relative;
	margin: 0;
    padding-bottom: 0;
	color: var(--color-text_3);
    font-size: 2.4rem;
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: var(--line-height-s);
}
.c-heading-secondary::after {display: none;}
.l-default-margin > .c-heading-secondary {
    margin-top: 0;
}
@media (min-width: 768px) {
	.c-heading-secondary {
		font-size: 2.8rem;
	}
}

/* h3 */
.c-heading-tertiary {
	margin-bottom: 30px;
	padding-bottom: 24px;
	color: var(--color-text_3);
	font-family: var(--font-sans);
	font-size: 2rem;
	font-weight: 700;
	line-height: var(--line-height-s);
	text-align: center;
}
.c-heading-tertiary span {
	display: block;
	padding-bottom: 10px;
	color: var(--color-caution);
	font-size: 1.6rem;
	letter-spacing: 0.04em;
}
.c-heading-tertiary::before,.c-heading-tertiary::after {
	content: '';
	position: absolute;
	top: auto;
	bottom: 0;
	display: block;
	width: 8px;
	height: 8px;
}
.c-heading-tertiary::before {
	left: 50%;
	margin-left: -11px;
	background-color: var(--color-prim);
}
.c-heading-tertiary::after {
	left: auto;
	right: 50%;
	margin-right: -11px;
	background-color: #E32051;
}
@media (min-width: 768px) {
	.c-heading-tertiary {
		margin-bottom: 60px;
		padding-bottom: 34px;
		font-size: 4rem;
	}
	.c-heading-tertiary span {
		font-size: 2rem;
	}
	.c-heading-tertiary::before,.c-heading-tertiary::after {
		width: 10px;
		height: 10px;
	}
	.c-heading-tertiary::before {
		margin-left: -14px;
	}
	.c-heading-tertiary::after {
		margin-right: -14px;
	}
}


.c-list--dot > li {
	position: relative;
	padding-left: 20px;
	color: var(--color-text_2);
	font-weight: 400;
    text-indent: 0;
	line-height: var(--line-height-m);
}
.c-list--dot > li::before {
    content: '';
	position: absolute;
	top: 7px;
	left: 0;
	display: block;
	width: 10px;
	height: 10px;
    margin-right: 0;
    background-color: #61ADFF;
}
.c-list > li + li {
    margin-top: 15px;
}

/* お問い合わせボタン */
.c-button.tocontact {    
}
.c-button.tocontact .c-button__inner {
	position: relative;
	border: 1px solid #E32051;
	border-radius: 5px;
	background-color: #E32051;
	color: #fff;
}
.c-button.tocontact .c-button__inner > span {
    font-weight: 600;
    font-size: 1.8rem;
 }
.c-button.tocontact .c-button__inner::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	width: 30px;
	height: 22px;
	background-image: url(/lp/bpo_01/images/icon_mail.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	transform: translateY(-50%);
}
@media (min-width: 768px) {
	.c-button.tocontact .c-button__inner:hover {
		border-color: #FF668C;
		background-color: #FF668C;
	}
	.c-button.tocontact .c-button__inner > span {
		font-size: 2rem;
	}
	.c-button.tocontact .c-button__inner::after {
		left: 25px;
		width: 36px;
		height: 26px;
	}
}


/* ポイントパーツ */
.c-point__icon {
	color: var(--color-prim);
	text-align: center;
}
.c-point__icon .c-point__icon-inner {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 15px;
}
.c-point__icon .c-point__icon-inner::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	width: 40px;
	height: 4px;
	background-color: #61ADFF;
	transform: translateX(-50%);
}
.c-point__icon .c-point__icon-inner > span {
	display: block;
}
.c-point__icon-title {
	font-size: 2rem;
}
.c-point__icon-num {
	margin-top: -5px;
	font-size: 4rem;
	line-height: 1;
}
.c-point__image {
	text-align: center;
}
.c-point__image img {
	width: 100%;
	max-width: 270px;
}


.l-main {
	padding-top: 70px;
    padding-bottom: 0;
}
.l-section {
	padding-top: 50px;
	padding-bottom: 50px;
}
@media (max-width: 767px) {
	.l-section {
		width: 100%;
	}
}
@media (min-width: 768px) {
	.l-main {
		padding-top: 100px;
	}
}

/* 背景 100vw */
.bg-bl,
.bg-lb,
.bg-gr {
	position: relative;
	z-index: 2;
}
.bg-bl::before,
.bg-lb::before,
.bg-gr::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 100vw;
	height: 100%;
	transform: translateX(-50%);
	z-index: -1;
}
.bg-bl::before {background-color: #D0EAFD;}
.bg-lb::before {background-color: #EAF0F7;}
.bg-gr::before {background-color: #BFDEFF;}

/* header */
#mainheader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
}
.l-mainheader {
	position: relative;
	height: 70px;
	background-color: #fff;
}
.l-mainheader__logo {
	position: absolute;
	top: 15px;
	left: 20px;
	width: 114px;
	height: 40px;
	background-image: url(/lp/bpo_01/images/logo.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0 0;
}
.l-mainheader__logo a {
	display: block;
	width: 100%;
	height: 100%;
}
.l-mainheader__logo span {
	display: none;
}
.l-mainheader__logo + p {
	position: absolute;
	top: 75px;
	left: 3vw;
	color: #808080;
	font-size: 1rem;
	z-index: 3;
}
@media (max-width: 767px) {
	.l-mainheader {
	    padding-left: 5.3vw;
	    padding-right: 5.3vw;
	}
	.l-mainheader__logo + p {
		display: none;
		top: 62px;
		left: 5vw;
	}
	.l-mainheader_nav {
		display: none;
	}
	.l-mainheader__button.tocontact {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		width: 70px;
		height: 70px;
	}
	.l-mainheader__button.tocontact .c-button__inner {
		border-radius: 0;
	}
	.l-mainheader__button.tocontact .c-button__inner::after {
		left: 18px;
		width: 32px;
		height: 24px;
	}
	.l-mainheader__button.tocontact .c-button__inner > span {
		display: none;
	}
	.l-mainheader__navtoggle {
		position: absolute;
		top: 0;
		right: 70px;
		width: 70px;
		height: 70px;
		background-color: var(--color-prim);
		background-image: url(/lp/bpo_01/images/icon_menu.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 30px auto;
		cursor: pointer;
	}
	.l-mainheader__navtoggle span {
		display: none;
	}
	.l-mainheader__navtoggle.is-open {
		background-image: url(/lp/bpo_01/images/icon_close.png);
	}
	.l-mainheader__navtoggle.is-open + .l-mainheader_nav {
		position: absolute;
		top: 70px;
		left: 0;
		display: block;
		width: 100vw;
		background-color: #fff;
	}
	.l-mainheader_nav ul {
		border-top: 1px solid var(--color-border);
	}
	.l-mainheader_nav ul > li + li {
		border-top: 1px solid var(--color-border);
	}
	.l-mainheader_nav ul > li a {
		position: relative;
		display: block;
		padding: 10px 20px;
		color: var(--color-prim);
		font-size: 1.6rem;
		text-decoration: none;
	}
	.l-mainheader_nav ul > li a::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 15px;
		display: block;
		width: 16px;
		height: 16px;
		margin-top: 3px;
		background-image: url(/lp/bpo_01/images/arrow_btm02.png);
		background-position: 0 0;
		background-repeat: no-repeat;
		background-size: 100% auto;
		transform: translateY(-50%);
	}
	
}
@media (min-width: 768px) {
	.l-mainheader {
		height: 100px;
	}
	.l-mainheader__inner {
		height: 100px;
		padding-top: 30px;
		padding-right: 220px;
		padding-left: 210px;
        
	}
	.l-mainheader__logo {
        width: 146px;
        height: 51px;
        top: 18px;
		left: 3vw;
    }
	.l-mainheader__navtoggle {display: none;}
	.l-mainheader__button.tocontact {
		position: absolute;
		top: 26px;
		right: 40px;
		display: block;
		width: 170px;
		height: 47px;
	}
	.l-mainheader__button.tocontact .c-button__inner {
		min-height: auto;
	}
	.l-mainheader__button.tocontact .c-button__inner::after {
		display: none;
	}
	.l-mainheader__button.tocontact .c-button__inner > span {
		padding: 10px 20px;
        font-size: 1.5rem;
    }
	.l-mainheader_nav {
		width: 100%;
	}
	.l-mainheader_nav > ul {
		display: flex;
		justify-content: flex-end;
		width: 100%;		
	}
	.l-mainheader_nav > ul li a {
		padding: 5px 1.4vw;
		font-size: 1.4rem;
		font-weight: 600;
		text-decoration: none;
	}
	.l-mainheader_nav > ul li a:hover {
		color: var(--color-prim);
	}
}
@media (min-width: 768px) and (max-width: 989px) {
	.l-mainheader__inner {
        padding-right: 160px;
		padding-left: 150px;
	}
	.l-mainheader__logo {
        width: 120px;
	}
	.l-mainheader_nav > ul li a {
        padding: 5px 1.3vw;
		font-size: 1.2rem;
	}
	.l-mainheader__button.tocontact {
		right: 20px;
        width: 135px;
	}
}

/* footer */
.l-mainfooter {
	position: relative;
	width: 100%;
    max-width: calc(1200px + 12vw);
    margin-left: auto;
    margin-right: auto;
    padding-left: 5.3vw;
    padding-right: 5.3vw;
	background-image: none;
}
.l-mainfooter::before {
	display: none;
}
.l-mainfooter__inner {
	padding-top: 0;
	padding-bottom: 0;
}
.l-mainfooter__inner .l-mainfooter__logoarea a {
	color: var(--color-text_2);
	font-size: 1.2rem;
	font-weight: 400;
	text-decoration: none;
}
.l-mainfooter__logo {
	width: 143px;
	height: 50px;
}
.l-mainfooter__logo > a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.l-mainfooter__logo > a::before, .l-mainfooter__logo > a::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    background: url(/assets/images/logo-pnx.svg) no-repeat center / contain;
    transition: opacity 0.2s linear;
}
.l-mainfooter__logo > a::after {
    z-index: 1;
    opacity: 0;
    background-image: url(/assets/images/logo-pnx-white.svg);
}
.l-mainfooter__logo > a span {
	display: none;
}
.l-mainfooter__linkarea > a[target="_blank"] {
	position: relative;
	padding-right: 25px;
}
.l-mainfooter__linkarea > a[target="_blank"]::before {
	content: '';
	position: absolute;
	top: -2px;
	right: 0;
	display: block;
	width: 18px;
	height: 21px;
	background-image: url(/lp/bpo_01/images/icon_blank.png);
	background-position: 0 0;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
.l-mainfooter__copyright {
	margin-top: 20px;
	color: var(--color-text_2);
	font-weight: 400;
}
.l-mainfooter__copyright > span {
	transform: translateY(0);
}
.l-mainfooter__backhead {
	box-sizing: content-box;
	position: absolute;
	top: -35px;
	right: 30px;
	width: 70px;
	height: 70px;
	padding-bottom: 0;
	border-radius: 70px;
	border: 2px solid #fff;
	background-color: #60ADFF;
	z-index: 2;
}
.l-mainfooter__backhead__inner {
	width: 70px;
	height: 70px;
	padding-right: 0;
	padding-left: 0;
}
.l-mainfooter__backhead__inner > button {
	position: relative;
	width: 100%;
	height: 100%;
	border: 0;
	cursor: pointer;
}
.l-mainfooter__backhead__inner > button:hover {
	background-color: transparent;
}
.l-mainfooter__backhead__inner > button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 20px;
	height: 13px;
	background-image: url(/lp/bpo_01/images/arrow_tp01.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
	.l-mainfooter {
		padding-top: 60px;
		padding-bottom: 30px;
	}
	.l-mainfooter__logoarea {
		position: relative;
		min-height: 80px;
		text-align: center;
	}
	.l-mainfooter__logoarea .l-mainfooter__logo {
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 114px;
		height: 40px;
		transform: translateX(-50%);
	}
	.l-mainfooter__inner .l-mainfooter__copyright {
		text-align: center;
		font-size: 1rem;
	}
	.l-mainfooter__backhead {
		top: -30px;
		right: 20px;
		width: 60px;
		height: 60px;
		border-radius: 60px;
	}
	.l-mainfooter__backhead__inner {
		width: 60px;
		height: 60px;
	}
}
@media (min-width: 768px) {
	.l-mainfooter {
		height: 160px;
		margin-top: -15px;
		padding-left: 6vw;
        padding-right: 6vw;
	}
	.l-mainfooter__inner {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 150px;
	}
	.l-mainfooter__inner .l-mainfooter__logoarea {
		width: 60%;
	}
	.l-mainfooter__inner .l-mainfooter__copyright {
		width: 40%;
		font-size: 1rem;
		text-align: right;
	}
	.l-mainfooter__inner .l-mainfooter__logoarea {
		padding-left: 180px;
	}
	.l-mainfooter__inner .l-mainfooter__logoarea .l-mainfooter__logo {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
}

/* モーダル */
.modal-portfolio {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.69);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s linear, visibility 0.2s;
	z-index: 150;
}
.modal-portfolio__closelayer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.modal-portfolio__inner {
	position: relative;
	width: 90%;
	max-width: 1200px;
	z-index: 1;
}
.modal-portfolio__close {
	position: absolute;
    top: -45px;
    right: 0;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
    z-index: 3;
}
.modal-portfolio__close::before {
    content: "×";
    position: absolute;
    top: -1px;
    left: -30px;
    font-size: 2.2rem;
}
.modal-portfolio__content {
	display: none;
	width: 100%;
	height: 0;
	-webkit-overflow-scrolling: auto;
	overflow-scrolling: auto;
	pointer-events: none;
}
.modal-portfolio__content.is-show {
	display: block;
	height: auto;
	max-height: 75vh;
	pointer-events: all;
}
.modal-portfolio.is-show {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}


/* page layout
---------------------------------------- */
.l-content {
	overflow-x: hidden;
}

/* MV */
.p-cts_mvarea h1 {
	opacity: 0;
	pointer-events: none;
}
@media (max-width: 767px) {
	.p-cts_mvarea {
		padding-top: 20px;
		padding-bottom: 43px;
		background-image: url(/lp/bpo_01/images/bg_kv.png);
		background-position: center top;
		background-size: cover;
		background-repeat: repeat;
	}
	.p-cts_mvarea__image-sp {display: inline-block;}
	.p-cts_mvarea__image-pc {display: none;}
	.p-cts_mvarea__image {
		text-align: center;
	}
	.p-cts_mvarea__image img {
		width: 100%;
		max-width: 362px;
	}
}
@media (min-width: 768px) {
	.p-cts_mvarea {
		padding-top: 20px;
		padding-bottom: 45px;
		background-image: url(/lp/bpo_01/images/bg_kv.png);
		background-position: center top;
		background-size: cover;
		background-repeat: repeat;
	}
	.p-cts_mvarea__image-sp {display: none;}
	.p-cts_mvarea__image-pc {display: inline-block;}
	.p-cts_mvarea__image {
		padding-right: 20px;
		padding-left: 20px;
		text-align: center;
	}
	.p-cts_mvarea__image img {
		width: 100%;
		max-width: 1070px;
	}
}


/* バナーエリア */
.p-cts_bannerarea {
	position: relative;
	height: 78px;
	margin: 15px 0 0;
}
.p-cts_bannerarea__inner {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	transform: translateX(0);
	animation: infinity-scroll-left 44s linear 0.5s infinite;
	opacity: 0;
}
.p-cts_bannerarea__inner:hover {
  animation-play-state: paused;
}
.p-cts_bannerarea .g-grid {
	display: flex;
	gap: 0;
	float: left;
}
.p-cts_bannerarea .g-grid:after {
  content: "";
  display: block;
}
.p-cts_bannerarea .g-grid .g-grid__item {
	width: 170px;
	padding: 0 10px;
}
.p-cts_bannerarea .g-grid .g-grid__item img {
	width: 100%;
	min-width: 150px;
}
@keyframes infinity-scroll-left {
	0% {transform: translateX(0); opacity: 0;}
	0.8% {opacity: 1;}
	95%  {opacity: 1;}
	98%  {opacity: 0;}
	100% {transform: translateX(-50%); opacity: 0;}
}

@media (max-width: 767px) {
	.p-cts_bannerarea {
		height: 62px;
		padding-bottom: 10px;
	}
	.p-cts_bannerarea .g-grid .g-grid__item {
		width: 135px;
		padding: 0 5px;
	}
	.p-cts_bannerarea .g-grid .g-grid__item img {
		min-width: 125px;
	}
}


/* お困りではありませんか？ */
.p-cts_introuble {
	background-image: url(/lp/bpo_01/images/arrow_btm01.png);
	background-position: center bottom;
	background-size: 60px auto;
	background-repeat: no-repeat;
}
.p-cts_introuble .c-heading-secondary {
	margin-bottom: 30px;
	text-align: center;
}
.p-cts_introuble .c-heading-secondary span {
	position: relative;
}
.p-cts_introuble .c-heading-secondary span::before {
	content: '';
	position: absolute;
	top: -4px;
	right: -9px;
	display: block;
	width: 20px;
	height: 15px;
	background-image: url(/lp/bpo_01/images/icon_sweat.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0;
}
.p-cts_introuble .g-grid {
	overflow: hidden;
	gap: 2px 2px;
	border-radius: 10px;
	line-height: var(--line-height-s);
}
.p-cts_introuble .g-grid__item {
	padding: 10px 10px;
	background-color: #ECF5FF;
}
.p-cts_introuble .p-introuble_img {
	padding: 20px 0 10px;
	background-image: url(/lp/bpo_01/images/bg_introuble.png);
	background-repeat: no-repeat;
	background-position: center 10px;
	background-size: 100px auto;
	text-align: center;
}
.p-cts_introuble .p-introuble_img img {
	width: 100%;
	max-width: 60px;
}
.p-cts_introuble .p-introuble_txt {
	font-size: 1.2rem;
	text-align: center;
}
.p-cts_introuble .p-introuble_txt > b {
	color: var(--color-prim);
	font-weight: bold;
}
@media (max-width: 767px) {
	.p-cts_introuble {
		padding-bottom: 76px;
	}
	.p-cts_introuble .g-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.p-cts_introuble .g-grid__item:last-child {
		width: calc(200% + 2px);
	}
}
@media (min-width: 768px) {
	.p-cts_introuble {
		padding-bottom: 115px;
	}
	.p-cts_introuble .g-grid {
		grid-template-columns: repeat(5, 1fr);
	}
	.p-cts_introuble .g-grid__item {
		padding: 20px 10px 15px;
	}
	.p-cts_introuble .g-grid .g-grid__item:nth-child(1) img {max-width: 84px;}
	.p-cts_introuble .g-grid .g-grid__item:nth-child(2) img {max-width: 71px;}
	.p-cts_introuble .g-grid .g-grid__item:nth-child(3) img {max-width: 63px;}
	.p-cts_introuble .g-grid .g-grid__item:nth-child(4) img {max-width: 70px;}
	.p-cts_introuble .g-grid .g-grid__item:nth-child(5) img {max-width: 69px;}
	.p-cts_introuble .p-introuble_img {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 110px;
		padding: 0;
	}
	.p-cts_introuble .p-introuble_txt {
		margin-top: 10px;
		font-size: 1.6rem;
		line-height: var(--line-height-m);
	}
}


/* 決算・開示アウトソーシングサービスで課題を解決！ */
.p-cts_solveproblems {
}
.p-cts_solveproblems .l-section__inner {
	padding: 45px 20px 0;
	border-radius: 10px 10px;
	background-color: #fff;
}
.p-cts_solveproblems .l-section__inner::before {
	content: '';
	position: absolute;
	top: -60px;
	left: -10px;
	display: block;
	width: 80px;
	height: 100px;
	background-image: url(/lp/bpo_01/images/img_contact01.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% auto;
}
.p-cts_solveproblems .p-cts_solveproblems_btnarea {
	width: calc(100% + 40px);
	margin-top: 40px;
	margin-left: -20px;
	padding: 30px 20px 30px;
	border-radius: 0 10px;
	background-color: #ECF5FF;
}
.p-cts_solveproblems .p-cts_solveproblems_btnarea .c-text {
	font-size: 1rem;
	text-align: center;
}
.p-cts_solveproblems .p-cts_solveproblems_btnarea .g-button-container + .c-text {
	margin-top: 15px;
	font-weight: 400;
}

.p-cts_solveproblems .c-heading-secondary {
	font-size: 2rem;
	text-align: center;
}
.p-cts_solveproblems .c-heading-secondary span {
	position: relative;
	display: inline-block;
	color: var(--color-prim);
	font-size: 3.2rem;
}
.p-cts_solveproblems .c-heading-secondary span::before {
	content: '';
	position: absolute;
	top: 5px;
	right: -40px;
	display: block;
	width: 33px;
	height: 34px;
	background-image: url(/lp/bpo_01/images/icon_check.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.c-point__text {
	color: var(--color-prim);
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
}
.wrp_voice {
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid #D0DFF5;
}

@media (max-width: 767px) {
	.p-cts_solveproblems::before {
		top: 137px;
	}
	.p-cts_solveproblems .l-section__inner {
		position: relative;
	}
	.p-cts_solveproblems .c-heading-secondary {
		margin-bottom: 30px;
	}
	.c-point__item + .c-point__item {
		margin-top: 40px;
	}
}
@media (min-width: 768px) {
	.p-cts_solveproblems {
		margin-top: 75px;
		padding-bottom: 70px;
	}
	.p-cts_solveproblems.bg-bl::before {
		top: 126px;
	}
	.p-cts_solveproblems .l-section__inner {
		padding: 45px 40px 0;
		border-radius: 20px;
	}
	.p-cts_solveproblems .l-section__inner::before {
		top: 54px;
        left: 50%;
		width: 144px;
		height: 180px;
		margin-left: -400px;
	}
	.p-cts_solveproblems .c-heading-secondary {
		margin-bottom: 60px;
		font-size: 2.8rem;
	}
	.p-cts_solveproblems .c-heading-secondary span {
		font-size: 4.8rem;
	}
	.p-cts_solveproblems .c-heading-secondary span::before {
		top: 10px;
		right: -50px;
		width: 47px;
		height: 50px;
	}
	.c-point {
		display: flex;
		flex-wrap: wrap;
		gap: 95px 5%;
		width: 100%;
		max-width: 1040px;
		margin-right: auto;
		margin-left: auto;
	}
	.c-point .c-point__item {
		width: calc(33.33% - 5%);
	}
	.c-point .c-point__item:nth-child(3n) {
		width: calc(33.34% - 5%);
	}
	.c-point .c-point__image {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 169px;
	}
	.c-list--dot > li {
		font-size: 1.4rem;
	}
	.p-cts_solveproblems .p-cts_solveproblems_btnarea {
		width: calc(100% + 80px);
		margin-top: 40px;
		margin-left: -40px;
		padding: 45px 40px 35px;
		border-radius: 0 0 20px 20px;
	}
	.p-cts_solveproblems .p-cts_solveproblems_btnarea .c-text {
		font-size: 1.6rem;
	}
}


/* お客様の声 */
.p-cts_voice {
	position: relative;
	padding-top: 50px;
	padding-bottom: 25px;
	z-index: 2;
}
.p-cts_voice::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 100vw;
	height: 100%;
	background-color: #fff;
	transform: translateX(-50%);
	z-index: -1;
}
.p-cts_voice a {
	display: block;
	text-decoration: none;
}
.wrp_voice_img {
	background-color: #ECF5FF;
}
.wrp_voice_img_txt {
	padding: 10px 20px;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: var(--line-height-m);
}
.wrp_voice_img_txt .wrp_voice_ttl {
	font-size: 1.8rem;
	font-weight: 700;
}
.wrp_voice_img_txt .wrp_voice_ttl + .wrp_voice_txt {
	margin-top: 20px;
}
.wrp_voice_dtl {
	display: flex;
	width: 100%;
	gap: 0 20px;
	padding: 30px 30px;
}
.wrp_voice_dtl .wrp_voice_dtl_inner {
	width: 50%;
	padding-left: 15px;
}
.wrp_voice_dtl .wrp_voice_dtl_inner:nth-child(odd) {
	border-left: 2px solid #003C8A;
}
.wrp_voice_dtl .wrp_voice_dtl_inner:nth-child(odd) .wrp_voice_sttl {
	color: var(--color-prim);
}
.wrp_voice_dtl .wrp_voice_dtl_inner:nth-child(even) {
	border-left: 2px solid #E62E5C;
}
.wrp_voice_dtl .wrp_voice_dtl_inner:nth-child(even) .wrp_voice_sttl {
	color: #E62E5C;
}
.wrp_voice_dtl .wrp_voice_dtl_inner .wrp_voice_sttl {
	font-size: 1.5rem;
	font-weight: 600;
}
.wrp_voice_dtl .c-list > li {
	position: relative;
	padding-left: 1em;
	font-size: 1.3rem;
}
.wrp_voice_dtl .c-list > li::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	display: block;
	width: 3px;
	height: 3px;
	border-radius: 3px;
	background-color: #222;
}
.wrp_voice_dtl .c-list > li + li {
	margin-top: 2px;
}
.wrp_voice_link > p {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	border-top: 1px solid #D0DFF5;
	text-decoration: none;
}
.wrp_voice_link > p > span {
	padding-right: 20px;
	background-image: url(/lp/bpo_01/images/arrow_right01.png);
	background-repeat: no-repeat;
	background-size: 16px auto;
	background-position: 100% center;
	color: #003C8A;
	font-size: 14px;
	font-weight: 600;
}

@media (max-width: 767px) {
	.p-cts_voice {
		padding-right: 0;
		padding-left: 0;
	}
	.voice-list {
		display: block;
	}
	.voice-list .g-grid__item + .g-grid__item {
		margin-top: 30px;
	}
	.wrp_voice_img_txt,
	.wrp_voice_dtl {
		padding: 20px 20px;
	}
	.p-cts_voice .l-section__inner {
		padding-left: 5.3vw;
    	padding-right: 5.3vw;
	}
}
@media (min-width: 768px) {
	.p-cts_voice {
		padding-top: 100px;
	}
	.p-cts_voice a .wrp_voice_link > p > span {
		transition: color 0.2s linear;
	}
	.p-cts_voice a:hover .wrp_voice_link > p > span {
		color: #1A72D3;
		text-decoration: underline;
	}
	.p-cts_voice .c-heading-tertiary {
		margin-top: 0;
		padding-bottom: 35px;
		font-size: 4rem;
	}
}
@media (min-width: 920px) {
	.voice-list {
		display: flex;
		gap: 0 2.6vw;
	}
	.voice-list .g-grid__item {
		flex: 1;
	}
	.wrp_voice_img {
		display: flex;
		align-items: center;
	}
	.wrp_voice_img_img,
	.wrp_voice_img_txt {
		width: 50%;
	}
	
}
@media (min-width: 921px) and (max-width: 1110px) {
	.wrp_voice_img_txt .wrp_voice_ttl {
		font-size: 1.4rem;
	}
	.wrp_voice_img_txt .wrp_voice_ttl + .wrp_voice_txt {
		margin-top: 10px;
		font-size: 1.1rem;
	}
}


/* プロネクサスの決算開示支援と他社様のサービスとの違い */
.p-cts_difference .l-section__inner {
	border-radius: 10px;
	background-color: #ECF5FF;
}
.p-cts_difference .c-heading-secondary {
	margin-bottom: 30px;
	text-align: center;
}
.c-table__content {
	width: 100%;
	text-align: left;
	border: none;
	font-size: 1.6rem;
	line-height: var(--line-height-m);
}
/* 角R */
.c-table__content tr:first-child .c-table__subheader {border-radius: 20px 0 0 0;}
.c-table__content tr:last-child .c-table__subheader {border-radius: 0 0 0 20px;}
.c-table__content .c-table__narrow-header:last-child  {border-radius: 20px 20px 0 0;}
.c-table__content tr:last-child .c-table__cell {
	position: relative;
	border-radius: 0 0 20px 0;
}
.c-table__content tr:last-child .c-table__cell.c-table__cell--bl::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: -2px;
	display: block;
	width: calc(100% + 4px);
	height: 50px;
	border-radius: 0 0 20px 20px;
	border-right: 2px solid #003C8A;
	border-bottom: 2px solid #003C8A;
	border-left: 2px solid #003C8A;
	background-color: #fff;
}
.c-table__narrow-header.c-table__narrow-header--bl {
	position: relative;
	line-height: 1;
}
.c-table__narrow-header.c-table__narrow-header--bl > span {
	margin-top: -18px;
	display: block;
}
.c-table__narrow-header.c-table__narrow-header--bl::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	display: block;
	width: 100%;
	height: 22px;
	border-radius: 20px 20px 0 0;
	background-color: var(--color-prim);
}

.c-table__layouter--for-pc {display: none;}
.c-table__layouter--for-sp {display: table-column-group;}
.c-table__header {
	vertical-align: middle;
	padding: 28px 10px;
	font-weight: 700;
	text-align: center;
	color: #fff;
}
.c-table__header:empty {
	background: none;
}
.c-table__narrow-header {
	padding: 8px 10px;
	border: 0;
	background-color: #1A72D3;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
}
.c-table__narrow-header > span {
	display: inline-block;
}
.c-table__narrow-header:empty {
	background: none;
	border: none;
}
.c-table__narrow-header--bl {
	background-color: var(--color-prim);
	font-size: 2.1rem;
}
.c-table__subheader {
	position: relative;
	vertical-align: middle;
	padding: 28px 10px;
	border: 0;
	background-color: #C4E0F5;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}
.c-table__subheader::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	width: calc(100% - 50px);
	height: 1px;
	background-color: #fff;
	transform: translateX(-50%);
}
.c-table__content tr:last-child .c-table__subheader::before {display: none;}
.c-table__subheader:empty {
	background: none;
	border: none;
}
.c-table__cell {
	position: relative;
	padding: 28px 24px;
	border: 0;
	background-color: #fff;
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
}
.c-table__cell::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	width: calc(100% - 50px);
	height: 1px;
	background-color: #DEDEDE;
	transform: translateX(-50%);
}

.c-table__content tr:last-child .c-table__cell::before {display: none;}
.c-table__cell:empty {
	background: none;
	border: none;
}
.c-table__cell--bl {
	border-right: 2px solid #003C8A;
	border-left: 2px solid #003C8A;
	color: var(--color-prim);
	font-weight: 600;
}
@media (max-width: 767px) {
	.p-cts_difference {
		background-color: #ECF5FF;
	}
	.c-table--scrollable {
		position: relative;
	}
	.c-table--scrollable .c-table__inner {
		overflow: auto;
		margin-right: -5.3333333333%;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.c-table--scrollable .c-table__body {
		width: 1000px;
		padding-bottom: 8px;
	}
}
@media (min-width: 768px) {
	.p-cts_difference .l-section__inner {
		padding-top: 100px;
		padding-bottom: 74px;
		border-radius: 20px;
	}
	.p-cts_difference .c-heading-tertiary {
		margin-top: 0;
		padding-bottom: 35px;
		font-size: 4rem;
	}
	.c-table {
		padding-right: 5%;
		padding-left: 5%;
	}
	.c-table__layouter--for-pc {
		display: table-column-group;
	}
	.c-table__layouter--for-sp {
		display: none;
	}
}

/* 実績 */
.p-cts_record {

}
.p-cts_record .l-section__inner {
	padding-top: 50px;
	padding-bottom: 10px;
	border-radius: 20px;
	background-color: #ECF5FF;
}
.p-record_service {
	padding: 20px 20px;
}
.p-record_service__inner {
	position: relative;
	padding: 60px 15px 15px;
	border-radius: 10px;
	border: 3px solid #61ADFF;
	background-color: #fff;
	color: #003C8A;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}
.p-record_service__inner::before {
	content: "";
	position: absolute;
	top: -22px;
	left: 50%;
	display: block;
	width: 70px;
	height: 75px;
	transform: translateX(-50%);
}
.p-record_service__inner:nth-child(1)::before {
	background-image: url(/lp/bpo_01/images/icon_record01.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0 0;
}
.p-record_service__inner:nth-child(2)::before {
	width: 68px;
	height: 78px;
	background-image: url(/lp/bpo_01/images/icon_record02.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0 0;
}
.p-record_service__inner:nth-child(3)::before {
	width: 74px;
	background-image: url(/lp/bpo_01/images/icon_record03.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0 0;
}
.p-record_service__inner > span {
	position: relative;
	display: inline-block;
	width: auto;
	padding: 0 5px;
	color: #1A72D3;
	font-size: 21px;
	line-height: 1;
	z-index: 2;
}
.p-record_service__inner > span::before {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	display: block;
	width: 100%;
	height: 12px;
	background-color: #D0EAFD;
	z-index: -1;
}
.p-record_service__inner > span b {
	font-size: 33px;
	line-height: 1;
}
.p-record_service__inner .coution {
	position: absolute;
	bottom: 0;
	right: 10px;
	color: initial;
	font-size: 12px;
	font-weight: 400;
}
.p-record_graph {
	padding: 20px 15px;
}
.p-record_graph > dl {
	border-radius: 10px;
	border: 2px solid #D0DFF5;
	background-color: #fff;
}

.p-record_graph > dl dt {
	padding: 5px 20px;
	border-bottom: 2px solid #D0DFF5;
	color: #003C8A;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}
.p-record_graph > dl dd {
	padding: 20px 20px;
	text-align: center;
}
.p-record_graph > dl dd .text_pinchout {
	display: inline-block;
	margin-top: 15px;
	padding-left: 35px;
	background-image: url(/lp/bpo_01/images/icon_pinchout.png);
	background-repeat: no-repeat;
	background-size: 29px auto;
	background-position: 0 center;
	font-size: 12px;
	font-weight: 400;
}
@media (max-width: 767px) {
	.p-record_service__inner + .p-record_service__inner {
		margin-top: 25px;
	}
	.p-record_graph > dl + dl {
		margin-top: 20px;
	}
}
@media (min-width: 768px) {
	.p-cts_record .l-section__inner {
		padding: 75px 40px 40px;
	}
	.p-record_service {
		display: flex;
		width: 100%;
		padding: 0;
	}
	.p-record_service__inner {
		padding-top: 72px;
		padding-bottom: 30px;
		font-size: 24px;
		line-height: 1.4;
		flex: 1;
	}
	.p-record_service__inner:nth-child(1) {
		border-radius: 10px 0 0 10px;
		border-right-width: 2px;
	}
	.p-record_service__inner:nth-child(2) {
		border-radius: 0;
		border-right-width: 1px;
		border-left-width: 1px;
	}
	.p-record_service__inner:nth-child(3) {
		border-radius: 0 10px 10px 0;
		border-left-width: 2px;
	}
	.p-record_service__inner::before {
		top: -34px;
	}
	.p-record_service__inner:nth-child(1)::before {
		width: 89px;
		height: 97px;
	}
	.p-record_service__inner:nth-child(2)::before {
		width: 87px;
		height: 100px;
	}
	.p-record_service__inner:nth-child(3)::before {
		width: 95px;
		height: 96px;
	}
	.p-record_service__inner > span {
		font-size: 28px;
	}
	.p-record_service__inner > span::before {
		height: 14px;
	}
	.p-record_service__inner > span b {
		font-size: 44px;
	}
	.p-record_service__inner .coution {
		bottom: 7px;
		right: 24px;
		font-size: 14px;
	}
	.p-record_graph {
		display: flex;
		gap: 35px;
		margin-top: 35px;
		padding: 0;
	}
	.p-record_graph__inner {
		flex: 1;
	}
	.p-record_graph > dl {
		border: 3px solid #D0DFF5;
	}
	.p-record_graph > dl dt {
	    padding: 10px 20px;
		border-bottom: 3px solid #D0DFF5;
		font-size: 24px;
	}
	.p-record_graph > dl dd {
		padding: 20px 30px;
	}
}


/* サービス利用の流れ */
.p-cts_flow_lead {
	position: relative;
	padding-right: 120px;
	font-size: 1.4rem;
	font-weight: 600;
}
.p-cts_flow_lead::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	width: 100px;
	height: 104px;
	background-image: url(/lp/bpo_01/images/img_flow01.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0 0;
}
.p-cts_flow_lead + .c-figure {
	margin-top: 20px;
}
.p-cts_flow .c-figure {
	padding: 20px;
	border-radius: 10px;
	background-color: #C4E0F5;
}
.p-cts_flow .c-figure img {
	width: 100%;
}
.p-cts_flow .c-figure .c-text_caution {
	margin-top: 10px;
	background-color: #fff;
	color: var(--color-prim);
	font-size: 1.4rem;
	font-weight: 600;
	text-align: center;
}
.p-cts_flow .c-figure .c-text_caution > span {
	display: inline-block;
	padding-right: 24px;
	background-image: url(/lp/bpo_01/images/icon_zoom.png);
	background-repeat: no-repeat;
	background-size: 16px auto;
	background-position: 100% center;
	line-height: 1.4;
}
@media (max-width: 767px) {
	.p-cts_flow .c-figure .c-text_caution {
		background-color: transparent;
		text-align: center;
	}
	.p-cts_flow .c-figure .c-text_caution > span {
		display: inline-block;
		padding-right: 0;
		padding-left: 35px;
		background-image: url(/lp/bpo_01/images/icon_pinchout.png);
		background-repeat: no-repeat;
		background-size: 29px auto;
		background-position: 0 center;
		color: initial;
		font-weight: 400;
	}
}
@media (min-width: 768px) {
	.p-cts_flow {
		margin-top: 50px;
		padding-top: 100px;
	}
	.p-cts_flow .c-heading-tertiary {
		margin-top: 0;
		margin-bottom: 10px;
		padding-bottom: 35px;
		font-size: 4rem;
	}
	.p-cts_flow_lead {
		padding-right: 0;
		font-size: 1.6rem;
		text-align: center;
	}
	.p-cts_flow_lead::before {
		bottom: 0;
		left: 50%;
		width: 203px;
		height: 211px;
		margin-left: 260px;
	}
	.p-cts_flow .c-figure {
		margin-top: 60px;
		padding: 40px;
		border-radius: 20px;
	}
	.p-cts_flow .c-figure .c-text_caution {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 200px;
		height: 42px;
		margin-top: 20px;
		margin-right: auto;
		margin-left: auto;
		border: 1px solid #0A3E86;
		border-radius: 10px;
		font-size: 1.6rem;
		transition: background-color 0.2s linear;
	}
	.p-cts_flow .c-figure .c-text_caution:hover {
		background-color: #1A72D3;
		color: #fff;
	}
	.p-cts_flow .js-modal-button {
		cursor: pointer;
	}
}

/* よくある質問 */
.p-cts_qanda {
}
/* Q&Aパーツ */
.c-qa {
	background-color: #fff;
}
.c-qa__item {
	border-bottom: 1px solid var(--color-border);
	line-height: var(--line-height-m);
	color: var(--color-text);
}
.c-qa__q, .c-qa__a {
	position: relative;
}
.c-qa__q::before, .c-qa__a::before {
	position: absolute;
	top: 20px;
	left: 5px;
	display: block;
	width: 30px;
	height: 30px;
	pointer-events: none;
	text-align: center;
	font-family: var(--font-castoro);
	font-size: 16px;
	line-height: 30px;
}
.c-qa__q::before {
	content: "Q";
	top: 16px;
    background-color: transparent;
    color: var(--color-prim);
	font-size: 3rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}
.c-qa__q::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 12px;
	display: block;
	width: 16px;
	height: 16px;
	background-image: url(/lp/bpo_01/images/icon_plus.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0 0;
	transform: translateY(-50%);
	pointer-events: none;
}
.c-qa__q-inner {
	display: block;
	width: 100%;
	padding: 22px 40px 22px 40px;
	color: var(--color-text);
	font-size: 1.6rem;
	font-weight: 700;
	text-align: left;
	appearance: none;
	cursor: pointer;
}
.c-qa__a {
	overflow: hidden;
	height: 0;
	border-top: 1px solid var(--color-border);
	background-color: #F7FBFF;
	visibility: hidden;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s linear;
}
.c-qa__a::before {
	content: "A";
	left: 0;
	width: 36px;
	height: 30px;
	padding-left: 8px;
    background-color: var(--color-prim);
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0px 100%);
    color: #fff;
	font-size: 2rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	text-align: left;
}
.c-qa__a-inner {
	padding: 22px 24px 22px 50px;
	color: #222;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: var(--line-height-l);
}
.c-qa__item.is-active .c-qa__q::after {
	background-image: url(/lp/bpo_01/images/icon_minus.png);
	background-position: 0 center;
}
.c-qa__item.is-active .c-qa__a {
	height: auto;
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}
@media (max-width: 767px) {
	.p-cts_qanda {
		margin-top: 60px;
	}
}
@media (min-width: 768px) {
	.p-cts_qanda {
		padding-bottom: 100px;
	}
	.p-cts_qanda .c-heading-tertiary {
		margin-top: 0;
		margin-bottom: 45px;
		padding-bottom: 35px;
		font-size: 4rem;
	}
	.c-qa,
	.c-qa__item {
		border-color: #C2C9CB;
	}
	.c-qa__q {
		transition-property: background-color, color;
        transition-duration: 0.2s;
        transition-timing-function: linear;
	}
	.c-qa__q:hover {
		background-color: #F7FBFE;
	}
	.c-qa__q:hover .c-qa__q-inner {
		color: #003C8A;
	}
	.c-qa__q::before {
		top: 25px;
		left: 34px;
		font-size: 4rem;
	}
	.c-qa__q::after {
		right: 20px;
	}
	.c-qa__q-inner {
        padding: 26px 72px 26px 81px;
		font-size: 2rem;
	}
	.c-qa__a::before {
		top: 25px;
		left: 26px;
    	padding-left: 12px;
		width: 53px;
		height: 44px;
		font-size: 3rem;
		line-height: 44px;
	}
	.c-qa__a-inner {
		padding-top: 32px;
		padding-left: 95px;
	}
}


/* お問い合わせ */
.p-cts_contact .p-cts_contact_ttl {
	color: #222;
	font-size: 2.2rem;
	font-weight: 600;
	line-height: var(--line-height-m);
}
.p-cts_contact .p-cts_contact_ttl span {
	position: relative;
	display: block;
	padding-left: 35px;
    padding-bottom: 10px;
    color: #E62E5C;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
}
.p-cts_contact .p-cts_contact_ttl span::before,
.p-cts_contact .p-cts_contact_ttl span::after {
	content: '';
	position: absolute;
	top: 9px;
	display: block;
	width: 8px;
	height: 8px;
}
.p-cts_contact .p-cts_contact_ttl span::before {
	left: 0;
	background-color: var(--color-prim);
}
.p-cts_contact .p-cts_contact_ttl span::after {
	left: 14px;
	background-color: #E32051;
}
.p-cts_contact .p-cts_contact_txt {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: var(--line-height-m);
}
.p-cts_contact .c-contactbox {
	margin-top: 25px;
	padding: 30px 20px;
	border-radius: 10px;
	background-color: #fff;
}
.p-cts_contact .c-contactbox .c-text {
	margin-top: 15px;
	color: #333;
	font-size: 1rem;
	text-align: center;
}
.p-cts_contact .l-section__inner::before {
	content: '';
	position: absolute;
	bottom: -11px;
    left: 10px;
	display: block;
	width: 83px;
	height: 104px;
	background-image: url(/lp/bpo_01/images/img_contact01.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% auto;
}
@media (max-width: 767px) {
	.p-cts_contact {
		padding-bottom: 68px;
	}
}
@media (min-width: 768px) {
	.p-cts_contact {
		margin-bottom: 15px;
	}
	.p-cts_contact .l-section__inner {
		position: relative;
	}
	.p-cts_contact .l-section__inner::before {
		bottom: -64px;
		left: 0;
		width: 144px;
		height: 180px;
	}
	.p-cts_contact_dtl {
	}
	.p-cts_contact_ttl {
		font-size: 2.8rem;
	}
	.p-cts_contact_txt {
		font-size: 2.8rem;
		font-weight: 600;
		line-height: var(--line-height-m);
	}
	.c-contactbox {
	}
	.p-cts_contact .p-cts_contact_ttl span {
		padding-left: 45px;
		font-size: 2rem;
	}
	.p-cts_contact .p-cts_contact_ttl span::before,
	.p-cts_contact .p-cts_contact_ttl span::after {
		top: 12px;
		width: 10px;
		height: 10px;
	}
	.p-cts_contact .p-cts_contact_ttl span::after {
		left: 17px;
	}
	.p-cts_contact .c-contactbox .c-text {
		color: var(--color-text_2);
		font-size: 1.6rem;
		font-weight: 400;
	}
}

@media (min-width: 920px) {
	.p-cts_contact .l-section__inner {
		display: flex;
		width: 100%;
		padding-left: 174px;
	}
	.p-cts_contact_dtl {
		width: 50%;
		padding-right: 3%;
	}
	.p-cts_contact_ttl {
		margin-left: -174px;
		font-size: 2.8rem;
	}
	.p-cts_contact_txt {
		font-size: 2.8rem;
		font-weight: 600;
		line-height: var(--line-height-m);
	}
	.c-contactbox {
		width: 50%;
	}
}