@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.area {
	padding: 80px 20px;
	box-sizing: border-box;
}
.roboto {
	font-family: 'Roboto', sans-serif;
}
.inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	box-sizing: border-box;
}
.inner_s {
	max-width: 940px;
	margin: 0 auto;
	box-sizing: border-box;
}
.purple {
	color: #6f73b9;
}
.pink {
	color: #e35a92;
}
.ttl01 {
	text-align: center;
	margin: 0 0 40px;
	padding: 0 0 30px;
	position: relative;
}
.ttl01::after {
	position: absolute;
	display: block;
	content: "";
	background: #add9de;
	width: 50px;
	height: 2px;
	bottom: 0;
	right: 50%;
	transform: translate(50%,0);
}
.ttl01 .jp {
	font-size: 200%;
	font-weight: 500;
	margin: 0 0 15px;
}
.ttl01 .en {
	font-family: 'Roboto', sans-serif;
	color: #cccccc;
	font-size: 140%;
}
.contact {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.btn_contact {
	background: #f16b0f!important;
	color: #fff!important;
	font-weight: 500!important;
	width: 240px!important;
	height: 45px!important;
	border-radius: 50px!important;
	display: flex!important;
	align-items: center!important;
	justify-content: center!important;
}
.btn_contact.size_m {
	width: 300px;
	height: 60px;
	font-size: 120%;
}

#custom_html-4 > div > div > a{
	background: #6f73b9!important;
}

#contact > div > ul > li:nth-child(1) > a{
	background: #f16b0f!important;
}

.btn_purple {
	background: #6f73b9!important;
	color: #fff;
	font-weight: 500;
	width: 190px;
	height: 35px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 90%;
	margin: 0 auto;
}
.btn_purple.size_m {
	width: 280px;
	height: 45px;
	font-size: 100%;
}

.bg_left {
	background: url("../img/common/bg_left.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.bg_right {
	background: url("../img/common/bg_right.png")no-repeat center/cover;
	background-position: right top;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.breadcrumb {
	background: #eeeeee;
	padding: 15px 20px;
}
.breadcrumb ul {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.breadcrumb ul li {
	position: relative;
	font-size: 80%;
}
.breadcrumb ul li:not(:last-child) {
	margin: 0 40px 0 0;
}
.breadcrumb ul li:not(:last-child)::after {
	position: absolute;
	display: block;
	content: ">";
	right: -20px;
	top: 50%;
	transform: translate(0,-50%);
}
.breadcrumb ul li a:hover {
	color: inherit;
}

.two_column {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	max-width: 1180px;
	margin: 0 auto;
	padding: 30px 20px 50px;
}
.two_column #contents {
	width: 70%;
	padding: 0 30px 0 0;
}
.two_column .side_nav {
	width: 30%;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 40px 20px;
	}
	.inner {
		max-width: 100%;
	}
	.ttl01 {
		margin: 0 0 30px;
		font-size: 140%;
	}
	.contact {
		flex-flow: column;
	}
	.contact li {
		width: 100%;
		height: 100%;
	}
	.ttl01 {
		padding: 0 0 20px;
	}
	.ttl01::after {
		width: 40px;
	}
	.ttl01 .jp {
		font-size: 130%;
	}
	.ttl01 .en {
		font-size: 100%;
	}
	.btn_contact.size_m {
		width: 250px;
		height: 50px;
		font-size: 110%;
	}
    .breadcrumb {
        background: #eeeeee;
        padding: 10px 20px 15px;
    }
    .breadcrumb ul {
        flex-flow: row wrap;
    }
    .breadcrumb ul li {
        margin: 5px 0 0;
    }
	.breadcrumb ul li:not(:last-child) {
		margin: 5px 30px 0 0;
	}
	.breadcrumb ul li a {
		line-height: 1.2;
	}
	.two_column {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		padding: 30px 20px 40px;
	}
	.two_column #contents {
		width: 100%;
		padding: 0;
		margin: 0 0 30px;
	}
	.two_column .side_nav {
		width: 100%;
	}
}


/* header
-------------------------------------------------------*/
#header {
	box-sizing: border-box;
	padding: 10px;
}
#header .logo img {
    max-width: 213px;
}
#header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#header .contact {
	margin: 0 0 0 25px;
}
#header .contact a {
	color: #fff;
}

@media screen and (max-width:768px) {
	#header {
		text-align: center;
		padding: 10px;
	}
	#header .logo {
		margin: 0 auto;
	}
	#header .logo img {
		max-width: 120px;
	}
	#header .contact {
		display: none;
		justify-content: center;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 9;
		background: rgba(255, 255, 255, 0.9);
		padding: 10px 5px;
		width: 100%;
		box-sizing: border-box;
		border-top: 1px solid #333;
		margin: 0;
	}
	#header .contact li {
		padding: 0 5px!important;
		width: auto;
	}
}

/* nav
-------------------------------------------------------*/
#header #nav_pc nav {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
}
#header #nav_pc nav .dropdwn {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}
#header #nav_pc nav .dropdwn li {
	position: relative;
}
#header #nav_pc .dropdwn>li{
    display: inline;
    padding: 0 25px;
}
#header #nav_pc .dropdwn>li a {
    font-weight: 500;
    padding: 50px 0;
}
#header #nav_pc .dropdwn_menu{
	width: 200px;
    display: none;
    position: absolute;
    margin-top: 20px;
    padding: 0;
    background: rgba(0,0,0,0.6);
    left: 0;
    min-width: 130px;
	text-align: left;
	padding-left: 10px;
	z-index: 999;
	border-radius: 10px;
}
#header #nav_pc .dropdwn_menu li{
    /*width: 100%;*/
	width: 200px;
}
#header #nav_pc .dropdwn_menu li a{
    padding: 10px;
    margin: 5px;
    display: block;
    font-size: 80%;
	color: #fff;
}
#header #nav_pc a:hover {
	color: inherit;
}
.btn_contact:hover {
	color: #fff!important;
}
@media screen and (max-width:768px) {
	#header #nav_pc nav .dropdwn {
		display: none;
	}

	/* toggle_menu */
	#btn_nav {
		position: fixed;
		top: 23px;
		right: 10px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 18px;
	}
	#btn_nav span {
		display: inline-block;
		background: #6f73b9;
		width: 25px;
		height: 2px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		background: #fff;
		transform: translateY(8px) rotate(225deg);
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-225deg);
	}
	#nav_sp nav,
	#nav_sp nav::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp nav {
		display: flex;
		flex-flow: column;
		justify-content: center;
		overflow: auto;
		text-align: center;
		background: rgba(111,115,185,0.6);
		right: -100%;
		z-index: 998;
		transition: .5s;
	}
	#nav_sp nav::after {
		content: "";
		background: rgba(111,115,185,0.9);
		left: -100%;
		z-index: -1;
		transition: .7s;
	}
	#nav_sp nav.active {
		right: 0;
	}
	#nav_sp nav.active::after {
		left: 0;
	}
	#nav_sp ul li:first-child {
		border-top: 1px solid rgba(255,255,255,0.5);
	}
	#nav_sp ul li {
		border-bottom: 1px solid rgba(255,255,255,0.5);
	}
	#nav_sp ul li a {
		display: block;
		color: #fff;
		padding: 15px 10px;
	}/* toggle_menu end */
	#nav_sp .aco_box {
		padding: 0 0 20px;
	}
	#nav_sp .aco_box li {
		border: none;
	}
	#nav_sp .aco_box li a {
		font-size: 90%;
		padding: 20px 0 0;
	}
	#nav_sp nav > ul > li a:not([href]) {
		position: relative;
	}
	#nav_sp nav > ul > li a:not([href])::after {
		display: block;
		content: "";
		position: absolute;
		width: 7px;
		height: 7px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(135deg) translate(-50%,-50%);
		transform: rotate(135deg) translate(-50%,-50%);
		right: 20px;
		top: 40%;
	}
	#nav_sp nav > ul > li a:not([href]).open::after {
		-webkit-transform: rotate(-45deg) translate(-50%,-50%);
		transform: rotate(-45deg) translate(-50%,-50%);
		right: 10px;
	}
	
}

/* visual
-------------------------------------------------------*/
#visual {
	padding: 0;
	box-sizing: border-box;
	background: url(../img/index/visual_bg.png)no-repeat center/cover;
}
#visual .inner {
	max-width: 1140px;
	padding: 110px 0 130px;
	position: relative;
}
#visual .main_ttl {
	text-align: center;
	color: #fff;
	font-size: 280%;
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 40px;
}
#visual .top_txt {
	text-align: center;
	color: #fff;
	font-size: 130%;
	font-weight: 500;
	margin: 0 0 60px;
	line-height: 1.8;
}
#visual .box {
	background: rgba(0,0,0,0.3);
	padding: 30px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
#visual .box .icon {
	margin: 0 30px 0 0;
}
#visual .box .btn_box .txt {
	font-size: 110%;
	color: #fff;
	font-weight: 500;
	text-align: center;
	margin: 20px 0 0;
}
#visual .img01, #visual .img02 {
	position: absolute;
	display: block;
	content: "";
	bottom: 20px;
}
#visual .img01 {
	left: 0;
}
#visual .img02 {
	right: 0;
}
@media screen and (max-width:768px) {
	#visual .inner {
		padding: 30px 20px;
		position: relative;
	}
	#visual .main_ttl {
		font-size: 150%;
		margin: 0 0 30px;
	}
	#visual .top_txt {
		font-size: 80%;
		margin: 0 0 30px;
	}
	#visual .box {
		padding: 20px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#visual .box .icon {
		margin: 0 0 20px;
	}
	#visual .box .icon img {
		max-width: 180px;
	}
	#visual .box .btn_box .txt {
		font-size: 90%;
		margin: 10px 0 0;
	}
	#visual .img01, #visual .img02 {
		bottom: 90px;
	}
	#visual .img01 {
		left: 10px;
	}
	#visual .img01 img {
		max-width: 40%;
	}
	#visual .img02 {
		right: 10px;
		text-align: right;
	}
	#visual .img02 img {
		max-width: 40%;
	}

}


/* contact
-------------------------------------------------------*/
#contact {
	background: url("../img/common/contact_bg.png")no-repeat center/cover;
}
#contact .top_txt {
	text-align: center;
	margin: 0 0 40px;
}
#contact ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#contact ul li {
	width: 48%;
	background: #fff;
	padding: 40px;
	box-sizing: border-box;
}
#contact ul li .ttl {
	text-align: center;
	font-size: 140%;
	font-weight: 500;
	margin: 0 0 30px;
	padding: 0 0 20px;
	position: relative;
}
#contact ul li .ttl::after {
	position: absolute;
	display: block;
	content: "";
	background: #add9de;
	width: 50px;
	height: 2px;
	bottom: 0;
	right: 50%;
	transform: translate(50%,0);
}
#contact ul li .txt {
	font-size: 100%;
	line-height: 1.5;
	margin: 0 0 30px;
	text-align: center;
}
#contact .btn_purple {
	color: #fff;
}

#contact > div > ul > li:nth-child(2) > a{
	background: #6f73b9!Important;
}

#nav_pc > nav > ul.contact > li > a{
	background: #f16b0f!Important;
}

@media screen and (max-width:768px) {
	#contact .top_txt {
		margin: 0 0 30px;
		line-height: 1.4;
		font-size: 90%;
	}
	#contact ul {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#contact ul li {
		width: 100%;
		padding: 30px 20px;
	}
	#contact ul li:not(:last-child) {
		margin: 0 0 30px;
	}
	#contact ul li .ttl {
		font-size: 120%;
	}
	#contact ul li .ttl::after {
		width: 40px;
	}
	#contact ul li .txt {
		font-size: 90%;
	}
}

