@charset "UTF-8";


/*=================================================

00.共通
01.TOP
02.下層
03.会社概要
04.BLOG

=================================================*/

html {
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
	scrollbar-gutter: stable;
	width: 100%;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-family: "Zen Kaku Gothic New", sans-serif!important;
    line-height: 1.6;
    color: #333;
    background: #fff;
	font-size: 16px;
	width: 100%;
	overflow-x: hidden;
}

@media screen and (min-width:1025px) {
	.sp {
		display: none;
	}
}

@media screen and (max-width:1024px) {
	html {
		scroll-padding-top: 60px;
	}	
}

/*=================================================

00.共通

=================================================*/

.inner {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

.heading {
	font-size: 50px;
}

.heading:not(.headingCenter) span {
	color: #ae0b06;	
	font-size: 16px;
	display: flex;
	align-items: center;
}

.heading:not(.headingCenter) span:before {
	content: "";
	display: block;
	width: 25px;
	height: 1px;
	background: #ae0b06;
	margin-right: 15px;
	font-size: 16px;
}

.headingCenter {
	font-size: 40px;
}

.headingCenter span {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #ae0b06;
}

.headingCenter span:before {
	content: "";
	display: block;
	width: 25px;
	height: 1px;
	background: #ae0b06;
	margin-right: 15px;
}

.headingCenter span:after {
	content: "";
	display: block;
	width: 25px;
	height: 1px;
	background: #ae0b06;
	margin-left: 15px;
}

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

	.inner {
		max-width: 1280px;
		margin: 0 auto;
		position: relative;
	}

	.heading {
		font-size: 28px;
		line-height: 1.8;
	}

	.heading:not(.headingCenter) span {
		font-size: 16px;
	}

	.heading:not(.headingCenter) span:before {
		margin-right: 10px;
		font-size: 16px;
	}

	.headingCenter {
		font-size: 28px;
		line-height: 1.8;
	}

	.headingCenter span {
		font-size: 16px;
	}

	.headingCenter span:before {
		margin-right: 10px;
	}

	.headingCenter span:after {
		margin-left: 10px;
	}		
}

.btn {
	display: flex;
	background: #212121;
	border-radius: 5px;
	border: 1px solid #212121;
	padding: 20px 60px 20px 0px;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	width: 250px;
	text-align: center;
	justify-content: center;
	position: relative;
}

.btn:before {
	content: "";
	display: block;
	width: 1px;
	height: 30px;
	background: rgba(255,255,255,0.3);
	top: calc(50% - 15px);
	right: 61px;
	position: absolute;
}

.btn:after {
	display: block;
	width: 60px;
}

.btn--primary {
	border: 1px solid #ae0b06;
	background: #ae0b06;
}

.btn--outline {
	border: 1px solid rgba(255,255,255,0.3);
	background: none;
}

.btn.mail {
	background-image: url("../images/icon_white_mail.png");
	background-size: 20px auto;
	background-repeat: no-repeat;
	background-position: center right 20px;
}

.btn.arw {
	background-image: url("../images/icon_white_arrow.png");
	background-size: 20px auto;
	background-repeat: no-repeat;
	background-position: center right 20px;	
}

.btn.dl {
	background-image: url("../images/icon_white_dl.png");
	background-size: 20px auto;
	background-repeat: no-repeat;
	background-position: center right 20px;	
}

@media screen and (max-width:1024px) {
	.btn {
		padding: 10px 30px 10px 0px;
		font-weight: 700;
		width: 100%;
		font-size: 14px;
	}

	.btn:before {
		height: 24px;
		top: calc(50% - 12px);
		right: 31px;
	}

	.btn:after {
		width: 30px;
	}

	.btn--primary {
		border: 1px solid #ae0b06;
		background: #ae0b06;
	}

	.btn--outline {
		border: 1px solid rgba(255,255,255,0.3);
		background: none;
	}

	.btn.mail,
	.btn.arw,
	.btn.dl {
		background-position: center right 5px;
	}	
}

.side {
	position: fixed;
	top: 175px;
	right: 0px;
	width: 55px;
	text-align: center;
	z-index: 50000;
	display: inline-block;
	transition: background .3s ease;
	padding: 20px 15px;
}

