@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.area {
	padding: 120px 20px;
	box-sizing: border-box;
}
.roboto {
	font-family: 'Roboto', sans-serif;
}
.en {
	font-family: 'Montserrat', sans-serif;
}
.inner {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	box-sizing: border-box;
}
.inner_pd0 {
	max-width: 1160px;
	padding: 0 20px;
	margin: 0 auto;
	box-sizing: border-box;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 80px 20px;
	}
	.inner {
		max-width: 100%;
	}
}


/* header
-------------------------------------------------------*/
#header {
	box-sizing: border-box;
}
#header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#header .logo img {
    max-width: 185px;
}
@media screen and (max-width:768px) {
	#header .logo img {
		max-width: 130px;
	}
}

/* nav
-------------------------------------------------------*/
#btn_nav {
	position: fixed;
	top: 52px;
	right: 14%;
	z-index: 999;
	cursor: pointer;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	height: 16px;
}
.lower #btn_nav {
	top: 60px;
}
#btn_nav span {
	display: inline-block;
	background: #000;
	width: 40px;
	height: 1px;
	transition: .5s;
	position: relative;
}
#btn_nav.white span {
	background: #fff;
}
#btn_nav.black span {
	background: #000!important;
}
#btn_nav.active span {
	transform: translateY(8px) rotate(45deg);
	background: #fff;
}
#btn_nav.active span:last-child {
	transform: translateY(-8px) rotate(-45deg);
}
#btn_nav.active.black span {
	background: #fff!important;
}

#nav .nav_cont {
	position: fixed;
	top: 0;
	height: 100%;
	width: 60%;
	overflow: hidden;
	max-width: 600px;
	overflow: auto;
	background: #2C2C2C;
	right: -100%;
	z-index: 998;
	transition: .5s;
	padding: 150px 10%;
	box-sizing: border-box;
}
#nav .nav_cont.active {
	right: 0;
}
#nav ul a {
	color: #fff;
	font-size: 5.6rem;
	font-weight: 700;
	line-height: 1.8;
}
#nav ul .nav_in {
	margin: 0 0 0 30px;
}
#nav ul .nav_in a {
	color: rgba(255,255,255,0.5);
	font-size: 3.2rem;
	white-space: nowrap;
}
@media screen and (max-width:1400px) {
	#btn_nav {
		right: 8%;
	}
}
@media screen and (max-width:1200px) {
	#btn_nav {
		right: 4%;
	}
}
@media screen and (max-width:1160px) {
	#btn_nav {
		right: 20px;
	}
}
@media screen and (max-width:768px) {
	.lower #btn_nav {
		top: 25px;
	}
	#nav ul a {
		font-size: 4rem;
		line-height: 1.6;
	}
	#nav ul .nav_in a {
		font-size: 3rem;
	}
}
@media screen and (max-width:480px) {
	#btn_nav {
		top: 26px;
		right: 20px;
		height: 10px;
	}
	#btn_nav span {
		width: 28px;
		height: 2px;
	}
	#btn_nav.active span {
		transform: translateY(4px) rotate(45deg);
		background: #fff;
	}
	#btn_nav.active span:last-child {
		transform: translateY(-4px) rotate(-45deg);
	}
	#nav .nav_cont {
		width: 100%;
		max-width: inherit;
		padding: 100px 40px;
	}
}

/* btm_contact
-------------------------------------------------------*/
#btm_contact {
	background: url(../images/common/bg03.png)no-repeat center/cover;
}
#btm_contact.area {
	padding: 140px 20px;
}
#btm_contact .inner {
	max-width: 1120px;
}
#btm_contact .inner dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#btm_contact .inner dl dt {
	color: #fff;
	font-size: 3rem;
	font-weight: 700;
}
#btm_contact .btn_contact {
	width: 350px;
	height: 75px;
	font-size: 2.4rem;
}
@media screen and (max-width:768px) {
	#btm_contact.area {
		padding: 60px 20px;
	}
	#btm_contact .inner dl {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#btm_contact .inner dl dt {
		font-size: 2rem;
		margin: 0 0 30px;
	}
	#btm_contact .btn_contact {
		width: 320px;
		height: 65px;
		font-size: 2.4rem;
	}
}

/* footer
-------------------------------------------------------*/
#footer {
	background: #2C2C2C;
	color: #fff;
	font-size: 1.2rem;
	font-family: 'Roboto', sans-serif;
}
#footer a {
	color: #fff;
}
#footer.area {
	padding: 25px 40px;
}
#footer .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#footer .link_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#footer .link_box>* {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#footer .link_box .sns {
	margin: 0 50px 0 0;
}
#footer .link_box .sns li:first-child {
	margin: 0 40px 0 0;
}
#footer .link_box .sns li:first-child img {
	max-width: 11px;
	min-width: 11px;
}
#footer .link_box .sns li:last-child img {
	max-width: 21px;
	min-width: 21px;
}
#footer .link_box .privacy li {
	margin: 0 80px 0 0;
}
#footer .link_box .privacy li:last-child {
	margin: 0 30px 0 0;
}
@media screen and (max-width:768px) {
	#footer {
		font-size: 1.2rem;
		
	}
	#footer.area {
		padding: 30px 20px;
		padding-bottom: 120px;
	}
	#footer .inner {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		position: relative;
	}
	#footer .link_box {
		flex-flow: column-reverse;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#footer .link_box .sns {
		margin: 0;
	}
	#footer .link_box .privacy {
		margin: 0 0 50px;
	}
	#footer .link_box .privacy li {
		margin: 0 30px 0 0;
	}
	#footer .copy {
		position: absolute;
		right: 0;
		bottom: 0;
		font-size: 1rem;
	}
}

/* contact_btn_box
-------------------------------------------------------*/
#contact_btn_box {
	max-width: 360px;
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: flex-start;
	position: fixed;
	/*right: -290px;*/
	 	right: 20px; 
	bottom: 70px;
	transition: all .5s;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
	border-radius: 6px;
	z-index: 10;
}
#contact_btn_box.hover_on {
	right: 20px;
}
#contact_btn_box .ttl {
	background-color: #000;
	border-radius: 6px 0 0 6px;
	padding: 25px 15px;
	cursor: pointer;
}
#contact_btn_box .ttl img {
	max-width: 16px;
	min-width: 16px;
}
#contact_btn_box dl {
	text-align: center;
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 0 6px 6px 0;
	padding: 20px;
}
#contact_btn_box dl dt {
	font-weight: 500;
	line-height: 1;
	margin: 0 0 20px;
}
@media screen and (max-width:768px) {
	/*ボタンを表示非表示していた時のソース*/
	/*#contact_btn_box {
		max-width: 330px;
		right: -290px;
		bottom: 80px;
	}
	#contact_btn_box .ttl {
		padding: 13px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#contact_btn_box .ttl img {
		max-width: 14px;
		min-width: 14px;
	}
	#contact_btn_box dl dt {
		font-size: 1.4rem;
		margin: 0 0 15px;
	}*/
	
	#contact_btn_box {
		width: 100%;
		max-width: 100%;
		right:auto;
		left: 0;
		bottom: 0px;
		border-radius: 0;
	}
	#contact_btn_box .ttl {
		padding: 13px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 0;
	}
	#contact_btn_box .ttl img {
		max-width: 14px;
		min-width: 14px;
	}
	#contact_btn_box dl dt {
		font-size: 1.4rem;
		margin: 0 0 7px;
	}
	
	#contact_btn_box dl {
		padding: 10px;
		border-radius: 0;
	}
}

/* btn
-------------------------------------------------------*/
.btn_box {
	text-align: center;
}
.btn_box.right {
	text-align: right;
}
.btn_contact {
	width: 250px;
	height: 45px;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	letter-spacing: 0.05em;
	background: #fff;
	color: #000;
}
@media screen and (max-width:768px) {

}

.btn_s {
	background: #000;
	color: #fff;
	padding: 10px 30px;
	font-size: 1.8rem;
	font-weight: 700;
	border-radius: 50px;
	display: inline-block;
	margin: 80px 0 0;
}
@media screen and (max-width:768px) {
	.btn_s {
		margin: 50px 0 0;
	}
}

.btn_arrow {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	text-align: right;
	margin: 20px 0 0;
	padding: 0 20px 0 0;
	display: block;
	position: relative;
}
.btn_arrow::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../images/common/arrow_black_s.png)no-repeat right center/5px 10px;
	width: 5px;
	height: 10px;
	right: 3px;
	top: 50%;
	transform: translate(0,-50%);
}
@media screen and (max-width:768px) {
}

/* ttl
-------------------------------------------------------*/
.center {
	text-align: center;
}
.ttl_s {
	font-weight: 700;
	font-size: 2rem;
	margin: 0 0 40px;
}
.ttl_s.side_bar {
	position: relative;
	padding: 0 0 0 90px;
}
.ttl_s.side_bar::before {
	position: absolute;
	display: block;
	content: "";
	width: 70px;
	height: 1px;
	background: #000;
	left: 0;
	top: 50%;
	transform: translate(0,50%);
}
.ttl01 {
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0 0 80px;
	font-family: 'Roboto', sans-serif;
}
.ttl01_jp {
	/*font-size: 2.4rem;*/
	font-size: 3.2rem;
	font-weight: 700;
	margin: 0 0 80px;
}



.ttl02 {
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0 auto 10px;
	text-align: center;
}
.ttl_jp {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.08rem;
	text-align: center;
	margin: 0 0 90px;
}
.ttl_mid_img {
	position: absolute;
	/*top: -34px;*/
	top: -3.5%;
}

@media screen and (max-width:1500px) {
	.ttl_mid_img {
	top: -3.5%;
}
}

@media screen and (max-width:1300px) {
	.ttl_mid_img {
	top: -3%;
}
}

@media screen and (max-width:1050px) {
	.ttl_mid_img {
	top: -2.5%;
}
}

@media screen and (max-width:768px) {
	.ttl01 {
		font-size: 2.4rem;
		margin: 0 0 60px;
	}
	.ttl01_jp {
		font-size: 2rem;
		margin: 0 0 30px;
	}
	.ttl02 {
		font-size: 3.2rem;
		margin: 0;
	}
	.ttl_jp {
		font-size: 1.8rem;
		margin: 0 0 60px;
	}
	
}

/* breadcrumb
-------------------------------------------------------*/
.breadcrumb.area {
	padding: 0 20px 25px;
}
.breadcrumb ul {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.4;
	gap: 15px;
}
.breadcrumb ul li {
	line-height: 2;
	text-transform: uppercase;
}
/*
.breadcrumb ul li:not(:last-child) {
	margin: 0 40px 0 0;
	position: relative;
}
.breadcrumb ul li:not(:last-child)::after {
	position: absolute;
	display: block;
	content: ">";
	color: #4E5DF8;
	right: -25px;
	top: 0;
}
*/
.breadcrumb ul li:last-child {
	color: #4E5DF8;
}
@media screen and (max-width:768px) {

}

/* bg
-------------------------------------------------------*/
.gra01 {
	background: linear-gradient(to right,#DE4B91,#E77CAE,#5360FA);
	color: #fff;
}
.bg_gray {
	background: #F5F5F5;
}
.gra_txt {
	background: linear-gradient(to right,#DE4B91,#E77CAE,#5360FA);
	display: inline-block;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.bg_white {
	background: #fff;
}
/* common layout
-------------------------------------------------------*/
/* visual */
#visual {
	position: relative;
	padding: 0;
	box-sizing: border-box;
}
#visual .video {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: url(../images/common/visual_img.png)no-repeat center/cover;
	overflow: hidden;
}
#visual.no_bg .video {
	display: none;
}
#visual .video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
#visual .visual_txt_box {
	color: #fff;
}
#visual .visual_txt_box .ttl {
	line-height: 1;
	font-weight: 700;
}
#visual .visual_txt_box .txt {
	line-height: 1;
	font-weight: 700;
}
@media screen and (max-width:768px) {

}

/* lead */
#lead .inner {
	max-width: 1000px;
}
#lead .txt_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#lead .txt_box .ttl {
	margin: 0 70px 0 0;
}
#lead .txt_box .ttl img {
	max-width: 297px;
	min-width: 297px;
}
#lead .txt_box dt {
	font-size: 3.2rem;
	margin: 0 0 30px;
	margin-top: -5px;
	font-weight: 700;
}
#lead .txt_box dd {
	line-height: 2;
}
@media screen and (max-width:768px) {
	#lead .txt_box {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#lead .txt_box .ttl {
		margin: 0 0 30px;
	}
	#lead .txt_box .ttl img {
		max-width: 280px;
		min-width: 280px;
	}
	#lead .txt_box dt {
		font-size: 2.4rem;
	}
	#lead .txt_box dd {
		line-height: 2.2;
	}
	#lead {
		padding-bottom: 100px;
	}
	/* #lead dl {
		margin-bottom: 100px;
	} */
}

