@charset "utf-8";


/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.roboto {
	font-family: 'Roboto', sans-serif;
}
.bg_b01 {
	background: #000;
	color: #fff;
}
.bg_b01 a {
	color: #fff;
}
.bg_b02 {
	background: #121212;
	color: #fff;
}
.bg_b02 a {
	color: #fff;
}
.sp {
	display: none;
}
.area {
	padding: 70px 40px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 30px 20px;
	}
	.inner {
		max-width: 100%;
	}
}

/* ttl */
.ttl01_en {
	font-size: 310%;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0.05em;
	line-height: 1;
}
@media screen and (max-width:768px) {
	.ttl01_en {
		font-size: 220%;
	}
}

/* btn */
.btn_more {
	position: relative;
	padding-right: 60px;
}
.btn_more:hover {
	opacity: 1;
}
.btn_more .btn_txt {
	color: #fff;
	position: relative;
	letter-spacing: 0.05em;
	font-family: 'Roboto', sans-serif;
	height: 80px;
	display: inline-block;
	line-height: 80px;
}
.btn_more .btn_txt::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/btn_more_arrow.png")no-repeat right center/16px 17px;
	width: 16px;
	height: 17px;
	right: -33px;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 5;
	transition: 0.3s;
}
.btn_more:hover .btn_txt::after {
	right: -40px;
}
.btn_more .circle {
	width: 80px;
	height: 80px;
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #fff;
    mix-blend-mode: exclusion;
    cursor: pointer;
    animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
    animation-duration: 0.6s;
    animation-fill-mode: both;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
	transform-origin: 50% 50%;
}
.btn_more:hover .circle {
	transform: translateY(-50%) scale(1.2,1.2);
	transform-origin: 50% 50%;
}

/* header
-------------------------------------------------------*/
#header {
	padding: 20px 30px;
	position: fixed;
	background: #fff;
	width: 100%;
	box-sizing: border-box;
	z-index: 999;
}
#header .inner {
	max-width: 100%;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#header .logo img {
	max-width: 177px;
}
@media screen and (max-width:768px) {
	#header {
		padding: 20px;
		position: inherit;
	}
	#header .logo img {
		max-width: 120px;
	}
}


/* nav
-------------------------------------------------------*/
#nav_pc ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
}
#nav_pc ul li {
	margin-left: 50px;
}
#nav_pc ul li.contact {
	position: relative;
}
#nav_pc ul li.contact a::before {
	bottom: -6px;
}
#nav_pc ul li a {
	position: relative;
}
.on::after {
	display: block;
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #000000;
	bottom: -3px;
	transform: scale(1, 1)!important; 
	transform-origin: left top;
	transition: transform 0.3s;
}
#nav_pc ul li a::before {
	display: block;
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #000000;
	bottom: -3px;
	transform: scale(0, 1); 
	transform-origin: left top;
	transition: transform 0.3s;
}
#nav_pc ul li a:hover {
	opacity: 1;
}
#nav_pc ul li a:hover::before {
	transform: scale(1, 1);
}
@media screen and (max-width:768px) {
	#btn_nav {
		position: fixed;
		top: 24px;
		right: 20px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 18px;
	}
	#btn_nav span {
		display: inline-block;
		background: #333;
		width: 26px;
		height: 2px;
		transition: .5s;
		position: relative;
	}
	#btn_nav span:nth-child(2) {
		width: 20px;
	}
	#btn_nav span:last-child {
		width: 12px;
	}
	#btn_nav.active span {
		background: #fff!important;
		top: 0;
		transform: rotate(-45deg);
		transform-origin: top right;
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		width: 26px;
		top: 2px;
		transform: rotate(45deg);
		transform-origin: right bottom;
	}
	#nav_sp nav,
	#nav_sp nav::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp nav {
		overflow: auto;
		background: #000;
		right: -100%;
		z-index: 998;
		transition: .5s;
		padding: 100px 10% 0;
		box-sizing: border-box;
	}
	#nav_sp nav.active {
		right: 0;
	}
	#nav_sp li:not(:last-child) {
		margin: 0 0 40px;
	}
	#nav_sp a {
		color: #fff;
		font-weight: 700;
		letter-spacing: 0.05em;
		font-size: 200%;
		line-height: 1;
	}
}