/* footer
-------------------------------------------------------*/
#footer {

}
#footer .box01 {
	background: #eeeeee;
	padding: 70px 20px;
}
#footer .box01 .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#footer .box01 .inner .box {
	width: 32%;
}
#footer .box01 .inner .box .ttl {
	font-weight: 700;
	margin: 0 0 20px;
	padding: 0 0 20px;
	text-align: left;
	border-bottom: 1px solid #77c0c9;
}
#footer .box01 .inner .box .txt {
	font-size: 90%;
	line-height: 1.5;
	margin: 0 0 20px;
}
#footer .box01 .google img {
	max-width: 210px;
}
#footer .box01 .menu {
	font-size: 90%;
}
#footer .box01 .menu > li:not(:last-child) {
	margin: 0 0 20px;
}
#footer .box01 .menu li a {
	font-weight: 700;
}
#footer .box01 .menu li > ul {
	padding: 0 0 0 20px;
}
#footer .box01 .menu li > ul li a {
	font-size: 90%;
	font-weight: normal;
	display: block;
	margin: 10px 0 0;
}
#footer .box01 .menu li > ul li a:before {
content:"・";
}
#footer .box01 .menu > li > a:not([href]):hover {
opacity: 1;
}
#footer .box01 .article {
	font-size: 90%;
}
#footer .box01 .article li:not(:last-child) {
	margin: 0 0 20px;
}
#footer .box01 .article li a {
	line-height: 1.5;
}
#footer .box02 {
	background: #313131;
	color: #fff;
	padding: 20px 0;
	font-size: 80%;
}
#footer .copy {
	font-size: 80%;
	text-align: center;
}
#footer .hv_none:hover {
	opacity: 1;
}
#footer a:hover {
	color: inherit;
}
@media screen and (max-width:768px) {
	#footer {
		margin: 0 0 60px;
	}
	#footer .box01 {
		padding: 40px 20px;
	}
	#footer .box01 .inner {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#footer .box01 .inner .box {
		width: 100%;
	}
	#footer .box01 .inner .box:not(:last-child) {
		margin: 0 0 30px;
	}
	#footer .box01 .inner .box .ttl {
		font-weight: 700;
		margin: 0 0 20px;
		padding: 0 0 20px;
		text-align: left;
		border-bottom: 1px solid #77c0c9;
	}
	#footer .box01 .inner .box .txt {
		font-size: 90%;
		line-height: 1.5;
		margin: 0 0 20px;
	}
	#footer .box01 .google img {
		max-width: 210px;
	}
	#footer .box01 .menu {
		font-size: 90%;
	}
	#footer .box01 .menu li:not(:last-child) {
		margin: 0 0 20px;
	}
	#footer .box01 .menu li a {
		font-weight: 700;
	}
	#footer .box01 .menu li > ul {
		padding: 0 0 0 10px;
	}
	#footer .box01 .menu li > ul li a {
		font-size: 90%;
		font-weight: normal;
		display: block;
		margin: 10px 0 0;
	}
	#footer .box01 .menu li > ul li a:before {
	content:"・";
	}
	#footer .box01 .menu > li > a:not([href]):hover {
	opacity: 1;
	}
	#footer .box01 .article {
		font-size: 90%;
	}
	#footer .box01 .article li:not(:last-child) {
		margin: 0 0 20px;
	}
	#footer .box01 .article li a {
		line-height: 1.5;
	}
	#footer .box02 {
		background: #313131;
		color: #fff;
		padding: 20px 0;
		font-size: 80%;
	}
	#footer .copy {
		font-size: 80%;
		text-align: center;
	}
}

/* side_nav
-------------------------------------------------------*/
.side_nav .search {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	margin: 0 0 30px;
}
.side_nav .search input {
	width: 90%;
}
.side_nav .search input[type="search"] {
	background: #f5f5f5;
	border: 1px solid #dcdcdc;
	height: 45px;
}
.side_nav .search input[type="image"] {
	width: 24px;
	height: 24px;
	padding: 0 0 0 10px;
}
.side_nav .com_info {
	border: 1px solid #c9c9c9;
	padding: 30px;
	margin: 0 0 30px;
}
.side_nav .com_info .logo_box {
	border-bottom: 1px solid #c9c9c9;
	margin: 0 0 20px;
	padding: 0 0 20px;
}
.side_nav .com_info .logo_box .logo {
	margin: 0 0 5px;
	text-align: center;
}
.side_nav .com_info .logo_box .logo img {
	max-width: 249px;
}
.side_nav .com_info .logo_box .name {
	text-align: center;
	font-size: 90%;
}
.side_nav .com_info .txt {
	font-size: 90%;
	line-height: 1.8;
	margin: 0 0 30px;
}
.side_nav .btn_purple.size_m {
	color: #fff;
}
.side_nav .download {
	border: 1px solid #c9c9c9;
	margin: 0 0 30px;
}
.side_nav .download .ttl {
	background: #6f73b9;
	font-size: 130%;
	font-weight: 500;
	text-align: center;
	padding: 15px;
	color: #fff;
}
.side_nav .download .txt {
	font-size: 85%;
	line-height: 1.8;
	padding: 20px 10px;
	text-align: center;
}
.side_nav .download .btn_contact {
	width: 260px;
	border: none;
	margin: 0 auto 30px;
	color: #fff;
}
.side_nav .download .btn_contact span {
	position: relative;
}
.side_nav .download .btn_contact span::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/common/icon_pdf.png")no-repeat center/22px 27px;
	width: 22px;
	height: 27px;
	left: -30px;
	top: 50%;
	transform: translate(0,-50%);
}
.side_nav .banner_box {
	margin: 0 0 80px;
}
.side_nav .banner_box .side_banner {
	margin: 0 0 30px;
}
.side_nav .banner_box .side_banner img {width:auto !important;}
.side_nav .widgettitle {display:none;}
.side_nav .banner_box .google img {
	max-width: 210px;
}
.side_nav .ttl_ub {
	font-size: 120%;
	font-weight: 500;
	padding: 0 0 15px;
	margin: 0 0 20px;
	border-bottom: 1px solid #c9c9c9;
}
.side_nav .art_box {
	margin: 0 0 30px;
}
.side_nav .art_box ul li:not(:last-child) {
	margin: 0 0 10px;
}
.side_nav .art_box ul li a {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.side_nav .art_box ul li a .img {
	width: 20%;
	margin: 0 10px 0 0;
}
.side_nav .art_box ul li a .txt {
	width: 80%;
	font-size: 90%;
	line-height: 1.4;
}
.side_nav .cat_search {
	margin: 0 0 30px;
}
.side_nav .cat_search select {
	width: 100%;
	border: 1px solid #dcdcdc;
	background: #f5f5f5;
	height: 45px;
}
.side_nav .recent_box ul li {
	border-bottom: 1px solid #c9c9c9;
	margin: 0 0 20px;
	padding: 0 0 20px;
}
.side_nav .recent_box ul li a {
	padding: 0 0 0 30px;
	display: block;
	position: relative;
}
.side_nav .recent_box ul li a::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/common/icon_write.png")no-repeat center/19px 19px;
	left: 0;
	top: 4px;
	width: 19px;
	height: 19px;
}
.side_nav .recent_box ul li .ttl {
	font-size: 90%;
	line-height: 1.8;
	margin: 0 0 5px;
}
.side_nav .recent_box ul li .time {
	font-size: 80%;
}
.side_nav .recent_box ul li .time span {
	position: relative;
	padding: 0 0 0 20px;
}
.side_nav .recent_box ul li .time span:before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/index/icon_time.png")no-repeat center/12px 12px;
	left:0;
	top: 50%;
	transform: translate(0,-50%);
	width: 12px;
	height: 12px;
}

@media screen and (max-width:768px) {
    .side_nav .search {
        margin: 0 0 20px;
    }
    .side_nav .com_info {
        padding: 20px;
        margin: 0 0 20px;
    }
    .side_nav .download {
        border: 1px solid #c9c9c9;
        margin: 0 0 20px;
    }
    .side_nav .banner_box .side_banner {
        margin: 0 0 20px;
    }
    .side_nav .banner_box {
        margin: 0 0 50px;
    }
}

/* index
-------------------------------------------------------*/
#index #about .top_txt {
	text-align: center;
	line-height: 1.8;
	font-size: 110%;
	margin: 0 0 20px;
}
#index #about .img {
	text-align: center;
	margin: 0 0 50px;
}
#index #about .img img {
	max-width: 694px;
}
#index #service ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#index #service ul li:not(:last-child) {		margin: 0 0 30px;
}
#index #service ul li .img {
	margin: 0 30px 0 0;
	width: 35%;
}
#index #service ul li .box {
	width: 65%;
}
#index #service ul li .box .txt_box {
	border-left: 1px solid #add9de;
	padding: 15px 0 15px 30px;
	margin: 0 0 15px;
}
#index #service ul li .box .txt_box .ttl {
	font-size: 120%;
	font-weight: 700;
	margin: 0 0 10px;
}
#index #service ul li .box .txt_box .txt {
	font-size: 110%;
	line-height: 1.4;
}
#index #service ul li .box .btn_purple {
	margin: 0 0 0 auto;
}
#index #achievement .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 30px;
}
#index #achievement .box .txt_box {
	width: 65%;
	padding: 0 50px 0 0;
}
#index #achievement .box .txt_box .ttl {
	font-size: 120%;
	font-weight: 700;
	margin: 0 0 20px;
	padding: 0 0 20px;
	border-bottom: 1px solid #add9de;
}
#index #achievement .box .txt_box .txt {
	font-size: 110%;
	line-height: 1.4;
}
#index #achievement .box .img {
	width: 35%;
}
#index #achievement .box .img img {
	max-width: 244px;
}
#index #achievement ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 0 40px;
}
#index #achievement ul li {
	width: 24%;
	background: #eeeeee;
	border-radius: 5px;
	margin: 0 0 10px;
	text-align: center;
	padding: 20px 0;
}
#index #voice ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 0 0 20px;
}
#index #voice ul li{
	width: 31%;
	margin: 0 0 30px;
}
#index #voice ul li:not(:nth-child(3n)) {
	margin: 0 3.5% 30px 0;
}
#index #voice ul li .img {
	margin: 0 0 20px;
}
#index #voice ul li .txt_box {
	padding: 10px 0 10px 25px;
	border-left: 1px solid #add9de;
	font-size: 105%;
	line-height: 1.6;
	font-weight: 500;
}
#index #clients .caution {
	text-align: center;
	margin: 0 0 30px;
}
#index #clients .img {
	text-align: center;
}
#index #clients .img img {
	max-width: 950px;
}
#index #price .ttl {
	background: #eeeeee;
	font-weight: 700;
	font-size: 130%;
	text-align: center;
	padding: 15px;
	margin: 0 0 30px;
}
#index #price .ttl span.small {
	font-size: 80%;
	padding: 0 0 0 10px;
}
#index #price ul.plan {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: center;
	margin: 0 0 30px;
}
#index #price ul.plan li .icon {
	margin: 0 0 10px;
	text-align: center;
}
#index #price ul.plan li .icon img {
	max-width: 120px;
}
#index #price ul.plan li .name {
	text-align: center;
	font-weight: 500;
	line-height: 1.2;
}
#index #price ul.plan li .plus {
	margin: 0 40px;
	padding: 45px 0 0;
}
#index #price ul.plan li .plus img {
	max-width: 34px;
	min-width: 20px;
}
#index #price .mid_txt {
	text-align: center;
	font-size: 140%;
	font-weight: 500;
	margin: 0 0 20px;
}
#index #price .txt {
	text-align: center;
	font-size: 110%;
}
#index #price .budget {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: center;
	margin: 25px 0;
}
#index #price .budget li {
	width: 30%;
	background: #77c0c9;
	color: #fff;
	font-weight: 500;
	font-size: 110%;
	text-align: center;
	margin: 0 5px;
	padding: 10px;
}
#index #price .btm {
	text-align: center;
	font-size: 130%;
	font-weight: 500;
	margin: 20px 0 30px;
	line-height: 1.4;
}
#index #price .btm span {
	font-size: 150%;
}
#index #price .lowest {
	text-align: center;
	font-size: 160%;
	font-weight: 500;
	border: 4px solid #c5dadd;
	padding: 10px 10px 15px;
	margin: 0 0 20px;
}
#index #price .lowest .pink {
	font-size: 140%;
}
#index #price .caution {
	line-height: 1.4;
}
#index .banner {
	margin: 0 0 100px;
}
#index .banner .inner {
	text-align: center;
}
#index .banner a img {
	max-width: 760px;
}
#index #interview ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 0 70px;
}
#index #interview ul li {
	width: 48%;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
	padding: 45px 30px;
	box-sizing: border-box;
	background: #fff;
}
#index #interview ul li a {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#index #interview ul li a .img {
	width: 30%;
	margin: 0 20px 0 0;
}
#index #interview ul li a .box {
	width: 70%;
}
#index #interview ul li a .box .name_box {
	margin: 0 0 20px;
	border-left: 1px solid #add9de;
	padding: 10px 0 10px 25px;
	font-weight: 500;
}
#index #interview ul li a .box .name_box .role {
	font-size: 90%;
	margin: 0 0 10px;
}
#index #interview ul li a .box .name_box .name {
	font-size: 110%;
}
#index #interview ul li a .box .txt {
	line-height: 1.3;
}
#index #new ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 0 0 30px;
}
#index #new ul li {
	background: #fff;
	border: 1px solid #d2d2d2;
	padding: 20px;
	width: 31%;
	box-sizing: border-box;
	margin: 0 0 30px;
}
#index #new ul li:not(:nth-child(3n)){
    margin: 0 3.5% 30px 0;
}
#index #new ul li .img {
	margin: 0 0 20px;
}
#index #new ul li .ttl {
	font-weight: 500;
	margin: 0 0 15px;
	line-height: 1.6;
}
#index #new ul li .date {
	text-align: right;
	font-size: 90%;
	color: #a0a0a0;
}
#index #new ul li .date span {
	position: relative;
}
#index #new ul li .date span::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/index/icon_time.png")no-repeat center/12px 12px;
	left: -15px;
	top: 50%;
	transform: translate(0,-50%);
	width: 12px;
	height: 12px;
}
@media screen and (max-width:768px) {
	#index #about .top_txt {
		font-size: 90%;
	}
	#index #about .img {
		text-align: center;
		margin: 0 0 30px;
	}
	#index #service ul li {
		flex-flow: column;
	}
	#index #service ul li .img {
		margin: 0 0 20px;
		width: 100%;
	}
	#index #service ul li .box {
		width: 100%;
	}
	#index #service ul li .box .txt_box {
		padding: 15px 0 15px 20px;
		margin: 0 0 10px;
	}
	#index #service ul li .box .txt_box .txt {
		font-size: 90%;
	}
	#index #achievement .box {
		flex-flow: column-reverse;
		align-items: center;
		justify-content: center;
	}
	#index #achievement .box .txt_box {
		width: 100%;
		padding: 0;
	}
	#index #achievement .box .txt_box .txt {
		font-size: 90%;
	}
	#index #achievement .box .img {
		width: 50%;
		margin: 0 auto 20px;
		text-align: center;
	}
	#index #achievement ul {
		margin: 0 0 20px;
	}
	#index #achievement ul li {
		width: 48%;
		padding: 15px 0;
	}
	#index #voice ul {
		margin: 0 0 20px;
	}
	#index #voice ul li{
		width: 47%;
		margin: 0 0 20px;
	}
	#index #voice ul li:not(:nth-child(3n)) {
		margin: 0 0 20px;
	}
	#index #voice ul li:not(:nth-child(2n)) {
		margin: 0 6% 20px 0;
	}
	#index #voice ul li .img {
		margin: 0 0 10px;
	}
	#index #voice ul li .txt_box {
		padding: 10px 0 10px 15px;
		font-size: 90%;
	}
	#index #price .ttl {
		padding: 15px 10px;
	}
	#index #price .ttl span.small {
		padding: 10px 0 0;
		display: block;
	}
	#index #price ul.plan li .plus {
		margin: 0 10px;
	}
	#index #price .mid_txt {
		font-size: 120%;
		margin: 0 0 20px;
		line-height: 1.4;
	}
	#index #price .txt {
		font-size: 95%;
		line-height: 1.4;
	}
	#index #price .budget {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 20px 0;
	}
	#index #price .budget li {
		width: 70%;
		font-size: 100%;
		margin: 0;
	}
	#index #price .budget li:not(:last-child) {
		margin: 0 0 10px;
	}
	#index #price .btm {
		font-size: 110%;
		margin: 20px 0;
	}
	#index #price .lowest {
		font-size: 130%;
	}
	#index #price .caution {
		font-size: 90%;
	}
	#index .banner {
		margin: 0 20px 50px;
	}
	#index #interview ul {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 0 0 30px;
	}
	#index #interview ul li {
		width: 100%;
		padding: 20px;
	}
	#index #interview ul li:not(:last-child) {
		margin: 0 0 20px;
	}
	#index #interview ul li a {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#index #interview ul li a .img {
		width: 40%;
		margin: 0 0 20px;
	}
	#index #interview ul li a .box {
		width: 100%;
	}
	#index #interview ul li a .box .name_box {
		margin: 0 0 20px;
		padding: 10px 0 10px 15px;
	}
	#index #interview ul li a .box .txt {
		font-size: 90%;
	}
	#index #new ul {
		margin: 0 0 10px;
	}
	#index #new ul li {
		padding: 10px;
		width: 48%;
		margin: 0 0 20px;
	}
	#index #new ul li:not(:nth-child(3n)){
		margin: 0 0 20px;
	}
	#index #new ul li:not(:nth-child(2n)){
		margin: 0 4% 20px 0;
	}
	#index #new ul li .img {
		margin: 0 0 10px;
	}
	#index #new ul li .ttl {
		margin: 0 0 10px;
		font-size: 90%;
	}
	#index #new ul li .date {
		font-size: 80%;
	}
}