/* user */
.user_list li {
	background: #fff;
	padding: 30px 40px;
}
.user_list li .ttl_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	border-bottom: 1px solid #DDDDDD;
	padding: 0 0 30px;
	margin: 0 0 30px;
}
.user_list li .ttl_box .icon {
	margin: 0 25px 0 0;
}
.user_list li .ttl_box .icon img {
	max-width: 96px;
	min-width: 96px;
}
.user_list li .ttl_box dl {
	margin: 10px 0 0;
}
.user_list li .ttl_box dl dt {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 10px;
}
.user_list li .ttl_box dl dd {
	font-size: 1.3rem;
	font-weight: 700;
}
.user_list li .ttl {
	font-weight: 700;
	font-size: 1.8rem;
	margin: 0 0 20px;
	line-height: 1.5;
}
.user_list li .txt {
	line-height: 2;
	font-size: 1.4rem;
}
/* no_slider */
.user_list.no_slider {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 950px;
	margin: 0 auto;
}
.user_list.no_slider li {
	width: 49%;
	box-sizing: border-box;
}
.user_list.no_slider.row_center {
	justify-content: center;
}
@media screen and (max-width:768px) {
	#user .ttl01 {
		margin: 0 0 30px;
	}
	.user_list li {
		padding: 30px 20px;
	}
	.user_list li .ttl_box {
		padding: 0 0 20px;
		margin: 0 0 25px;
	}
	.user_list li .ttl_box .icon {
		margin: 0 15px 0 0;
	}
	.user_list li .ttl_box .icon img {
		max-width: 83px;
		min-width: 83px;
	}
	.user_list li .ttl_box dl {
		margin: 0;
	}
	.user_list li .ttl_box dl dt {
		font-size: 1.5rem;
	}
	.user_list li .ttl {
		font-size: 1.8rem;
	}
	/* no_slider */
	.user_list.no_slider {
		flex-flow: column;
		align-items: flex-start;
		justify-content: center;
	}
	.user_list.no_slider li {
		width: 100%;
	}
	.user_list.no_slider li:not(:last-child) {
		margin: 0 0 20px;
	}
}

/* lower_nav */
.lower_nav {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	margin: 0 0 70px;
}
.lower_nav li:not(:last-child) {
	margin: 0 10px 0 0;
}
.lower_nav a {
	color: #F04295;
	font-size: 1.2rem;
	font-weight: 700;
	border: 1px solid #F04295;
	display: block;
	padding: 13px 10px;
	min-width: 65px;
	box-sizing: border-box;
	text-align: center;
}
.lower_nav .on a {
	background:#F04295;
	color: #fff;
}
.lower_nav a:hover {
	opacity: 1;
	background:#F04295;
	color: #fff;
}
@media screen and (max-width:768px) {
	.lower_nav {
		flex-flow: row wrap;
		justify-content: flex-start;
		margin: 0 0 50px;
	}
	.lower_nav li {
		margin: 0 0 15px;
	}
	.lower_nav li:not(:last-child) {
		margin: 0 10px 15px 0;
	}
}

/* pager */
.pager .pages,
.pager .nextpostslink,
.pager .previouspostslink {
	display: none;
}
.pager .wp-pagenavi {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	margin: 80px 0 0;
	gap: 10px;
}
.pager .page,
.pager .first,
.pager .last {
	min-width: 48px;
	width: 48px;
	height: 48px;
	background: rgba(0,0,0,0.1);
	display: block;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pager .extend {
	margin: 0 10px;
}
.pager .current {
	background: #000000;
	color: #fff;
	min-width: 48px;
	width: 48px;
	height: 48px;
	display: block;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pager a:hover {
	opacity: 1;
	background: #000000;
	color: #fff;
}
#works_all .pager .wp-pagenavi {
	margin: 10px 0 0;
}
@media screen and (max-width:768px) {
	.pager {
		margin: 50px 0 0;
	}
}

/* prev_next */
.prev_next {
	margin: 120px 0 0;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-weight: 1.8rem;
}
.prev_next img {
	max-width: 25px;
}
.prev_next li span {
	position: relative;
}
.prev_next li:first-child span::before,.prev_next li:last-child span::after {
	position: absolute;
	display: block;
	content: "";
	width: 8px;
	height: 11px;
	top: 50%;
	transform: translate(0,-50%);
}
.prev_next li:first-child span {
	padding: 0 0 0 20px;
}
.prev_next li:first-child span::before {
	background: url(../images/common/arrow_black01.png)no-repeat left center/8px 11px;
	left: 0;
}
.prev_next li:last-child span {
	padding: 0 20px 0 0;
}
.prev_next li:last-child span::after  {
	background: url(../images/common/arrow_black02.png)no-repeat left center/8px 11px;
	right: 0;
}
.prev_next li.on a {
	color: #F04295;
}
.prev_next li.on span::before  {
	background: url(../images/common/arrow_pink01.png)no-repeat left center/8px 11px;
}
.prev_next li.on span::after  {
	background: url(../images/common/arrow_pink01.png)no-repeat left center/8px 11px;
}
.prev_next .prev a,
.prev_next .next a {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}
.prev_next .prev img,
.prev_next .next img {
	width: 8px;
}
@media screen and (max-width:768px) {
	.prev_next {
		margin: 80px 0 0;
	}
}

/* flow_list */
.flow_list {
	max-width: 750px;
	margin: 0 auto;
	position: relative;
}
.flow_list::before {
	position: absolute;
	display: block;
	content: "";
	border-left: 2px dotted #000;
	width: 2px;
	height: 90%;
	top: 0;
	left: 40px;;
	z-index: 1;
}
.flow_list li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.flow_list li:not(:last-child) {
	margin: 0 0 70px;
}
.flow_list li .icon {
	margin: 0 30px 0 0;
	background:#F5F5F5;
	position: relative;
	z-index: 5;
	padding: 0 0 15px;
}
.flow_list li:not(:first-child) .icon {
	padding: 15px 0;
	margin: -10px 30px 0 0;
}
.flow_list li .icon span {
	display: block;
	font-weight: 700;
	font-family: 'Lato', sans-serif;
	text-align: center;
	margin: 0 0 5px;
}
.flow_list li .icon img {
	max-width: 83px;
	min-width: 83px;
}
.flow_list li dl {
	width: 100%;
	box-sizing: border-box;
}
.flow_list li dl dt {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 20px;
	letter-spacing: 0.08em;
}
.flow_list li dl dd {
	background: #fff;
	font-size: 1.4rem;
	/*font-weight: 700;*/
	letter-spacing: 0.05em;
	padding: 20px 40px;
}
@media screen and (max-width:768px) {
	.flow_list::before {
		left: 38px;
	}
	.flow_list li:not(:last-child) {
		margin: 0 0 50px;
	}
	.flow_list li .icon {
		padding: 0 0 10px;
	}
	.flow_list li:not(:first-child) .icon {
		padding: 10px 0;
	}
	.flow_list li .icon img {
		max-width: 78px;
		min-width: 78px;
	}
	.flow_list li dl dt {
		font-size: 1.6rem;
		margin: 0 0 10px;
		letter-spacing: inherit;
	}
	.flow_list li dl dd {
		font-size: 1.2rem;
		letter-spacing: inherit;
		padding: 20px;
		box-sizing: border-box;
	}
}

/* qa */
.qa_list li {
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}
.qa_list li:not(:last-child) {
	margin: 0 0 25px;
}
.qa_list li dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	padding: 15px 40px;
}
.qa_list li dl dt {
	width: 52px;
	min-width: 52px;
	margin: 0 20px 0 0;
}
.qa_list li dl dd {
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
}
.qa_list li .txt {
	padding: 20px 40px;
	/*font-weight: 700;*/
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
@media screen and (max-width:768px) {
	.qa_list li dl {
		padding: 15px;
	}
	.qa_list li dl dt {
		width: 40px;
		min-width: 40px;
		margin: 0 10px 0 0;
		line-height: 1.4;
	}
	.qa_list li dl dd {
		font-size: 1.4rem;
		letter-spacing: inherit;
	}
	.qa_list li .txt {
		padding: 20px;
	}
}

/* btm_price */
.btm_price {
	max-width: 800px;
	margin: 80px auto 0;
	padding: 50px 0;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 700;
	color: #F04295;
	border-top: 1px solid #E2DFDF;
	border-bottom: 1px solid #E2DFDF;
	letter-spacing: 0.08em;
}
@media screen and (max-width:768px) {
	.btm_price {
		margin: 50px auto 0;
		padding: 30px 0;
		letter-spacing: inherit;
	}
}

/* lower common
-------------------------------------------------------*/
/* visual */
#visual.lower.area {
	padding: 50px 20px 90px;
}
#visual.lower #header .inner {
	position: relative;
}
#visual.lower .visual_txt_box {
	margin: 80px 0 0;
	height: 160px;
	display: flex;
	align-items: flex-end;
}
#visual.lower .visual_txt_box .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-end;
	justify-content: flex-start;
}
#visual.lower .visual_txt_box .ttl {
	font-size: 8rem;
	margin: 0 30px 0 0;
	width: min-content;
}
#visual.lower .visual_txt_box .txt {
	font-size: 1.8rem;
	margin: 0 0 14px;
	letter-spacing: 0.08em;
}
#visual.lower .btn_box {
	position: absolute;
	right: 10%;
}
#visual.lower .btn_contact {
	display: none;
	background: none;
	border: 1px solid #fff;
	color: #fff;
	width: 165px;
}
#visual.lower.no_bg .btn_contact {
	border: 1px solid #000;
	color: #000;
}
@media screen and (max-width:768px) {
	#visual.lower.area {
		padding: 20px 20px 30px;
	}
	#visual.lower .visual_txt_box {
		height: 140px;
		margin: 60px 0 0;
	}
	#visual.lower .visual_txt_box .inner {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#visual.lower .visual_txt_box .ttl {
		font-size: 4.8rem;
		margin: 0 0 15px;
	}
}

#visual.lower.area.no_bg {
	padding: 50px 20px 0;
}
#visual.lower.no_bg .visual_txt_box {
	color: #000;
}
@media screen and (max-width:768px) {
	#visual.lower.area.no_bg {
		padding: 20px 20px 0;
	}
}

/* lower_top_box */
/*.lower_top_box {
	max-width: 1200px;
	margin: 0 0 0 auto;
}*/
.lower_top_box {
	width: 1120px;
	margin: 0 auto;
}
.lower_top_box .box_in {
	max-width: 1200px;
	margin: 0 0 0 auto;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
.lower_top_box .box_in .txt_box {
	margin: 0 60px 0 0;
	width: 45%;
}
.lower_top_box .box_in .ttl {
	font-size: 3.2rem;
	font-weight: 700;
	margin: 0 0 40px;
}
.lower_top_box .box_in .txt {
	line-height: 2.2;
}
.lower_top_box .box_in .img {
	width: 55%;
}
.lower_top_box .box_in .img {
	width: 45%;
	position: absolute;
	right: 0;
}

@media screen and (max-width:900px) {
.lower_top_box .box_in .txt_box {
	margin: 0 30px 0 0;
	width: 35%;
}	
.lower_top_box .box_in .img {
	width: 45%;
}	
	
}

@media screen and (max-width:768px) {
	.lower_top_box {
		margin: 0;
		padding: 0;
		width: 100%;
	}
	#company #mission .box_in {
		flex-flow: column-reverse;
		align-items: flex-start;
		justify-content: flex-start;
		max-width: 100%;
	}
	.lower_top_box .box_in .txt_box {
		margin: 0;
		width: 100%;
		box-sizing: border-box;
	}
	.lower_top_box .box_in .ttl {
		margin: 0 0 30px;
	}
	.lower_top_box .box_in .txt {
		line-height: 2.2;
	}
	.lower_top_box .box_in .img {
		position: relative;
		width: 100%;
		margin: 0 0 30px;
	}
}


/* index
-------------------------------------------------------*/
/* visual */
#visual.index.area {
	padding: 45px 20px 80px;
}
#visual.index .visual_txt_box {
	/*margin: 120px 0 0;*/
	margin: 100px 0 0;
}
#visual.index .visual_txt_box .ttl {
	font-size: 10rem;
	margin: 0 0 40px;
}
#visual.index .visual_txt_box .txt {
	font-size: 1.8rem;
}
@media screen and (max-width:768px) {
	#visual.index.area {
		padding: 20px 20px 190px;
	}
	#visual.index .visual_txt_box .ttl {
		font-size: 4.9rem;
		line-height: 1.2;
		margin: 0 0 20px;
	}
	#visual.index .visual_txt_box .txt {
		font-size: 1.6rem;
		line-height: 1.3;
	}
}

/* service */
#index #service {
	position: relative;
}
#index #service.area {
	padding: 200px 0 120px;
}

#index #lead.area {
	padding: 200px 0 140px;
}
@media screen and (max-width:768px) {
	#index #service {
		position: relative;
	}
	#index #service.area {
		padding: 120px 0 90px;
	}
	
	#index #lead.area {
	padding: 80px 20px;
}
}