.side.is-scroll {
	background: rgba(255,255,255,0.85);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.side li:not(:last-child) {
	margin-bottom: 30px;
}

.side li a {
	display: block;
}

.side li img {
	width: 25px;
	height: auto;
	max-width: none;
}

@media screen and (max-width:1024px) {
	.side {
		display: none;
	}
}

/*---------------------------------------
ヘッダー
---------------------------------------*/

.header {
	width: 100%;
	height: 90px;
	padding: 0 30px;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50000;
	transition: background .3s ease;
	justify-content: space-between;
}

.header__logo .black {
	display: none;
}

.header__globalNav ul {
	display: flex;
}

.header__globalNav ul li {

}

.header__globalNav ul li a {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	padding: 10px 30px;
}

.header__globalNavContact {
	margin-left: 15px;
}

.header__globalNavContact a {
	background: #ae0b06;
	border-radius: 1000px;	
	padding: 10px 30px!important;
}

.header.is-scroll{ 
	background: rgba(255,255,255,0.85);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.header.is-scroll .header__logo .black {
	display: block;
}

.header.is-scroll .header__logo .white {
	display: none;
}

.header.is-scroll .header__globalNav ul li a {
	color: #000;
}

.header.is-scroll .header__globalNavContact a {
	color: #fff!important;
}

@media screen and (max-width:1024px) {
	.header {
		height: 60px;
		padding: 10px 15px;
	}
	.header__logo img {
		width: auto;
		height: 50px;
	}

	.header__globalNav ul {
		display: none;
	}
	
	.header,
	.header.is-scroll{ 
		background: rgba(255,255,255,0.85);
		box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
		background: #fff;
	}

	.header.is-scroll .header__logo .black {
		display: block;
	}

	.header.is-scroll .header__logo .white {
		display: none;
	}

	.header.is-scroll .header__globalNav ul li a {
		color: #000;
	}

	.header.is-scroll .header__globalNavContact a {
		color: #fff!important;
	}		
}

/*---------------------------------------
モーダルナビ
---------------------------------------*/

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

	.menu, .menu span {
		display: inline-block;
		-webkit-transition: all .2s;
		transition: all .2s;
		box-sizing: border-box;
	}

	.menu {
		position: fixed;
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
		background: #151515;
		border-radius: 5px;
		z-index: 2000;
		cursor: pointer;
	}

	.menu:hover {
		background: #333;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	
	.menu.active {
		background: #151515;
	}

	.menu span {
		width: 26px;
		height: 2px;
		position: absolute;
		left: 7px;
		background: #fff;
		z-index: 100;
	}
	
	button {
		border: none;
		background: none;
	}

	.menu span:nth-of-type(1) {
		top: 11px;
	}

	.menu span:nth-of-type(2) {
		top: 19px;
	}

	.menu span:nth-of-type(3) {
		top: 27px;
	}

	.menu.active span:nth-of-type(1) {
		-webkit-transform: translateY(8px) rotate(45deg);
		transform: translateY(8px) rotate(45deg);
	}

	.menu.active span:nth-of-type(2) {
		opacity: 0;
	}

	.menu.active span:nth-of-type(3) {
		-webkit-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) rotate(-45deg);
	}
	
	.modalNav {
		overscroll-behavior: contain;
	}

	.modalNav.open {
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.modalNav .modalNav__inner {
		width: 280px;
		height: calc(100vh - 60px);
		background: #000;
		position: fixed;
		top: 60px;
		box-sizing: border-box;
		right: 0;
		transform: translate(370px);
		transition: all .5s;
		z-index: 3050;
		opacity: 0;
		box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	}

	.modalNav.open .modalNav__inner {
		opacity: 1;
		transform: translateZ(0);
	}
	
	.modalNav .modalNav__overlay {
		content: "";
		display: block;
		width: 0;
		height: 0;
		background-color: rgba(0, 0, 0, 0.5);
		position: fixed;
		top: 60px;
		left: 0;
		opacity: 0;
		transition: opacity .3s;
		z-index: 50;
	}
	
	.modalNav.open .modalNav__overlay {
		width: 100%;
		height: 100%;
		opacity: 1;
	}
	.modalNav__nav li {
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	
	.modalNav__nav li a {
		display: block;
		color: #fff;
		padding: 20px;
		text-decoration: none;
		position: relative;
		font-weight: bold;
	}
	
	.modalNav__nav li a::after {
		content: "";
		position: absolute;
		right: 16px;
		top: 50%;
		width: 6px;
		height: 6px;
		border-top: 1px solid #d9d9d9;
		border-right: 1px solid #d9d9d9;
		transform: translate(-60%, -50%) rotate(45deg);
		background: #212121;
	}
	
	.modalNav__contact {
		padding: 20px;
	}
	
	
	.modalNav__sns li .btn {
		font-size: 18px;
	}
	
	.modalNav__sns {
		display: flex;
	}
	
	.modalNav__sns li {
		padding-right: 30px;
		padding-left: 30px;
		border-right: 1px solid rgba(255,255,255,0.3);
		line-height: 1;
	}

	.modalNav__sns li:last-child {
		border-right: none;
	}
	
	.modalNav__sns li img {
		width: 40px;
		height: auto;
	}
	
	.modalNav .modalNav__overlay {
		pointer-events: none;
	}

	.modalNav.open .modalNav__overlay {
		pointer-events: auto;
	}
	.modalNav .modalNav__overlay {
		pointer-events: none;
	}

	.modalNav.is-clickable .modalNav__overlay {
		pointer-events: auto;
	}
	
	.modalNav__overlay {
		pointer-events: none;
	}

	.modalNav.open .modalNav__overlay {
		pointer-events: auto;
	}
	
.modalNav {
	position: fixed;
	top: 60px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3000;
	visibility: hidden;
	pointer-events: none;
}

.modalNav.open {
	visibility: visible;
	pointer-events: auto;
}

.modalNav .modalNav__overlay {
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	height: calc(100vh - 60px);
	z-index: 1;
	opacity: 0;
	pointer-events: none;
}

.modalNav.open .modalNav__overlay {
	opacity: 1;
	pointer-events: auto;
}

.modalNav .modalNav__inner {
	position: fixed;
	top: 60px;
	right: 0;
	z-index: 2;
	transform: translateX(370px);
	opacity: 0;
}

.modalNav.open .modalNav__inner {
	transform: translateX(0);
	opacity: 1;
}
	
}



/*---------------------------------------
フッター
---------------------------------------*/

.footer {
	background: #212121 url("../images/footer_bg.png") left center no-repeat;
	background-size: auto 100%;
	color: #fff;
	padding: 0 30px;
}

.footer > .inner {
	display: flex;
	align-items: flex-start;
	padding: 70px 0;
}

.footer__main {
	width: 370px;
}

.footer__mainLogo {
	margin-bottom: 45px;
}

.footer__mainLogo img {
	/*
	width: 238px;
	height: 67px;
	*/
}

.footer__mainCopy {
	margin-bottom: 40px;
	font-size: 24px;
	font-weight: 600;
}

.footer__mainText {
	color: #bdbdbc;
	font-size: 16px;
	font-weight: 400;
}

.footer__info {
	display: flex;
	width: calc(100% - 830px);
}

.footer__info > div {
	width: 65%;
}

.footer__info > nav {
	width: 35%;
}

.footer__info h3 {
	color: #ae0b06;
	margin-bottom: 25px;
	font-size: 16px;
}

.footer__info div table {
	text-align: left;
	color: #bdbdbc;
}

.footer__info div table th {
	display: block;	
	font-size: 16px;
	font-weight: 500;
}

.footer__info div table td {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 400;
}

.footer__info nav {
	font-size: 16px;
}

.footer__info nav ul {
	margin-right: 30px;
}

.footer__info nav ul li {
	margin-bottom: 25px;
	position: relative;
	font-size: 16px;
}

.footer__info nav ul li a {
	text-decoration: none;
	color: #fff;
	font-weight: 600;
}

.footer__info nav ul li::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-top: 1px solid #d9d9d9;
	border-right: 1px solid #d9d9d9;
	transform: translate(-60%, -50%) rotate(45deg);
	background: #212121;
}

.footer__cta {
	width: 450px;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 10px;
	padding: 35px;
}

.footer__cta h3 {
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer__cta p {
	margin-bottom: 30px;
	font-weight: 400;
	font-size: 16px;
}

.footer__ctaBtn a {
	width: 100%;
}

.footer__ctaBtn li:nth-child(1) a{
	margin-bottom: 20px;
}

.footer__bottom {
	display: flex;
	align-items: center;
	padding: 30px 60px;
	border-top: 1px solid rgba(255,255,255,0.3);
	position: relative;
}

.footer__bottomCopyright {
	white-space: nowrap;
	margin-right: 100px;
	order: 1;
	font-size: 16px;
}

.footer__bottomNav {
	order: 2;
}

.footer__bottomNav ul {
	display: flex;
	align-items: center;
}

.footer__bottomNav ul li {
	padding-right: 30px;
	padding-left: 30px;
	border-right: 1px solid rgba(255,255,255,0.3);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #fff;
}

.footer__bottomNav ul li a {
	color: #fff;
	text-decoration: none!important;
}

.footer__bottomNav ul li:last-child {
	border-right: none;
}

.footer__bottomSns {
	position: absolute;
	right: 60px;
	bottom: calc(50% +12px);
	display: flex;
	order: 3;
}

.footer__bottomSns li {
	padding-left: 35px;
	line-height: 1;
}

.footer__bottomSns li img {
	width: 25px;
	height: 24px;
}

@media screen and (max-width:1300px) and (min-width:1025px)  {
	
	.footer > .inner {
		flex-wrap: wrap;
	}
	
	.footer__info {
		width: calc(100% - 370px);
	}
	.footer__cta {
		margin-top: 50px;
		width: 100%;
	}
	
	.footer__bottom {
		display: block;
	}
	
	.footer__bottomNav {
		text-align: center;
	}
	.footer__bottomNav ul {
		justify-content: center;
		margin-bottom: 30px;
	}
	
	.footer__bottomNav li {
		display: inline-block;
	}
	.footer__bottomSns {
		position: relative;
		right: auto;
		justify-content: center;
		margin-bottom: 30px;
	}
	.footer__bottomSns li {
		margin: 0 17px;
		padding: 0;
	}
	.footer__bottomCopyright {
		text-align: center;
		margin: 0;
	}
	
}

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

	.footer {
		background: #212121 url("../images/footer_bg.png") left center no-repeat;
		background-size: auto 100%;
		color: #fff;
		padding: 0;
	}

	.footer > .inner {
		display: block;
		padding: 35px 20px;
	}

	.footer__main {
		width: 100%;
		margin-bottom: 30px;
		border-bottom: 1px solid rgba(255,255,255,0.3);
		padding-bottom: 30px;
	}

	.footer__mainLogo {
		margin-bottom: 30px;
	}

	.footer__mainCopy {
		margin-bottom: 20px;
	}

	.footer__info {
		width: 100%;
		display: block;
	}

	.footer__info > div {
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0.3);
		margin-bottom: 30px;
	}

	.footer__info > nav {
		width: 100%;
	}

	.footer__info h3 {
		color: #ae0b06;
		margin-bottom: 15px;
	}

	.footer__info div table {
		text-align: left;
		color: #bdbdbc;
		margin-bottom: 30px;
	}

	.footer__info div table th {
		display: table-cell;	
		vertical-align: top;
		padding-right: 20px;
		padding-bottom: 5px;
	}

	.footer__info div table td {
		display: table-cell;	
		margin-bottom: 0;
		padding-bottom: 5px;
	}

	.footer__info nav {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.footer__info nav ul {
		margin-right: 0;
		display: flex;
		flex-wrap: wrap;	
	}

	.footer__info nav ul li {
		margin-bottom: 25px;
		width: calc(50% - 10px);
		margin-right: 10px;
	}
	.footer__info nav ul li:nth-child(2n) {
		margin-right: 0;
		margin-left: 10px;
	}

	.footer__info nav ul li a {
		text-decoration: none;
		color: #fff;
		font-weight: 600;
	}

	.footer__info nav ul li::after {
		right: 4px;
	}

	.footer__cta {
		padding: 20px;
		width: 100%;
	}

	.footer__cta h3 {
		font-size: 28px;
	}

	.footer__cta p {
		margin-bottom: 20px;
	}

	.footer__ctaBtn li:nth-child(1) a{
		margin-bottom: 10px;
	}

	.footer__bottom {
		display: block;
		padding: 30px 0 0;
		text-align: center;		
	}

	.footer__bottomCopyright {
		margin-right: 0;
		display: block;
		border-top: 1px solid rgba(255,255,255,0.3);
		padding: 20px;
	}

	.footer__bottomNav ul {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		padding: 0 20px 20px;
	}

	.footer__bottomNav ul li:last-child,
	.footer__bottomNav ul li {
		width: 100%;
		margin-bottom: 5px;
		border: 1px solid rgba(255,255,255,0.3);
		text-align: left;
		padding: 0;
		border-radius: 8px;
	}
	
	.footer__bottomNav ul li a {
		display: block;
		padding: 10px;
		color: #fff;
		text-decoration: none;
		position: relative;
	}
	
	.footer__bottomNav ul li a:after {
		content: "";
		position: absolute;
		right: 16px;
		top: 50%;
		width: 6px;
		height: 6px;
		border-top: 1px solid #d9d9d9;
		border-right: 1px solid #d9d9d9;
		transform: translate(-60%, -50%) rotate(45deg);
		background: #212121;
	}

	.footer__bottomSns {
		position: relative;
		right: auto;
		bottom: auto;
		justify-content: center;
		margin: 0 0 30px;
	}

	.footer__bottomSns li {
		padding-left: 17px;
		padding-right: 17px;
		display: inline-block;
	}	
}

/*=================================================

01.TOP

=================================================*/

/*---------------------------------------
メインビジュアル
---------------------------------------*/

.hero {
	width: 100%;
	height: 650px;
	padding: 120px 60px 0;
	background: #000 url("../images/main-visual.jpg") right center no-repeat;
	background-size: auto 650px;
	color: #ffffff;
	position: relative;
}

.hero__subCopy {
	font-size: 18px;
	color: #ae0b06;
	margin-bottom: 15px;
	font-weight: bold;
	display: flex;
	align-items: center;
	font-weight: 600;
}

.hero__subCopy:before {
	content: "";
	display: block;
	width: 25px;
	height: 1px;
	background: #ae0b06;
	margin-right: 15px;
}

.hero__mainCopy {
	font-size: 52px;
	line-height: 1.3;
	margin-bottom: 25px;
	font-weight: 700;
}

.hero__text {
	font-size: 20px;
	margin-bottom: 35px;
	font-weight: 500;
}

.hero__works {
	display: flex;
	align-items: center;
	margin-bottom: 45px;
}

.hero__works li {
	text-align: center;
	width: 105px;
	font-weight: 600;
}

.hero__works li:not(:last-child){
	border-right: 1px solid #262626;
}

.hero__works li img {
	margin-bottom: 7px;
}

.hero__works li span {
	display: block;
	font-size: 12px;
}

.hero__cta {
	display: flex;
}
.hero__cta li {
	margin-right: 20px;
}

.hero__data {
	position: absolute;
	bottom: 0;
	right: 0;
}

.hero__data dl {
	width: 350px;
	display: flex;
	border-top: 1px solid rgba(255,255,255,0.3);
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding: 20px 0;
	text-align: center;
	line-height: 1;
	margin-bottom: 15px;
}

.hero__data dl > div {
	width: 50%;
}

.hero__data dl > div:first-child {
	width: calc(50% - 1px);
	border-right: 1px solid rgba(255,255,255,0.3);
}

.hero__data dl > div > div {
	display: inline-block;
	text-align: left;
}

.hero__data dt {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 10px;
}

.hero__data dd {
	font-size: 40px;
	font-weight: bold;
}

.hero__data dd span {
	font-size: 20px;
	display: inline-block;
	margin-left: 5px;
	position: relative;
}

.hero__data dd span em {
	position: absolute;
	top: -22px;
	color: #ae0b06;
	font-style: normal;
}

.hero__data p {
	text-align: right;
	color: #ffffff;
	opacity: 0.7;
	font-size: 12px;
}

.hero__scroll {
	position: absolute;
	right: 20px;
	bottom: 60px;
}

@media screen and (min-width:1025px) {
	.hero__cta li br {
		display: none;
	}
}

@media screen and (max-width:1024px) {
	.hero {
		width: 100%;
		height: auto;
		padding: 90px 20px 20px;
		background: #000 url("../images/sp_main-visual.png") center center no-repeat;
		background-size: cover;
	}
	
	.hero > .inner {
		display: flex;
		flex-direction: column;
	}
	
	.hero__subCopy {
		font-size: 14px;
		margin-bottom: 10px;
		order: 1;
	}
	
	.hero__subCopy:before {
		margin-right: 10px;
	}
	
	.hero__mainCopy {
		font-size: 30px;
		text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
		order: 2;
		margin-bottom: 10px;
	}
	
	.hero__text {
		font-size: 14px;
		margin-bottom: 20px;
		text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
		order: 3;
	}
	
	.hero__works {
		margin-bottom: 20px;
		order: 4;
	}
	
	.hero__works li {
		width: 20%;
	}
	
	.hero__works li:not(:last-child){
		border-right: 1px solid #262626;
	}
	
	.hero__works li img {
		margin-bottom: 2px;
		width: 30px;
	}
	
	.hero__works li span {
		font-size: 10px;
		text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
	}
	
	.hero__cta {
		order: 6;
		display: flex;
		margin-bottom: 0;
	}
	.hero__cta li:nth-child(1) {
		margin: 0 5px 0 0;
		width: calc(50% - 5px);
	}
	.hero__cta li:nth-child(2) {
		margin: 0 0 0 5px;
		width: calc(50% - 5px);
	}
	
	.hero__cta li .btn {
		width: 100%;
	}
	
	.hero__data {
		position: relative;
		bottom: auto;
		right: auto;
		order: 5;
		text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
	}
	
	.hero__data dl {
		width: 100%;
		padding: 15px 0;
		margin-bottom: 10px;
	}
	
	.hero__data dt {
		font-size: 14px;
		padding-bottom: 5px;
	}
	
	.hero__data dd {
		font-size: 30px;
	}
	
	.hero__data dd span {
		font-size: 14px;
	}
	
	.hero__data dd span em {
		top: -16px;
	}
	
	.hero__data p {
		font-size: 11px;
		margin-bottom: 10px;
		text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
	}
	
	.hero__scroll {
		display: none;
	}	
}

/*---------------------------------------
Webminareとは
---------------------------------------*/

.about {
	padding: 30px 60px;
}

.about .inner {
	display: flex;
	align-items: center;
}

.about__main {
	width: calc(100% - 780px);
	margin-right: 60px;
}

.about__main h2 {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.about__main h2:after {
	content: "";
	display: block;
	width: 25px;
	height: 1px;
	background: #ae0b06;
	margin-left: 15px;
}

.about__main p {
	line-height: 2;
}

.about__features {
	display: flex;
	align-items: center;
	width: 720px;
}

.about__features div {
	text-align: center;
	padding: 19px 0;
	border-left: 1px solid #d9d9d8;
}

.about__features div:last-child {
	border-right: 1px solid #d9d9d8;
}

.about__features dt {
	display: block;
	background: #ae0b06;
	border-radius: 1000px;
	color: #fff;
	font-weight: 600;
	padding: 3px 5px;
	margin: 0 35px 10px;
}

.about__features dd {
	margin: 0 30px;
}

@media screen and (min-width:1025px) and (max-width:1279px) {
	
	.about {
		padding: 30px;
	}
	
	.about .inner {
		display: block;
	}
	.about__main {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.about__features {
		width: 100%;
	}
}

@media screen and (max-width:1024px) {
	.about {
		padding: 20px;
	}

	.about .inner {
		display: block;
	}

	.about__main {
		width: 100%;
		margin-right: 0;
	}

	.about__main h2 {
		margin-bottom: 10px;
		font-size: 24px;
	}

	.about__main h2:after {
		margin-left: 10px;
	}

	.about__main p {
		line-height: 1.8;
		margin: 0 0 20px;
	}

	.about__features {
		display: block;
		width: 100%;
		border-right: none;
	}

	.about__features div {
		padding: 0;
		border: none;
		display: flex;
		align-items: center;
		margin-bottom: 10px;
		margin-right: 10px;
		border-bottom: 1px solid #d9d9d8;
		padding: 0 0 10px;
		
	}

	.about__features div:last-child {
		margin-right: 10px;
		border-right: none;
		border-bottom: none;
	}

	.about__features dt {
		margin: 0;
		width: 120px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		line-height: 1.5;
		margin-top: 5px;
		padding: 5px 10px;
		border-radius: 5px;
		background: #fff;
		color: #ae0b06;
		border: 1px solid #ae0b06;
	}

	.about__features dd {
		margin: 0;
		text-align: left;
		width: calc(100% - 120px);
		padding-left: 15px;
	}		
}

/*---------------------------------------
企業理念
---------------------------------------*/

.philosophy {
	background: #fbfbfb;
	position: relative;
	padding: 0 30px;
	overflow: hidden;
}

.philosophy:before {
	content: "PHILOSOPHY";
	font-size: 180px;
	position: absolute;
	left: 0;
	top: 50px;
	color: #f0f0f0;
	font-weight: 900;
	width: 100%;
	text-align: center;
	line-height: 1;
}

.philosophy .inner {
	padding: 100px 0 0;
	text-align: center;
}

.philosophy .heading {
	margin-bottom: 50px;
}

.philosophy h2 strong {
	color: #ae0b06;
	font-weight: 700;
}

.philosophy ol {
	display: flex;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	counter-reset: num;
}

.philosophy ol > li {
	width:33.33%;
	text-align: left;
	padding: 60px 20px;
	counter-increment: num;
}

.philosophy ol > li:nth-child(1){
	background: url("../images/pholosophy_image01.png") center center no-repeat;
	background-size: cover;
}

.philosophy ol > li:nth-child(2){
	background: url("../images/pholosophy_image02.png") center center no-repeat;
	background-size: cover;
}

.philosophy ol > li:nth-child(3){
	background: url("../images/pholosophy_image03.png") center center no-repeat;
	background-size: cover;
}

.philosophy ol > li::before {
	content: counter(num, decimal-leading-zero);
	display: flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	background: #ae0b06;
	color: #fff;
	font-weight: 500;
	margin-bottom: 40px;
	font-size: 22px;
}

.philosophy ol h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 40px;
}

.philosophy ol p {
	line-height: 2;
}

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

	.philosophy {
		padding: 0 20px;
	}

	.philosophy:before {
		font-size: 40px;
		top: 20px;
	}

	.philosophy .inner {
		padding: 50px 0 0;
	}

	.philosophy .heading {
		margin-bottom: 20px;
		text-align: left;
		font-size: 24px;
		line-height: 1.5;
	}
	.philosophy h2 br {
		display: none;
	}

	.philosophy ol {
		display: block;
	}

	.philosophy ol > li {
		width: 100%;
		padding: 20px;
	}

	.philosophy ol > li::before {
		width: 40px;
		height: 40px;
		margin-bottom: 20px;
		font-size: 22px;
	}

	.philosophy ol h3 {
		font-size: 22px;
		font-weight: 600;
		margin-bottom: 20px;
	}

	.philosophy ol p {
		line-height: 1.8;
	}	
}

/*---------------------------------------
事業内容
---------------------------------------*/

.works {
	background: #fbfbfb url("../images/works_bg01.png") center top -100px no-repeat;
	background-size: 1600px auto;
	padding: 70px 30px 0;
}

.works > .inner {
	background: url("../images/works_bg02.png") left bottom 20px no-repeat;
	background-size: 470px 410px;
	display: flex;
	padding: 0 0 80px;
}

.works__main {
	width: calc(100% - 600px);
}

.works__main .heading {
	margin-bottom: 20px;
	white-space: nowrap;
}

.works__main p {
	margin-bottom: 30px;
}

.works__image {
	width: 600px;
}

.works__approach {
	border-top: 1px solid #d9d9d8;
	background: #fff;
	padding: 30px;
	margin: 0 -30px;
}

.works__approach .inner {
	display: flex;
	align-items: center;
	background: none;
}

.works__approach--title {
	width: 280px;
	padding-right: 35px;
	border-right: 1px solid #d9d9d8;	
}

.works__approach--title h3 {
	font-size: 16px;
	color: #ae0b06;
	margin-bottom: 10px;
}

.works__approach--title p {
	font-size: 16px;
	line-height: 1.8;
}

.works__approach--info {
	width: calc(100% - 280px);
	padding-left: 30px;
	display: flex;
	align-items: center;
	text-align: center;
}

.works__approach--info div {
	flex: 1 1 0;
	min-width: 0;
	position: relative;
}

.works__approach--info div:not(:last-child)::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #d9d9d9;
	transform: translateX(-50%);
}

.works__approach--info div:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -8px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1px solid #d9d9d9;
	border-right: 1px solid #d9d9d9;
	transform: translate(-60%, -50%) rotate(45deg);
	background: #fff;
}