/* footer
-------------------------------------------------------*/
#footer .inner {
	max-width: 100%;
}
#footer .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 40px;
}
#footer ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
}
#footer ul li {
	margin-left: 50px;
}
#footer ul li a {
	position: relative;
}
#footer ul li a::after {
	display: block;
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #000000;
	bottom: -3px;
	transform: scale(0, 1); 
	transform-origin: left top;
	transition: transform 0.3s;
}
#footer ul li a:hover {
	opacity: 1;
}
#footer ul li a:hover::after {
	transform: scale(1, 1);
}
#footer ul li.on a::after {
	display: block;
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #000000;
	bottom: -3px;
	transform: scale(1, 1); 
	transform-origin: left top;
	transition: transform 0.3s;
}
#footer .logo img {
	max-width: 177px;
}
#footer .copy {
	font-size: 80%;
	color: #858383;
	font-weight: 300;
}
@media screen and (max-width:768px) {
	#footer .box {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		margin: 0 0 40px;
	}
	#footer ul {
		justify-content: flex-start;
	}
	#footer ul li {
		margin-left: 0;
		margin-right: 20px;
	}
	#footer ul li a {
		font-size: 90%;
	}
	#footer .logo {
		margin: 0 0 30px;
	}
	#footer .logo img {
		max-width: 120px;
	}
	#footer .copy {
		font-size: 70%;
	}
}


/* index visual
-------------------------------------------------------*/
#index #visual {
	box-sizing: border-box;
	background: url(../img/visual_bg.png)no-repeat center/cover;
	color: #fff;
}
#index #visual.area {
	padding: 470px 40px 120px;
}
#index #visual .roboto {
	font-size: 625%;
	font-weight: 700;
	line-height: 1.1;
}
@media screen and (max-width:768px) {
	#index #visual.area {
		padding: 300px 20px 100px;
	}
	#index #visual .roboto {
		font-size: 260%;
	}
}


/* logo_l
-------------------------------------------------------*/
.logo_l .inner {
	/*max-width: 1400px;*/
	max-width: 100%;
}
@media screen and (max-width:768px) {

}

/* service
-------------------------------------------------------*/
#service.area {
	padding: 0;
}
.service.area_in {
	padding: 70px 40px 80px;
}
.service.btm_line {
	position: relative;
}
.service.btm_line::after {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 120px;
	right: 50%;
	bottom: -60px;
	z-index: 10;
	background: #fff;
	transform: translate(50%,0);
}
.service .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
.service .txt_box {
	width: 42%;
	position: relative;
}
.service .txt_box .num {
	font-size: 1500%;
	font-weight: 700;
	color: #151515;
	position: absolute;
	z-index: 1;
	line-height: 1;
}
.service .txt_box .ttl {
	font-size: 300%;
	font-weight: 700;
	margin: 0 0 30px;
	padding: 0 0 30px;
	position: relative;
	letter-spacing: 0.05em;
	z-index: 2;
	line-height: 1.4;
}
.service .txt_box .ttl.jp {
	font-size: 230%;
}
.service .txt_box .ttl::after {
	position: absolute;
	display: block;
	content: "";
	background: #fff;
	width: 70px;
	height: 1px;
	left: 0;
	bottom: 0;
}
.service .txt_box .txt {
	line-height: 2;
	font-weight: 300;
	margin: 0 0 40px;
	z-index: 2;
	position: relative;
}
.service .img_box {
	width: 45%;
	position: relative;
	height: 560px;
}
.service .img_box .service_num {
	font-weight: 300;
	font-size: 180%;
	letter-spacing: 0.08em;
	position: absolute;
	transform: translateX(0) rotate(-90deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    white-space: nowrap;
	z-index: 5;
	right: -40%;
	bottom: 20px;
	line-height: 1;
}
.service .img_box .service_num span {
	font-size: 160%;
	font-weight: 700;
}
.service .img_box .img {
	width: 350px;
	max-width: 90%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}
.service .img_box .img_bg {
	position: absolute;
	width: 95%;
	height: 95%;
	background: #151515;
	display: block;
	right: 0;
	bottom: 0;
	z-index: 1;
}
/* even */
.service.even .txt_box .num {
	color: #2b2b2b;
}
.service.even .img_box .img_bg {
	background: #2b2b2b;
}
@media screen and (max-width:768px) {
	.service.area_in {
		padding: 50px 20px 60px;
	}
	.service.btm_line::after {
		height: 60px;
		bottom: -30px;
	}
	.service .inner {
		flex-flow: column-reverse;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.service .txt_box {
		width: 100%;
	}
	.service .txt_box .num {
		font-size: 1000%;
	}
	.service .txt_box .ttl {
		font-size: 230%;
	}
	.service .txt_box .ttl.jp {
		font-size: 180%;
	}
	.service .txt_box .ttl::after {
		width: 50px;
	}
	.service .txt_box .txt {
		font-size: 90%;
	}
	.service .img_box {
		width: 100%;
		height: 350px;
	}
	.service .img_box .service_num {
		font-size: 160%;
	}
	.service .img_box .img {
		width: 250px;
	}
	.service .img_box .img_bg {
		width: 80%;
	}

	/* even */
	.service.even .inner {
		flex-flow: column;
	}
}

/* service01
-------------------------------------------------------*/
#service01 .txt_box {
	padding-top: 13%;
}
#service01 .txt_box .num {
	right: -9%;
	top: -5%;
}
@media screen and (max-width:768px) {

}