#index #service .box:first-child {
	margin: 0 0 140px;
} 
#index #service .service_slider_box .ttl_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 170px 80px 0;
}
#index #service .service_slider_box .ttl_box .ttl01 {
	margin: 0;
}
#index #service .service_slider_box .ttl_box .btn_s {
	margin: 0;
}
#index #service .slider01 .img {
	margin: 0 0 20px;
}
#index #service .slider01 .ttl {
	font-size: 2.4rem;
	font-weight: 700;
	margin: 0 0 10px;
	font-family: 'Roboto', sans-serif;
}
@media screen and (max-width:768px) {
	#index #service .ttl_img {
		position: absolute;
		top: -34px;
	}
	#index #service .service_slider_box .ttl_box {
		display: inherit;
		margin: 0 0 20px;
	}
	#index #service .service_slider_box .ttl_box .ttl01 {
		margin: 0;
		line-height: 2;
	}
	#index #service .service_slider_box .ttl_box .btn_s {
		margin: 30px 0 0;
	}
	#index #service .slider01 .img {
		margin: 0 0 20px;
	}
	#index #service .slider01 .ttl {
		font-size: 2rem;
	}
	#index #service .slider01 .ttl {
		font-size: 2rem;
	}
}

@media screen and (max-width:768px) {
	#index #works.area {
		padding: 80px 0;
	}
}

/* about company
-------------------------------------------------------*/

#company #lead.area {
	padding: 160px 0 140px;
}
/* mission */


#company #mission.area {
	padding: 200px 0 120px;
}
#company #mission {
	position: relative;
}
#company #mission .ttl_s {
	margin: 0 0 70px;
}
#company #mission .lower_top_box {
	padding: 0 0 0 30px;
}
#company #mission .box {
	position: relative;
	z-index: 5;
}
#company #mission .box.bg_white {
	padding: 90px 120px;
	max-width: 1040px;
	box-sizing: border-box;
	margin: 90px 0 0 auto;
}
#company #mission .box.bg_white ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#company #mission .box.bg_white ul li {
	width: 30%;
}
#company #mission .box.bg_white ul li .ttl {
	font-weight: 700;
	font-size: 4rem;
	margin: 0 0 20px;
}
#company #mission .box.bg_white ul li .txt {
	line-height: 2;
}
#company #mission .bg {
	position: absolute;
	left: 0;
	bottom: 0;
}
#company #mission .bg img {
	mix-blend-mode: multiply;
	max-width: 575px;
}
@media screen and (max-width:768px) {
	
	#company #lead.area {
	padding: 80px 20px;
}
	
	#company #mission.area {
		/*padding: 120px 0 170px;*/
		padding: 120px 0 30px;
	}
	#company #mission .ttl_s {
		margin: 0 0 30px;
	}
	#company #mission .lower_top_box {
		padding: 0;
	}
	#company #mission .box.bg_white {
		padding: 60px 20px 80px;
		margin: 80px 0 0;
	}
	#company #mission .box.bg_white .ttl_s {
		margin: 0 0 70px;
	}
	#company #mission .box.bg_white ul {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#company #mission .box.bg_white ul li {
		width: 100%;
	}
	#company #mission .box.bg_white ul li:not(:last-child) {
		margin: 0 0 50px;
	}
	
	#company #mission .bg {
  position: absolute;
  left: 0;
  bottom: -60px;
}
}

/* about_lefana */
#company #about_lefana {
	text-align: center;
}
#company #about_lefana .logo {
	margin: 0 0 50px;
}
#company #about_lefana .logo img {
	max-width: 305px;
}
#company #about_lefana .txt {
	line-height: 2.2;
}
@media screen and (max-width:768px) {
	#company #about_lefana .logo img {
		max-width: 240px;
	}
	#company #about_lefana .txt {
		text-align: left;
	}
}

/* outline */

#outline.area {
	padding-top: 0px;
}

#company #outline .inner {
	background: #fff;
	padding: 120px 20px;
}
#company #outline .box_in {
	max-width: 800px;
	margin: 0 auto;
}
#company #outline dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	border-bottom: 1px solid #E2DFDF;
	padding: 0 0 40px;
}
#company #outline dl:not(:last-child) {
	margin: 0 0 40px;
}
#company #outline dl dt {
	font-weight: 500;
	width: 170px;
	min-width: 170px;
	line-height: 1.7;
}
@media screen and (max-width:768px) {
	#company #outline.area {
		padding: 60px 20px;
	}
	#company #outline .inner {
		padding: 60px 20px;
	}
	#company #outline dl {
		flex-flow: column;
		padding: 0 0 25px;
	}
	#company #outline dl:not(:last-child) {
		margin: 0 0 25px;
	}
	#company #outline dl dt {
		width: inherit;
		min-width: inherit;
		margin: 0 0 10px;
	}
}

/* recruit */
#company #recruit {
	text-align: center;
	width: auto;
}
#company #recruit .txt {
	line-height: 2.2;
}
@media screen and (max-width:768px) {
	#company #recruit.area {
		padding: 80px 20px;
	}
	#company #recruit .ttl02 {
		font-size: 5.6rem;
	}
	#company #recruit .txt {
		text-align: left;
	}
}

/* works
-------------------------------------------------------*/
#works .btn_s {
	margin: 10px 0 0;
}
.works_list {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.works_list li {
	width: 32%;
	margin: 0 0 70px;
	box-sizing: border-box;
}
.works_list li:not(:nth-child(3n)) {
	margin: 0 2% 70px 0;
}
.works_list li .img {
	margin: 0 0 20px;
	overflow: hidden;
height: 215px;
}
.works_list li .ttl {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 20px;
	line-height: 1.3;
}
.works_list li .cat {
	color: #999999;
	font-size: 1.2rem;
	font-family: 'Roboto', sans-serif;
	line-height: 1.3;
}


@media screen and (max-width:1100px) {
	.works_list li .img {
	height: 180px;
	}
}

@media screen and (max-width:950px) {
	.works_list li .img {
	height: 140px;
	}
}
@media screen and (max-width:768px) {
	#works .btn_s {
		margin: 0;
	}
	.works_list {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.works_list li {
		width: 100%;
		margin: 0 0 50px;
		box-sizing: border-box;
	}
	.works_list li:not(:nth-child(3n)) {
		margin: 0 0 50px;
	}
	.works_list li .img {
		margin: 0 0 20px;
		overflow: hidden;
/*height: 210px;*/
height: auto;
	}


	.works_list li .img img {
		width: 100vw;
		height: 60vw;
		object-fit: cover;
	}

	.works_list li .ttl {
		padding: 0 20px;
	}
	.works_list li .cat {
		padding: 0 20px;
	}
}

#works_all .pager {
	margin: 10px 0 0;
}
#works_all .caution {
	text-align: center;
	font-size: 1.2rem;
	margin: 80px 0 0;
}
@media screen and (max-width:768px) {
	#works_all.area {
		padding: 40px 0 70px;
	}
	#works_all .pager {
		margin: 0;
	}
	#works_all .caution {
		text-align: left;
		margin: 50px 0 0;
	}
}

#works_detail .inner {
	max-width: 980px;
}
#works_detail .top_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 0 0 80px;
}
#works_detail .top_box .img {
	width: 70%;
}
#works_detail .top_box .txt_box {
	width: 30%;
	margin: 0 0 0 50px;
}
#works_detail .top_box .txt_box .ttl {
	font-size: 2.1rem;
	font-weight: 700;
	margin: 0 0 15px;
	line-height: 1.2;
}
#works_detail .top_box .txt_box .cat {
	font-size: 1.2rem;
	color: #999999;
	margin: 0 0 30px;
}
#works_detail .top_box .txt_box .txt {
	line-height: 2;
}
.works_img_list {
	max-width: 648px;
}
.works_img_list li:not(:last-child) {
	margin: 0 0 80px;
}
@media screen and (max-width:768px) {
	#works_detail.area {
		padding: 70px 20px;
	}
	#works_detail .top_box {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		margin: 0 0 30px;
	}
	#works_detail .top_box .img {
		width: 100%;
		margin: 0 0 30px;
	}
	#works_detail .top_box .txt_box {
		width: 100%;
		margin: 0;
	}
	#works_detail .top_box .txt_box .ttl {
		font-size: 1.8rem;
	}
	#works_detail .top_box .txt_box .cat {
		margin: 0 0 20px;
	}
	.works_img_list li:not(:last-child) {
		margin: 0 0 30px;
	}
}

/* service
-------------------------------------------------------*/
#service .service_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#service .service_box .box_in {
	width: 45%;
}
#service .service_box .box_in .ttl {
	font-size: 3.3rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 40px;
	letter-spacing: 0.08em;
}
#service .service_box .box_in .txt {
	line-height: 2;
}
#service .service_box .img {
	width: 45%;
}
@media screen and (max-width:768px) {
	#service .service_box {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#service .service_box .box_in {
		width: 100%;
	}
	#service .service_box .box_in .ttl {
		font-size: 2.2rem;
		margin: 0 0 30px;
	}
	#service .service_box .img {
		width: 100%;
		margin: 30px 0 0;
	}
}

#service_all ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#service_all ul li {
	width: 32%;
	margin: 0 0 40px;
}
#service_all ul li:not(:nth-child(3n)) {
	margin: 0 2% 40px 0;
}
#service_all ul li .img {
	margin: 0 0 20px;
}
#service_all ul li .ttl {
	margin: 0 0 20px;
	font-size: 2rem;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}
#service_all ul li .txt {
	font-size: 1.4rem;
	line-height: 1.7;
}
@media screen and (max-width:768px) {
	#service_all.area {
		padding: 80px 0;
	}
	#service_all ul {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#service_all ul li {
		width: 100%;
		margin: 0 0 30px;
	}
	#service_all ul li:not(:nth-child(3n)) {
		margin: 0 0 30px;
	}
	#service_all ul li:last-child {
		margin: 0;
	}
	#service_all ul li .ttl {
		margin: 0 0 15px;
	}
	#service_all ul li> * {
		padding: 0 20px;
	}
	#service_all ul li .img {
		padding: 0;
	}
}
@media screen and (max-width:768px) {
	#service #works.area {
		padding: 80px 0;
	}
}

/* service_cont common
-------------------------------------------------------*/
#service_intro.area {
	padding: 120px 0 120px 20px;
}
/* #service_intro */
#service_intro .lower_top_box .box_in .txt_box {
	margin: 0 100px 0 0;
}
@media screen and (max-width:768px) {
	#service_intro.area {
		padding: 80px 0;
	}
	/* #service_intro */
	#service_intro .lower_top_box .box_in .txt_box {
		margin: 0;
	}
}

/* service_detail */
#service_detail.area {
	padding: 120px 20px 80px;
}
#service_detail .ttl01_jp {
	text-align: center;
}
.service_detail_list {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.service_detail_list li {
	width: 32%;
	margin: 0 0 40px;
	background: #fff;
	box-sizing: border-box;
	padding: 30px 0;
	border-left: 4px solid #F04295;
}
.service_detail_list li:not(:nth-child(3n)) {
	margin: 0 2% 40px 0;
}
.service_detail_list li .ttl {
	font-size: 1.8rem;
	font-weight: 700;
	border-bottom: 1px solid #E2DFDF;
	padding: 0 25px 20px;
	margin: 0 0 20px;
	display: flex;
	align-items: center;
}
.service_detail_list li .txt {
	padding: 0 25px;
	font-size: 1.2rem;
}
.service_detail_list li .btn_arrow {
	margin: 10px 25px 0 0;
}
@media screen and (max-width:768px) {
	#service_detail.area {
		padding: 80px 20px;
	}
	.service_detail_list {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.service_detail_list li {
		width: 100%;
		margin: 0 0 25px;
		padding: 20px 0;
	}
	.service_detail_list li:not(:nth-child(3n)) {
		margin: 0 0 25px;
	}
	.service_detail_list li:last-child {
		margin: 0;
	}
	.service_detail_list li .ttl {
		line-height: 1.3;
		padding: 0 20px 20px;
	}
	.service_detail_list li .txt {
		padding: 0 20px;
	}
	.service_detail_list li .btn_arrow {
		margin: 15px 20px 0 0;
	}
}

/* service_strength */
.border_top {
	border-top: 1px solid #E2DFDF;
	display: block;
	max-width: 1120px;
	margin: 0 auto;
}
.service_strength .ttl_box {
	margin: 0 0 80px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
.service_strength .ttl_box .ttl {
	letter-spacing: 0.08em;
	width: 40%;
}
.service_strength .ttl_box .txt {
	width: 60%;
	line-height: 2;
}
.strength_list {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
.strength_list li {
	width: 32%;
	position: relative;
}
.strength_list li .num {
	position: absolute;
	font-size: 6rem;
	font-weight: 700;
	left: 0;
	top: -29px;
	line-height: 1;
}
.strength_list li .img {
	margin: 0 0 20px;
}
.strength_list li .ttl {
	font-weight: 700;
	font-size: 1.8rem;
	margin: 0 0 20px;
}
.strength_list li .txt {
	font-size: 1.4rem;
}
/* strength_list.slider02 */ 
.strength_list.slider02 {
	display: inherit;
}
.strength_list.slider02 li {
	width: inherit;
	padding: 30px 0 0;
}
.strength_list.slider02 li .num {
	top: 0;
}
@media screen and (max-width:768px) {
	.border_top {
		margin: 0 20px;
	}
	.service_strength .ttl_box {
		margin: 0 0 50px;
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.service_strength .ttl_box .ttl {
		width: 100%;
		margin: 0 0 30px;
	}
	.service_strength .ttl_box .txt {
		width: 100%;
	}
	.strength_list {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		margin: 60px 0 0;
	}
	.strength_list li {
		width: 100%;
	}
	.strength_list li:not(:last-child) {
		margin: 0 0 50px;
	}
	.strength_list li .ttl {
		margin: 0 0 10px;
	}
	/* strength_list.slider02 */ 
	.strength_list.slider02 {
		margin: 0;
	}
	.strength_list.slider02 li {
		margin: 0;
	}
	.strength_list.slider02 li:not(:last-child) {
		margin: 0 20px 0 0;
	}
}

/* service_user */
#service_user .ttl01 {
	text-align: center;
}
@media screen and (max-width:768px) {
	#service_user .ttl01 {
		margin: 0 0 30px;
	}
}

/* service_bottom */
#service_bottom {
	background: url(../images/common/bg02.png)no-repeat center/cover;
	margin: 0 0 50px;
}
#service_bottom .txt {
	color: #fff;
	text-align: center;
	font-size: 1.8rem;
	line-height: 2;
	max-width: 720px;
	margin: 0 auto;
}
@media screen and (max-width:768px) {
	#service_bottom {
		margin: 0 0 40px;
	}
	#service_bottom .txt {
		font-size: 1.6rem;
	}
}