.works__approach--info dt {
	display: block;
	background: #ae0b06;
	border-radius: 1000px;
	color: #fff;
	font-weight: 600;
	padding: 0 5px;
	margin: 0 35px 10px;
}

.works__approach--info dd {
	margin: 0 10px;
}

@media screen and (min-width:1025px) {
	.works__image .btn {
		display: none;
	}
}

@media screen and (min-width:1025px) and (max-width:1279px) {
	.works__approach .inner {
		display: block;
	}
	.works__approach--title {
		width: 100%;
		padding-right: 0;
		border-right: none;
		margin-bottom: 30px;
		text-align: center;
	}
	.works__approach--info {
		width: 100%;
		padding-left: 0;
	}
}

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

	.works {
		background: #fbfbfb url("../images/works_bg01.png") center top -50px no-repeat;
		background-size: 800px auto;
		padding: 20px 0 0;
	}

	.works > .inner {
		background: url("../images/works_bg02.png") left bottom 20px no-repeat;
		background-size: 235px 205px;
		display: block;
		padding: 0 20px 40px;
	}

	.works__main {
		width: 100%;
	}
	
	.works__main .btn {
		display: none;
	}

	.works__main .heading {
		margin-bottom: 10px;
	}

	.works__main p {
		margin-bottom: 20px;
	}

	.works__image {
		width: 100%;
	}
	
	.works__image img {
		margin-bottom: 0px;
	}

	.works__approach {
		padding: 30px 20px 20px;
		margin: 0;
	}

	.works__approach .inner {
		display: block;
	}

	.works__approach--title {
		width: 100%;
		padding-right: 0;
		border-right: none;
		margin-bottom: 20px;
	}

	.works__approach--title h3 {
		font-size: 20px;
		color: #ae0b06;
		margin-bottom: 5px;
	}

	.works__approach--title p {
		font-size: 16px;
		line-height: 1.8;
	}

	.works__approach--info {
		width: 100%;
		padding-left: 0;
		display: block;
	}

	.works__approach--info div {
		display: flex;
		padding-bottom: 5px;
	}
	.works__approach--info div:not(:last-child) {		
		border-bottom: 1px solid #d9d9d8;
		margin-bottom: 15px;
	}

	.works__approach--info div:not(:last-child)::before {
		display: none;
	}

	.works__approach--info div:not(:last-child)::after {
		transform: translateX(-50%);
		content: "";
		position: absolute;
		right: calc(50% - 4px);
		top: auto;
		bottom: -8px;
		transform: translate(-60%, -50%) rotate(135deg);
	}

	.works__approach--info dt {
		padding: 0 10px;
		margin: 0 0 10px;
	}

	.works__approach--info dd {
		margin: 0 10px;
	}	
}