/* service02
-------------------------------------------------------*/
#service02 .txt_box {
	padding-top: 14%;
}
#service02 .txt_box .num {
	right: 0;
	top: -5%;
}
@media screen and (max-width:768px) {

}


/* service03
-------------------------------------------------------*/
#service03 .txt_box {
	padding-top: 16%;
}
#service03 .txt_box .num {
	right: -4%;
	top: -5%;
}
@media screen and (max-width:768px) {

}


/* service04
-------------------------------------------------------*/
#service04 .txt_box {
	padding-top: 9%;
}
#service04 .txt_box .num {
	right: 0;
	top: -6%;
}
@media screen and (max-width:768px) {

}


/* company
-------------------------------------------------------*/
#company.area {
	padding: 140px 40px 100px;
}
#company .inner {
	max-width: 800px;
}
#company .ttl01_en {
	text-align: center;
	margin: 0 0 90px;
}
#company dl {
	letter-spacing: 0.05em;
	border-bottom: 1px solid #d6d6d6;
	padding: 0 10px 30px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	line-height: 2;
}
#company dl:not(:last-child) {
	margin: 0 0 30px;
}
#company dl dt {
	font-weight: 700;
	width: 200px;
	min-width: 200px;
}
@media screen and (max-width:768px) {
	#company.area {
		padding: 50px 20px;
	}
	#company .ttl01_en {
		margin: 0 0 40px;
	}
	#company dl {
		font-size: 90%;
		padding: 0 10px 20px;
	}
	#company dl:not(:last-child) {
		margin: 0 0 20px;
	}
	#company dl dt {
		width: 100px;
		min-width: 100px;
	}
}

/* contact
-------------------------------------------------------*/
/* index */
#index #contact a {
	display: block;
	padding: 130px 40px;
	opacity: 1;
	position: relative;
}
#index #contact a::before {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
}
#index #contact a:hover::before {
	animation: shine 1.5s;
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
#index #contact .inner {
	position: relative;
}
#index #contact .jp {
	letter-spacing: 0.05em;
	margin: 30px 0 0;
}
#index #contact .contact_btn {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
#index #contact .contact_btn svg .c_front{
	fill: none;
	stroke: #fff;
	stroke-miterlimit: 10;
	overflow: hidden;
	opacity: .5;
	position: relative;
}
#index #contact .contact_btn svg .c_back{
	fill: none;
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
	-webkit-transition: stroke-dashoffset 1.4s;
	-moz-transition: stroke-dashoffset 1.4s;
	-ms-transition: stroke-dashoffset 1.4s;
	transition: stroke-dashoffset 1.4s;
	-webkit-transform-origin: center;
	-moz-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}