/* service-web-design
-------------------------------------------------------*/

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

}

/* service-graphic-design
-------------------------------------------------------*/

#graphic_design .lower_top_box {
	min-height: 500px;
}


@media screen and (max-width:1600px) {
#graphic_design .lower_top_box {
	min-height: 400px;
}
}

@media screen and (max-width:1300px) {
#graphic_design .lower_top_box {
	min-height: 350px;
}
}

@media screen and (max-width:1150px) {
#graphic_design .lower_top_box {
	min-height: auto;
}
}

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

}

/* photography_movie
-------------------------------------------------------*/

#photo_movie .lower_top_box {
	min-height: 500px;
}


@media screen and (max-width:1600px) {
#photo_movie .lower_top_box {
	min-height: 400px;
}
}

@media screen and (max-width:1300px) {
#photo_movie .lower_top_box {
	min-height: 350px;
}
}

@media screen and (max-width:1150px) {
#photo_movie .lower_top_box {
	min-height: auto;
}
}


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

}

/* sns
-------------------------------------------------------*/

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

}

/* service-model-casting
-------------------------------------------------------*/

#model_casting .lower_top_box {
	min-height: 500px;
}


@media screen and (max-width:1600px) {
#model_casting .lower_top_box {
	min-height: 400px;
}
}

@media screen and (max-width:1300px) {
#model_casting .lower_top_box {
	min-height: 350px;
}
}

@media screen and (max-width:1150px) {
#model_casting .lower_top_box {
	min-height: auto;
}
}

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

}

/* column
-------------------------------------------------------*/
.column_list {
	max-width: 800px;
	margin: 0 auto;
}
.column_list li {
	border-bottom: 1px solid #E2DFDF;
	padding: 0 0 40px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.column_list li:not(:last-child) {
	margin: 0 0 40px;
}
.column_list li>a {
	width: 35%;
}
.column_list li .img {
	margin: 0 25px 0 0;
}
.column_list li .txt_box {
	width: 65%;
}
.column_list li dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 10px;
}
.column_list li .ttl {
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: inherit;
	line-height: 1.4;
}
.category {
	margin: 0 10px 0 0;
}
.category a {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	display: inline-block;
	padding: 5px 10px;
	background: #F04295;
}
.date {
	font-size: 1.4rem;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}
@media screen and (max-width:768px) {
	.column_list li {
		padding: 0 0 20px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.column_list li:not(:last-child) {
		margin: 0 0 30px;
	}
	.column_list li>a {
		width: 100%;
	}
	.column_list li .img {
		margin: 0 0 20px;
	}
	.column_list li .txt_box {
		width: 100%;
	}
	.column_list li dl {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: flex-start;
		margin: 0 0 10px;
	}
}
@media screen and (max-width:768px) {
	#column_all.area {
		padding: 40px 20px 80px;
	}
}

/* column_detail */
#column_detail .inner {
	max-width: 800px;
}
#column_detail .ttl_box {
	margin: 0 0 80px;
	padding: 0 0 40px;
	border-bottom: 1px solid #E2DFDF;
}
#column_detail .ttl_box dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 30px;
}
#column_detail .ttl_box .ttl {
	font-size: 2.8rem;
	font-weight: 700;
}
#column_detail .txt {
	font-size: 1.6rem;
	line-height: 2.5;
}
#column_detail .intro {
	margin: 0 0 80px;
}
#column_detail .intro .img {
	margin: 0 0 50px;
}
#column_detail #toc_container {
	margin: 0 0 80px;
}
#column_detail #toc_container .toc_title {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 30px;
}
#column_detail #toc_container .toc_title .toc_toggle {
	font-size: 1.5rem;
	font-weight: normal;
	margin-left: 1rem;
}
#column_detail #toc_container .toc_list {
	font-size: 1.8rem;
	font-weight: 700;
	border-top: 1px solid #E2DFDF;
	padding: 30px 0 0;
	list-style: none;
}
#column_detail #toc_container .toc_list li {
	border-bottom: 1px solid #E2DFDF;
	padding: 0 0 30px 60px;
}
#column_detail #toc_container .toc_list li:not(:last-child) {
	margin: 0 0 30px;
}
#column_detail #toc_container .toc_list li.on a {
	color: #F04295;
}
/* 記事詳細用 */
#column_detail .contents p {
	font-size: 1.6rem;
	line-height: 2.5;
}
#column_detail .contents p span{ font-weight: unset !important;}

#column_detail .contents h2 {
	font-size: 2.5rem;
	font-weight: 700;
    padding: 1.4rem 1.5rem;
    margin: 5rem 0 2.4rem;
    color: #fff;
    background: rgba(239, 66, 149, 1) !important;
}
#column_detail .contents h2 span{ font-weight: unset !important;}

#column_detail .contents h3 {
	font-size: 2.3rem;
	font-weight: 700;
	padding: 0.6rem 1.5rem;
    margin: 3rem 0 2rem 1rem;
    border-left: 5px solid #ef4295;
}
#column_detail .contents h3 span{ font-weight: unset !important;}

#column_detail .contents h4 {
	font-size: 1.6rem;
	font-weight: 700;
	padding: 10px;
	margin: 1.2em 1em 1em 0;
    border-bottom: 3px dotted #ef4295;
}
#column_detail .contents h4 span{ font-weight: unset !important;}

#column_detail .contents ul {
	font-size: 1.6rem;
	list-style: disc;
	padding-left: 2.5rem;
	line-height: 2.5;
	box-sizing: border-box;
}
#column_detail .contents ol {
	font-size: 1.6rem;
	list-style: decimal;
	padding-left: 2.5rem;
	line-height: 2.5;
	box-sizing: border-box;
	margin: 1em 2em 1em 2em;
	list-style: none;
	counter-reset: item;
}
#column_detail .contents ol li {
	counter-increment: item;
	position: relative;
}
#column_detail .contents ol li:before {
	content: counter(item) ".";
	font-weight: bold;
	position: absolute;
	left: -1.5em;
}
#column_detail .contents ul {
	font-size: 1.6rem;
	padding-left: 2.5rem;
	line-height: 2.5;
	box-sizing: border-box;
	margin: 1em 2em 1em 2em;
}

#column_detail .contents .memo_bg {
	border-radius: 10px;
    background-color: rgba(239, 66, 149, 0.1);
    padding: 1.5em;
	margin: 0.4em 2em;
}
#column_detail .contents img {
	margin-bottom: 1em;
}
#column_detail .contents b {
	background: linear-gradient(transparent 60%, rgba(247, 233, 131, 0.6) 60%);
    padding-bottom: 0.1em;
}
#column_detail .contents .column_marker {
	background: linear-gradient(transparent 60%, rgba(247, 233, 131, 0.6) 60%);
    padding-bottom: 0.1em;
}
#column_detail .contents .column_cta {
	max-width: 500px;
	margin: 1em auto 0;
}
#column_detail .contents a {
	transition: opacity 0.3s ease;
}
#column_detail .contents a:not(:has(img)):not([href^="#"]) {
	color: #1a0dab;
	text-decoration: underline;
	text-decoration-color: #1a0dab;
}
#column_detail .contents a:not(:has(img)):not([href^="#"]):hover {
	opacity: 0.5;
}
/*
#column_detail .contents .box:not(:last-child) {
	margin: 0 0 60px;
}
#column_detail .contents .cont_ttl {
	font-size: 2.5rem;
	font-weight: 700;
}
#column_detail .contents .cont_mid_ttl {
	font-size: 2.3rem;
	font-weight: 700;
	margin: 60px 0 0;
}
#column_detail .contents .txt {
	margin: 50px 0 0;
}
#column_detail .contents .img {
	margin: 60px 0 0;
}
#column_detail .contents .bold {
	font-weight: 700;
}
*/
@media screen and (max-width:768px) {
	#column_detail.area {
		padding: 80px 20px 120px;
	}
	#column_detail .ttl_box {
		margin: 0 0 30px;
		padding: 0 0 20px;
	}
	#column_detail .ttl_box dl {
		margin: 0 0 15px;
	}
	#column_detail .ttl_box .ttl {
		font-size: 1.6rem;
	}
	#column_detail .txt {
		font-size: 1.5rem;
		line-height: 2.2;
	}
	#column_detail .intro {
		margin: 0 0 50px;
	}
	#column_detail .intro .img {
		margin: 0 0 30px;
	}
	#column_detail #toc_container {
		margin: 0 0 50px;
	}
	#column_detail #toc_container .toc_title {
		font-size: 2rem;
	}
	#column_detail #toc_container .toc_list {
		font-size: 1.6rem;
		padding: 20px 0 0;
	}
	#column_detail #toc_container .toc_list li {
		padding: 0 0 20px 10px;
		line-height: 1.5;
	}
	#column_detail #toc_container .toc_list li:not(:last-child) {
		margin: 0 0 20px;
	}
	#column_detail .contents p {
		font-size: 1.4rem;
		line-height: 2;
		margin-top: 1.5rem;
	}
	#column_detail .contents .profile-box p {
		font-size: 1.2rem !important;
		line-height: 1.5 !important;
	}
	#column_detail .contents h2 {
		font-size: 1.8rem;
		margin: 4rem 0 2rem;
	}
	#column_detail .contents h3 {
		font-size: 1.6rem;
		margin: 2rem 0 1.5rem 0rem;
	}
	#column_detail .contents ol {
		font-size: 1.4rem;
		padding-left: 0.2rem;
		line-height: 2;
		margin: 1em 0.2em 1em 1.8em;
	}
	#column_detail .contents ul {
		font-size: 1.4rem;
		padding-left: 0.2rem;
		line-height: 2;
		margin: 1em 0.2em 1em 1.8em;
	}
	#column_detail .contents h4 {
		font-size: 1.5rem;
		padding: 10px;
		margin: 1.2em 0em 1em 0em;
		border-bottom: 2px dotted #ef4295;
	}
	#column_detail .contents .memo_bg {
		margin: 0.4em 1em;
	}
/*
	#column_detail .contents .box:not(:last-child) {
		margin: 0 0 50px;
	}
	#column_detail .contents .cont_ttl {
		font-size: 1.8rem;
	}
	#column_detail .contents .cont_mid_ttl {
		font-size: 1.6rem;
		margin: 30px 0 0;
	}
	#column_detail .contents .txt {
		margin: 20px 0 0;
	}
	#column_detail .contents .img {
		margin: 30px 0 0;
	}
*/
}

/*--------------------
コラム　この記事を書いた人
---------------------*/
/*ボックス全体*/
.profile-box {
    margin:3em 1em 2em;
    padding:10px 10px 15px;
    position:relative;
    border:2px solid #000;    /*枠線の太さ 線種 色*/
    font-size:14px;
}

.profile-box:before , .profile-box:after {
    clear:both;
    content:"";
    display:block;
}