@media screen and (max-width:400px) {
	#index #price ul.plan {
		flex-flow: row wrap;
		margin: 0 0 20px;
	}
	#index #price ul.plan li {
		margin: 0 0 20px;
	}
	#index #price ul.plan li .icon {
		margin: 0 auto 10px;
		text-align: center;
	}
	#index #price ul.plan li .icon img {
		max-width: 100px;
	}
	#index #price ul.plan li .name {
		text-align: center;
		line-height: 1.2;
	}
	#index #price ul.plan li .plus {
		margin: 0 20px;
		padding: 35px 0 0;
	}
	#index #price ul.plan li .plus.none {
		display: none;
	}
	#index #price ul.plan li .plus img {
		max-width: 30px;
	}
}

/* article
-------------------------------------------------------*/
.art_common a:hover {
	color: inherit;
}
.art_common .cps-post-cat a {
    background-color: #9acc1e !important;
    border-color: #9acc1e !important;
}
.art_common .cps-post .cps-post-header .cps-post-cat a {
    color: #fff !important;
    border-radius: 15px;
    line-height: 0;
}
.art_common .cps-post .cps-post-header .cps-post-cat a {
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 300;
}
.art_common .cps-post .cps-post-header .cps-post-cat {
    display: inline;
    font-size: 0.8rem;
    margin-right: 10px;
    color: #f8b500;
    font-weight: 400;
    letter-spacing: 0;
    margin-right: 5px;
    margin-bottom: 15px;
    display: block;
}
.art_common .cps-post .cps-post-header .cps-post-title {
    font-size: 1.8rem;
    line-height: 2.3rem;
}
.art_common .cps-post .cps-post-header .cps-post-meta {
    display: block;
    margin-top: 15px;
}
.art_common #main-contents {
    width: 100%;
    margin-left: 0;
}
.art_common .article_style2 .cps-post-box {
    padding: 0;
}
.art_common .cps-post-main .marker {
    background: -webkit-linear-gradient( transparent 60%, #ffff00 0% );
    background: linear-gradient( transparent 60%, #ffff00 0% );
}
.art_common strong {
    font-weight: 600;
}
.art_common .blog-card {
    border: 1px solid #9acc1e;
}
.art_common .innerlink-box1::before, .art_common .blog-card-hl-box {
    background-color: #9acc1e;
}
.art_common .concept-box6 {
    border-color: #8eaced;
}
.art_common .concept-box6::before {
    content: "メモ";
    color: #8eaced;
}
.art_common .concept-box6::after {
    background-color: #8eaced;
}
.art_common .cps-post-main a {
    color: #0033cc;
}
.art_common .simple-box4 {
    border-color: #7badd8;
}
.art_common .simple-box4::before {
    background-color: #7badd8;
}
.art_common .concept-box2 {
    border-color: #f7cf6a;
}
.art_common .concept-box2::before {
    content: "注意点";
    color: #f7cf6a;
}
.art_common .concept-box2::after {
    background-color: #f7cf6a;
}
.art_common .blog-card-excerpt {
    letter-spacing: 1px;
	line-height: 1.6;
}
.art_common .concept-box1 {
    border-color: #85db8f;
}
.art_common .concept-box1::before {
    content: "ポイント";
    color: #85db8f;
}
.art_common .concept-box1::after {
    background-color: #85db8f;
}
.art_common .tag-box a {
	border-color: #0d0015;
}
.art_common .cta-content::before {
    background-color: #ffffff;
}
.art_common .cta-text, .art_common .info-title {
    color: #4f4f4f;
}
.art_common .color-button01-big {
    width: 40%;
}
.art_common .color-button01-big a, .color-button01-big a:hover, .color-button01-big::before {
    background-color: #33a539;
}
.art_common .color-button01-big a {
    padding-top: 12px;
    padding-bottom: 12px;
}
.art_common .related-entry-headline-text span::before {
    background-color: #0d0015;
    border-color: #0d0015;
}
.art_common .related-entry-section .related-entry-headline-text .jin-ifont-post {
    margin-right: 24px;
}
.art_common .swiper-slide .post-list-cat {
	background-color: #9acc1e!important;
}
.art_common .related-ad-area img {
	max-width: 300px;
}
.art_common .swiper-pagination-bullet-active {
    background: #9acc1e;
}
.art_common .cps-post-main ul > li::before, .art_common .cps-post-main ol > li::before {
    background-color: #9acc1e !important;
}
#bfb_content_sp {
	display: none;
}
.art_common .sns {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
}
.art_common .sns img {
	max-width: 28px;
}
.art_common .sns li {
	padding: 0 0 0 20px;
}

.art_common .ttl_bar {
	font-size: 130%;
	font-weight: bold;
	margin: 0 0 20px;
	padding: 0 0 20px;
	border-bottom: 1px solid #77c0c9;
	position: relative;
}
.art_common .ttl_bar::before {
	position: absolute;
	display: block;
	content: "";
	background: #6f73b9;
	width: 150px;
	height: 1px;
	bottom: -1px;
	left: 0;
}
.art_common .about_insta .btn_purple {
	width: 400px;
	color: #fff;
	text-decoration: none;
	padding: 25px 0px;
	font-size: 100%;
}
.art_common .post_box {
	margin: 80px 0;
	background: #f3fbfc;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	font-size: 90%;
	padding: 30px 60px 25px;
}
.art_common .post_box li {
	padding: 0;
	width: 45%;
}
.art_common .post_box li a {
	text-decoration: none;
	color: #333;
	line-height: 1.5;
	position: relative;
}
.art_common .post_box li a.prev::before{
	position: absolute;
	display: block;
	content: "";
	background: url("../img/common/prev.png")no-repeat left center/19px 36px;
	width: 19px;
	height: 36px;
	left: -40px;
	top: -50%;
	transform: translate(0,50%);
}
.art_common .post_box li a.after::before{
	position: absolute;
	display: block;
	content: "";
	background: url("../img/common/next.png")no-repeat right center/19px 36px;
	width: 19px;
	height: 36px;
	right: -40px;
	top: -50%;
	transform: translate(0,50%);
}
.art_common .related_in  {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0;
}
.art_common .related_in li {
	padding: 0;
	width: 31%;
}
.art_common .related_in li a {
	text-decoration: none;
	color: #333;
}
.art_common .related_in li .img {
	padding: 0;
}
.art_common .related_in li .img img {
	margin: 0 0 10px;
}
.art_common .related_in li .ttl {
	font-size: 90%;
	font-weight: 500;
	line-height: 1.6;
	padding: 0 0 10px;
}
.art_common .related_in li .tag {
	font-size: 80%;
	text-align: right;
	display: block;
}
.art_common .related_in li .tag span {
	position: relative;
}
.art_common .related_in li .tag span::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/common/icon_tag.png")no-repeat center/17px 17px;
	left: -25px;
	top: 50%;
	transform: translate(0,-50%);
	width: 17px;
	height: 17px;
}
.art_common .related_in li .time {
	text-align: right;
	font-size: 90%;
	color: #a0a0a0;
	margin: 10px 0 0;
}
.art_common .related_in li .time span {
	position: relative;
}
.art_common .related_in li .time span::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/index/icon_time.png")no-repeat center/12px 12px;
	left: -15px;
	top: 50%;
	transform: translate(0,-50%);
	width: 12px;
	height: 12px;
}
@media screen and (max-width:768px) {
	.art_common .cps-post .cps-post-header .cps-post-title {
		font-size: 1.45rem;
		line-height: 1.9rem;
	}
	.art_common .cta-content {
		padding: 20px 10px;
		margin-top: 10px;
	}
	.art_common .color-button01-big {
		width: 100%;
	}
	.art_common .about_insta .btn_purple {
		width: 100%;
	}
	.art_common .post_box {
		margin: 40px 0;
		flex-flow: column;
		align-items: center;
		justify-content: space-between;
		font-size: 90%;
		padding: 30px 60px;
	}
	.art_common .post_box li {
		width: 100%;
	}
	.art_common .post_box li:not(:last-child) {
		margin: 0 0 20px;
	}
	.art_common .post_box li:last-child{
		margin: 0;
	}
	.art_common .related_in {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.art_common .related_in li {
		width: 100%;
	}
	.art_common .related_in li .time {
		padding: 0 0 20px;
	}
}


/* lower_common
-------------------------------------------------------*/
.lower_common .visual {
	height: 350px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lower_common .visual h2.main_ttl {
	text-align: center;
	color: #fff;
	font-size: 220%;
	font-weight: 500;
	line-height: 1.4;
}
@media screen and (max-width:768px) {
	.lower_common .visual {
		height: 200px;
	}
	.lower_common .visual h2.main_ttl {
		font-size: 130%;
	}
}

/* service_listing
-------------------------------------------------------*/


#norikae .inner {
/*    max-width: 960px; */
    margin: 0 auto;
}

#service_listing .visual {
	background: url("../img/service_listing_/visual_service.png")no-repeat center/cover;
}
#service_listing .inner_s {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 20px;
}
#service_listing .area {
	padding: 70px 0 0;
}
#service_listing .ttl01 {
	background: #6f73b9;
	color: #fff;
	font-size: 200%;
	text-align: center;
	margin: 0 0 40px;
	font-weight: 500;
	padding: 25px;
}
#service_listing .ttl01::after {
    display: none;
}
#service_listing #customer.area {
	padding: 90px 0 0;
}
#service_listing #customer .ttl {
	font-size: 1.8rem;
	line-height: 2.3rem;
	border-bottom: 2px solid #add9de;
	position: relative;
	margin: 0 0 30px;
	padding: 0 0 20px;
}
#service_listing #customer .ttl::after {
	content: "";
	display: block;
	line-height: 0;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 15%;
	border-bottom: 2px solid #6f73b9;
}
#service_listing #customer ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
}
#service_listing #customer ul li {
	width: 30%;
	margin: 0 0 40px;
	position: relative;
}
#service_listing #customer ul li::before {
	display: none;
}
#service_listing #customer ul li::after {
	position: absolute;
	content: "";
	display: block;
	background: url("../img/service_listing_/voice_icon.png")no-repeat center/93px 66px;
	width: 93px;
	height: 66px;
	top: -13px;
	left: 10px;
}
#service_listing #customer ul li .img {
	line-height: 1;
}
#service_listing #customer ul li .img img {
	margin: 0 0 10px;
	width: 100%;
}
#service_listing .pink_ub {
	background:linear-gradient(transparent 80%, #ffc7de 0%) ;
}
#service_listing #customer ul li .name {
	font-size: 85%;
	line-height: 1.4;
}
#service_listing .cont {
	margin: 0 0 100px;
}
#service_listing .banner img {
	width: 100%;
}
#service_listing .banner a:hover {
	opacity: 0.8;
}
#service_listing #area01.area {
	padding: 0;
}
#service_listing #area01 .ttl01 {
	margin: 0 0 60px;
}
#service_listing #area01 .ttl02 {
	text-align: center;
	font-size: 180%;
	border-bottom: 5px solid #add9de;
	line-height: 1;
	padding: 0 0 20px;
	margin: 0 0 30px;
}
#service_listing #area01 .ttl02 span {
	font-size: 150%;
	position: relative;
}
#service_listing #area01 .ttl02 span::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_listing_/area01_ttl_icon.png")no-repeat center/28px 23px;
	width: 28px;
	height: 23px;
	top: -14px;
	right: -13px;
}
#service_listing #area01 .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#service_listing #area01 .box ul {
	width: 80%;
}
#service_listing #area01 .box ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#service_listing #area01 .box ul li:not(:last-child) {
	margin: 0 0 20px;
}
#service_listing #area01 .box ul li .check {
	margin: 5px 10px 0 0;
}
#service_listing #area01 .box ul li .check img {
	max-width: 26px;
}
#service_listing #area01 .box ul li .txt {
	font-size: 140%;
	font-weight: 400;
	line-height: 1.6;
}
#service_listing #area01 .box .img {
	width: 20%;
}
#service_listing #area01 .box .img img {
	max-width: 127px;
}
#service_listing #area02 ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#service_listing #area02 ul li:not(:last-child) {
	margin: 0 0 30px;
}
#service_listing #area02 ul li .img {
	margin: 0 30px 0 0;
	width: 15%;
}
#service_listing #area02 ul li .img img {
	max-width: 140px;
}
#service_listing #area02 ul li .txt_box {
	width: 85%;
}
#service_listing #area02 ul li .ttl {
	font-size: 160%;
	color: #6f73b9;
	margin: 0 0 20px;
}
#service_listing #area02 ul li .txt {
	line-height: 1.6;
}
#service_listing #area03 .top_txt {
	text-align: center;
	margin: 0 0 20px;
	font-size: 120%;
	line-height: 1.6;
}
#service_listing #area03 .top_txt span {
	color: #e35a92;
}
#service_listing #area03 .arrow {
	margin: 0 0 20px;
	text-align: center;
}
#service_listing #area03 .arrow img {
	max-width: 97px;
}
#service_listing #area03 .box {
	border: 1px solid #6eb1ba;
	padding: 40px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#service_listing #area03 .box .txt {
	font-size: 120%;
	line-height: 1.6;
}
#service_listing #area03 .box .txt .pink_ub {
	color: #6f73b9;
	font-size: 120%;
}
#service_listing #area03 .box .img img {
	max-width: 260px;
}
#service_listing #area04 ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#service_listing #area04 ul li {
	width: 30%;
}
#service_listing #area04 ul li .img {
	margin: 0 0 40px;
	text-align: center;
}
#service_listing #area04 ul li .img img {
	max-width: 180px;
}
#service_listing #area04 ul li .txt {
	text-align: center;
	font-size: 120%;
	line-height: 1.6;
}
#service_listing #area04 ul li .txt span {
	color: #6f73b9;
}
#service_listing #area05 ul {
	position: relative;
	z-index: 5;
}
#service_listing #area05 ul li {
	border: 2px solid #add9de;
	border-radius: 10px;
	padding: 30px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	margin: 0 10px 0 0;
	position: relative;
	background: #fff;
}
#service_listing #area05 ul li::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_listing_/border_bg.png")repeat;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	right: -10px;
	bottom: -10px;
	z-index: -1;
}
#service_listing #area05 ul li:not(:last-child) {
	margin: 0 10px 50px 0;
}
#service_listing #area05 ul li .img {
	width: 40%;
	margin: 0 20px 0 0;
}
#service_listing #area05 ul li .img img {
	max-width: 100%;
}
#service_listing #area05 ul li .txt_box {
	width: 60%;
}
#service_listing #area05 ul li .txt_box .ttl_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 20px;
}
#service_listing #area05 ul li .txt_box .ttl_box .ttl {
	background: #77c0c9;
	border-radius: 10px;
	color: #fff;
	text-align: center;
	font-size: 110%;
	line-height: 1.4;
	padding: 10px 15px;
	position: relative;
	margin: 0 30px 0 0;
}
#service_listing #area05 ul li .txt_box .ttl_box .ttl::after {
	position: absolute;
	content: "";
	display: block;
	background: url("../img/service_listing_/area05_arrow.png")no-repeat center/15px 16px;
	width: 15px;
	height: 16px;
	right: -20px;
	top: 50%;
	transform: translate(-50%,-50%);
}
#service_listing #area05 ul li .txt_box .ttl_box .num img {
	max-width: 176px;
}
#service_listing #area05 ul li .txt_box .company {
	font-size: 110%;
	margin: 0 0 10px;
}
#service_listing #area07 .inner {
	position: relative;
	z-index: 55;
}
#service_listing #area07 .top_box {
	border: 2px solid #add9de;
	background: #fff;
	padding: 30px;
	margin: 0 10px 40px 0;
	position: relative;
	border-radius: 10px;
}
#service_listing #area07 .top_box::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_listing_/border_bg.png")repeat;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	right: -10px;
	bottom: -10px;
	z-index: -1;
}
#service_listing #area07 .top_box .ttl {
	text-align: center;
	margin: 0 0 20px;
}
#service_listing #area07 .top_box .ttl span {
	background: #77c0c9;
	border-radius: 50px;
	color: #fff;
	font-weight: bold;
	font-size: 200%;
	padding: 10px 90px;
	display: inline-block;
}
#service_listing #area07 .top_box .sub_ttl {
	text-align: center;
	margin:  0 0 20px;
	font-size: 180%;
	font-weight: bold;
}
#service_listing #area07 .top_box .sub_ttl b {
	position: relative;
}
#service_listing #area07 .top_box .sub_ttl b::before, #service_listing #area07 .top_box .sub_ttl b::after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 35px;
	height: 37px;
}
#service_listing #area07 .top_box .sub_ttl b::before {
	background: url("../img/service_listing_/area07_ttl01.png")no-repeat center/35px 37px; 
	left: -24px;
}
#service_listing #area07 .top_box .sub_ttl b::after {
	background: url("../img/service_listing_/area07_ttl02.png")no-repeat center/35px 37px; 
	right: -60px;
}
#service_listing #area07 .top_box .sub_ttl span.pink {
	color: #e35a92;
}
#service_listing #area07 .top_box .sub_ttl span.big {
	font-size: 140%;
}
#service_listing #area07 ul.top {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
}
#service_listing #area07 ul.top li {
	width: 25%;
	margin: 0 50px;
}
#service_listing #area07 ul.top li .img {
	margin: 0 0 40px;
	text-align: center;
	position: relative;
}
#service_listing #area07 ul.top li:not(:last-child) .img::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_listing_/plus.png")no-repeat center/34px 34px;
	width: 34px;
	height: 34px;
	right: -66%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#service_listing #area07 ul.top li .img img {
	max-width: 120px;
}
#service_listing #area07 ul.top li .txt {
	text-align: center;
	font-weight: bold;
	font-size: 120%;
	line-height: 1.6;
}
#service_listing #area07 .mid_box {
	text-align: center;
	font-size: 110%;
}
#service_listing #area07 .mid_box .txt {
	line-height: 1.6;
}
#service_listing #area07 .mid_box .txt:first-child {
	margin: 0 0 20px;
}
#service_listing #area07 .mid_box ul.mid {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 20px;
}
#service_listing #area07 .mid_box ul.mid li {
	width: 23%;
	background: #77c0c9;
	color: #fff;
	font-size: 110%;
	font-weight: bold;
	text-align: center;
	border-radius: 10px;
	padding: 7px 0;
}
#service_listing #area07 .mid_box .txt .pink_ub {
	color: #6f73b9;
	font-size: 130%;
}
#service_listing .banner.area.btm {
	padding: 70px 0 100px;
}
#service_listing .banner {
	text-align: center;
}
#service_listing .banner img {
	max-width: 760px;
}
@media screen and (max-width:768px) {

	#service_listing {
		line-height: 1.4;
	}
	#service_listing .sp {
		display: block;
	}
	#service_listing .pc {
		display: none;
	}
	#service_listing #customer.area {
		padding: 60px 0 0;
	}
	#service_listing #customer .ttl {
		font-size: 1.4rem;
		line-height: 1.9rem;
		margin: 0 0 30px;
		padding: 0 0 20px;
	}
	#service_listing #customer .ttl::after {
		width: 30%;
	}
	#service_listing #customer ul li {
		width: 48%;
		margin: 0 0 30px;
	}
	#service_listing #customer ul li::after {
		position: absolute;
		content: "";
		display: block;
		background: url("../img/service_listing_/voice_icon.png")no-repeat center/55px 39px;
		width: 55px;
		height: 39px;
	}
	#service_listing #customer ul li .name {
		font-size: 80%;
	}
	#service_listing .inner {
		padding: 0 20px;
	}
	#service_listing .area {
		padding: 40px 0 0;
	}
	#service_listing .ttl01 {
		font-size: 110%;
		margin: 0 0 30px;
		padding: 15px 20px;
	}
	#service_listing .cont {
		margin: 0 0 50px;
	}
	#service_listing #area01 .ttl01 {
		margin: 0 0 30px;
	}
	#service_listing #area01 .ttl02 {
		font-size: 120%;
		border-bottom: 3px solid #add9de;
	}
	#service_listing #area01 .ttl02 span {
		font-size: 130%;
	}
	#service_listing #area01 .ttl02 span::after {
		background: url("../img/service_listing_/area01_ttl_icon.png")no-repeat center/19px 16px;
		width: 19px;
		height: 16px;
	}
	#service_listing #area01 .box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#service_listing #area01 .box ul {
		width: 100%;
		margin: 0 0 20px;
	}
	#service_listing #area01 .box ul li .txt {
		font-size: 100%;
	}
	#service_listing #area01 .box .img {
		width: 100%;
		text-align: center;
	}
	#service_listing #area01 .box .img img {
		max-width: 30%;
	}
	#service_listing #area02 ul li {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#service_listing #area02 ul li .img {
		margin: 0 0 20px;
		width: 100%;
		text-align: center;
	}
	#service_listing #area02 ul li .img img {
		max-width: 140px;
	}
	#service_listing #area02 ul li .txt_box {
		width: 100%;
	}
	#service_listing #area02 ul li .ttl {
		font-size: 120%;
	}
	#service_listing #area03 .top_txt {
		font-size: 100%;
	}
	#service_listing #area03 .box {
		padding: 20px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#service_listing #area03 .box .txt {
		font-size: 100%;
		margin: 0 0 20px;
	}
	#service_listing #area03 .box .txt .pink_ub {
		font-size: 110%;
	}
	#service_listing #area04 ul {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#service_listing #area04 ul li {
		width: 100%;
	}
	#service_listing #area04 ul li:not(:last-child) {
		margin: 0 0 20px;
	}
	#service_listing #area04 ul li .img {
		margin: 0 0 10px;
	}
	#service_listing #area04 ul li .img img {
		max-width: 150px;
	}
	#service_listing #area04 ul li .txt {
		font-size: 100%;
	}
	#service_listing #area05 ul li {
		padding: 20px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		width: 100%;
	}
	#service_listing #area05 ul li:not(:last-child) {
		margin: 0 10px 30px 0;
	}
	#service_listing #area05 ul li .img {
		width: 100%;
		text-align: center;
		margin: 0 0 10px;
	}
	#service_listing #area05 ul li .img img {
		max-width: 100%;
	}
	#service_listing #area05 ul li .txt_box {
		width: 100%;
	}
	#service_listing #area05 ul li .txt_box .ttl_box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#service_listing #area05 ul li .txt_box .ttl_box .ttl {
		font-size: 90%;
		padding: 10px;
		margin: 0 0 20px;
	}
	#service_listing #area05 ul li .txt_box .ttl_box .ttl::after {
		right: 50%;
		top: inherit;
		bottom: -5px;
		transform: translate(50%,50%) rotate(90deg);
	}
	#service_listing #area05 ul li .txt_box .ttl_box .num img {
		max-width: 130px;
	}
	#service_listing #area07 .top_box {
		padding: 20px;
		margin: 0 10px 30px 0;
	}
	#service_listing #area07 .top_box .ttl span {
		font-size: 110%;
		padding: 10px 15px;
	}
	#service_listing #area07 .top_box .sub_ttl {
		font-size: 120%;
	}
	#service_listing #area07 .top_box .sub_ttl b::before, #service_listing #area07 .top_box .sub_ttl b::after {
		top: 160%;
		display: none;
	}
	#service_listing #area07 ul.top {
		flex-flow: row wrap;
		justify-content: space-between;
		width: 100%;
	}
	#service_listing #area07 ul.top li {
		width: 45%;
		margin: 0;
	}
	#service_listing #area07 ul.top li:nth-child(-n+2) {
		margin: 0 0 20px;
	}
	#service_listing #area07 ul.top li .img {
		margin: 0 0 10px;
	}
	#service_listing #area07 ul.top li:not(:last-child) .img::after {
		background: url("../img/service_listing_/plus.png")no-repeat center/25px 25px;
		width: 25px;
		height: 25px;
		right: -39px;
	}
	#service_listing #area07 ul.top li:nth-child(2) .img::after {
		display: none;
	}
	#service_listing #area07 ul.top li .img img {
		max-width: 100px;
	}
	#service_listing #area07 ul.top li .txt {
		font-size: 90%;
	}
	#service_listing #area07 .mid_box {
		font-size: 100%;
	}
	#service_listing #area07 .mid_box .txt:first-child {
		margin: 0 0 10px;
	}
	#service_listing #area07 .mid_box ul.mid {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 0 0 10px;
	}
	#service_listing #area07 .mid_box ul.mid li {
		width: 100%;
		font-size: 110%;
	}
	#service_listing #area07 .mid_box ul.mid li:not(:last-child) {
		margin: 0 0 10px;
	}
	#service_listing #area07 .mid_box .txt .pink_ub {
		font-size: 120%;
	}
	#service_listing .banner.area.btm {
		padding: 40px 0 70px;
	}
}