#index #contact a:hover .contact_btn svg .c_back{
	stroke-dashoffset: 480;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1),transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
	-moz-transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1),transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
	-ms-transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1),transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
	transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1),transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
}
#index #contact .contact_btn .icon {
	position: absolute;
	top: 57px;
	left: 58px;
	line-height: 1;
}
#index #contact .contact_btn .icon img {
	max-width: 16px;
}

@media screen and (max-width:768px) {
	#index #contact a {
		padding: 60px 20px;
	}
	#index #contact .jp {
		margin: 10px 0 0;
		font-size: 90%;
	}
	#index #contact .contact_btn {
		width: 80px;
		height: 80px;
	}
	#index #contact svg {
		stroke-width: 3;
	}
	#index #contact .contact_btn .icon {
		top: 32px;
		left: 34px;
	}
}

/* contact */
#contact #visual {
	background: url("../img/contact_visual_bg.png")no-repeat center/cover;
	margin-top: 80px;
}
#contact #visual.area {
	padding: 100px 40px;
}
#contact #visual .roboto {
	color: #fff;
	font-size: 375%;
	font-weight: 700;
}
#contact #area01 .inner {
	max-width: 600px;
}
#contact .table_temp {
	width: 100%;
}
#contact tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
#contact tr>* {
	display: block;
	vertical-align: middle;
	padding: 15px 0 10px;
	box-sizing: border-box;
	line-height: 1;
}
#contact tr th {
	text-align: left;
}
#contact tr th.top {
	padding: 40px 10px 20px;
	vertical-align: top;
}
#contact tr th b {
	position: relative;
}
#contact tr.hissu th b::after {
	color: #fff;
	font-weight: 300;
	font-size: 70%;
	width: 45px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: -60px;
	bottom: 0;
	margin: auto;
	content: "必須";
	background: #333333;
	line-height: 1;
}
#contact.contact_after tr {
	border-bottom: 1px solid #ccc;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}
#contact.contact_after tr th {
	color: #aaa;
}
#contact.contact_after tr td {
	font-weight: 500;
}
.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type="text"],
#contact select,
#contact textarea {
	width: 100%;
	background: #f0f0f0;
	border: none;
}
#contact input[type="text"],
#contact select {
	height: 50px;
}
#contact textarea {
	min-height: 250px;
	resize: vertical;
}
#contact input[type="checkbox"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	padding-left: 40px;
	vertical-align: middle;
	position: relative;
}
#contact input[type="checkbox"]::before,
#contact input[type="checkbox"]::after {
	content: "";
	display: block; 
	position: absolute;
}
#contact input[type="checkbox"]::before {
	background-color: #f0f0f0;
	border-radius: 0;
	border: 1px solid #c7c8c9;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	top: 50%;
	left: 5px;
}
input[type="checkbox"]::after {
	border-bottom: 2px solid #666464;
	border-left: 2px solid #666464;
	opacity: 0;
	height: 6px;
	width: 11px;
	transform: rotate(-45deg);
	top: -7px;
	left: 10px;
}
input[type="checkbox"]:checked::after {
	opacity: 1;
}
#contact .txt_form {
	text-align: center;
	line-height: 2;
}
#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #ccc;
}
#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .form_btn01,
#contact .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 300px;
	height: 55px;
	border: none;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	font-size: 110%;
	color: #fff;
	line-height: 1;
    text-align: center;
}
#contact .form_btn01 {
	background: #333333;
}
#contact .form_btn02 {
	background: #333;
}
#contact .privacy th {
	text-align: center;
	padding: 30px 0;
}
#contact .privacy a {
	text-decoration: underline;
}
#contact #area01.contact_after {
	margin-top: 80px;
}
@media screen and (max-width:768px) {
	#contact #visual {
		margin-top: 0;
	}
	#contact #visual.area {
		padding: 70px 20px;
	}
	#contact #visual .roboto {
		font-size: 220%;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .form_btn01,
	#contact .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
	#contact #area01.contact_after {
		margin-top: 0;
	}
}