/*「この記事を書いた人」のタイトル*/
.profile-box .profile-box_title {
    position:absolute;
    top:-25px;
    left:-2px;
    padding:0 10px;
    background:#000;    /*背景色*/
    color:#fff;            /*文字の色*/
    font-weight:bold;
    border:1px solid #000;    /*枠線の太さ 線種 色*/
    display:inline-block;
}

/*アイコン画像*/
.profile-box img {
    display:block;
    width:80px;
    height:80px;
    float:left;
    margin:0 20px 7px 10px;    /*画像周りの余白*/
    clear:both; /* テキストが画像の下に配置されるように調整 */
}

/*名前(ニックネーム)*/
.profile-box .profile-box_name {
   margin:0 0 7px;
   padding:0;
   font-size:19px;       /*文字サイズ*/
   font-weight:bolder;
}
#column_detail .contents .profile-box a {
	color: #000 !important;
	text-decoration-color: #000 !important;
}

/*プロフィール*/
.profile-box p {
    margin:0;
    padding:0;
    font-size: 1em !important;
    line-height:21px;    /*行間*/
}

/* case study
-------------------------------------------------------*/
#result .jp {
	text-align: center;
	margin: 0 0 100px;
}
#result #area01.area {
	padding: 70px 0 100px;
}
#result .inner {
	max-width: 1020px;
	margin: 0 auto;
}
#result .visual {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: flex-start;
}
#result .visual .img {
	width: 57%;
}
#result .visual .visual_txt {
	width: 43%;
	background: #e7e7e7;
	padding: 3%;
	box-sizing: border-box;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-end;
	font-size: 110%;
	line-height: 2;
}
#result .visual .profile {
	padding: 0 0 50px;
	margin: 0 0 50px;
	border-bottom: 1px solid #969696;
}
#result .visual .visual_txt dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#result .visual .visual_txt dl:not(:last-child) {
	margin: 0 0 20px;
}
#result .visual .visual_txt dl dt {
	width: 85px;
}
#result ul li {
	padding: 80px 20px 0;
}
#result ul li:nth-child(3), #result ul li:nth-child(4){
	padding: 20px 20px 0;
}
#result ul li .ttl {
	font-size: 170%;
	font-weight: 700;
	margin: 0 0 40px;
	line-height: 1.4;
}
#result ul li .txt {
	line-height: 1.8;
}
#result .sub_ttl {
	color: #6a00fa;
	font-size: 120%;
	line-height: 1.6;
	margin: 0 0 40px;
	font-weight: 500;
}
#result ul li .sub_ttl.reverse {
	width: 47.5%;
	margin: 0 0 30px auto;
}
#result ul li .txt_img_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#result ul li .txt_img_box.reverse {
	flex-flow: row-reverse;
}
#result ul li .txt_img_box .txt_box {
	width: 50%;
	padding: 0 5% 0 0;
}
#result ul li .txt_img_box .img_box {
	width: 50%;
}
#result ul li .txt_img_box.reverse .txt_box {
	padding: 0 0 0 5%;
}
#result ul li .txt_img_box .img_box .img {
	margin: 0 0 20px;
}
#result ul li .cap {
	text-align: center;
}
#result ul li.logo_box {
	padding: 90px 20px 0;
}
#result ul li.logo_box .logo {
	text-align: center;
	margin: 0 0 60px;
}
#result ul li.logo_box .logo img {
	max-width: 473px;
}
#result .btm {
	padding: 80px 0 100px;
	margin: 0;
}
#result .btn_contact_new {
	background: #505050;
	color: #fff;
	width: 120px;
	height: 35px;
	border-radius: 3px;
	font-size: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
#result h3.ttl img {
	max-width: 250px;
}
@media screen and (max-width:768px) {
	#result .jp {
		margin: 0 0 40px;
	}
	#result #area01.area {
		padding: 30px 0 60px;
	}
	#result .visual {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#result .visual .img {
		width: 100%;
	}
	#result .visual .visual_txt {
		width: 100%;
		padding: 30px;
		font-size: 100%;
	}
	#result .visual .profile {
		padding: 0 0 20px;
		margin: 0 0 20px;
		width: 100%;
	}
	#result .visual .visual_txt dl:not(:last-child) {
		margin: 0 0 10px;
	}
	#result ul li {
		padding: 50px 20px 0;
	}
	#result ul li:nth-child(3), #result ul li:nth-child(4){
		padding: 50px 20px 0;
	}
	#result ul li .ttl {
		font-size: 130%;
		margin: 0 0 30px;
	}
	#result ul li .txt {
		font-size: 90%;
	}
	#result .sub_ttl {
		font-size: 100%;
		margin: 0 0 30px;
	}
	#result ul li .sub_ttl.reverse {
		width: 100%;
		margin: 0 0 30px;
	}
	#result ul li .txt_img_box {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#result ul li .txt_img_box.reverse {
		flex-flow: column;
	}
	#result ul li .txt_img_box .txt_box {
		width: 100%;
		padding: 0;
	}
	#result ul li .txt_img_box .img_box {
		width: 100%;
		margin: 20px 0 0;
	}
	#result ul li .txt_img_box.reverse .txt_box {
		padding: 0;
	}
	#result ul li .txt_img_box .img_box .img {
		margin: 0 0 10px;
	}
	#result ul li .cap {
		font-size: 80%;
	}
	#result ul li.logo_box {
		padding: 50px 20px 0;
	}
	#result ul li.logo_box .logo {
		margin: 0 0 50px;
	}
	#result .btm {
		padding: 50px 20px 20px 20px;
	}
}

/* service-instagram-operation
-------------------------------------------------------*/
.service_new .inner {
	max-width: 980px;
}
.service_new .area {
	padding: 70px 20px;
}
.service_new #area01 {
	background: #f3f3f2;
	margin-top: 70px;
}
.service_new #area01.area {
	padding: 70px 20px 90px;
}
.service_new #area01 .ttl {
	margin: 0 0 60px;
}
.service_new #area01 .ttl .icon {
	text-align: center;
	margin: -100px 0 30px;
}
.service_new #area01 .ttl .icon img {
	max-width: 70px;
}
.service_new #area01 .ttl .en {
	font-size: 120%;
	text-align: center;
}
.service_new #area01 .txt {
	text-align: center;
	font-size: 87%;
	line-height: 2.5;
}
.service_new #area01 .contact_btn {
	margin: 50px auto 0;
}
.service_new #area02.area {
	padding: 100px 20px;
}
.service_new #area02 .inner {
	max-width: 790px;
}
.service_new #area02 .contact_btn {
    /*margin: -145px 0 60px;*/
	margin: -30px 0 60px;
}
.service_new #area02 ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
.service_new #area02 ul li:not(:last-child) {
	margin: 0 0 80px;
}
.service_new #area02 ul li .img {
	width: 40%;
}
.service_new #area02 ul li .txt_box {
	width: 60%;
	padding: 0 0 0 40px;
}
.service_new #area02 ul li:last-child {
	flex-flow: row-reverse;
}
.service_new #area02 ul li:last-child .txt_box {
	padding: 0 40px 0 0;
}
.service_new #area02 ul li .ttl {
	margin: 0 0 20px;
	font-size: 130%;
}
.service_new #area02 ul li .txt {
	font-size: 90%;
	line-height: 2;
}
.service_new #area03 {
	background: url("../images/services/sv01/bg01.png")no-repeat center/cover;
}
.service_new #area03.area {
	padding: 130px 20px 250px;
}
.service_new #area03 .inner {
	max-width: 790px;
}
.service_new #area03 ul {
	margin: 0 0 90px;
}
.service_new #area03 ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.service_new #area03 ul li:nth-child(2n) {
	flex-flow: row-reverse;
}
.service_new #area03 ul li:not(:last-child){
	margin: 0 0 70px;
}
.service_new #area03 ul li .img {
	width: 55%;
	margin: 0 40px 0 0;
}
.service_new #area03 ul li:nth-child(2n) .img {
	margin: 0 0 0 40px;
}
.service_new #area03 ul li .txt_box {
	width: 45%;
}
.service_new #area03 ul li .main_ttl {
	font-size: 130%;
	line-height: 1.5;
	margin: 0 0 30px;
}
.service_new #area03 ul li .sub_ttl {
	color: #e08188;
	margin: 0 0 20px;
	line-height: 1.4;
	font-weight: 600;
}
.service_new #area03 ul li .txt {
	font-size: 90%;
	line-height: 1.7;
}
.service_new #area03 .btm_txt {
	text-align: center;
	font-size: 90%;
	line-height: 2;
}
.service_new #area04 {
	/*background: url("img/services/sv01/bg02.png")no-repeat left/95% auto;*/
	background: url("../images/services/sv01/bg02.png")no-repeat left/100% auto;
	margin: -150px 0 0;
}
.service_new #area04.area {
	padding: 80px 20px;
}
.service_new #area04 .main_ttl {
	text-align: center;
	font-size: 120%;
	margin: 0 0 50px;
}
.service_new #area04 ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.service_new #area04 ul li {
	width: 24%;
	color: #fff;
	padding: 20px 5px;
	box-sizing: border-box;
	background: rgba(50,50,50,0.7);
	height: 145px;
}
.service_new #area04 ul li:nth-child(-n+4) {
	margin: 0 0 10px;
}
.service_new #area04 ul li .ttl {
	text-align: center;
	font-size: 95%;
	margin: 0 0 10px;
	line-height: 1.4;
}
.service_new #area04 ul li .ttl span {
	font-size: 70%;
}
.service_new #area04 ul li .txt {
	font-size: 70%;
	text-align: center;
}
.service_new #area05 .inner {
	max-width: 660px;
}
.service_new #area05.area {
	padding: 90px 20px;
}
.service_new #area06 {
	background: #f3f3f2;
}
.service_new #area06 .txt {
	text-align: center;
	line-height: 2;
}
.service_new .large {
    font-size: 130%;
    font-weight: bolder;
    color: #e80051;
}
@media screen and (max-width:768px) {
	.service_new .area {
		padding: 50px 20px;
	}
	.service_new #top_box.area {
		padding: 30px 0 20px;
	}
	.service_new #area01.area {
		padding: 70px 20px;
	}
	.service_new #area01 .ttl {
		margin: 0 0 30px;
	}
	.service_new #area01 .txt {
		font-size: 85%;
		line-height: 2;
	}
	.service_new #area02 .contact_btn {
		/*margin: -135px 0 60px;*/
		margin: -50px 0 60px;
	}
	.service_new #area02.area {
		padding: 100px 20px 50px;
	}
	.service_new #area02 ul li {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.service_new #area02 ul li:not(:last-child) {
		margin: 0 0 50px;
	}
	.service_new #area02 ul li .img {
		width: 100%;
		text-align: center;
		margin: 0 0 20px;
	}
	.service_new #area02 ul li .txt_box {
		width: 100%;
		padding: 0;
	}
	.service_new #area02 ul li:last-child {
		flex-flow: column;
	}
	.service_new #area02 ul li:last-child .txt_box {
		padding: 0;
	}
	.service_new #area02 ul li .ttl {
		margin: 0 0 10px;
		font-size: 110%;
	}
	.service_new #area02 ul li .txt {
		font-size: 85%;
		line-height: 2;
	}
	.service_new #area03.area {
		padding: 50px 20px;
	}
	.service_new #area03 ul {
		margin: 0 0 50px;
	}
	.service_new #area03 ul li {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.service_new #area03 ul li:nth-child(2n) {
		flex-flow: column;
	}
	.service_new #area03 ul li:not(:last-child){
		margin: 0 0 40px;
	}
	.service_new #area03 ul li .img {
		width: 100%;
		margin: 0 0 20px;
	}
	.service_new #area03 ul li:nth-child(2n) .img {
		margin: 0 0 20px;
	}
	.service_new #area03 ul li .txt_box {
		width: 100%;
	}
	.service_new #area03 ul li .main_ttl {
		font-size: 110%;
		margin: 0 0 20px;
	}
	.service_new #area03 ul li .sub_ttl {
		margin: 0 0 10px;
	}
	.service_new #area03 ul li .txt {
		font-size: 85%;
	}
	.service_new #area03 .btm_txt {
		font-size: 85%;
	}
	.service_new #area04 {
		background: url("../images/services/sv01/bg02_sp.png")no-repeat center/cover;
		margin: 0;
	}
	.service_new #area04.area {
		padding: 50px 20px;
	}
	.service_new #area04 .main_ttl {
		margin: 0 0 30px;
	}
	.service_new #area04 ul {
		flex-flow: column;
	}
	.service_new #area04 ul li {
		width: 100%;
		padding: 15px;
		height: inherit;
		margin: 0 0 10px;
	}
	.service_new #area04 ul li:nth-child(-n+4) {
		margin: 0 0 10px;
	}
	.service_new #area04 ul li:last-child {
		margin: 0;
	}
	.service_new #area05.area {
		padding: 50px 20px;
	}
	.service_new #area06 .txt {
		font-size: 85%;
	}
}