/* instagram
-------------------------------------------------------*/

#instagram_wrap .inner {
/*    max-width: 960px; */
    margin: 0 auto;
}


#instagram .visual {
	background: url("../img/service_instagram/visual_ig.png")no-repeat center/cover;
}
#instagram .inner_s {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 20px;
}
#instagram .area {
	padding: 70px 0 0;
}
#instagram .ttl01 {
	background: #6f73b9;
	color: #fff;
	font-size: 200%;
	text-align: center;
	margin: 0 0 40px;
	font-weight: 500;
	padding: 25px;
}
#instagram .ttl01::after {
	display: none;
}
#instagram #customer.area {
	padding: 90px 0 0;
}
#instagram #customer .ttl {
	font-size: 1.8rem;
	line-height: 2.3rem;
	border-bottom: 2px solid #add9de;
	position: relative;
	margin: 0 0 30px;
	padding: 0 0 20px;
}
#instagram #customer .ttl::after {
	content: "";
	display: block;
	line-height: 0;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 15%;
	border-bottom: 2px solid #6f73b9;
}
#instagram #customer ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
}
#instagram #customer ul li {
	width: 30%;
	margin: 0 0 40px;
	position: relative;
}
#instagram #customer ul li::before {
	display: none;
}
#instagram #customer ul li::after {
	position: absolute;
	content: "";
	display: block;
	background: url("../img/service_instagram/voice_icon.png")no-repeat center/93px 66px;
	width: 93px;
	height: 66px;
	top: -13px;
	left: 10px;
}
#instagram #customer ul li .img {
	line-height: 1;
}
#instagram #customer ul li .img img {
	margin: 0 0 10px;
	width: 100%;
}
#instagram .pink_ub {
	background:linear-gradient(transparent 80%, #ffc7de 0%) ;
}
#instagram #customer ul li .name {
	font-size: 85%;
	line-height: 1.4;
}
#instagram .cont {
	margin: 0 0 100px;
}
#instagram .banner img {
	width: 100%;
}
#instagram .banner a:hover {
	opacity: 0.8;
}
#instagram #area01.area {
	padding: 0;
}
#instagram #area01 .ttl01 {
	margin: 0 0 60px;
}
#instagram #area01 .ttl02 {
	text-align: center;
	font-size: 180%;
	font-weight: 500;
	border-bottom: 5px solid #add9de;
	line-height: 1;
	padding: 0 0 20px;
	margin: 0 0 30px;
}
#instagram #area01 .ttl02 span {
	font-size: 150%;
	position: relative;
}
#instagram #area01 .ttl02 span::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_instagram/area01_ttl_icon.png")no-repeat center/28px 23px;
	width: 28px;
	height: 23px;
	top: -14px;
	right: -13px;
}
#instagram #area01 .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#instagram #area01 .box ul {
	width: 70%;
}
#instagram #area01 .box ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#instagram #area01 .box ul li:not(:last-child) {
	margin: 0 0 20px;
}
#instagram #area01 .box ul li .check {
	margin: 0 10px 0 0;
}
#instagram #area01 .box ul li .check img {
	max-width: 26px;
}
#instagram #area01 .box ul li .txt {
	font-size: 140%;
}
#instagram #area01 .box .img {
	width: 30%;
}
#instagram #area01 .box .img img {
	max-width: 223px;
}
#instagram #merit {
	background: #f5f5f5;
}
#instagram #merit.area {
	padding: 0 0 70px;
	margin: 70px 0 0;
}
#instagram #merit .ttl01 span {
	position: relative;
}
#instagram #merit .ttl01 span::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_instagram/area02_ttl_icon.png")no-repeat center/114px 174px;
	width: 114px;
	height: 174px;
	left: -190px;
	top: 120%;
	transform: translate(-50%,-50%);
}
#instagram #merit ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: center;
}
#instagram #merit ul li {
	border: 2px solid #add9de;
	padding: 20px;
	position: relative;
	border-radius: 10px;
	background: #fff;
	width: 48%;
	box-sizing: border-box;
	height: 470px;
	margin: 0 0 30px;
}
#instagram #merit ul li:nth-child(odd) {
	margin: 0 20px 30px 0;
}
#instagram #merit ul li:last-child {
	margin: 0;
}
#instagram #merit ul li::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_instagram/area02_merit.png")no-repeat center/110px 65px;
	width: 110px;
	height: 65px;
	top: -10px;
	left: -10px;
}
#instagram #merit ul li .img {
	margin: 0 0 30px;
}
#instagram #merit ul li .img img {
	max-width: 100%;
}
#instagram #merit ul li .ttl {
	text-align: center;
	margin: 0 0 20px;
	font-size: 110%;
	font-weight: bold;
	color: #6f73b9;
	line-height: 1.4;
}
#instagram #merit ul li .txt {
	line-height: 1.6;
}
#instagram #area02.area {
	padding: 0;
}
#instagram #area02 ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#instagram #area02 ul li:not(:last-child) {
	margin: 0 0 30px;
}
#instagram #area02 ul li .img {
	margin: 0 30px 0 0;
	width: 15%;
}
#instagram #area02 ul li .img img {
	max-width: 140px;
}
#instagram #area02 ul li .txt_box {
	width: 85%;
}
#instagram #area02 ul li .ttl {
	font-size: 160%;
	font-weight: 400;
	color: #6f73b9;
	margin: 0 0 20px;
}
#instagram #area02 ul li .txt {
	line-height: 1.6;
}
#instagram #area05 ul {
	position: relative;
	z-index: 5;
}
#instagram #area05 ul li {
	border: 2px solid #add9de;
	border-radius: 10px;
	padding: 30px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	margin: 0 10px 0 0;
	position: relative;
	background: #fff;
}
#instagram #area05 ul li::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_instagram/border_bg.png")repeat;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	right: -10px;
	bottom: -10px;
	z-index: -1;
}
#instagram #area05 ul li:not(:last-child) {
	margin: 0 10px 50px 0;
}
#instagram #area05 ul li .img {
	width: 40%;
	margin: 0 20px 0 0;
}
#instagram #area05 ul li .img img {
	max-width: 100%;
}
#instagram #area05 ul li .txt_box {
	width: 60%;
}
#instagram #area05 ul li .txt_box .ttl_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 20px;
}
#instagram #area05 ul li .txt_box .ttl_box .ttl {
	background: #77c0c9;
	border-radius: 10px;
	color: #fff;
	text-align: center;
	font-size: 110%;
	line-height: 1.4;
	padding: 10px 15px;
	position: relative;
	margin: 0 30px 0 0;
}
#instagram #area05 ul li .txt_box .ttl_box .ttl::after {
	position: absolute;
	content: "";
	display: block;
	background: url("../img/service_instagram/area05_arrow.png")no-repeat center/15px 16px;
	width: 15px;
	height: 16px;
	right: -20px;
	top: 50%;
	transform: translate(-50%,-50%);
}
#instagram #area05 ul li .txt_box .ttl_box .num img {
	max-width: 176px;
}
#instagram #area05 ul li .txt_box .company {
	font-size: 110%;
	margin: 0 0 10px;
}
#instagram #area07 .inner {
	position: relative;
	z-index: 55;
}
#instagram #area07 .top_box {
	border: 2px solid #add9de;
	background: #fff;
	padding: 30px;
	margin: 0 10px 40px 0;
	position: relative;
	border-radius: 10px;
}
#instagram #area07 .top_box::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_instagram/border_bg.png")repeat;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	right: -10px;
	bottom: -10px;
	z-index: -1;
}
#instagram #area07 .top_box .ttl {
	text-align: center;
	margin: 0 0 20px;
}
#instagram #area07 .top_box .ttl span {
	background: #77c0c9;
	border-radius: 50px;
	color: #fff;
	font-weight: bold;
	font-size: 200%;
	padding: 10px 90px;
}
#instagram #area07 .top_box .sub_ttl {
	text-align: center;
	margin:  0 0 20px;
	font-size: 180%;
	font-weight: bold;
}
#instagram #area07 .top_box .sub_ttl b {
	position: relative;
}
#instagram #area07 .top_box .sub_ttl b::before, #instagram #area07 .top_box .sub_ttl b::after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 35px;
	height: 37px;
}
#instagram #area07 .top_box .sub_ttl b::before {
	background: url("../img/service_instagram/area07_ttl01.png")no-repeat center/35px 37px; 
	left: -24px;
}
#instagram #area07 .top_box .sub_ttl b::after {
	background: url("../img/service_instagram/area07_ttl02.png")no-repeat center/35px 37px; 
	right: -60px;
}
#instagram #area07 .top_box .sub_ttl span.pink {
	color: #e35a92;
}
#instagram #area07 .top_box .sub_ttl span.big {
	font-size: 140%;
}
#instagram #area07 ul.top {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
}
#instagram #area07 ul.top li {
	width: 25%;
	margin: 0 50px;
}
#instagram #area07 ul.top li .img {
	margin: 0 0 20px;
	text-align: center;
	position: relative;
}
#instagram #area07 ul.top li:not(:last-child) .img::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_instagram/plus.png")no-repeat center/34px 34px;
	width: 34px;
	height: 34px;
	right: -66%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#instagram #area07 ul.top li .img img {
	max-width: 120px;
}
#instagram #area07 ul.top li .txt {
	text-align: center;
	font-weight: bold;
	font-size: 120%;
}
#instagram #area07 .mid_box {
	text-align: center;
	font-size: 110%;
}
#instagram #area07 .mid_box .ttl {
	font-size: 160%;
	text-align: center;
	margin: 0 0 20px;
	color: #6f73b9;
}
#instagram #area07 .mid_box .txt {
	line-height: 1.6;
}
#instagram #area07 .mid_box ul.mid {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0;
}
#instagram #area07 .mid_box ul.mid li {
	width: 32%;
	background: #77c0c9;
	color: #fff;
	font-size: 110%;
	font-weight: bold;
	text-align: center;
	border-radius: 10px;
	padding: 5px 0;
}
#instagram #area07 .mid_box .mid_ttl {
	margin: 30px 0 20px;
	font-size: 130%;
	color: #6f73b9;
}
#instagram #area07 .mid_box .mid_ttl .pink_ub {
	font-size: 130%;
}
#instagram #area07 .mid_box .box  {
	border: 4px solid #c5dadd;
	padding: 10px 0;
	text-align: center;
	margin: 0 0 20px;
	font-weight: bold;
	font-size: 150%;
}
#instagram #area07 .mid_box .box span {
	font-size: 130%;
	color: #e35a92;
}
#instagram #area07 .mid_box .caution {
	text-align: left;
	font-size: 80%;
	line-height: 1.4;
}
#instagram .share {
/*	max-width: 960px; */
	margin: 0 auto 70px;
}
#instagram .banner {
	text-align: center;
}
#instagram .banner img {
	max-width: 760px;
}
#instagram .banner.area.btm {
    padding: 70px 0 100px;
}
@media screen and (max-width:768px) {

	#instagram {
		line-height: 1.4;
	}
	#instagram .sp {
		display: block;
	}
	#instagram .pc {
		display: none;
	}
	#instagram .area {
		padding: 40px 0 0;
	}
	#instagram #customer.area {
		padding: 40px 0 0;
	}
	#instagram #customer .ttl {
		font-size: 1.4rem;
		line-height: 1.9rem;
		margin: 0 0 30px;
		padding: 0 0 20px;
	}
	#instagram #customer .ttl::after {
		width: 30%;
	}
	#instagram #customer ul li {
		width: 48%;
		margin: 0 0 30px;
	}
	#instagram #customer ul li::after {
		position: absolute;
		content: "";
		display: block;
		background: url("../img/voice_icon.png")no-repeat center/55px 39px;
		width: 55px;
		height: 39px;
	}
	#instagram #customer ul li .name {
		font-size: 80%;
	}
	#instagram .inner {
		padding: 0 20px;
	}
	#instagram .area {
		padding: 40px 0 0;
	}
	#instagram .ttl01 {
		font-size: 110%;
		margin: 0 0 30px;
		padding: 15px 20px;
	}
	#instagram .cont {
		margin: 0 0 50px;
	}
	#instagram #area01 .ttl01 {
		margin: 0 0 30px;
	}
	#instagram #area01 .ttl02 {
		font-size: 120%;
		border-bottom: 3px solid #add9de;
	}
	#instagram #area01 .ttl02 span {
		font-size: 130%;
	}
	#instagram #area01 .ttl02 span::after {
		background: url("../img/service_instagram/area01_ttl_icon.png")no-repeat center/19px 16px;
		width: 19px;
		height: 16px;
	}
	#instagram #area01 .box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#instagram #area01 .box ul {
		width: 100%;
		margin: 0 0 20px;
	}
	#instagram #area01 .box ul li .txt {
		font-size: 100%;
	}
	#instagram #area01 .box .img {
		width: 100%;
		text-align: center;
	}
	#instagram #area01 .box .img img {
		max-width: 30%;
	}
	#instagram #merit.area {
		padding: 0 0 40px;
		margin: 40px 0 0;
	}
	#instagram #merit .ttl01 span::before {
		background: url("../img/service_instagram/area02_ttl_icon.png")no-repeat center/45px 69px;
		width: 45px;
		height: 69px;
		left: -30px;
		top: -10px;
	}
	#instagram #merit ul {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#instagram #merit ul li {
		width: 100%;
		height: auto;
		margin: 0 0 30px;
	}
	#instagram #merit ul li:nth-child(odd) {
		margin: 0 0 30px;
	}
	#instagram #merit ul li:last-child {
		margin: 0;
	}
	#instagram #merit ul li .img {
		margin:  0 0 10px;
	}
	#instagram #merit ul li .ttl {
		font-size: 100%;
		margin: 0 0 10px;
	}
	#instagram #area02 ul li {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#instagram #area02 ul li .img {
		margin: 0 0 20px;
		width: 100%;
		text-align: center;
	}
	#instagram #area02 ul li .ttl {
		font-size: 110%;
	}
	#instagram #area02 ul li .txt_box {
		width: 100%;
	}
	#instagram #area05 ul li {
		padding: 20px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		width: 100%;
	}
	#instagram #area05 ul li:not(:last-child) {
		margin: 0 10px 30px 0;
	}
	#instagram #area05 ul li .img {
		width: 100%;
		text-align: center;
		margin: 0 0 10px;
	}
	#instagram #area05 ul li .img img {
		max-width: 100%;
	}
	#instagram #area05 ul li .txt_box {
		width: 100%;
	}
	#instagram #area05 ul li .txt_box .ttl_box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#instagram #area05 ul li .txt_box .ttl_box .ttl {
		font-size: 90%;
		padding: 10px;
		margin: 0 0 20px;
	}
	#instagram #area05 ul li .txt_box .ttl_box .ttl::after {
		right: 50%;
		top: inherit;
		bottom: -5px;
		transform: translate(50%,50%) rotate(90deg);
	}
	#instagram #area05 ul li .txt_box .ttl_box .num img {
		max-width: 130px;
	}
	#instagram #area07 .top_box {
		padding: 20px;
		margin: 0 10px 30px 0;
	}
	#instagram #area07 .top_box .ttl span {
		font-size: 110%;
		padding: 10px 15px;
	}
	#instagram #area07 .top_box .sub_ttl {
		font-size: 120%;
	}
	#instagram #area07 .top_box .sub_ttl b::before, #instagram #area07 .top_box .sub_ttl b::after {
		top: 160%;
		display: none;
	}
	#instagram #area07 ul.top {
		flex-flow: row wrap;
		justify-content: space-between;
		width: 100%;
	}
	#instagram #area07 ul.top li {
		width: 45%;
		margin: 0;
	}
	#instagram #area07 ul.top li:nth-child(-n+2) {
		margin: 0 0 20px;
	}
	#instagram #area07 ul.top li .img {
		margin: 0 0 10px;
	}
	#instagram #area07 ul.top li:not(:last-child) .img::after {
		background: url("../img/service_instagram/plus.png")no-repeat center/25px 25px;
		width: 25px;
		height: 25px;
		right: -39px;
	}
	#instagram #area07 ul.top li:nth-child(2) .img::after {
		display: none;
	}
	#instagram #area07 ul.top li .img img {
		max-width: 100px;
	}
	#instagram #area07 ul.top li .txt {
		font-size: 90%;
	}
	#instagram #area07 .mid_box {
		font-size: 100%;
	}
	#instagram #area07 .mid_box .txt:first-child {
		margin: 0 0 10px;
	}
	#instagram #area07 .mid_box ul.mid {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 10px 0;
	}
	#instagram #area07 .mid_box ul.mid li {
		width: 100%;
		font-size: 110%;
	}
	#instagram #area07 .mid_box ul.mid li:not(:last-child) {
		margin: 0 0 10px;
	}
	#instagram #area07 .mid_box .txt .pink_ub {
		font-size: 120%;
	}
	#instagram #area07 .mid_box .ttl {
		font-size: 120%;
	}
	#instagram #area07 .mid_box .mid_ttl {
		margin: 30px 0 20px;
		font-size: 100%;
	}
	#instagram #area07 .mid_box .box {
		border: 2px solid #c5dadd;
		padding: 10px;
		font-size: 110%;
	}
	#instagram .banner.area.btm {
		padding: 40px 0 70px;
	}
}



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