.contact_after {
	padding-top: 100px;
}

/* privacy */
#privacy .inner {
	max-width: 700px;
}
#privacy .bold {
	font-weight: 700;
}
#privacy #area01 {
	margin-top: 80px;
	line-height: 2;
}
#privacy .ttl01 {
	font-size: 250%;
	margin: 0 0 40px;
	font-weight: 500;
}
#privacy .top_txt {
	margin: 0 0 50px;
}
#privacy .pri_list>li:not(:last-child) {
	margin: 0 0 50px;
}
#privacy .pri_ttl {
	font-weight: 700;
	font-size: 140%;
	margin: 0 0 20px;
}
#privacy .list_in {
	margin: 20px 0 0;
}
#privacy .list_in li {
	text-indent: -1em;
	padding-left: 1em;
}
#privacy .ttl_in {
	margin: 20px 0 0;
	font-size: 120%;
	font-weight: 700;
}
@media screen and (max-width:768px) {
	#privacy #area01 {
		font-size: 90%;
		margin-top: 0;
	}
	#privacy .ttl01 {
		font-size: 200%;
		margin: 0 0 30px;
	}
	#privacy .top_txt {
		margin: 0 0 40px;
	}
	#privacy .pri_list>li:not(:last-child) {
		margin: 0 0 40px;
	}
	#privacy .pri_ttl {
		font-size: 130%;
		margin: 0 0 10px;
	}
}

.footer_bot {
	display: flex;
	justify-content: space-between;
}

.pmark {
	width: 80px;
}


/* invest call */
#invest #visual {
	background: url("../img/invest_visual_bg.png")no-repeat center/cover;
	margin-top: 80px;
}
#invest #visual.area {
	padding: 100px 40px;
}
#invest #visual .roboto {
	color: #fff;
	font-size: 375%;
	font-weight: 700;
}
#invest #area01 .inner {
	max-width: 600px;
}

.service-invest .txt_box {
	position: relative;
	width: 100%!important;
}
.service-invest .txt_box .num {
	font-size: 1500%;
	font-weight: 700;
	color: #151515;
	position: absolute;
	z-index: 1;
	line-height: 1;
}
.service-invest .txt_box .ttl {
	font-size: 300%;
	font-weight: 700;
	margin: 0 0 30px;
	padding: 0 0 30px;
	position: relative;
	letter-spacing: 0.05em;
	z-index: 7;
	line-height: 1.4;
}
.service-invest .txt_box .ttl.jp {
	font-size: 230%;
}
.service-invest .txt_box .ttl::after {
	position: absolute;
	display: block;
	content: "";
	background: #fff;
	width: 70px;
	height: 1px;
	left: 0;
	bottom: 0;
}
.service-invest .txt_box .txt {width: 100%!important;
	line-height: 2;
	font-weight: 300;
	margin: 0 0 40px;
	z-index: 7;
	position: relative;
}