/* instagram */
#instagram #area02.area {
	/*padding: 100px 20px;*/
	padding: 100px 20px 0px 20px;
}
#instagram #area02 .in {
	max-width: 790px;
}
#instagram #area02 .contact_btn {
    /*margin: -145px 0 60px;*/
	margin: -30px 0 60px;
}
#instagram #area02 ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#instagram #area02 ul li:not(:last-child) {
	margin: 0 0 80px;
}
#instagram #area02 ul li:last-child{
	flex-direction: row;
}
#instagram #area02 ul li:last-child .txt_box{
	padding: 0 0 0 40px;
}
#instagram #area02 ul li .img {
	width: 40%;
}
#instagram #area02 ul li .txt_box {
	width: 60%;
	padding: 0 0 0 40px;
}
#instagram #area02 ul li:nth-child(2n){
    flex-flow: row-reverse;
}
#instagram #area02 ul li:nth-child(2n) .txt_box{
    padding: 0 40px 0 0;
}
#instagram#instagram #area02 ul li .ttl {
	margin: 0 0 20px;
	font-size: 130%;
}
#instagram #area02 ul li .txt {
	font-size: 90%;
	line-height: 2;
}
#instagram #area03{
	padding-bottom: 80px;
}
#instagram #area03 ul{
	margin-bottom:0px;
}
#instagram #area03 ul li .main_ttl{
font-size: 129%;
}
#instagram #area04 {
	/*background: url("img/services/sv01/bg02.png")no-repeat left/95% auto;*/
	background: url("../images/services/sv01/bg02.png")no-repeat left/100% auto;
	background-position: top;
	background-size: cover;
	/*margin: -150px 0 0;*/
	margin: 0px 0 0;
}
#instagram #area04.area {
	padding: 80px 20px;
}
#instagram #area04 .main_ttl {
	text-align: center;
	font-size: 120%;
	margin: 0 0 50px;
}
#instagram #area04 ul {
	/*display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;*/
	display: block;
}
#instagram #area04 ul li {
	/*width: 48%;*/
	width: 100%;
	color: #fff;
	padding: 20px;
	box-sizing: border-box;
	background: rgba(50,50,50,0.7);
	height: auto;
}
#instagram #area04 ul li .txt span {
	display: block;
	text-align: center;
	font-size: 120%;
	margin-bottom: 5px;
}
#instagram #area04 ul li:nth-child(-n+4) {
	margin: 0 0 10px;
}
#instagram #area04 ul li {
	margin: 0 0 10px;
}
#instagram #area04 ul li .ttl {
	text-align: center;
	font-size: 95%;
	margin: 0 0 10px;
	line-height: 1.4;
}
#instagram #area04 ul li .ttl span {
	font-size: 70%;
}
#instagram #area04 ul li .txt {
	font-size: 70%;
	text-align: center;
}
@media screen and (max-width:768px) {
	#instagram#instagram#instagram#instagram#instagram#instagram #area02 .contact_btn {
		/*margin: -135px 0 60px;*/
		margin: -50px 0 60px;
	}
	#instagram#instagram#instagram#instagram#instagram #area02.area {
		padding: 100px 20px 0px;
	}
	#instagram#instagram#instagram#instagram #area02 ul li {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#instagram#instagram#instagram #area02 ul li:not(:last-child) {
		margin: 0 0 50px;
	}
	#instagram#instagram #area02 ul li .img {
		width: 100%;
		text-align: center;
		margin: 0 0 20px;
	}
	#instagram #area02 ul li .txt_box {
		width: 100%;
		padding: 0;
	}
	#instagram #area02 ul li:nth-child(2n){
		flex-direction: column;
	}
	#instagram #area02 ul li:nth-child(2n) .txt_box{
		padding: 0;
	}
	#instagram #area02 ul li:last-child .txt_box {
		padding: 0;
	}
	#instagram #area02 ul li:last-child {
		flex-flow: column;
	}
	#instagram #area02 ul li:last-child .txt_box {
		padding: 0;
	}
	#instagram #area02 ul li .ttl {
		margin: 0 0 10px;
		font-size: 110%;
	}
	#instagram #area02 ul li .txt {
		font-size: 85%;
		line-height: 2;
	}
}


/* plan */
#plan {
	background: #f3f3f2;
}
#plan .main_ttl {
	text-align: center;
	font-size: 120%;
	margin: 0 0 20px;
}
#plan .caution {
	margin: 0 0 40px;
	text-align: center;
	font-size: 90%;
}
#plan ul li {
	background: #fff;
	padding: 30px;
}
#plan ul li:not(:last-child) {
	margin: 0 0 20px;
}
#plan ul li .ttl_pink {
	font-size: 140%;
	font-weight: 700;
	color: #e80051;
	border-left: 4px solid #e80051;
	padding: 0 0 0 10px;
	margin: 0 0 20px;
}
#plan ul li .ttl_pink span {
	font-size: 150%;
}
#plan ul li dl {
	border: 1px solid #aaaaaa;
	margin: 0 0 20px;
}
#plan ul li dl dt {
	background: #646464;
	color: #fff;
	font-size: 120%;
	font-weight: bold;
	padding: 15px 20px;
}
#plan ul li dl dd {
	padding: 20px;
	line-height: 1.6;
}
#plan ul li dl dd span.bold {
	font-weight: bold;
	margin: 20px 0 10px;
	display: block;
}
#plan ul li .option {
	background: #f3f3f2;
	border-radius: 5px;
	padding: 20px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#plan ul li .option .ttl {
	font-size: 90%;
	margin: 0 20px 0 0;
}
#plan ul li .option .ttl span {
	font-weight: bold;
}
#plan ul li .option .txt {
	font-size: 90%;
	line-height: 1.6;
}

.list_price_subttl {
	font-weight: bolder;
	margin-top: 15px;
}
@media screen and (max-width:768px) {
	#plan .main_ttl {
		margin: 0 0 10px;
	}
	#plan .caution {
		margin: 0 0 30px;
		font-size: 80%;
	}
	#plan ul li {
		padding: 20px;
	}
	#plan ul li .ttl_pink {
		font-size: 100%;
		border-left: 2px solid #e80051;
	}
	#plan ul li dl dt {
		font-size: 95%;
		padding: 10px 20px;
	}
	#plan ul li dl dd {
		font-size: 85%;
	}
	#plan ul li .option {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#plan ul li .option .ttl {
		font-size: 85%;
		margin: 0 0 5px;
	}
	#plan ul li .option .txt {
		font-size: 70%;
	}
	
	.list_price_subttl {
		font-weight: bolder;
		margin-top: 15px;
	}
}

/* old btn */
.service_new .contact_btn {
	font-size: 13px;
}
.service_new .contact_btn a {
	/*background: #505050;*/
	background: #e80051;
	border-radius: 6px;
	width: 430px;
	height: 90px;
	color: #fff;
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.service_new .contact_btn a .en {
    font-size: 130%;
}
.service_new .contact_btn a .txt {
    font-size: 85%;
}
.service_new .contact_btn a::after {
    position: absolute;
    display: block;
    content: "";
    background: url("../images/photo/contact_arrow.png")no-repeat right center/10px 17px;
    width: 10px;
    height: 17px;
    right: 40px;
    top: 50%;
    transform: translate(0,-50%);
}
@media screen and (max-width:768px) {
	.service_new .contact_btn a {
		width: 100%;
		height: 70px;
	}
	.service_new .contact_btn a::after {
		background: url("../images/photo/contact_arrow.png")no-repeat right center/8px 13px;
		width: 8px;
		height: 13px;
		right: 20px;
	}
}

/* website analysis
-------------------------------------------------------*/
#analysis.service_new #top_box.area .txt{
	text-align: center;
	font-size: 12px;
	padding-bottom: 55px;
}
#analysis #top_box h2.ttl::after{
	margin: 20px auto 25px;
}
/* area01 */
#analysis.service_new #area01 {
	margin-top: 0;
}
#analysis.service_new #area01.area{
	padding-top: 85px;
	padding-bottom: 100px;
}
#analysis.service_new #area01.area{
	/*background-image: url(https://lefana.net/wp_2018/wp-content/themes/lefana2018/img/anaysis/mv.png);*/
	/*background-size: cover;
	color: #fff;*/
}
#analysis.service_new #area01 .ttl{
	font-size: 28px;
	text-align: center;
	margin-bottom: 45px;
	line-height: 1.4;
	font-weight: bold;
}
#analysis.service_new #area01 .ttl:after{ display: none !important;}

#analysis .content{
	margin-bottom:100px ;
}

#analysis.service_new #area01 .txt{
	line-height: 1.8;
	font-size: 16px;
}
/* area02 */
#analysis.service_new #area02.area{
	padding-top: 60px;
	padding-bottom: 20px;
}
#analysis.service_new #area02 .inner {
	max-width: 960px;
}
#analysis.service_new #area02 .ttl_top{
	text-align: center;
	font-size: 20px;
	margin-bottom: 40px;
	line-height: 1.5;
}
#analysis.service_new #area02 .ttl{
	font-weight: bold;
	font-size: 24px;
}
#analysis #area02 h2.ttl::after{
	margin: 20px auto 60px;
}
#analysis.service_new #area02 ul li .img{
	width: 50%;
}
#analysis.service_new #area02 ul li .txt_box{
	width: 45%;
}

#analysis.service_new #area02 .list{
	border: 1px solid #d2d3d4;
	padding-bottom: 10px;
	margin-bottom: 75px;
	position: relative;
}
#analysis.service_new #area02 .list::before{
	content: "";
	position: absolute;
	outline: 1px solid #d2d3d4; 
	top: 7px;
	left: 7px;
	width: 100%;
	height: 100%;
	
}
#analysis.service_new #area02 .list li{
	/*justify-content: end;*/
	justify-content:flex-start;
	margin: 25px 0;
}
@-moz-document url-prefix() {
  #analysis.service_new #area02 .list li{
	justify-content: flex-start;
}
}
#analysis.service_new #area02 .list li:nth-of-type(1){
	padding-top: 7px;
}
#analysis.service_new #area02 .list .txt{
	padding-left: 50px;
	font-size: 16px;
}
#analysis.service_new #area02 .check_icon{
	position: relative;
	display: block;
	height: 32px;
}
.check_icon::before{
	display: block;
	content: "";
	background-image: url(../img/anaysis/check.png);
	width: 24px;
	height: 17px;
	position: absolute;
	left: 20px;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#analysis.service_new #area02 .list li:last-child{
	flex-flow: wrap;
}
#analysis.service_new #area02 .contact_btn{
	margin-top: 35px;
}

#analysis .list_bottom{
	width: 100%;
	text-align: center;
	margin-top: 7px;
}

#analysis .txt_big{
	font-size: 22px;
	color: #e80051;
	font-weight: bold;
}

#analysis .txt_small{
	font-size: 18px;
}

#analysis .txt_small-bold{
	font-weight: bold;
}

#analysis .txt_small-number{
	font-size: 26px;
}
/* area03 */
#analysis.service_new #area03{
	background-image: url(../images/anaysis/analysis_content-bg.png);
	background-size: cover;
	padding-top: 65px;
	padding-bottom: 85px;
}
#analysis.service_new #area03 .in{
	max-width: 960px;
}
#analysis.service_new #area03 .ttl{
	font-weight: bold;
    font-size: 24px;
}
#analysis #area03 h2.ttl::after{
	margin: 20px auto 40px;
}
#analysis.service_new #area03 .txt{
	text-align: center;
	padding-bottom: 55px;
	font-size: 14px;
}
#analysis.service_new #area03 .service{
	display: flex;
	justify-content: center;
	margin-bottom: 0;
}
#analysis.service_new #area03 .service li{
	flex-direction: column;
	align-items: center;
	width: 33%;
}
#analysis.service_new #area03 .service li .img{
	margin: 0;
}
#analysis.service_new #area03 .service li .txt_box{
	width: 100%;
	text-align: center;
}
#analysis.service_new #area03 .service li .txt{
	padding: 20px 0;
}
#analysis.service_new #area03 .list{
	margin-bottom: 0;
}
#analysis.service_new #area03 .list li{
	flex-direction: column;
	border-bottom: 1px solid #a3a4a4;
	margin-bottom: 40px;
}
#analysis.service_new #area03 .list li:nth-of-type(3){
	margin: 0;
}
#analysis.service_new #area03 .list .txt_box{
	width: 100%;
}
#analysis.service_new #area03 .list span{
	position: relative;
}
#analysis.service_new #area03 .list .setting::before{
	content: "" ;
	background-image: url(../images/anaysis/setting_icon.png);
	width: 33px;
	height: 27px;
	position: absolute;
}
#analysis.service_new #area03 .list .pc_icon::before{
	content: "" ;
	background-image: url(../images/anaysis/pc_icon.png);
	width: 33px;
	height: 27px;
	position: absolute;
}
#analysis.service_new #area03 .list .analysis::before{
	content: "" ;
	background-image: url(../images/anaysis/bil_icon.png);
	width: 33px;
	height: 27px;
	position: absolute;
}
#analysis.service_new #area03 .list .ttl{
	padding-left: 50px;
	padding-bottom: 15px;
	text-align: left;
	font-size: 18px;
	font-weight: bold;
}
#analysis.service_new #area03 .list .txt{
	font-size: 14px;
	line-height: 2.1;
	text-align: left;
	padding-bottom: 35px;
}
/* area05 */
#analysis.service_new #area05 .contact_btn{
	margin-bottom: 130px;
}