#company_wrap .inner {
/*	max-width: 960px; */
	margin: 0 auto;
}

#company {
	padding: 0 0 100px;
}
#company .visual {
	background: url("../img/company/visual_company.png")no-repeat center/cover;
}
#company .ttl01 {
	font-size: 1.8rem;
	line-height: 2.3rem;
	border-bottom: 2px solid #add9de;
	position: relative;
	margin: 0 0 30px;
	padding: 0 0 20px;
	text-align: left;
}
#company .ttl01::after {
	content: "";
	display: block;
	line-height: 0;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 15%;
	border-bottom: 2px solid #6f73b9; 
	background: none;
	right: inherit;
	transform: inherit;
}
#company .area {
	padding: 70px 20px 0;
}
#company #area01 .txt {
	padding: 0;
	line-height: 1.6;
}
#company #area02 table {
	font-weight: inherit;
	border: none;
	width: 100%;
	line-height: 1.4;
}
#company #area02 table tr.bg {
	background: #ececf4;
}
#company #area02 table th {
	font-weight: inherit;
	padding: 30px 20px;
	vertical-align: top;
	font-size: 100%;
	border: none!important;
	width: 20%;
	text-align: left;
}
#company #area02 table td {
	padding: 30px 20px;
	vertical-align: top;
	border: none;
	width: 80%;
}
#company #area03 ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#company #area03 ul li {
	width: 18%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