@media screen and (max-width: 767px) {
	.figureWrap {
		width: 300px;
		height: 300px;
		position: relative;
		margin: 0 auto 30px;
	}

	.figure {
		transform: scale(0.5);
		position: absolute;
		top: -150px;
		left: -150px;
	}
}

/*---------------------------------------
お問い合わせ
---------------------------------------*/

.contact {
	background: #0f0f0f url("../images/contact_bg.png") right center no-repeat;
	background-size: auto 100%;
	color: #fff;
	padding: 80px 30px 80px;
}

.contact > .inner {
	display: flex;
}

.contact__main {
	margin-bottom: 50px;
	margin-right: 100px;
	width: 50%;
}

.contact__main .heading {
	margin-bottom: 20px;
}

.contact__main p {
	margin-bottom: 30px;
}

.contact__cta {
	width: 50%;
}

.contact__cta ul li {
	margin-bottom: 20px;
	width: 450px;
}

.contact__cta ul li a.btn {
	width: 100%;
	flex-direction: column;
	font-size: 22px;
}
.contact__cta ul li a.btn span {
	display: block;
	font-size: 16px!important;
	font-weight: 400;
}

.contact__cta ul li a.btn::before {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  top: calc(50% - 25px);
  right: 61px;
  position: absolute;
}