@media screen and (max-width:768px) {
	.service-invest.area_in {
		padding: 50px 20px 60px;
	}
	.service-invest.btm_line::after {
		height: 60px;
		bottom: -30px;
	}
	.service-invest .inner {
		flex-flow: column-reverse;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.service-invest .txt_box {
		width: 100%;
	}
	.service-invest .txt_box .num {
		font-size: 1000%;
	}
	.service-invest .txt_box .ttl {
		font-size: 230%;
	}
	.service-invest .txt_box .ttl.jp {
		font-size: 180%;
	}
	.service-invest .txt_box .ttl::after {
		width: 50px;
	}
	.service-invest .txt_box .txt {
		font-size: 90%;
	}
	.service-invest .img_box {
		width: 100%;
		height: 350px;
	}
	.service-invest .img_box .service-invest_num {
		font-size: 160%;
	}
	.service-invest .img_box .img {
		width: 250px;
	}
	.service-invest .img_box .img_bg {
		width: 80%;
	}

	/* even */
	.service-invest.even .inner {
		flex-flow: column;
	}
}

.faqlist dl {z-index: 10;
	position: relative;
	margin: 30px 0 0;
	cursor: pointer;
	border: 1px solid #444444;
}
.faqlist dl:first-child {
  margin-top: 0;
}
.faqlist dl::after {
	position: absolute;
	top: 27px;
	right: 26px;
	display: block;
	width: 7px;
	height: 7px;
	margin: auto;
	content: '';
	transform: rotate(135deg);
	border-top: 2px solid #000;
	border-right: 2px solid #000;
}
.faqlist .open::after {
	transform: rotate(-45deg);
}
.faqlist dl dt {
	position: relative;
	margin: 0;
	padding: 20px 20px 20px 60px;
	font-weight: normal;
	background: #303030;
}
.faqlist dl dt::before {
	font-size: 22px;
	line-height: 1;
	position: absolute;
	top: 20px;
	left: 20px;
	display: block;
	content: 'Q.';
	color: #c9c9c9;
}
.faqlist dl dd::before {
	font-size: 22px;
	line-height: 1;
	position: absolute;
	left: 20px;
	display: block;
	content: 'A.';
	font-weight: normal;
	color: #c9c9c9;
}
.faqlist dl dd {
	position: relative;
	margin: 0;
	padding: 20px 20px 20px 60px;
}
.faqlist dl dd p {
	margin: 30px 0 0;
}
.faqlist dl dd p:first-child{
	margin-top: 0;
}

@media screen and (max-width: 767px) {
 .faqlist dl {
	margin: 10px 0 0;
}
.faqlist dl:after {
	top: 20px;
	right: 20px;
	width: 7px;
	height: 7px;
}
.faqlist dl dt {
	padding: 16px 16px 16px 50px;
	font-size: 14px;
}
.faqlist dl dt::before {
	font-size: 14px;
	top: 20px;
	left: 20px;
}
.faqlist dl dd::before {
	font-size: 14px;
	left: 20px;
	margin-top: 5px;
}
.faqlist dl dd {
	margin: 0;
	padding: 16px 16px 16px 50px;
	font-size: 14px;
}
.faqlist dl dd p {
	margin: 30px 0 0;
}
.faqlist dl dd p:first-child{
	margin-top: 0;
}
}
.inner, .service-invest {
  width: 100%;
  box-sizing: border-box;
}
.bgp01 {background: linear-gradient(to right, rgba(255,255,255,.3) 0%, rgba(255,255,255,.3) 100%); padding: 7%;}
.title01 {background-color: #ffffff; color: #000000; padding: 4px 10px; font-size: 100%;}
.title02 {padding: 10px 0 0; font-size: 125%;}
ul.point {position:relative; z-index:10; margin: 0 0 30px 0;}
ul.point li{border-left:5px solid #ffffff; color: #c9c9c9!important; padding: 0 10px; margin: 0 0 25px;}
.box01 {margin: 0 0 10px 0; padding: 0; position:relative; z-index:10;}
.box02 {margin: 20px 0  0 0; padding: 0; position:relative; z-index:10;}

ul.about {position:relative; z-index:10; margin: 0 0 30px 0; display: flex; flex-wrap: wrap; gap: 30px 4%;}
ul.about li{position:relative; z-index:10; width:calc(96% / 2); box-sizing: border-box; padding: 6% 3% 3%; background-color: #303030;}
@media screen and (max-width: 767px) {ul.about li{padding: 50px 15px 20px; width:100%;}}
	
ul.about li::before{content: ''; position:absolute; z-index:11; background-color:#000000; height:30px; width:100%; top:0; left:0;}

ul.about li::after{content: ''; position:absolute; z-index:12; width:100%; top:0; right:40px; text-align:right; font-size:190%; color:#444444;}
@media screen and (max-width: 767px) {ul.about li::after{right:20px;}}
ul.about li.nm01::after{content: 'OUTBAND CALL';}
ul.about li.nm02::after{content: 'APPROACH';}
ul.about li.nm03::after{content: 'HEARING';}
ul.about li.nm04::after{content: 'TALK SCRIPT';}
ul.about li span{font-size: 110%;}

.lst01 {border: 1px solid #555555; padding: 4%; margin-top: 15px; font-size: 90%;}