#company #area03 ul li a {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
#company #area03 ul li .img {
	text-align: center;
	margin: 0 auto;
	position: relative;
}
#company #area03 ul li .img span {

}
#company #area03 ul li .img span::before {
	position: absolute;
	content: "";
	display: block;
	background: rgba(145,205,211,0.3);
	width: 170px;
	height: 170px;
	border-radius: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 1;
}
#company #area03 ul li a:hover .img span::before {
	background: rgba(111,115,185,0.3);
}
#company #area03 ul li .img img {
	max-width: 150px;
	margin: 0;
	position: relative;
	z-index: 2;
	min-width: 150px;
}
#company #area03 ul li .ttl {
	font-size: 80%;
	margin: 20px 0 0;
}
#company #area04 ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
}
#company #area04 ul li {
	width: 30%;
	margin: 0 0 40px;
	position: relative;
}
#company #area04 ul li::before {
	display: none;
}
#company #area04 ul li::after {
	position: absolute;
	content: "";
	display: block;
	background: url("https://www.onecruise.co.jp/degiodegiko/wp-content/uploads/2020/04/voice_icon.png")no-repeat center/93px 66px;
	width: 93px;
	height: 66px;
	top: -13px;
	left: 10px;
}
#company #area04 ul li .img {
	line-height: 1;
}
#company #area04 ul li .img img {

	margin: 0 0 10px;
}
#company #area04 ul li .name {
	font-size: 85%;
	line-height: 1.4;
}
#company #area05 table {
	font-weight: inherit;
	border: none;
	margin: 0 0 90px;
	width: 100%;
}
#company #area05 table tr.bg {
	background: #ececf4;
}
#company #area05 table th {
	font-weight: inherit;
	padding: 30px 20px;
	vertical-align: top;
	font-size: 85%;
	border: none!important;
	width: 20%;
	text-align: left;
	vertical-align: middle;
}
#company #area05 table td {
	padding: 30px 20px;
	vertical-align: top;
	border: none;
	width: 80%;
	vertical-align: middle;
}
#company #area05 .comment {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 60px;
}
#company #area05 .comment .img {
	margin: 0 40px 0 0;
	width: 18%;
	box-sizing: border-box;
}
#company #area05 .comment .img img {
	max-width: 150px;
}
#company #area05 .comment .txt {
	font-size: 85%;
	border: 3px solid #77c0c9;
	border-radius: 10px;
	padding: 15px 20px;
	position: relative;
}
#company #area05 .comment .txt::after {
	position: absolute;
	content: "";
	display: block;
	background: url("https://www.onecruise.co.jp/degiodegiko/wp-content/uploads/2020/04/arrow.png")no-repeat center/30px 18px;
	width: 30px;
	height: 18px;
	left: -31px;
	top: 20%;
}
#company #area05 .banner {
	text-align: center;
	line-height: 1;
}
#company #area05 .banner img {
	margin: 0;
}
#company #area06 .company {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between
}
#company #area06 .company .box {
	width: 30%;
	font-size: 70%;
	line-height: 3;
}
#company #area07 li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#company #area07 li:not(:last-child) {
}
#company #area07 li .date {
	width: 12%;
	font-size: 80%;
	line-height: 1;
}
#company #area07 li .cont {
	width: 88%;
	font-size: 90%;
	border-left: 3px #dad9ea solid;
	padding: 0 0 40px 30px;
	position: relative;
}
#company #area07 li .cont::before {
	content: "";
	position: absolute;
	display: block;
	width: 18px;
	height: 18px;
	background: #dad9ea;
	left: -10px;
	top: -3px;
	border-radius: 100%;
}
#company #area07 li .cont.last {
	padding: 0 0 0 30px;
}
#company #area07 li .cont .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#company #area07 li .cont .box .month {
	width: 10%;
	line-height: 1;
}
#company #area07 li .cont .box .txt {
	width: 90%;
	line-height: 1;
}
#company #area07 li .mb40 {
	margin: 0 0 40px;
}
#company .banner img {
	max-width: 760px;
}
@media screen and (max-width:768px) {
	#company .sp {
		display: block;
	}
	#company .ttl01 {
		font-size: 1.4rem;
		line-height: 1.9rem;
		margin: 0 0 30px;
		padding: 0 0 20px;
	} 
	#company .ttl01::after {
		width: 30%;
	}
	#company #area02 table th {
		padding: 20px 10px;
		font-size: 90%;
		width: 30%;
	}
	#company #area02 table td {
		padding: 20px 10px;
		width: 70%;
		font-size: 90%;
	}
	#company #area03 ul {
		flex-flow: row wrap;
		justify-content: space-between;
		padding: 0 30px;
		box-sizing: border-box;
	}
	#company #area03 ul li {
		width: 35%;
	}
	#company #area03 ul li:not(:last-child) {
		margin: 0 0 30px;
	}
	#company #area03 ul li .ttl {
		margin: 10px 0 0;
	}
	#company #area04 ul li {
		width: 48%;
		margin: 0 0 30px;
	}
	#company #area04 ul li::after {
		position: absolute;
		content: "";
		display: block;
		background: url("https://www.onecruise.co.jp/degiodegiko/wp-content/uploads/2020/04/voice_icon.png")no-repeat center/55px 39px;
		width: 55px;
		height: 39px;
	}
	#company #area04 ul li .name {
		font-size: 80%;
	}
	#company #area05 table {
		margin: 0 0 40px;
	}
	#company #area05 table th {
		padding: 20px 10px;
		font-size: 80%;
		width: 25%;
	}
	#company #area05 table td {
		padding: 20px 10px;
		width: 75%;
		font-size: 80%;
	}
	#company #area05 .comment {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 0 0 30px;
	}
	#company #area05 .comment .img {
		margin: 0 0 10px;
		width: 100%;
		text-align: center;
	}
	#company #area05 .comment .txt::after {
		background: url("https://www.onecruise.co.jp/degiodegiko/wp-content/uploads/2020/04/arrow_sp.png")no-repeat center/36px 30px;
		width: 36px;
		height: 30px;
		left: 45%;
		top: -30px;
	}
	#company #area06 .company {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#company #area06 .company .box {
		width: 100%;
		font-size: 65%;
		line-height: 2;
	}
	#company #area07 li .date {
		width: 20%;
		font-size: 80%;
		line-height: 1;
	}
	#company #area07 li .cont {
		width: 80%;
		font-size: 80%;
		padding: 0 0 30px 20px;
	}
	#company #area07 li .cont::before {
		width: 14px;
		height: 14px;
		left: -9px;
		top: 0;
	}
	#company #area07 li .cont.last {
		padding: 0 0 0 20px;
	}
	#company #area07 li .cont .box .month {
		width: 15%;
	}
	#company #area07 li .cont .box .txt {
		width: 85%;
		line-height: 1.2;
	}
	#company #area07 li .mb40 {
		margin: 0 0 30px;
	}
	#company {
		padding: 0 0 70px;
	}
	#company .area {
		padding: 40px 20px 0;
	}
}



/* plan
-------------------------------------------------------*/
/*
#plan_wrap .inner {
	max-width: 960px;
	margin: 0 auto;
}
*/