.contact__problems .inner {
	text-align: center;
}
.contact__problems .inner h3 {
	font-size: 24px;
	margin-bottom: 35px;
}

.contact__problems .inner ul {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
}

.contact__problems .inner ul li {
	text-align: left;
	display: flex;
	width: calc((100% - 3px) / 4);
	padding: 0 20px;
	font-size: 16px;
	white-space: nowrap!important;
}

.contact__problems .inner ul li:not(:last-child){
	border-right: 1px solid rgba(255,255,255,0.3);
}

.contact__problems .inner ul li:before {
	content: "";
	display: inline-block;
	width: 26px;
	height: 24px;
	background: url("../images/icon_red_check.png") center center no-repeat;
	background-size: cover;
	margin-right: 13px;
	margin-top: 5px;
}

@media screen and (min-width:1025px) and (max-width:1279px) {
	.contact .inner {
		display: block;
	}
	.contact__main {
		width: 100%;
	}
	.contact__cta {
		width: 100%;
	}
	.contact__cta ul {
		display: flex;
		margin-bottom: 30px;
		justify-content: space-between;
		padding: 0;
	}
	.contact__cta ul li {
		width: calc(50% - 15px);
	}
	.contact__problems .inner ul {
		flex-wrap: wrap;
		padding: 0;
	}
	.contact__problems .inner ul li {
		width: 50%;
		border: none;
		padding: 20px 0;
	}
	
	.contact__problems .inner ul li:not(:last-child){
		border-right: none;
	}
	
	.contact__problems .inner ul li:nth-child(1){
		border-right: 1px solid rgba(255,255,255,0.3);
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	
	.contact__problems .inner ul li:nth-child(2){
		border-bottom: 1px solid rgba(255,255,255,0.3);
		padding-left: 20px;
	}
	
	.contact__problems .inner ul li:nth-child(3){
		border-right: 1px solid rgba(255,255,255,0.3);
	}
	.contact__problems .inner ul li:nth-child(4){
		padding-left: 20px;
	}
	.contact__problems .inner ul li br {
		display: none;
	}
}

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

	.contact {
		padding: 40px 20px 20px;
	}

	.contact > .inner {
		display: block;
	}

	.contact__main {
		margin-bottom: 20px;
		margin-right: 0;
		width: 100%;
	}

	.contact__main .heading {
		margin-bottom: 10px;
	}

	.contact__main p {
		margin-bottom: 0;
	}

	.contact__cta {
		width: 100%;
		margin-bottom: 30px;
	}

	.contact__cta ul li {
		margin-bottom: 10px;
		width: 100%;
	}

	.contact__cta ul li a.btn {
		font-size: 16px;
	}
	.contact__cta ul li a.btn span {
		font-size: 14px!important;
	}

	.contact__cta ul li a.btn::before {
	  height: 40px;
	  top: calc(50% - 20px);
	  right: 31px;
	}

	.contact__problems .inner {
		text-align: center;
	}
	.contact__problems .inner h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.contact__problems .inner ul {
		width: 100%;
		display: block;
		padding: 0;
	}

	.contact__problems .inner ul li {
		text-align: left;
		display: flex;
		width: 100%;
		padding: 10px 0;
		font-size: 16px;
	}

	.contact__problems .inner ul li:not(:last-child){
		border-right: none;
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}

	.contact__problems .inner ul li:before {
		width: 20px;
		height: 18px;
		margin-right: 10px;
		margin-top: 6px;
	}	
}

/*---------------------------------------
実績
---------------------------------------*/

.results {
	padding: 80px 0 80px;
	background: #fbfbfb;
}

.results > .inner {
	display: flex;
	margin-bottom: 90px;
}

.results__main {
	width: 490px;
}

.results__main h2 {
	margin-bottom: 20px;
}

.results__main p {
	margin-bottom: 40px;
}

.results__main .min {
	font-size: 12px;
	margin-bottom: 0;
}

.results__data {
	width: calc(100% - 490px);
	padding-top: 45px;
}

.results__data ul {
	display: flex;
	border-left: 1px solid #d9d9d9;
	margin-bottom: 25px;
}

.results__data ul li {
	flex: 1 1 0;
	text-align: center;
	border-right: 1px solid #d9d9d9;
}

.results__data ul li:before {
	content: "";
	display: inline-block;
	width: 42px;
	height: 34px;
	margin-bottom: 5px;
}

.results__data ul li.support:before {
	background: url("../images/icon_red_support.png") center center no-repeat;
	background-size: contain;
}

.results__data ul li.continued:before {
	background: url("../images/icon_red_continued.png") center center no-repeat;
	background-size: contain;
}

.results__data ul li.cv:before {
	background: url("../images/icon_red_cv.png") center center no-repeat;
	background-size: contain;
}

.results__data ul li.archivement:before {
	background: url("../images/icon_red_archivement.png") center center no-repeat;
	background-size: contain;
}

.results__data ul li .title {
	font-weight: 900;
	margin-bottom: 5px;
}

.results__data ul li .number {
	font-size: 46px;
	font-weight: 600;
	color: #ae0b06;
	line-height: 1.2;
}

.results__data ul li .number .blk {
	color: #000;
}

.results__data ul li .number .mdl {
	font-size: 24px;	
}

.results__data ul li .number .mid {
	font-size: 16px;
}

.results__data ul li .number .sml {
	font-size: 12px;
}

.results__data ul li .number .kaigyo {
	display: block;
}

.results__dataText {
	text-align: right;
	font-size: 12px;
}