#analysis.service_new #area05.area{
	padding-top: 75px;
	padding-bottom: 90px;
}
#analysis.service_new #area05 .box{
	display: flex;
	padding-bottom: 
	40px;
}
#analysis.service_new #area05 .inner {
	max-width: 960px;
}
#analysis.service_new #area05 .ttl{
	font-weight: bold;
    font-size: 24px;
}
#analysis #area05 h2.ttl::after{
	margin: 20px auto 58px;
}
#analysis.service_new #area05 .txt_box{
	width: 60%;
	margin-left: 65px;
}
#analysis.service_new #area05 .txt{
	font-size: 14px;
	line-height: 2.1;
}
#analysis.service_new #area05 ul{
	display: flex;
	justify-content: space-between;
}
#analysis #area05 .content{
	margin-bottom: 0;
}
#analysis.service_new #area05 li{
	width: 20%;
	margin-left: 30px;
}
#analysis.service_new #area05 li:nth-of-type(1){
	margin-left: 0;
}
#analysis.service_new #area05 .content .txt_box{
	width: 100%;
	margin: 0;
	text-align: center;
}
#analysis.service_new #area05 .content .txt{
	line-height: 1.7;
	padding-top: 20px;
}
/* area06 */
#analysis.service_new #area06{
	padding-top: 85px;
	padding-bottom: 60px;
	background-color: #ebeced;
}
#analysis.service_new #area06 .inner {
	max-width: 960px;
}
#analysis.service_new #area06 .ttl{
	font-size: 24px;
	font-weight: bold;
	line-height: 40px;
}
#analysis #area06 h2.ttl::after{
	margin: 20px auto 30px;
}
#analysis.service_new #area06 ul li{
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
}

#analysis.service_new #area06 .txt_box{
	width: 45%;
	padding-right: 50px;
}

#analysis.service_new #area06 .txt{
	text-align: left;
	font-size: 14px;
	line-height: 2.1;
}
/* area7 */

/* common */
#analysis.service_new  .common_list{
	border: 1px solid #d2d3d4;
	margin-bottom: 35px;
	position: relative;
}
#analysis.service_new  .common_list::before{
	content: "";
	position: absolute;
	outline: 1px solid #d2d3d4; 
	top: 7px;
	left: 7px;
	width: 100%;
	height: 100%;
	
}
#analysis.service_new  .common_list li{
	justify-content: end;
	margin: 25px 0;
	width: 100%!important;
}
#analysis.service_new  .common_list .txt{
	padding-left: 50px;
	font-size: 16px;
}

/* aread01 */
@media screen and (max-width:768px){
#analysis.service_new #area01 .ttl{
	font-size: 160%;
}
#analysis.service_new #area01 .txt{
	font-size: 101%;
}
}
/* area02 */
@media screen and (max-width:768px){
	#analysis.service_new #area02 .ttl{
		font-size: 150%;
	}
	#analysis.service_new #area02 .ttl_top{
		font-size: 120%;
	}
	#analysis.service_new #area02 .list .txt{
		font-size: 100%;
	}
	#analysis.service_new #area02 .list{
		padding-right: 10px;
	}
#analysis.service_new #area02 .list li{
	flex-direction: inherit;
}
#analysis.service_new #area02 .list li:last-child{
	flex-flow: inherit;
}
#analysis.service_new #area02 ul li .img{
	width: 100%;
}
#analysis.service_new #area02 ul li .txt_box{
	width: 100%;
}
}
/* area03 */
@media screen and (max-width:768px){
	#analysis.service_new #area03 .ttl{
		font-size: 150%;
	}
	#analysis.service_new #area03 .txt{
		font-size: 85%;
	}
	#analysis.service_new #area03 .list .ttl{
		font-size: 105%;
	}
	#analysis.service_new #area03 .list li{
		margin-bottom: 20px;
	}
	#analysis.service_new #area03 .list .txt{
		font-size: 85%;
		padding-bottom: 20px;
	}
	#analysis.service_new #area03 .service{
		padding-bottom: 50px;
		flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
	}
	#analysis.service_new #area03 .service li{
		width: 46%;
        margin: 0 2%;
        box-sizing: border-box;
	}
}
/* area05 */
@media screen and (max-width:768px){
	#analysis.service_new #area05 .ttl{
		font-size: 150%;
	}
	#analysis.service_new #area05 .txt{
		font-size: 85%;
	}
	#analysis.service_new #area05 .content .txt{
		font-size: 85%;
	}
	#analysis.service_new #area05 .box{
		flex-direction: column;
	}
	#analysis.service_new #area05 .txt_box{
		width: 100%;
		margin: 0;
		padding-top: 20px;
	}
	#analysis.service_new #area05 ul{
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	#analysis.service_new #area05 li{
		width: 30%;
		margin: 0;
	}
	#analysis.service_new #area05 li:nth-of-type(1){
		margin-bottom: 30px;
	}

	#analysis #area05 .content{
		margin-bottom: 0;
	}
}
/* area06 */
@media screen and (max-width:768px){
	#analysis.service_new #area06 .ttl{
		font-size: 150%;
	}
	#analysis.service_new #area06 .txt{
		font-size: 85%;
	}
	#analysis.service_new #area06 ul li{
		flex-direction: column;
	}
	#analysis.service_new #area06 .txt_box{
		width: 100%;
		padding-top: 20px;
	}
}

/* è¿½åŠ css */
@media screen and (max-width:768px){
	#analysis.service_new  .common_list li{
		justify-content: end;
		margin: 25px 0!important;
		width: 100%!important;
	}

	#analysis.service_new .common_list{
		padding: 0 10px;
	}

	#analysis .txt_big{
		font-size: 130%;
	}

	#analysis .txt_small{
		font-size: 110%;
	}
}
#analysis h2.ttl {
	text-align: center;
}
#analysis h2.ttl::after {
	content:"";
	display: block;
	background:url(../images/oldimg/ttl_bg.png);
	height: 2px;
	width: 75px;
	margin:20px auto 80px;
}

/* recruit
-------------------------------------------------------*/
.btn-partners{
position: relative;
bottom:-135px;
}
.btn-partners a {
background:#505050;
border-radius: 3px;
box-sizing: border-box;
width: 165px;
padding:12px 10px;
display: block;
color:#fff;
font-size: 80%;
text-align: center;
line-height: 1;
}
#other.recruit #area .btn a {
background:#505050;
color:#fff;
padding:10px 20px;
box-sizing: border-box;
display: inline-block;
font-size: 80%;
line-height: 1;
border-radius: 3px;
width: 120px;
text-align: center;
margin-right: 20px;
font-family: 'Montserrat', sans-serif;
}
#other.recruit #area .btn span {
font-weight: bold;
font-size: 90%;
}
#other.recruit #area .txt {
margin-bottom:30px;
font-size: 95%;
}
#other.recruit #area .box>h4.ttl {
font-weight: bold;
margin-bottom:30px;
line-height: 1.2;
font-size: 120%;
display: table;
width: 100%;
}
#other.recruit #area .box>h4.ttl::before {
content: "\25C6";
display: table-cell;
vertical-align: top;
font-size: 120%;
padding-right: 5px;
color:#969696;
}
#other.recruit #area .box>h4.ttl b {
display: table-cell;
vertical-align: middle;
width:100%;
}
#other.recruit #area .inner {
display: flex;
flex-flow: row nowrap;
align-items: flex-start;
justify-content: space-between;
position: relative;
}
#other.recruit #area .box:not(:last-of-type) {
padding-bottom:30px;
border-bottom:1px solid #AAAAAA;
margin-bottom:60px;
}
#other.recruit #area h2 {
text-align: left;
}
#other.recruit #area h2.ttl::after {
content: "";
display: block;
background: url(../images/oldimg/ttl_bg.png);
height: 2px;
width: 75px;
margin: 20px auto 80px 0;
}
#other.recruit #area h2 img {
position: relative;
left: -45px;
max-width: 270px;
}
#other.recruit #area .box-t {
margin-bottom:120px;
}
#other.recruit #area .ttl-border {
border:1px solid #BFBFBF;
padding:12px 20px;
box-sizing: border-box;
border-radius: 5px;
font-size: 120%;
line-height: 1.2;
margin-bottom:40px;
font-weight: bold;
}
#other.recruit #area dl:not(:last-child){
margin-bottom:30px;
}
#other.recruit #area dl dt{
line-height: 1.2;
margin-bottom:10px;
}
#other.recruit #area ul li {
padding-left:1em;
text-indent: -1em;
}
#other.recruit #area .line {
margin:170px 0 0;
background:#AAAAAA;
width: 100%;
height: 1px;
}
#other.recruit #area .gray-box {
background:#F0F0F0;
padding:20px;
box-sizing: border-box;
margin-bottom:40px;
}
#other.recruit #area .gray-box .ttl {
line-height: 1.2;
margin-bottom:10px;
}
#other.recruit #area .gray-box ul {
font-size: 95%;
}
#other.recruit #area .txt-b {
margin-top:50px;
}
#other.recruit #area .ul-box {
margin-bottom:40px;
}
#other.recruit #area #recruit .box-t .ttl {
font-size: 150%;
margin-bottom:60px;
}
#other.recruit #area #recruit .box-t .ttl > * {
display: block;
}
#other.recruit #area #recruit .box-t .ttl b {
line-height: 1.2;
margin-bottom:10px;
font-weight: normal;
}
#other.recruit #area #recruit .box-t .ttl span {
font-size: 55%;
}
#recruit,#partners {
width: 570px;
}
#other.recruit #area #partners h2 img {
left:-30px;
}
#other.recruit #area #partners {
padding-top:170px;
}
.af_banner {
	position:fixed;
	right: 0px;
	top: 100px;
	max-width: 100px;
	z-index: 999;
}
.af_banner img {
	width: 100%;
	height: auto;
}
#other.recruit #area .inner {
	justify-content:flex-start;
}
.btn-partners {
	margin-left: 100px;
}
@media screen and (max-width:768px){
	#other.recruit #area .inner {
		display: block;
	}
	.btn-partners {
		position: absolute;
		top: 100px;
		right: 0;
		left: 0;
		bottom: auto;
		margin: auto;
		width: 165px;
	}
	#recruit, #partners {
		width: 100%;
		box-sizing: border-box;
	}
	#other.recruit #area #partners {
		padding-top: 60px;
	}
	#other.recruit #area h2 img {
		position: relative;
		left: 0;
	}
	#other.recruit #area h2 {
		text-align: center;
	}
	#other.recruit #area h2.ttl::after {
		margin: 20px auto 80px;
	}
	#other.recruit #recruit h2.ttl::after {
		margin: 20px auto 135px;
	}
	#other.recruit #area #partners h2 img {
		left: 0;
	}
	#other.recruit #area .line {
		margin: 60px 0 0;
	}
	#other.recruit #area #recruit .box-t .ttl {
		text-align: center;
	}
	#other.recruit #area .box-t {
		margin-bottom: 60px;
	}
	.btn-partners {
		margin-left:auto;
	}
	.af_banner {
		top: 100px;
		max-width: 50px;
	}
}