#plan .visual {
	background: url("../img/plan/visual_plan.png")no-repeat center/cover;
}
#plan p {
	line-height: 1.6;
}
#plan .area {
	padding: 70px 0 0;
}
#plan .red {
	color: #ba0909;
	font-size: 120%;
	font-weight: 700;
}
#plan .ub {
	text-decoration: underline;
	color: #ba0909;
}
#plan .marker {
	background: linear-gradient( transparent 60%, #ffff00 0% );
}
#plan .ttl01 {
    background: #6f73b9;
    color: #fff;
    font-size: 200%;
    text-align: center;
    margin: 0 0 40px;
    font-weight: 500;
    padding: 25px;
}
#plan .ttl01::after {
	display: none;
}
#plan .ttl02 {
	font-size: 150%;
	border-bottom: 2px solid #add9de;
	position: relative;
	margin: 0 0 30px;
	padding: 0 0 20px;
	font-weight: 500;
}
#plan .ttl02::after {
	content: "";
	display: block;
	line-height: 0;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 15%;
	border-bottom: 2px solid #6f73b9;
}
#plan #top_area {
	font-weight: 700;
	text-align: center;
}
#plan #area01 .top_box {
	border: 2px solid #add9de;
	background: #fff;
	padding: 30px;
	margin: 0 10px 40px 0;
	position: relative;
	border-radius: 10px;
}
#plan #area01 .top_box::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_instagram/border_bg.png")repeat;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	right: -10px;
	bottom: -10px;
	z-index: -1;
}
#plan #area01 .top_box .ttl {
	text-align: center;
	margin: 0 0 20px;
}
#plan #area01 .top_box .ttl span {
	background: #77c0c9;
	border-radius: 50px;
	color: #fff;
	font-weight: bold;
	font-size: 200%;
	padding: 10px 90px;
}
#plan #area01 .top_box .sub_ttl {
	text-align: center;
	margin:  0 0 20px;
	font-size: 180%;
	font-weight: bold;
}
#plan #area01 .top_box .sub_ttl b {
	position: relative;
}
#plan #area01 .top_box .sub_ttl b::before, #plan #area01 .top_box .sub_ttl b::after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 35px;
	height: 37px;
}
#plan #area01 .top_box .sub_ttl b::before {
	background: url("../img/service_instagram/area07_ttl01.png")no-repeat center/35px 37px; 
	left: -24px;
}
#plan #area01 .top_box .sub_ttl b::after {
	background: url("../img/service_instagram/area07_ttl02.png")no-repeat center/35px 37px; 
	right: -60px;
}
#plan #area01 .top_box .sub_ttl span.pink {
	color: #e35a92;
}
#plan #area01 .top_box .sub_ttl span.big {
	font-size: 140%;
}
#plan #area01 ul.top {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
}
#plan #area01 ul.top li {
	width: 25%;
	margin: 0 50px;
}
#plan #area01 ul.top li .img {
	margin: 0 0 20px;
	text-align: center;
	position: relative;
}
#plan #area01 ul.top li:not(:last-child) .img::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_instagram/plus.png")no-repeat center/34px 34px;
	width: 34px;
	height: 34px;
	right: -66%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#plan #area01 ul.top li .img img {
	max-width: 120px;
}
#plan #area01 ul.top li .txt {
	text-align: center;
	font-weight: bold;
	font-size: 120%;
}
#plan #area01 .mid_box {
	text-align: center;
	font-size: 110%;
}
#plan #area01 .mid_box .ttl {
	font-size: 160%;
	text-align: center;
	margin: 0 0 20px;
	color: #6f73b9;
}
#plan #area01 .mid_box .txt {
	line-height: 1.6;
}
#plan #area01 .mid_box ul.mid {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0;
}
#plan #area01 .mid_box ul.mid li {
	width: 32%;
	background: #77c0c9;
	color: #fff;
	font-size: 110%;
	font-weight: bold;
	text-align: center;
	border-radius: 10px;
	padding: 5px 0;
}
#plan #area01 .mid_box .mid_ttl {
	margin: 30px 0 20px;
	font-size: 130%;
	color: #6f73b9;
}
#plan #area01 .mid_box .mid_ttl .pink_ub {
	font-size: 130%;
}
#plan #area01 .mid_box .box  {
	border: 4px solid #c5dadd;
	padding: 10px 0;
	text-align: center;
	margin: 0 0 20px;
	font-weight: bold;
	font-size: 150%;
}
#plan #area01 .mid_box .box span {
	font-size: 130%;
	color: #e35a92;
}
#plan #area01 .mid_box .caution {
	text-align: left;
	font-size: 80%;
	line-height: 1.4;
}
#plan #area02 .img {
	text-align: center;
	border: 2px solid #77c0c9;
	background: #fff;
	padding: 30px 50px;
	margin: 0 auto 40px;
	border-radius: 10px;
	max-width: 930px;
	box-sizing: border-box;
}
#plan #area02 .ex {
	border: 2px solid #77c0c9;
	border-radius: 10px;
	padding: 20px;
	margin: 0 0 20px;
	font-size: 120%;
	text-align: center;
	font-weight: 500;
}
#plan #area02 .red {
	margin: 20px 0;
}
#plan #area03 .ttl02 {
	margin: 40px 0 30px;
}
#plan #area03 .point {
	border: 1px solid #6eb1ba;
	padding: 30px;
}
#plan #area03 .point .ttl {
	font-size: 130%;
	font-weight: 700;
	margin: 0 0 20px;
	color: #6eb1ba;
	border-bottom: 1px solid #6eb1ba;
	padding: 0 0 10px;
}
#plan .banner {
	text-align: center;
}
#plan .banner img {
	max-width: 760px;
}
#plan .banner.area.btm {
	padding: 70px 0 100px;
}
#plan .pink_ub {
    background: linear-gradient(transparent 80%, #ffc7de 0%);
}
@media screen and (max-width:768px) {
	#plan .area {
		padding: 40px 0 0;
	}
	#plan .inner {
		padding: 0 20px;
	}
	#plan .inner_s {
		padding: 0 20px;
	}
	#plan .ttl01 {
		font-size: 110%;
		margin: 0 0 30px;
		padding: 15px 20px;
	}
	#plan .ttl02 {
		font-size: 1.4rem;
		line-height: 1.9rem;
		margin: 0 0 30px;
		padding: 0 0 20px;
	}
	#plan .ttl02::after {
		width: 30%;
	}
	#plan #area01 .top_box {
		padding: 20px;
		margin: 0 10px 30px 0;
	}
	#plan #area01 .top_box .ttl span {
		font-size: 110%;
		padding: 10px 15px;
	}
	#plan #area01 .top_box .sub_ttl {
		font-size: 120%;
	}
	#plan #area01 .top_box .sub_ttl b::before, #plan #area01 .top_box .sub_ttl b::after {
		top: 160%;
		display: none;
	}
	#plan #area01 ul.top {
		flex-flow: row wrap;
		justify-content: space-between;
		width: 100%;
	}
	#plan #area01 ul.top li {
		width: 45%;
		margin: 0;
	}
	#plan #area01 ul.top li:nth-child(-n+2) {
		margin: 0 0 20px;
	}
	#plan #area01 ul.top li .img {
		margin: 0 0 10px;
	}
	#plan #area01 ul.top li:not(:last-child) .img::after {
		background: url("../img/service_listing_/plus.png")no-repeat center/25px 25px;
		width: 25px;
		height: 25px;
		right: -39px;
	}
	#plan #area01 ul.top li:nth-child(2) .img::after {
		display: none;
	}
	#plan #area01 ul.top li .img img {
		max-width: 100px;
	}
	#plan #area01 ul.top li .txt {
		font-size: 90%;
	}
	#plan #area01 .mid_box {
		font-size: 100%;
	}
	#plan #area01 .mid_box .ttl {
		font-size: 120%;
	}
	#plan #area01 .mid_box .txt:first-child {
		margin: 0 0 10px;
	}
	#plan #area01 .mid_box ul.mid {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 10px 0 10px;
	}
	#plan #area01 .mid_box ul.mid li {
		width: 100%;
		font-size: 110%;
	}
	#plan #area01 .mid_box ul.mid li:not(:last-child) {
		margin: 0 0 10px;
	}
	#plan #area01 .mid_box .mid_ttl {
		margin: 10px 0 20px;
		font-size: 100%;
	}
	#plan #area01 .mid_box .txt .pink_ub {
		font-size: 120%;
	}
	#plan #area01 .mid_box .box {
		border: 2px solid #c5dadd;
		padding: 10px;
		font-size: 110%;
	}
	#plan #area02 .img {
		padding: 20px;
		margin: 0 auto 30px;
	}
	#plan #area02 .ex {
		text-align: left;
	}
	#plan #area03 .point {
		padding: 20px;
	}
	#plan #area03 .point .ttl {
		font-size: 120%;
	}
	#plan .banner.area.btm {
		padding: 40px 0 70px;
	}
	
	.banner img{
		max-width:100%!important;
		height:auto;
	}
}


/* listing
-------------------------------------------------------*/
#listing .visual {
	background: url("../img/listing/visual_listing.png")no-repeat center/cover;
}
#listing .inner_s {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 20px;
}
#listing .area {
	padding: 70px 0 0;
}
#listing .pink_ub {
    background: linear-gradient(transparent 80%, #ffc7de 0%);
}
#listing .ttl01 {
	background: #6f73b9;
	color: #fff;
	font-size: 200%;
	text-align: center;
	margin: 0 0 40px;
	font-weight: 500;
	padding: 25px;
}
#listing .banner {
	text-align: center;
}
#listing .banner img {
	max-width: 760px;
}
#listing .banner.area.btm {
    padding: 70px 0 100px;
}
#listing .ttl01::after {
	display: none;
}
#listing #area01.area {
	padding: 0;
}
#listing #area01 .top_txt {
	line-height: 1.6;
	font-size: 110%;
	margin: 0 0 100px;
}
#listing #area01 .ttl01 {
	margin: 0 0 60px;
}
#listing #area01 .ttl02 {
	text-align: center;
	font-size: 180%;
	font-weight: 500;
	border-bottom: 5px solid #add9de;
	line-height: 1;
	padding: 0 0 20px;
	margin: 0 0 30px;
}
#listing #area01 .ttl02 span {
	font-size: 150%;
	position: relative;
}
#listing #area01 .ttl02 span::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/service_instagram/area01_ttl_icon.png")no-repeat center/28px 23px;
	width: 28px;
	height: 23px;
	top: -14px;
	right: -13px;
}
#listing #area01 .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#listing #area01 .box ul {
	width: 70%;
}
#listing #area01 .box ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#listing #area01 .box ul li:not(:last-child) {
	margin: 0 0 20px;
}
#listing #area01 .box ul li .check {
	margin: 0 10px 0 0;
}
#listing #area01 .box ul li .check img {
	max-width: 26px;
}
#listing #area01 .box ul li .txt {
	font-size: 140%;
}
#listing #area01 .box .img {
	width: 30%;
}
#listing #area01 .box .img img {
	max-width: 200px;
}
#listing #area02 ul {
	margin: 0 0 50px;
}
#listing #area02 ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#listing #area02 ul li:not(:last-child) {
	margin: 0 0 30px;
}
#listing #area02 ul li .img {
	margin: 0 30px 0 0;
	width: 15%;
}
#listing #area02 ul li .img img {
	max-width: 140px;
}
#listing #area02 ul li .txt_box {
	width: 85%;
}
#listing #area02 ul li .ttl {
	font-size: 160%;
	font-weight: 400;
	color: #6f73b9;
	margin: 0 0 20px;
}
#listing #area02 ul li .txt {
	line-height: 1.6;
}
#listing #area02 table {
	border: 1px solid #76c0c8;
}
#listing #area02 table tr {
	border-bottom: 1px solid #76c0c8;
}
#listing #area02 table th {
	border-right: 1px solid #76c0c8;
	padding: 20px;
	font-size: 120%;
	font-weight: 500;
	text-align: center;
	vertical-align: middle;
}
#listing #area02 table td {
	padding: 20px;
	border-right: 1px solid #76c0c8;
	line-height: 1.4;
}
#listing #area02 table td span {
	color: #e35a92;
}
#listing #area02 table .blue {
	color: #FFF;
    background-color: #76c0c8;
}
#listing #area02 table .rb {
	background: rgba(118,192,200,.1)
}
#listing #area02 table .w40 {
	width: 40%;
}
#listing #area03 ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
}
#listing #area03 ul li {
	width: 48%;
	border: 1px solid #76c0c8;
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
}
#listing #area03 ul li:nth-child(-n+2) {
	margin: 0 0 30px;
}
#listing #area03 ul li .ttl {
	color: #fff;
	background: #77c0c9;
	border-radius: 50px;
	font-weight: 500;
	text-align: center;
	padding: 10px;
	font-size: 120%;
	margin: 0 0 20px;
}
#listing #area03 ul li .img {
	margin: 0 0 20px;
}
#listing #area03 ul li .txt {
	line-height: 1.6;
}
#listing #area04 ul {
	background: rgba(118,192,200,0.1);
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 20px;
	box-sizing: border-box;
}
#listing #area04 ul li {
	width: 32%;
	background: #fff;
	padding: 20px;
	box-sizing: border-box;
}
#listing #area04 ul li .icon {
	margin: 0 0 20px;
	text-align: center;
}
#listing #area04 ul li .icon img {
	max-width: 70px;
}
#listing #area04 ul li .ttl {
	text-align: center;
	font-size: 120%;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 0 20px;
	color: #6f73b9;
}
#listing #area04 ul li .txt {
	line-height: 1.6;
	font-size: 90%;
}