.swiper-button-next,
.swiper-button-prev {
	background: #ae0b06;
	width: 40px;
	height: 40px;
	border-radius: 1000px;
	line-height: 1;
		-webkit-transition: all .2s;
		transition: all .2s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 12px;
	color: #fff;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}

.swiper-button-next {
	right: -23px;	
}

.swiper-button-prev {
	left: -23px;
}

.results__slider nav ul {
	display: flex;
	width: 100%;
	margin-bottom: 40px;
	border-left: 1px solid #d9d9d9;
}

.results__slider nav ul li {
	text-align: center;
	border-right: 1px solid #d9d9d9;
	position: relative;
	white-space: nowrap;
	flex: 1;
}

.results__slider nav ul li p {
	padding: 0 40px;
}

.results__slider nav ul li span:nth-child(1) {
	font-size: 20px;
	font-weight: 600;
	display: inline-block;
	line-height: 1;
	margin-bottom: 10px;
}

.results__slider nav ul li span:nth-child(2) {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	font-weight: 500;
}

.results__slider nav ul li.current:before {
	content: "";
	width: calc(100%);
	height: 5px;
	display: block;
	background: #ae0b06;
	position: absolute;
	bottom: -20px;
}

.results__slider nav ul li.current span:nth-child(1){
	color: #ae0b06;
}

.results__slider nav ul li:not(.current){
	cursor: pointer;
}

.resultsSwiper {
	overflow: hidden;
}

.resultsSwiper .swiper-wrapper {
	display: flex;
}

.resultsSwiper .swiper-slide {
	flex-shrink: 0;
}

.swiper {
	overflow: visible;
}

.results__slides {
	display: flex;
	margin: 0 0 90px;
	padding: 30px 0;
}

.results__slide {
	/*
	width: calc(((100% - 120px) / 3));
	margin: 0 20px 0 0;
	*/
	background: #fff;
	padding: 30px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.results__slideGenre {
	font-size: 14px;
	color: #ae0b06;
	font-weight: 700;
	margin-bottom: 10px;
}
.results__slideName{
	font-size: 24px;
	font-weight: 700;	
}
.results__slideWorks{
	font-size: 16px;
	font-weight: 600;	
	margin-bottom: 10px;
}
.results__slideCategory {
	overflow: hidden;
	margin-bottom: 10px;
	font-size: 14px;
	margin-bottom: 20px;
}
.results__slideCategory > li {
	float:  left;
	padding: 0 10px;
	border-radius: 1000px;
	border: 1px solid #d9d9d9;
	margin-right: 7px;
	margin-bottom: 7px;
	line-height: 1.2;
	font-weight: 500;
}

.results__slideImage {
	text-align: center;
	width: 320px;
	height: 186px;
	margin: 0 auto 40px;
	position: relative;
}

.results__slideImagePc {
	position: relative;
	width: 320px;
	height: 186px;
	margin: 0 auto;
}

.results__slideImagePc:before {
	content: "";
	display: block;
	background: url("../images/frame_pc.png");
	width: 320px;
	height: 186px;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.results__slideImagePc img {
	width: 248px;
	height: 158px;
	margin-top: 12px;
	object-position: top;
	object-fit: cover;
}

.results__slideImageSp {
	position: absolute;
	width: 64px;
	height: 128px;
	right: 0;
	bottom: -10px;
}

.results__slideImageSp:before {
	content: "";
	display: block;
	background: url("../images/frame_sp.png");
	width: 64px;
	height: 128px;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.results__slideImageSp img {
	width: 58px;
	height: 122px;
	margin-top: 3px;
	border-radius: 10px;
	object-position: top;
	object-fit: cover;
}
.results__slideText{
	margin-bottom: 20px;
}
.results__slideSubTitle{
	font-weight: 600;
	font-size: 14px;
}
.results__slideResult{
	font-size: 40px;
	font-weight: 700;
	color: #ae0b06;
}
.results__slideResult span{
	font-size: 16px;
	color: #000;
}
.results__slideHosoku{
	font-size: 12px;	
}

.result__client {
	text-align: center;
	overflow: hidden;
	margin: 0 -30px;
}

.result__client h3 {
	margin-bottom: 30px;
}

.result__client h3 span {
	font-size: 15px;
}

.result__client h3:after {
	content: "";
	width: 25px;
	height: 1px;
	display: block;
	background: #ae0b06;
	margin: 10px auto 0;
}

.result__client ul {
	display: flex;
	width: max-content;
}

.result__client ul.is-slide {
	animation: logoSlide 50s linear infinite;
}

.result__client ul.is-slide li img {
	width: auto;
	height: 60px;
	margin: 0 10px;
}

.results__slideBA {
	display: flex;
	margin: 0 auto;
	justify-content: center;
}

.results__slideNum {
	color:#ae0b06;
	font-size: 40px;
	font-weight: bold;
	position: relative;
}

.results__slideNum span {
	color:#000;
	font-size: 20px;
}

.results__slideBefore .results__slideNum:after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	border-top: 3px solid #ccc;
	border-right: 3px solid #ccc;
	transform: rotate(45deg);
	margin: 0 45px;
	position: relative;
	bottom: 3px;
}

@keyframes logoSlide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media screen and (min-width:1280px) {

}

@media screen and (min-width:1025px) {
	.results__dataText br {
		display: none;
	}
	.results__slideBA br {
		display: none;
	}
}

@media screen and (min-width:1025px) and (max-width:1279px) {
	.results__main {
		width: 400px;
	}
	.results__data {
		width: calc(100% - 400px);
	}
	
	.results .inner {
		padding: 0 30px;
	}
	.results__slider {
		padding: 0 30px;	
	}
	
	.results__slider nav {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.results__slider nav::-webkit-scrollbar {
		display: none;
	}

	.results__slider nav ul {
		display: flex;
		flex-wrap: nowrap;
		width: max-content;
		min-width: max-content;
		margin-bottom: 0;
	}

	.results__slider nav ul li {
		flex: 0 0 auto;
		text-align: center;
		border-right: 1px solid #d9d9d9;
		position: relative;
		padding: 0 20px 10px;
		white-space: nowrap;
	}	

	.results__slider nav ul li p {

	}

	.results__slider nav ul li span:nth-child(1) {
		font-size: 16px;
	}

	.results__slider nav ul li span:nth-child(2) {
		font-size: 14px;
	}

	.results__slider nav ul li.current:before {
		content: "";
		width: 100%;
		height: 5px;
		display: block;
		background: #ae0b06;
		position: absolute;
		bottom: 0px;
		left: 0px;
	}

	.results__slider nav ul li.current span:nth-child(1){
		color: #ae0b06;
	}

	.results__slideImage {
		text-align: center;
		width: 400px;
		height: 232px;
		margin: 0 auto 40px;
		position: relative;
	}

	.results__slideImagePc {
		position: relative;
		width: 400px;
		height: 232px;
	}
	.results__slideText br {
		display: none;
	}

	.results__slideImagePc:before {
		content: "";
		display: block;
		background: url("../images/frame_pc.png");
		width: 400px;
		height: 232px;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
	}

	.results__slideImagePc img {
		width: 310px;
		height: 210px;
		margin-top: 15px;
	}

	.results__slideImageSp {
		position: absolute;
		width: 80px;
		height: 160px;
		right: 0;
		bottom: -10px;
	}

	.results__slideImageSp:before {
		content: "";
		display: block;
		background: url("../images/frame_sp.png");
		width: 80px;
		height: 160px;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
	}

	.results__slideImageSp img {
		width: 74px;
		height: 154px;
		margin-top: 4px;
		border-radius: 10px;
	}
}

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

	.results {
		padding: 40px 20px 40px;
	}

	.results > .inner {
		margin-bottom: 40px;
		display: block;
	}

	.results__main {
		width: 100%;
	}

	.results__main h2 {
		margin-bottom: 10px;
	}

	.results__main p {
		margin-bottom: 20px;
	}
	
	.results__main p br {
		display: none;
	}

	.results__data {
		width: 100%;
		padding-top: 45px;
	}

	.results__data ul {
		display: flex;
		flex-wrap: wrap;
		border-left: none;
		margin-bottom: 25px;
	}

	.results__data ul li {
		flex:auto;
		text-align: center;
		width: 50%;
		border:none;
	}

	.results__data ul li:before {
		content: "";
		display: inline-block;
		width: 32px;
		height: 26px;
		margin-bottom: 5px;
	}
	
	.results__data ul li:nth-child(1){
		border-right: 1px solid #d9d9d9;
		border-bottom: 1px solid #d9d9d9;
		padding-bottom: 20px;
	}
	
	.results__data ul li:nth-child(2){
		border-bottom: 1px solid #d9d9d9;
		padding-bottom: 20px;
	}
	
	.results__data ul li:nth-child(3){
		border-right: 1px solid #d9d9d9;
		padding-top: 20px;
	}
	
	.results__data ul li:nth-child(4){
		padding-top: 20px;
	}

	.results__data ul li .title {
		font-weight: 900;
		margin-bottom: 5px;
	}

	.results__data ul li .number {
		font-size: 42px;
	}

	.results__data ul li .number .blk {
		color: #000;
	}

	.results__data ul li .number .mdl {
		font-size: 20px;	
	}

	.results__data ul li .number .mid {
		font-size: 14px;
	}

	.results__dataText {
		text-align: left;
		font-size: 11px;
	}

	.results__slider nav ul {
		display: flex;
		margin-bottom: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;		
	}
	
	.results__slider nav ul::-webkit-scrollbar {
		width: 0;
		height: 0;
		display: none;
	}

	.results__slider nav ul li {
		text-align: center;
		border-right: 1px solid #d9d9d9;
		position: relative;
		padding: 0 20px 10px;
		display: inline-block;
	}

	.results__slider nav ul li p {
		padding: 0 10px;
	}

	.results__slider nav ul li span:nth-child(1) {
		font-size: 16px;
	}

	.results__slider nav ul li span:nth-child(2) {
		font-size: 14px;
		display: none;
	}

	.results__slider nav ul li.current:before {
		content: "";
		width: 100%;
		height: 5px;
		display: block;
		background: #ae0b06;
		position: absolute;
		bottom: 0px;
		left: 0px;
	}

	.results__slider nav ul li.current span:nth-child(1){
		color: #ae0b06;
	}

	.results__slides {
		display: flex;
		padding-top: 20px;
		margin-bottom: 30px;
		justify-content: space-between;
	}

	.results__slide {
		width: calc((100% - 60px) / 3);
		background: #fff;
		padding: 20px;
		box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
		border-radius: 10px;
	}

	.swiper-button-next {
		right: -13px;	
	}

	.swiper-button-prev {
		left: -13px;
	}

	.results__slideGenre {
		font-size: 14px;
		color: #ae0b06;
		font-weight: 700;
		margin-bottom: 10px;
	}
	.results__slideName{
		font-size: 24px;
		font-weight: 700;	
	}
	.results__slideWorks{
		font-size: 16px;
		font-weight: 600;	
		margin-bottom: 10px;
	}
	.results__slideCategory {
		overflow: hidden;
		margin-bottom: 10px;
		font-size: 14px;
		margin-bottom: 20px;
	}
	.results__slideCategory > li {
		float:  left;
		padding: 0 10px;
		border-radius: 1000px;
		border: 1px solid #d9d9d9;
		margin-right: 7px;
		margin-bottom: 7px;
		line-height: 1.2;
		font-weight: 500;
	}
	.results__slideImage {
		text-align: center;
		margin-bottom: 20px;
	}
	
	.results__slideImage {
		text-align: center;
		margin: 0 auto 20px;
		width: 200px;
		height: 116px;
		position: relative;
	}

	.results__slideImagePc {
		position: relative;
		width: 200px;
		height: 116px;
	}

	.results__slideImagePc:before {
		content: "";
		display: block;
		background: url("../images/frame_pc.png");
		width: 200px;
		height: 116px;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
	}

	.results__slideImagePc img {
		width: 155px;
		height:105px;
		margin-top: 7px;
	}

	.results__slideImageSp {
		position: absolute;
		width: 40px;
		height: 80px;
	}

	.results__slideImageSp:before {
		content: "";
		display: block;
		background: url("../images/frame_sp.png");
		width: 40px;
		height: 80px;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
	}

	.results__slideImageSp img {
		width: 37px;
		height: 77px;
		margin-top: 2px;
		border-radius: 10px;
	}
	.results__slideText{
		margin-bottom: 20px;
	}
	.results__slideSubTitle{
		font-weight: 600;
		font-size: 14px;
	}
	.results__slideResult{
		font-size: 40px;
		font-weight: 700;
		color: #ae0b06;
	}

	.results__slideResult span{
		font-size: 16px;
		color: #000;
	}
	
	.results__slideBA .results__slideSubTitle {
		font-size: 12px;
	}	

	.results__slideNum {
		font-size: 28px;
	}

	.results__slideNum span {
		font-size: 14px;
	}
	
	.results__slideBefore .results__slideNum:after {
		margin: 0 15px;
		bottom: 3px;
	}
	
	
	.results__slideHosoku{
		font-size: 12px;	
	}
	.results__slideText br {
		display: none;
	}

	.result__client {
		text-align: center;
		margin: 0 -20px;
		width: calc(100% + 40px);
	}

	.result__client h3 {
		margin-bottom: 30px;
	}

	.result__client h3 span {
		font-size: 15px;
	}

	.result__client h3:after {
		content: "";
		width: 25px;
		height: 1px;
		display: block;
		background: #ae0b06;
		margin: 10px auto 0;
	}
	
	.result__client ul {
		flex-wrap: nowrap;
		justify-content: flex-start;
		width: max-content;
		animation: clientSlide 30s linear infinite;
	}
	
	.result__client ul.is-slide {
		animation: logoSlide 20s linear infinite;
	}

	.result__client li {
		flex: 0 0 auto;
	}

	.result__client img {
		height: 40px;
		width: auto;
	}
	

	@keyframes clientSlide {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-50%);
		}
	}
}

/*=================================================

02.下層

=================================================*/

/*---------------------------------------
下層メインビジュアル
---------------------------------------*/

.hero--company {
	height: 450px;
	background: #000 url("../images/hero--company.png") right center no-repeat;
	background-size: auto 100%;
}

.hero--blog {
	height: 450px;
	background: #000 url("../images/hero--blog.png") right center no-repeat;
	background-size: auto 100%;
}

.hero__inc {
	position: absolute;
	top: 175px;
	left: 30px;
}

.hero__lower {
	padding-left: 80px;
}

@media screen and (max-width:1024px) {
	.hero--company {
		height: 260px;
		background: #000 url("../images/hero--company.png") right -100px top 60px no-repeat;
		background-size: auto 100%;
	}
	
	.hero--blog {
		height: 260px;
		background: #000 url("../images/hero--blog.png") right -100px top 60px no-repeat;
		background-size: auto 100%;
	}

	.hero__inc {
		display: none;
	}

	.hero__lower {
		padding-left: 0px;
	}	
	.hero__lower .hero__subCopy {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.hero__lower .hero__text {
		margin-bottom: 0;
	}
}

/*=================================================

03.会社概要

=================================================*/

/*---------------------------------------
会社情報
---------------------------------------*/

.profile {
	padding: 120px 30px 100px;
	position: relative;
	background: url("../images/profile_bg.png") bottom left no-repeat;
	background-size: 375px 210px;
}

.profile:after {
	content: "LIGHT\ATHE WAY.";
	white-space: pre-line;
	color: #f0f0f0;
	font-weight: 900;
	font-size: 120px;
	z-index: -1;
	position: absolute;
	bottom: 60px;
	left: 0;
	line-height: 1.2
}

.profile > .inner {
	display: flex;
}

.profile__main {
	width: 400px;
	margin-right: 220px;
}

.profile__main .heading {
	margin-bottom: 20px;
}

.profile__content table {
	border-collapse: collapse;
}

.profile__content th {
	border-bottom: 1px solid #d9d9d9;
	padding: 20px 70px 20px 0;
	text-align: left;
	vertical-align: top;
	position: relative;
}

.profile__content th:after {
	content: "";
	display: block;
	width: 25px;
	height: 1px;
	background: #ae0b06;
	position: absolute;
	right: 0;
	top: 32px;
}

.profile__content td {
	border-bottom: 1px solid #d9d9d9;
	padding: 20px 0 20px 50px;
	vertical-align: top;
}

.profile__content tr:last-child th,
.profile__content tr:last-child td {
	border-bottom: none;
}

.profile__content td ul {
	list-style: disc;
	margin-left: 15px;
}

.profile__content td ul li::marker {
	color: #ae0b06;
}

@media screen and (max-width:1024px) {
	.profile {
		padding: 30px 20px 150px;
		background: url("../images/profile_bg.png") bottom left no-repeat;
		background-size: 225px 126px;
	}

	.profile:after {
		font-size: 60px;
		bottom: 40px;
	}

	.profile > .inner {
		display: block;
	}

	.profile__main {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}

	.profile__main .heading {
		margin-bottom: 10px;
	}
	
	.profile__content {
		margin: 0 0 50px;
	}

	.profile__content th {
		padding: 20px 35px 20px 0;
		position: relative;
		white-space: nowrap;
	}

	.profile__content th:after {
		width: 20px;
	}

	.profile__content td {
		padding: 20px 0 20px 25px;
	}
}

/*---------------------------------------
代表挨拶
---------------------------------------*/

.message {
	background: #000 url(../images/message_side.png) left 30px top 100px no-repeat;
	background-size: 10px auto;
	padding: 85px 30px;
	color: #fff;
}

.message > .inner {
	max-width: 1040px;
	display: flex;
}

.message__image {
	margin-right: 90px;
	padding-top: 70px;
	width: 450px;
	order: 1;
}

.message__image img {
	width: 280px;
	height: 280px;
	display: block;
	margin: 0 auto;
	border-radius: 3px;
	margin-bottom: 30px;
}

.message__imageName {
	background: #ae0b06;
	color: #fff;
	padding: 5px 20px 10px;
	display: inline-block;
	font-weight: 500;
	float: right;
	margin-bottom: 30px;
	margin-top: -30px;
	margin-right: 60px;
	position: relative;
	z-index: 2;
	line-height: 1.3;
}

.message__image h3 {
	text-align: center;
	margin: 0 0 20px;
	font-size: 20px;
	clear: both;
}

.message__image ul li {
	padding-bottom: 30px;
	border-left: 2px solid #fff;
	border-left: 2px solid rgba(255,255,255,0.3);
	padding-left: 30px;
}

.message__image ul li:last-child {
	padding-bottom: 0;
	border: none;
	padding-left: 32px;
}

.message__image ul li h4 {
	position: relative;
	top: -10px;
	margin-bottom: -10px;
}

.message__image ul li h4:before {
	content: "●";
	position: absolute;
	top: 0;
	left: -39px;
	color: #ae0b06;
	font-size: 18px;
}

.message__main {
	order: 2;
}

.message__main .heading {
	margin-bottom: 30px;
}

.message__main p {
	line-height: 2.3;
}

.message__sign {
	margin-top: 50px;
}

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

	.message {
		background: #000;
		padding: 30px 20px;
		color: #fff;
	}

	.message > .inner {
		display: block;
	}

	.message__image {
		margin-right: 0;
		padding-top: 0;
		width: 100%;
	}

	.message__image img {
		width: 240px;
		height: 240px;
		margin: 0 auto 30px;
	}

	.message__imageName {
		background: #ae0b06;
		color: #fff;
		padding: 5px 20px 10px;
		display: inline-block;
		font-weight: 500;
		float: right;
		margin-bottom: 30px;
		margin-top: -30px;
		margin-right: 60px;
		position: relative;
		z-index: 2;
		line-height: 1.3;
	}

	.message__image h3 {
		text-align: center;
		margin: 0 0 20px;
		font-size: 20px;
		clear: both;
	}

	.message__image ul li {
		padding-bottom: 30px;
		border-left: 2px solid #fff;
		border-left: 2px solid rgba(255,255,255,0.3);
		padding-left: 30px;
	}

	.message__image ul li:last-child {
		padding-bottom: 0;
		border: none;
		padding-left: 32px;
	}

	.message__image ul li h4 {
		position: relative;
		top: -10px;
		margin-bottom: -10px;
	}

	.message__image ul li h4:before {
		content: "●";
		position: absolute;
		top: 0;
		left: -39px;
		color: #ae0b06;
		font-size: 18px;
	}
	
	.message__main .heading {
		margin-bottom: 20px;
	}

	.message__main p {
		line-height: 1.8;
	}

	.message__sign {
		margin-top: 30px;
		margin-bottom: 40px;
	}	
}

/*---------------------------------------
社名に込めた想い
---------------------------------------*/

.story {
	padding: 100px 30px 100px;
	text-align: center;
	background: #fbfbfb;
}

.story .heading {
	font-size: 50px;
}

.story__text {
	margin-bottom: 35px;
}

.story__copy {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 60px;
}

.story__copy strong {
	color: #ae0b06;
}

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

.story__section {
	width: calc(50% - 15px);
	background: #fff;
	padding: 40px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.story__section h3 {
	font-size: 28px;
	margin-bottom: 30px;
}

.story__reason dl {
	display: flex;
	text-align: center;
	width: calc(100% + 30px);
	margin: 0 -15px;
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.story__reason dl div {
	padding: 0 15px;
	width: calc((100% - 2px) / 3);
}

.story__reason dl div:nth-child(2){
	border-right: 1px solid #d9d9d9;
	border-left: 1px solid #d9d9d9;
}

.story__reason dl dt {
	background: #ae0b06;
	color: #fff;
	text-align: center;
	border-radius: 1000px;
	line-height: 1;
	padding: 3px;
	margin-bottom: 10px;
	font-weight: 600;
}


.story__reason dl dd {
	white-space: nowrap;
	letter-spacing: -1px;
}

.story__reason p {
	text-align: left;
}

.story__reason p strong {
	color: #ae0b06;
}

.story__logoFlex {
	display: flex;
	align-items: center;
	line-height: 2;
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 40px;
	margin-top: -25px;
}

.story__logoImage {
	width: 30px;
	margin-right: 40px;
	margin-left: 10px;
}

.story__logoText {
	text-align: left;
	width: calc(100% - 70px);
}

.story__logo h4 {
	color: #ae0b06;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
	margin-top: 40px;
	margin-bottom: 10px;
}

.story__logo p {
	text-align: left;
}

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

	.story {
		padding: 40px 20px 40px;
	}

	.story .heading {
		font-size: 28px;
	}

	.story__text {
		margin-bottom: 20px;
	}

	.story__copy {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.story__flex {
		display: block;
	}

	.story__section {
		width: 100%;
		padding: 20px;
	}

	.story__section h3 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	.story__reason {
		margin-bottom: 30px;
	}

	.story__reason dl {
		display: block;
		text-align: center;
		width: 100%;
		margin: 0;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.story__reason dl div {
		padding: 0;
		border: none;
		display: block;
		align-items: center;
		margin-bottom: 0;
		margin-right: 0;
		border-bottom: none;
		padding: 0;
		width: 100%;
		
	}

	.story__reason dl div:nth-child(2){
		border: none;
	}
	
	.story__reason dl div:not(:last-child){
		margin-bottom: 10px;
		border-bottom: 1px solid #d9d9d9;
		padding-bottom: 10px;
	}

	.story__reason dl dt {
		margin: 0;
		width: 100%;
		margin-bottom: 10px;

	}

	.story__reason dl dd {
		margin: 0;
		text-align: center;
		width: 100%;
		padding-left: 0;
		white-space: inherit;
		letter-spacing: 0;
	}
	
	.story__reason dl dd br {
		/*display: none;*/
	}
	

	.story__reason p strong br {
		display: none;
	}

	.story__logoFlex {
		padding-bottom: 20px;
		margin-top: -5px;
		display: block;
	}

	.story__logoImage {
		width: 30px;
		margin: 0 auto 30px;
	}

	.story__logoText {
		width:100%;
	}

	.story__logo h4 {
		margin-top: 20px;
	}
}