/* contact
-------------------------------------------------------*/
#other.contact #contact, #other.entry #contact {
	padding: 70px 0 100px;
}
#contact .txt-t, #entry .txt-t {
	text-align: center;
	padding-bottom:70px;
	border-bottom:1px solid #AAAAAA;
	margin-bottom:70px;
	line-height: 2;
}
#contact .inner, #entry .inner {
	max-width: 720px;
}
#contact #form, #entry #form {
	width:100%;
}
#contact .text, #entry .text {
	margin:0;
	padding:3px;
	height:30px;
	box-sizing: border-box;
	width:100%;
	border:1px solid #AAAAAA;
}
#contact textarea, #entry textarea {
	height: 100px!important;
}
#contact .hissu, #entry .hissu {
	margin-bottom:30px;
	font-size: 90%;
}
#contact label, #entry label {
	display: inline-block;
}
#contact tr, #entry tr {
	display: table;
	width:100%;
}
#contact tr > *, #entry tr > * {
	padding:8px 0;
	box-sizing: border-box;
	display: table-cell;
	vertical-align: top;
	line-height: 1;
	font-size: 90%;
}
#contact tr th, #entry tr th {
	font-weight: bold;
	text-align: left;
	width: 280px;
	font-family: 'Montserrat', "Noto Sans", "Noto Sans CJK JP", sans-serif;
}
#contact tr td, #entry tr td {
	padding-top:0;
}
#contact .radio-area, #entry .radio-area {
	padding-bottom:10px;
}
#contact .radio-area label, #entry .radio-area label {
	margin:0 0 20px;
}
#contact .radio-area span.wpcf7-list-item, #entry .radio-area span.wpcf7-list-item {
	display: block;
}
#contact .contact-btn, #entry .contact-btn {
	width: 120px;
	margin: 100px auto 0;
	color: #fff;
	padding: 5px 20px;
	box-sizing: border-box;
	background: #505050;
	display: block;
	border-radius: 3px;
	border:none;
	font-size: 100%;
	line-height: 1.6;
}
#contact.conf .f-box, #entry.conf .f-box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
#robot {
	margin: 50px auto -45px;
    display: flex;
    justify-content: center;
}
@media screen and (max-width:768px) {
	#contact .txt-t {
		padding-bottom: 50px;
		margin-bottom: 50px;
		line-height: 1.6;
		text-align: left;
	}
	#contact .txt-t span {
		padding:0 20px;
		box-sizing: border-box;
		display: block;
	}
	#contact .hissu,#contact form {
		padding:0 20px;
		box-sizing: border-box;
		margin-bottom: 10px;
	}
	#contact tr {
		width: 100%;
	}
	#contact tr > * {
		padding: 15px 0;
		display: block;
	}
	#contact tr th {
		font-size: 100%;
		width: 100%;
	}
	#contact .radio-area label {
		padding-left: 2em;
		text-indent: -1.8em;
		line-height: 1.2;
	}
	#contact .text {
		height: 30px;
	}
	#other .contact-btn.en {
		margin: 30px auto 0;
	}
	#robot {
		margin: 20px auto 0;
	}
}

/* privacy policy
-------------------------------------------------------*/
#other.privacy #area .txt-t {
	margin-bottom:30px;
}
#other.privacy #area .ul-box>li {
	margin-bottom:30px;
}
#other.privacy #area .txt-b {
	padding-top:20px;
}
@media screen and (max-width:768px) {
	#other.privacy #area .ul-box>li {
		margin-bottom: 25px;
	}
}

/* terms
-------------------------------------------------------*/
#other.terms #area .txt-t {
	margin-bottom:30px;
}
#other.terms #area .txt-b {
	padding-top:20px;
}
#other.terms #area .ul-box>li {
	margin-bottom:30px;
}
#other.terms .ul01 li {
	padding-left:1em;
	text-indent: -1em;
}
#other.terms .ul02 li {
	padding-left:1em;
	text-indent: -1.4em;
}
#other.terms .ul01 .li01 {
	padding-left:1em;
	text-indent: -1.7em;
}
#other.terms .ul03 li {
	padding-left:1em;
	text-indent: -1em;
}
@media screen and (max-width:768px) {
	#other.terms #area .ul-box>li {
		margin-bottom: 25px;
	}
}

/* margin
-------------------------------------------------------*/
.mt20 {
	margin-top: 20px;
}
.mt80 {
	margin-top: 80px;
}
@media screen and (max-width:768px) {
	.sp_pd20 {
		padding: 0 20px;
	}
	.sp_botm70 {
		margin-bottom: 70px;
	}
}






/*旧コラムページ移設*/
/*----------- column -----------*/
.column h3.ttl {
	font-size: 170%;
	font-weight: 700;
	margin-bottom: 60px;
}
.column .area {
	padding: 70px 20px 100px!important;
}
.column .inner {
	max-width: 960px;
	margin: 0 auto;
}
.column .top_box {
	margin: 0 0 100px;
}
.column .top_box .visual {
	margin-bottom: 50px;
}
.column .top_box .txt {
	margin-bottom: 50px;
}
.column .page_nav {
	background: #f5f5f5 url("../images/column/nav_index.png")no-repeat right 20px bottom/232px 45px;
	padding: 30px;
	border-radius: 10px;
	font-weight: 700;
}
.column .page_nav ul li {
	padding-left: 20px;
}
.column .page_nav ul li:not(:last-child) {
	margin: 0 0 15px;
}
.column .page_nav ul li a {
	position: relative;
}
.column .page_nav ul li a::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../images/column/nav_arrow.png")no-repeat left center/10px 11px;
	width: 10px;
	height: 11px;
	left: -20px;
	top: 50%;
	transform: translate(0,-50%);
}
.column .box {
	margin-bottom: 100px;
	position: relative;
	padding-top: 30px;
}
.column .box::before {
	position: absolute;
	display: block;
	content: "";
	background: #000000;
	width: 76px;
	height: 1px;
	left: 0;
	top: 0;
}
.column .cont_ttl {
	font-weight: 700;
	font-size: 170%;
	margin: 0 0 40px;
}
.column .tag {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 40px;
}
.column .tag li {
	margin: 10px 10px 0 0;
}
.column .tag a {
	display: block;
	padding: 5px 10px;
	background: #f5f5f5;
}
.column .info {
	margin: 50px 0 0;
}
.column .info li {
	border-top: 1px solid #d6d6d6;
	padding: 20px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.column .info li:nth-child(2n) {
	background: #f5f5f5;
}
.column .info li:last-child {
	border-bottom: 1px solid #d6d6d6;
}
.column .info li .img {
	width: 25%;
	margin: 0 30px 0 0;
}
.column .info li .txt_box {
	width: 75%;
}
.column .info li .info_ttl {
	font-weight: 700;
	font-size: 130%;
	margin: 0 0 10px;
	position: relative;
	padding-left: 25px;
}
.column .info li .info_ttl::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../images/column/ttl_circle.png")no-repeat left center/19px 19px;
	width: 19px;
	height: 19px;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
}
.column table {
	border: 1px solid #d6d6d6;
	text-align: center;
	width: 100%;
	margin: 0 0 50px;
}
.column table .w30 {
	width: 33%;
}
.column table .w25 {
	width: 25%;
}
.column table tr {
	border-bottom: 1px solid #d6d6d6;
}
.column table th {
	background: #646464;
	color: #fff;
	padding: 20px;
	font-weight: 700;
	border-right: 1px solid #d6d6d6;
	vertical-align: middle;
}
.column table td {
	padding: 10px;
	border-right: 1px solid #d6d6d6;
	vertical-align: middle;
}
.column table .gray {
	background: #f5f5f5;
	font-weight: 700;
	color: #333;
}
.column .left {
	text-align: left;
	vertical-align: top;
}
.column td span {
	display: block;
	font-size: 240%;
}
.column td span.icon_pink {
	color: #e80051;
}
.column td span.icon_gray {
	color: #9c9a9a;
}
.column .caution {
	font-size: 80%;
	text-align: right;
	margin: -30px 0 50px;
}
.column .btn_ttl {
	text-align: center;
	font-size: 170%;
	margin: 50px 0 20px;
}
.column .btn_ttl span {
	position: relative;
}
.column .btn_ttl span::before, .column .btn_ttl span::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../images/column/ttl_icon.png")no-repeat left center/26px 43px;
	width: 26px;
	height: 43px;
	bottom: 0;
}
.column .btn_ttl span::before {
	left: -35px;
}
.column .btn_ttl span::after {
	right: -35px;
	transform: scale(-1,1);
}
.column .contactwrap_sv {
	padding: 0 20px;
}
.column .contact_btn a .txt {
	font-size: 130%;
	text-align: center;
}
.column .visual_in {
	margin: 0 0 30px;
}


.page_links {
	text-align: center;
	margin-top: 50px;
	margin-bottom: -40px;
}

.page_links a {
	color: #0AAEF7;
}


@media screen and (max-width:768px) {
	/*----------- column -----------*/
.column h3.ttl {
	font-size: 120%;
	margin-bottom: 40px;
}
.column .area {
	padding: 40px 20px 70px!important;
}
.column .top_box {
	margin: 0 0 50px;
}
.column .top_box .visual {
	margin-bottom: 20px;
}
.column .top_box .txt {
	font-size: 90%;
	margin-bottom: 30px;
}
.column .page_nav {
	background: #f5f5f5 url("../images/column/nav_index.png")no-repeat right 10px bottom/139px 27px;
	padding: 20px;
}
.column .page_nav ul li:not(:last-child) {
	margin: 0 0 10px;
}
.column .page_nav ul li a {
	font-size: 90%;
}
.column .box {
	margin-bottom: 50px;
	padding-top: 20px;
}
.column .box::before {
	width: 50px;
}
.column .txt {
	font-size: 90%;
}
.column .cont_ttl {
	font-size: 130%;
	margin: 0 0 30px;
}
.column .tag {
	font-size: 90%;
	margin-bottom: 30px;
}
.column .info {
	margin: 40px 0 0;
}
.column .info li {
	flex-flow: column;
	align-items: center;
	justify-content: center;
}

.column .info li .img {
	width: 60%;
	margin: 0 0 20px;
}
.column .info li .txt_box {
	width: 100%;
}
.column .info li .info_ttl {
	font-size: 110%;
}
.column table {
	margin: 0 0 30px;
	font-size: 80%;
}
.column table th {
	padding: 10px 5px;
}
.column table td {
	padding: 10px 5px;
}
.column td span {
	font-size: 200%;
}
.column .caution {
	margin: -10px 0 30px;
}
.column .btn_ttl {
	font-size: 100%;
	margin: 40px 0 10px;
}
.column .btn_ttl span::before, .column .btn_ttl span::after {
	background: url("../images/column/ttl_icon.png")no-repeat left center/15px 25px;
	width: 15px;
	height: 25px;
}
.column .btn_ttl span::before {
	left: -25px;
}
.column .btn_ttl span::after {
	right: -25px;
}
.column .contact_btn a .txt {
	font-size: 100%;
}
.column .visual_in {
	margin: 0 0 20px;
}

.page_links {
	margin-top: 40px;
	margin-bottom: -25px;
}
}


/*旧お問い合わせボタン*/
.contact_btn {
	font-size: 13px;
}
.contact_btn a {
	/*background: #505050;*/
	background: #e80051;
	border-radius: 6px;
	width: 430px;
	height: 90px;
	color: #fff;
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.contact_btn a .en {
    font-size: 130%;
}
.contact_btn a .txt {
    font-size: 85%;
}
.contact_btn a::after {
    position: absolute;
    display: block;
    content: "";
    background: url("../images/photo/contact_arrow.png")no-repeat right center/10px 17px;
    width: 10px;
    height: 17px;
    right: 40px;
    top: 50%;
    transform: translate(0,-50%);
}

@media screen and (max-width:768px) {
	.contact_btn a {
	width: 100%;
	height: 70px;
}
.contact_btn a::after {
    background: url("../images/photo/contact_arrow.png")no-repeat right center/8px 13px;
    width: 8px;
    height: 13px;
    right: 20px;
}
}

/*PCで動かす場合*/
/*.ttl_mid_img {
	animation: marquee-anim 80s linear infinite;
	width: 200%;
	left: -100%;
	top: -40px;
}*/
/*PCで動かす場合*/
@media screen and (max-width:768px) {
.ttl_mid_img {
  animation: marquee-anim 80s linear infinite;
  width: 400%;
  left: -300%;
  top: -20px;
}

}

@keyframes marquee-anim {
	0%   { transform: translate(100%, 0); }
	100% { transform: translate(-100%, 0); }
}

.top_img_main {
	margin-bottom: 80px;
}

@media screen and (max-width:768px) {
	.top_img_main {
		margin-bottom: 30px;
		margin-top: 30px;
	}
}




	.prev_next .prev {
		width: 80px;
		display: flex;
		justify-content:start;
	}

	.prev_next .next {
		width: 80px;
		display: flex;
		justify-content: flex-end;
	}



	@media screen and (max-width:768px) {
	.pager .page, .pager .first, .pager .last {
		min-width: 28px;
		width: 28px;
		height: 28px;
		font-size: 1.4rem;
	  }

	  .pager .current {
		min-width: 28px;
		width: 28px;
		height: 28px;
		font-size: 1.4rem;
	  }

	  .pager .wp-pagenavi {
		gap: 2px;
	  }
	}




	.glo_tel {
		font-size: 140%;
	}

	.contact_tel {
		display: block;
		text-align: center;
	}

	.contact_tel a {
		font-size: 200%;
		font-weight: 700;
		color: #de4d92;
	}

	@media screen and (max-width:768px) {
		#contact_btn_box dl dt {
			margin-bottom: 12px;
		}
}


.sns_btn_box {
	max-width: 500px;
	margin: 0 auto;
	margin-top: 50px;
}

.sns_btn_box_top {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 100px;
}

.sns_btn_box_mtop {
margin-top: 80px;
}

@media screen and (max-width:1800px) {
	.sns_btn_box_top {padding-top: 50px;}
}
@media screen and (max-width:1670px) {
	.sns_btn_box_top {padding-top: 0px;}
}

@media screen and (max-width:768px) {
.sns_btn_box_mtop {
margin-top: 50px;
}
}