@media screen and (max-width:768px) {
	#listing .area {
		padding: 40px 0 0;
	}
	#listing .inner {
		padding: 0 20px;
	}
	#listing .ttl01 {
		font-size: 110%;
		margin: 0 0 30px;
		padding: 15px 20px;
	}
	#listing #area01 .top_txt {
		font-size: 100%;
		margin: 0 0 30px;
	}
	#listing #area01 .ttl01 {
		margin: 0 0 30px;
	}
	#listing #area01 .ttl02 {
		font-size: 120%;
		border-bottom: 3px solid #add9de;
	}
	#listing #area01 .ttl02 span {
		font-size: 130%;
	}
	#listing #area01 .ttl02 span::after {
		background: url("../img/service_instagram/area01_ttl_icon.png")no-repeat center/19px 16px;
		width: 19px;
		height: 16px;
	}
	#listing #area01 .box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#listing #area01 .box ul {
		width: 100%;
		margin: 0 0 20px;
	}
	#listing #area01 .box ul li .ttl {
		font-size: 100%;
	}
	#listing #area01 .box ul li .txt {
		font-size: 100%;
	}
	#listing #area01 .box .img {
		width: 100%;
		text-align: center;
	}
	#listing #area01 .box .img img {
		max-width: 30%;
	}
	#listing #area02 ul li {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#listing #area02 ul li .img {
		margin: 0 0 20px;
		width: 100%;
		text-align: center;
	}
	#listing #area02 ul li .ttl {
		font-size: 110%;
	}
	#listing #area02 ul li .txt_box {
		width: 100%;
	}
	#listing #area02 table th {
		padding: 10px 5px;
		font-size: 90%;
	}
	#listing #area02 table td {
		padding: 10px;
		font-size: 90%;
	}
	#listing #area03 ul {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#listing #area03 ul li {
		width: 100%;
		margin: 0 0 30px;
	}
	#listing #area03 ul li:nth-child(-n+2) {
		margin: 0 0 30px;
	}
	#listing #area03 ul li:last-child {
		margin: 0;
	}
	#listing #area03 ul li .ttl {
		font-size: 110%;
		line-height: 1.4;
	}
	#listing #area03 ul li .img {
		margin: 0 0 20px;
	}
	#listing #area04 ul {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#listing #area04 ul li {
		width: 100%;
	}
	#listing #area04 ul li:not(:last-child) {
		margin: 0 0 20px;
	}
	#listing #area04 ul li .ttl {
		font-size: 110%;
	}
	#listing .banner.area.btm {
		padding: 40px 0 70px;
	}
}


/* flow
-------------------------------------------------------*/
#flow .visual {
	background: url("../img/flow/visual_flow.png")no-repeat center/cover;
}
#flow .area {
	padding: 70px 0 0;
}
#flow .ttl01 {
	background: #6f73b9;
	color: #fff;
	font-size: 200%;
	text-align: center;
	margin: 0 0 40px;
	font-weight: 500;
	padding: 25px;
}
#flow .banner {
	text-align: center;
}
#flow .banner img {
	max-width: 760px;
}
#flow .banner.area.btm {
    padding: 70px 0 100px;
}
#flow .ttl01::after {
	display: none;
}
#flow #area01.area {
	padding: 0;
}
#flow #area01 .ttl_box {
	font-size: 1.8rem;
    line-height: 1;
    border-bottom: 2px solid #add9de;
    position: relative;
    margin: 0 0 30px;
    padding: 0 0 20px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#flow #area01 .ttl_box::after {
    content: "";
    display: block;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 15%;
    border-bottom: 2px solid #6f73b9;
}
#flow #area01 .ttl_box .num {
	font-size: 180%;
	color: #6f73b9;
	margin: 0 20px 0 0;
}
#flow #area01 ul li:not(:last-child) {
	margin: 0 0 50px;
}
#flow #area01 ul li .txt {
	line-height: 1.6;
}
#flow #area01 ul li .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#flow #area01 ul li .box .img {
	width: 40%;
	margin: 0 30px 0 0;
}
#flow #area01 ul li .box .txt {
	width: 60%;
}
#flow #area01 ul li .box .txt span {
	background: linear-gradient( transparent 60%, #ffff00 0% );
}
#flow .contact_box {
	border: 2px solid #add9de;
	border-radius: 5px;
	padding: 30px 20px;
	box-sizing: border-box;
	margin: 30px auto 0;
	max-width: 700px;
}
#flow .contact_box .top_txt {
	text-align: center;
	line-height: 1.4;
	font-size: 120%;
	margin: 0 0 30px;
}
#flow .contact_box .top_txt span {
	background: linear-gradient(transparent 80%, #ffc7de 0%);
}
#flow .contact_box .box_in {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
#flow .contact_box .box_in a {
	margin: 0 10px;
}
#flow .contact_box .box_in a.tel {
	position: relative;
}
#flow .contact_box .box_in a.tel::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/common/icon_tel.png")no-repeat left center/13px 23px;
	width: 13px;
	height: 23px;
	left: 50px;
}
#flow .price_box {
	border: 2px solid #add9de;
	border-radius: 5px;
	padding: 30px 20px;
	box-sizing: border-box;
	margin: 30px auto 0;
	max-width: 700px;
}
#flow .price_box .price_img {
	text-align: center;
	margin: 0 0 20px;
}
#flow .price_box img {
	max-width: 300px;
}
#flow .price_box .ttl {
	font-size: 120%;
	text-align: center;
	margin: 0 0 20px;
	border-bottom: 1px solid #add9de;
	padding: 0 0 20px;
}
#flow .price_box .price_txt {
	font-size: 90%;
	line-height: 1.6;
}
@media screen and (max-width:768px) {
	#flow .area {
		padding: 40px 0 0;
	}
	#flow .ttl01 {
		font-size: 110%;
		margin: 0 0 30px;
		padding: 15px 20px;
		line-height: 1.6;
	}
	#flow .banner.area.btm {
		padding: 40px 20px 70px;
	}
	#flow #area01 .inner_s {
		padding: 0 20px;
	}
	#flow #area01 .ttl_box {
		font-size: 1.4rem;
	}
	#flow #area01 .ttl_box::after {
	    width: 30%;
	}
	#flow #area01 .ttl_box .num {
		font-size: 150%;
	}
	#flow #area01 ul li:not(:last-child) {
		margin: 0 0 40px;
	}
	#flow #area01 ul li .box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#flow #area01 ul li .box .img {
		width: 70%;
		margin: 0 0 20px;
	}
	#flow #area01 ul li .box .txt {
		width: 100%;
	}
	#flow .contact_box {
		padding: 20px;
	}
	#flow .contact_box .top_txt {
		font-size: 110%;
		margin: 0 0 20px;
	}
	#flow .contact_box .box_in {
		flex-flow: column;
	}
	#flow .contact_box .box_in a {
		margin: 0;
	}
	#flow .contact_box .box_in a:first-child {
		margin: 0 0 20px;
	}
}


/* plan
-------------------------------------------------------*/

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

}

.btn_purple{
	color:white!important;
}

	html { margin-top: 0px !important; }




/* page
-------------------------------------------------------*/
#page .top_btn {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 30px 0 10px;
}
#page .top_btn li {
	width: 23%;
}
#page .top_btn li:first-child a {
	background: url("../img/page/btn01.png")no-repeat center/cover;
}
#page .top_btn li:nth-child(2) a {
	background: url("../img/page/btn02.png")no-repeat center/cover;
}
#page .top_btn li:nth-child(3) a {
	background: url("../img/page/btn03.png")no-repeat center/cover;
}
#page .top_btn li:last-child a{
	background: url("../img/page/btn04.png")no-repeat center/cover;
}
#page .top_btn li a {
	height: 150px;
	color: #fff;
	font-size: 90%;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.2;
}
#page .top_btn li a::hover {
	cursor: pointer;
}
#page .top_btn li a span {
	background: rgba(111,115,185,0.8);
	padding: 10px;
	border-radius: 50px;
	width: 180px;
}
#page #contents {
	margin: 0;
}
#page .list {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
}
#page .list li {
	width: 48%;
	margin: 0 0 30px;
	border: 1px solid #d2d2d2;
	padding: 20px;
	box-sizing: border-box;
}
#page .list li .img {
	margin: 0 0 20px;
}
#page .list li .ttl {
	font-weight: 500;
	line-height: 1.6;
	padding: 0 0 20px;
	font-size: 120%;
}
#page .list li .tag {
	font-size: 80%;
	text-align: right;
	display: block;
	margin: 0 0 10px;
}
#page .list li .tag span {
    position: relative;
}
#page .list li .tag span::before {
    position: absolute;
    display: block;
    content: "";
    background: url("../img/common/icon_tag.png")no-repeat center/17px 17px;
    left: -25px;
    top: 50%;
    transform: translate(0,-50%);
    width: 17px;
    height: 17px;
}
#page .list li .time {
    text-align: right;
    font-size: 90%;
    color: #a0a0a0;
    margin: 10px 0 0;
}
#page .list li .time span {
    position: relative;
}
#page .list li .time span::before {
    position: absolute;
    display: block;
    content: "";
    background: url("../img/index/icon_time.png")no-repeat center/12px 12px;
    left: -15px;
    top: 50%;
    transform: translate(0,-50%);
    width: 12px;
    height: 12px;
}
.pager {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	margin: 30px 0;
}
.pager li {
	margin: 0 10px;
	font-size: 120%;
	font-weight: 500;
	color: #a0a0a0;
}
.pager li a {
	border: 1px solid #6f73b9;
	border-radius: 50%;
	color: #6f73b9;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.pager li a.on {
	background: #6f73b9;
	color: #fff;
}
@media screen and (max-width:768px) {
	#page .top_btn {
		flex-flow: row wrap;
		margin: 20px 20px 0;
	}
	#page .top_btn li {
		width: 48%;
	}
	#page .top_btn li:nth-child(-n+2){
		margin: 0 0 15px;
	}
	#page .top_btn li a {
		height: 100px;
		font-size: 80%;
	}
	#page .top_btn li a span {
		padding: 5px;
		width: 90%;
	}
	#page .list {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#page .list li {
		width: 100%;
		margin: 0 0 20px;
	}
	.pager {
		margin: 30px 0 50px;
	}
	.pager li {
		font-size: 110%;
	}
	.pager li a {
		width: 35px;
		height: 35px;
	}
}


/* 20201203 */
#company #area04 ul li .img {
    position: relative;
	margin: 0 0 10px;

}
#company #area04 ul li .img::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 95%;
	border-radius: 10px;
	background: url("../img/common/voice_bg.png")repeat;
	right: -10px;
	bottom: 0;
	z-index: -1;
}
#index #new ul li .img img {
    width: 100%;
	height: 210px;
	object-fit: cover;
}
#page .list li .img img {
    width: 100%;
	height: 220px;
	object-fit: cover;
}
#not_found #content.area {
	padding: 150px 20px;
}
#not_found #content .img {
	text-align: center;
	margin: 0 0 50px;
}
#not_found #content .img img {
	max-width: 200px;
}
#not_found #content .txt {
	text-align: center;
	line-height: 1.4;
	margin: 0 0 100px;
}
@media screen and (max-width:768px) {
	#company #area04 ul li .img::after {
		right: -5px;
		bottom: 5px;
	}
	#page .list li .img img {
		height: 300px;
	}
	#not_found #content.area {
		padding: 80px 20px;
	}
	#not_found #content .img {
		margin: 0 0 30px;
	}
	#not_found #content .img img {
		max-width: 100px;
	}
	#not_found #content .txt {
		margin: 0 0 50px;
	}

}
@media screen and (max-width:570px) {
	#index #new ul li .img img {
		height: 110px;
	}
	#page .list li .img img {
		height:170px;
	}
}


html { margin-top: 0px !important; }

.mw_wp_form * p .form_btn {
    background-color: #d9333f !important;
    margin-top:30px;
    color: #fff !important;
}
.mw_wp_form .error{
    margin-top:10px;
}

.aligncenter{
	width:initial;
}

.radio{
	margin-top:-30px;
}
.radio br{
	line-height: 0!important;
	height:0px;
	display: none;
}
.horizontal-item{
	float:left;
	width:100px;
	height:50px;
	margin-right:10px;
	margin-left:0px!important;
}


/*オレンジ追加*/
.art_common .about_insta .btn_orenge {
	width: 400px;
	color: #fff;
	text-decoration: none;
	padding: 25px 0px;
	font-size: 100%;
}
#index #service ul li .box .btn_orenge {
	margin: 0 0 0 auto;
}
.side_nav .btn_orenge.size_m {
	color: #fff;
}

#contact .btn_orenge {
	color: #fff;
}

.btn_orenge {
	background: #f16b0f!Important;
	color: #fff;
	font-weight: 500;
	width: 190px;
	height: 35px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 90%;
	margin: 0 auto;
}
.btn_orenge.size_m {
	width: 280px;
	height: 45px;
	font-size: 100%;
}

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

.btn_orenge{
	color:white!important;
}

.art_common .about_insta .btn_orenge {
	width: 100%;
}
}
