@charset "utf-8";
/* CSS Document */

body {
	overflow-x: hidden;
	position: relative;
	margin: 0;
	padding: 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 400; 
	font-style: normal;
	-webkit-overflow-scrolling: touch;
	-moz-overflow-scrolling: touch;
	-ms-overflow-scrolling: touch;
	overflow-scrolling: touch;
	color: #000;
    -webkit-text-size-adjust: 100%;
}
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    pointer-events: none; 
    opacity: 0; 
    -webkit-transition: all 2s cubic-bezier(0.37,0,0.63,1);
    transition: all 2s cubic-bezier(0.37,0,0.63,1);
}
body.transition-fadeinout::after { opacity: 1; }

div { box-sizing: border-box; }

img { margin: 0; vertical-align: bottom; pointer-events: none; }

figure { margin: 0; }

h1,h2,h3,h4 { margin: 0; }

p { margin: 0; line-height: 2em; }

#content { }



/*------------------------------------------- header -------------------------------------------*/

header { display: flex; justify-content: space-between; align-items: center; margin: 50px auto 120px auto; z-index: 10; }
header h1 { margin-left: 50px; line-height: 0; }
header h1 a { display: block; }

header nav { width: 40%; margin-right: 50px; }
header nav ul { display: flex; justify-content: space-between; list-style: none; padding: 0; margin: 0; font-size: 1em; letter-spacing: .1em; }
header nav ul li { }
header nav ul li a {
	position: relative;
	padding: .5em 0;
	font-family: source-han-sans-japanese, sans-serif;
	font-style: normal;
	font-weight: 500;
	color: #111;
	text-decoration: none;
	transition: .5s;
}
header nav ul li a::after {
	position: absolute;
	bottom: -10px;
	left: 0;
	content: '';
	width: 100%;
	height: 3px;
	background: #006ab8;
	transform: scale(0,1);
	transform-origin: left top;
	transition: transform .3s;
}
header nav ul li a:hover::after {
	transform: scale(1,1);
}

.header-nav-mobile { display: none; }
.header-page { width: 100%; position: absolute; }

.button_container { display: none; }
.overlay { display: none; }



/*------------------------------------------- slideshow -------------------------------------------*/

.slideshow {
	overflow: hidden;
	position: relative;
	width: 70%;
	height: 700px;
	margin-left: auto;
	border-radius: 30px 0 0 30px;
}
.slideshow .slideshow-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.slideshow .slides {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.slideshow .slide {
	display: none;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
	display: block;
}
.slideshow .slide.is-loaded {
	opacity: 1;
}
.slideshow .slide .caption {
	padding: 0 100px;
}
.slideshow .slide .image-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	z-index: 1;
	background-size: cover;
	image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
}
.slideshow .slide .image {
	width: 100%;
	object-fit: cover;
	height: 100%;
}
.slideshow .slide-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slideshow .slide .title {
	margin: 0 auto 15px;
	max-width: 1000px;
	font-size: 2.5em;
	letter-spacing: 5px;
  	text-transform: uppercase;
}
.slideshow .slide .text {
	margin: 0 auto;
	max-width: 1000px;
	font-size: 1em;
	line-height: 1.4;
}
.slideshow .slide .btn {
	margin: 15px 0 0;
	border-color: #fff;
}
.slideshow .slide .btn::before {
	background: #fff;
}
.slideshow .pagination {
	position: absolute;
	bottom: 100px;
	left: 0;
	width: 90%;
	height: 12px;
	cursor: default;
	z-index: 2;
	text-align: right;
}
.slideshow .pagination .item {
	display: inline-block;
	padding: 15px 5px;
	position: relative;
	width: 46px;
	height: 32px;
	cursor: pointer;
	text-indent: -999em;
	z-index: 1;
}
.slideshow .pagination .item + .page {
	margin-left: -2px;
}
.slideshow .pagination .item::before {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
	left: 5px;
	width: 36px;
	height: 2px;
	background: rgba(255, 255, 255, 0.5);
	transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
	width: 0;
	background: #fff;
	z-index: 2;
	transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
	background-color: #fff;
}
.slideshow .arrows .arrow {
	margin: -33px 0 0;
	padding: 20px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	z-index: 3;
}
.slideshow .arrows .prev {
	left: 30px;
}
.slideshow .arrows .prev:hover .svg {
	left: -10px;
}
.slideshow .arrows .next {
	right: 30px;
}
.slideshow .arrows .next:hover .svg {
	left: 10px;
}
.slideshow .arrows .svg {
	position: relative;
	left: 0;
	width: 14px;
	height: 26px;
	fill: #fff;
	transition: left 0.2s ease;
}



/*------------------------------------------- top page -------------------------------------------*/

/* 01 */

#top-contents-Box01 { position: relative; margin-bottom: 80px; }
#top-contents-Box01 .heading01 {
	position: absolute;
	top: 50px;
	left: 150px;
	font-size: 8em;
	font-family: aktiv-grotesk, sans-serif;
	font-weight: 800;
	font-style: normal;
	line-height: 1.1em;
	z-index: 100;
}
#top-contents-Box01 .heading01 span { color: #006ab8; }
#top-contents-Box01 .heading02 {
	position: absolute;
	top: 460px;
	left: 150px;
	font-size: 2em;
	font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height: 1.8em;
	margin-top: 20px;
	z-index: 100;
}
#top-contents-Box01 .heading03 {
	position: absolute;
	bottom: 30px;
	left: 150px;
	font-size: 1em;
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
	color: #006ab8;
	line-height: 1.8em;
	z-index: 100;
}

#top-contents-Box01 a {
	display: inline-block;
	position: absolute;
	right: 40px;
	bottom: 90px;
	z-index: 2;
	padding: 10px 10px 110px;
	overflow: hidden;
	color: #fff;
	font-size: 14px;
	font-family: aktiv-grotesk, sans-serif;
    font-weight: 800;
    font-style: normal;
	line-height: 1;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-decoration: none;
	writing-mode: vertical-lr;
}
#top-contents-Box01 a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100px;
	background: #fff;
}
#top-contents-Box01 a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100px;
	background: rgba(255, 255, 255, .4);
}
#top-contents-Box01 a::after {
	animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}

.space { border-bottom: 1px solid #eee; }
.space .inner {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
}
.space .inner .box01 { width: 40%; padding: 40px; }
.space .inner .box02 { width: 60%; padding: 40px; border-left: 1px solid #eee; }

.sub-nav {
    position: absolute;
    top: 0;
    left: 3.125vw;
    left: 3.125%;
    text-align: center;
}
.sub-nav__num {
    position: relative;
    padding: 0 0 60px;
    font-size: 14px;
    font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
}
.sub-nav__num:after {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 1px;
    height: 40px;
    margin: 0;
    background: #006ab8;
}
.sub-nav__ttl {
    font-size: 14px;
    font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    margin: 0 0 0 2px;
}

/* 02 */

#top-contents-Box02 { position: relative; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
#top-contents-Box02 .inner {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
}
#top-contents-Box02 .inner .about-box01 {
	position: relative;
    width: 40%;
	height: 600px;
    line-height: 0;
	border-right: 1px solid #eee;
    overflow: hidden;
    z-index: 1;
}
#top-contents-Box02 .inner .about-box01 .about-img {
	width: 85%;
	overflow: hidden;
	position: relative;
}
#top-contents-Box02 .inner .about-box02 { width: 60%; }
#top-contents-Box02 .inner .about-box02 h2 {
	position: relative;
	padding: 40px 60px;
	font-size: 1.8em;
	border-bottom: 1px solid #eee;
}
#top-contents-Box02 .inner .about-box02 h2::before {
	content: "";
    display: block;
	position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #006ab8;
}
#top-contents-Box02 .inner .about-box02 h2 span { color: #006ab8; }
#top-contents-Box02 .inner .about-box02 .text01 { padding: 40px 60px; }
#top-contents-Box02 .inner .about-box02 .button { width: 150px; margin: 40px 60px 0 60px; }
#top-contents-Box02 .inner .about-box02 .button a {
	display: inline-block;
    padding: 0 0 10px;
	font-weight: bold;
	color: #111;
	text-decoration: none;
	border-bottom: 1px solid #006ab8;
}

#top-contents-Box02 .sub-nav { top: 120px; bottom: auto; right: 3.125vw; right: 3.125%; left: auto; z-index: 1; }
#top-contents-Box02 .sub-nav__num { color: #111; }
#top-contents-Box02 .sub-nav__num:after { background: #006ab8; }
#top-contents-Box02 .sub-nav__ttl { color: #111; }

/* 03 */

#top-contents-Box03 { position: relative; margin-bottom: 150px; border-bottom: 1px solid #eee; }
#top-contents-Box03 .inner {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
#top-contents-Box03 .inner h2 {
	font-size: 4em;
	font-family: aktiv-grotesk, sans-serif;
	font-weight: 800;
	font-style: normal;
	color: #006ab8;
	text-align: right;
	margin-top: 50px;
}
#top-contents-Box03 .inner small { display: block; margin-bottom: 50px; font-size: 1.2em; font-weight: bold; color: #006ab8; text-align: right; }
#top-contents-Box03 .inner .works-list { list-style: none; padding: 0; display: flex; }
#top-contents-Box03 .inner .works-list li { width: 31%; margin-right: 3.5%; overflow: hidden; position: relative; }
#top-contents-Box03 .inner .works-list li:nth-child(3n) { margin: 0; }
#top-contents-Box03 .inner .works-list li figure { margin-bottom: 20px; position: relative; border-radius: 20px; }
#top-contents-Box03 .inner .works-list li figure span { display: block; border-radius: 20px; overflow: hidden; }
#top-contents-Box03 .inner .works-list li figure span img { width: 100%; height: 100%; vertical-align: bottom; object-fit: cover; }
#top-contents-Box03 .inner .works-list li a { display: block; text-decoration: none; color: #111; }
#top-contents-Box03 .inner .works-list li a figure span img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#top-contents-Box03 .inner .works-list li a:hover figure span img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	opacity: .8;
}
#top-contents-Box03 .inner .works-list li figure figcaption {
	position: absolute;
	bottom: -60px;
	right: 20px;
	font-size: 5rem;
	font-family: aktiv-grotesk, sans-serif;
	font-weight: 700;
	color: #006ab8;
	line-height: 1.4;
	letter-spacing: -0.05em;
	z-index: 5;
} 
#top-contents-Box03 .inner .works-list li .title { font-size: 1.3em; font-weight: bold; line-height: 1.6; margin-top: 40px; }
#top-contents-Box03 .inner .works-list li .add { display: block; font-size: .9em; margin-top: 10px; }

#top-contents-Box03 .sub-nav { top: 120px; }

/* 04 */

#top-contents-Box04 {
	position: relative;
	background: url("../img/common/top_company_back.jpg") no-repeat;
	background-position: center;
	background-size: cover;
}
#top-contents-Box04 .inner {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 120px 0;
	position: relative;
}
#top-contents-Box04 .inner .text-area { width: 60%; }
#top-contents-Box04 .inner .text-area h2 { font-size: 1.8em; color: #fff; margin-bottom: 20px; }
#top-contents-Box04 .inner .text-area p { color: #fff; }

#top-contents-Box04 .sub-nav { top: 25%; bottom: auto; right: 3.125vw; right: 3.125%; left: auto; z-index: 1; }
#top-contents-Box04 .sub-nav__num { color: #fff; }
#top-contents-Box04 .sub-nav__num:after { background: #fff; }
#top-contents-Box04 .sub-nav__ttl { color: #fff; }

/* 05 */

#top-contents-Box05 { position: relative; border-bottom: 1px solid #eee; }
#top-contents-Box05 .inner {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 120px 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#top-contents-Box05 .inner h2 {
	font-size: 4em;
	font-family: aktiv-grotesk, sans-serif;
	font-weight: 800;
	font-style: normal;
	color: #006ab8;
}
#top-contents-Box05 .inner small { display: block; margin-bottom: 50px; font-size: 1.2em; font-weight: bold; color: #006ab8; }
#top-contents-Box05 .inner .new-list { width: 75%; list-style: none; padding: 0; margin: 0; margin-right: 3%; }
#top-contents-Box05 .inner .new-list li { padding: 2em 0; border-bottom: 1px #ddd solid; }
#top-contents-Box05 .inner .new-list li:first-child { padding-top: 0; }
#top-contents-Box05 .inner .new-list li a { text-decoration: none; color: #111; }
#top-contents-Box05 .inner .new-list li p { display: inline-block; margin-right: 20px; }
#top-contents-Box05 .inner .new-list li .news-list__box-time { font-weight: 600; letter-spacing: .05em; }
#top-contents-Box05 .inner .new-list li .news-list__box-tag {
    width: 90px;
    width: 7.03vw;
    padding: 5px 0;
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    color: #006ab8;
	line-height: 1.2em;
    border: 1px solid #006ab8;
}
#top-contents-Box05 .inner .new-list li .news-list__text {}

#top-contents-Box05 .sub-nav { top: 25%; bottom: auto; right: 3.125vw; right: 3.125%; left: auto; z-index: 1; }
#top-contents-Box05 .sub-nav__num { color: #111; }
#top-contents-Box05 .sub-nav__num:after { background: #006ab8; }
#top-contents-Box05 .sub-nav__ttl { color: #111; }

/* footer contact */

.footer-contact a {
	position: relative;
	display: block;
	font-size: 4em;
	text-align: center;
	text-decoration: none;
	background: #006ab8;
}
.footer-contact a:hover {
	opacity: 1;
}
.footer-contact a:before {
	position: absolute;
	top: 0;
	left: 0;
	background: #0058b7;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transform: translateZ(0) scaleX(0);
	transform: translateZ(0) scaleX(0);
	-webkit-transform-origin: right top;
	transform-origin: right top;
	-webkit-transition: 0.8s -webkit-transform cubic-bezier(0.65, 0.05, 0.35, 1);
	transition: 0.8s transform cubic-bezier(0.65, 0.05, 0.35, 1);
}
.footer-contact a:hover:before {
	-webkit-transform: translateZ(0) scaleX(1);
	transform: translateZ(0) scaleX(1);
	-webkit-transform-origin: left top;
	transform-origin: left top;
}
.footer-contact__inner {
	position: relative;
	width: 87.5%;
	margin: 0 auto;
	padding: 135px 0;
	color: #fff;
	z-index: 1;
}
.footer-contact__inner:before {
	content: "";
	position: absolute;
 	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 17px;
	width: 0;
	height: 0;
	border-left: 6px solid #fff;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}
.footer-contact__inner:after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
  	transform: translateY(-50%);
	right: 22px;
	width: 40px;
	height: 2px;
	background: #fff;
	transition: .4s all;
	z-index: 1;
}
.footer-contact a:hover .footer-contact__inner:after {
	width: 80px;
}
.footer-contact__inner-ttl {
	line-height: 1;
	margin: 0 0 25px;
	font-size: 3.75vw;
	font-family: aktiv-grotesk, sans-serif;
	font-weight: 800;
	font-style: normal;
}
.footer-contact__inner-text {
	line-height: 1;
	font-size: 1.25vw;
	letter-spacing: 0.1em;
}


/*------------------------------------------- footer -------------------------------------------*/

footer {}
footer .inner {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 120px 0;
	position: relative;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
footer .inner .footer-info {}
footer .inner .footer-info__logo {
    margin: 0 0 70px;
    width: 300px;
}
footer .inner .footer-info__address {
    line-height: 2;
    font-size: .9em;
    letter-spacing: 0.1em;
}
footer .inner .footer-info__address address {
	font-style: normal;
}

footer .inner .footer-link {
    width: 40vw;
}
footer .inner .footer-nav__list {
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: flex-end;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 20px;
	list-style: none;
}
footer .inner .footer-nav__list li {
	margin-right: 20px;
}
footer .inner .footer-nav__list li:nth-child(5) {
	margin-right: 0;
}
footer .inner .footer-nav__list li a {
    font-size: 1em;
    font-weight: 600;
	color: #111;
	text-decoration: none;
}
footer .inner .footer-copy {
	font-size: .8em;
	text-align: right;
	margin-top: 135px;
}



/*------------------------------------------- common -------------------------------------------*/

.page-head { overflow: hidden; padding: 230px 0 170px; background: #f0f1f2; }
.page-head-ttl { position: relative; padding: 0 0 0 12.5%; }
.page-head-ttl__main {
    position: relative;
    display: block;
    margin: 0 0 10px;
    font-size: 3em;
    font-family: aktiv-grotesk, sans-serif;
	font-weight: 800;
	font-style: normal;
    z-index: 1;
}
.page-head-ttl__sub {
    position: relative;
    display: block;
    font-size: .9em;
    color: #006ab8;
	letter-spacing: .1em;
    z-index: 1;
}
.page-head-ttl:after {
    position: absolute;
    top: 40%;
    left: -2%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    font-size: 170px;
    font-size: 20vw;
    text-align: left;
    font-weight: 600;
    color: transparent;
    text-stroke: 2px #fff;
    -webkit-text-stroke: 2px #fff;
    font-family: 'Barlow';
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.page-bread {
    position: absolute;
    top: -60px;
    right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 240px;
    padding: 33px;
    background: #006ab8;
}
.page-bread__item {
    font-size: 1em;
    list-style: none;
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
    letter-spacing: 0.02em;
    color: #fff;
}
.page-bread__item:first-child:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 79px;
    width: 100px;
    height: 1px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #5ac8ff;
}
.page-bread__item a {
	color: #fff;
	text-decoration: none;
}

.sub-block { position: relative; padding: 100px 0 100px; }
.sub-block .inner {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.page-ttl__normal {
    line-height: 1.2em;
    letter-spacing: .1em;
	font-size: 2em;
    font-family: source-han-sans-japanese, sans-serif;
	font-weight: 600;
	font-style: normal;
    border-left: 3px solid #006ab8;
	padding: .5em 0;
    padding-left: 1em;
	margin-bottom: 2.5em;
}



/*------------------------------------------- topics -------------------------------------------*/

#topics .page-head-ttl:after {
    content: "NEWS";
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
}
 
#topics .inner .new-list { width: 75%; list-style: none; padding: 0; margin: 0; margin-right: 3%; }
#topics .inner .new-list li { padding: 2em 0; border-bottom: 1px #ddd solid; }
#topics .inner .new-list li:first-child { padding-top: 0; }
#topics .inner .new-list li a { text-decoration: none; color: #111; }
#topics .inner .new-list li p { display: inline-block; margin-right: 20px; }
#topics .inner .new-list li .news-list__box-time { font-weight: 600; letter-spacing: .05em; }
#topics .inner .new-list li .news-list__box-tag {
    width: 90px;
    width: 7.03vw;
    padding: 5px 0;
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    color: #006ab8;
	line-height: 1.2em;
    border: 1px solid #006ab8;
}
#topics .inner .new-list li .news-list__text {}

#topics .inner .article-title {
	line-height: 1.2em;
    letter-spacing: .1em;
    font-size: 2em;
    font-weight: bold;
    border-left: 3px solid #006ab8;
    padding: .5em 0;
    padding-left: 1em;
    margin-bottom: 1em;
}
#topics .inner .article-day {
	font-weight: 600;
	text-align: right;
	letter-spacing: .05em;
	margin-bottom: 30px;
}
#topics .inner .article-textarea {
	margin-bottom: 50px;
}



/*------------------------------------------- business -------------------------------------------*/

#business .page-head-ttl:after {
    content: "BUSINESS";
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
}

#business .inner .heading-h3 {
	font-size: 3em;
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 900;
	font-style: normal;
	color: #222;
	margin: 0 0 50px 0;
	position: relative;
}
#business .inner .heading-h4 {
	font-size: 1.5em;
	font-weight: bold;
	color: #006ab8;
	padding: 0;
	padding-left: 1em;
	margin-top: 80px;
	margin-bottom: 40px;
	border-left: 3px solid #006ab8;
}

.margin-top { margin-top: 40px!important; }

#business .inner .business-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; }
#business .inner .business-list li { width: 31%; margin-right: 3.5%; margin-bottom: 80px; position: relative; }
#business .inner .business-list li:nth-child(3n) { margin-right: 0; }
#business .inner .business-list li figure { margin-bottom: 30px; position: relative; border-radius: 20px; overflow: hidden; }
#business .inner .business-list li figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#business .inner .business-list li a { color: #222; text-decoration: none; }
#business .inner .business-list li a:hover figure img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	opacity: .8;
}
#business .inner .business-list li span { font-size: 1.3em; font-weight: bold; line-height: 1.6; margin-top: 30px; }

#business .inner .business-list li .en {
    display: flex;
    position: absolute;
    right: 20px;
    bottom: -5px;
    z-index: 1;
    font-size: 4rem;
    font-family: aktiv-grotesk, sans-serif;
	font-weight: 800;
	font-style: normal;
    color: #006ab8;
    letter-spacing: -0.05em;
    align-items: baseline;
}
#business .inner .business-list li .en span {
    display: flex;
    font-size: 1rem;
    letter-spacing: normal;
    align-items: baseline;
	margin-right: 5px;
}
#business .inner .business-list li .en span:after {
    content: "";
    width: 20px;
    height: 1px;
    margin-left: 10px;
    display: block;
    background-color: #006ab8;
}



/*------------------------------------------- products -------------------------------------------*/

#products .page-head-ttl:after {
    content: "PRODUCTS";
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
}

#products .inner .heading-h2 {
	font-size: 3em;
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 900;
	font-style: normal;
	color: #222;
	margin: 0 0 50px 0;
	position: relative;
}

#products .inner .heading-sub {
	line-height: 1.2em;
    letter-spacing: .1em;
    font-size: 2em;
    font-weight: bold;
    border-left: 3px solid #006ab8;
    padding: .5em 0;
    padding-left: 1em;
    margin-bottom: 2.5em;
}

#products .inner .textarea { margin-bottom: 80px; }
#products .page-bread__item:first-child:after { width: 90px; }

.gallery {
	width: 100%!important;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	list-style: none;
}
.gallery .item {
	max-width: 23%;
	margin-bottom: 30px;
	margin-right: 2%;
	padding: 1em;
	color: #fff;
	background: #006ab8;
	border-radius: 10px;
	box-sizing: border-box;
}
.gallery .item:nth-child(4n) { margin-right: 0; }
.gallery .item h3 {
	display: block;
	font-size: 1.1em;
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 600;
	font-style: normal;
	margin-bottom: 10px;
}
.gallery .item figure {
	display: block;
	position: relative;
	margin-bottom: 20px;
}
.gallery .item img {
	width: 100%;
	height: 210px;
    position: relative;
    transition: all 300ms ease;
    transform-origin: center;
    transform: scale3d(1, 1, 1);
    object-fit: cover;
	z-index: 0;
}
.gallery .item a:hover img {
    transform: scale3d(1.1, 1.1, 1.1);
	opacity: .7;
}
.gallery .item a { display: block; overflow: hidden; background: #fff; }
.gallery .item p { margin-bottom: 10px; }

.gallery .item figure:nth-child(n+2) { display: none; }



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

#comany .page-head-ttl:after {
    content: "COMPANY";
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
}

#comany .company-prof { margin-bottom: 80px; }
#comany .company-prof dl { display: flex; padding: 35px 0; margin: 0; border-top: 1px solid #e6e6e6; }
#comany .company-prof dl:first-child { display: flex; padding: 0 0 35px; border: none; }
#comany .company-prof dl dt { width: 11.71vw; padding: 5px 0 0; font-size: 1em; font-weight: 600; letter-spacing: 0.06em; color: #006ab8; }
#comany .company-prof dl dd { width: calc(100% - 11.71vw); line-height: 2; font-size: 1em; letter-spacing: 0.06em; }



/*------------------------------------------- works -------------------------------------------*/

#works .page-head-ttl:after {
    content: "WORKS";
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
}

#works .inner small { display: block; margin-bottom: 50px; font-size: 1.2em; font-weight: bold; color: #006ab8; text-align: right; }
#works .inner .works-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; }
#works .inner .works-list li { width: 31%; margin-right: 3.5%; margin-bottom: 80px; overflow: hidden; position: relative; }
#works .inner .works-list li:nth-child(3n) { margin-right: 0; }
#works .inner .works-list li figure { margin-bottom: 20px; position: relative; border-radius: 20px; }
#works .inner .works-list li figure span { display: block; border-radius: 20px; overflow: hidden; }
#works .inner .works-list li figure span img { width: 100%; height: 100%; vertical-align: bottom; object-fit: cover; }
#works .inner .works-list li a { display: block; text-decoration: none; color: #111; }
#works .inner .works-list li a figure span img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#works .inner .works-list li a:hover figure span img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	opacity: .8;
}
#works .inner .works-list li figure figcaption {
	position: absolute;
	bottom: -60px;
	right: 20px;
	font-size: 5rem;
	font-family: aktiv-grotesk, sans-serif;
	font-weight: 700;
	color: #006ab8;
	line-height: 1.4;
	letter-spacing: -0.05em;
	z-index: 5;
} 
#works .inner .works-list li .title { font-size: 1.3em; font-weight: bold; line-height: 1.6; margin-top: 30px; }
#works .inner .works-list li .add { display: block; font-size: .9em; margin-top: 10px; }

#works .page-bread__item:first-child:after { width: 110px; }

#works .detail-box { display: flex; justify-content: space-between; flex-wrap: wrap; }
#works .detail-box .head-img { width: 65%; position: relative; margin-bottom: 120px; }
#works .detail-box .head-img figure { border-radius: 15px; overflow: hidden; margin-bottom: 100px; }
#works .detail-box .head-img .title { font-size: 1.8em; font-family: a-otf-midashi-go-mb31-pr6n, sans-serif; font-weight: 800; font-style: normal; }
#works .detail-box .head-img .en {
    display: flex;
    position: absolute;
    right: 40px;
    bottom: 20px;
    z-index: 100;
    font-size: 10rem;
    font-family: aktiv-grotesk, sans-serif;
	font-weight: 800;
	font-style: normal;
    color: #006ab8;
	line-height: 1em;
    letter-spacing: -0.05em;
    align-items: baseline;
}
#works .detail-box .head-img .en span {
    display: flex;
    font-size: 2.5rem;
    letter-spacing: normal;
    align-items: baseline;
}
#works .detail-box .head-img .en span:after {
    content: "";
    width: 20px;
    height: 1px;
    margin-left: 10px;
    display: block;
    background-color: #006ab8;
}
#works .detail-box .side-spec { width: 30%; margin-top: 100px; }
#works .detail-box .side-spec__title {
	margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px dotted #006ab8;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.8;
    color: #006ab8;
}
#works .detail-box .spec__list { display: flex; flex-wrap: wrap; font-size: 1rem; line-height: 1.6; }
#works .detail-box .spec__list dt { max-width: 120px; flex-basis: 120px; font-weight: 600; padding: .5em 0; }
#works .detail-box .spec__list dd { max-width: calc(100% - 120px); flex-basis: calc(100% - 120px); margin: 0; padding: .5em 0; }

#works .detail-box .works-image-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; }
#works .detail-box .works-image-list__item { width: 23%; margin-right: 2.6%; }
#works .detail-box .works-image-list__item:nth-child(4n) { margin-right: 0; }
#works .detail-box .works-image-list__item a { display: block; border-radius: 10px; overflow: hidden; }



/*------------------------------------------- faq -------------------------------------------*/

#faq .page-head-ttl:after {
    content: "FAQ";
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
}

#faq .faq-list-box {}
#faq .faq-list { list-style: none; padding: 0; }
#faq .faq-list li { padding: 40px 0; border-bottom: 1px #ccc solid; }
#faq .faq-list li:first-child { padding-top: 0; }
#faq .faq-list li .questionArea { position: relative; font-size: 1.5em; font-weight: bold; margin-bottom: 40px; padding-left: 50px; }
#faq .faq-list li .answerArea { position: relative; padding-left: 50px; line-height: 2em; }

#faq .faq-list li .questionArea:after {
	content: "Q";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    font-size: 2em;
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
    text-align: left;
    font-weight: 600;
    color: #006ab8;
}

#faq .faq-list li .answerArea:after {
	content: "A";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    font-size: 3.2em;
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
    text-align: left;
    font-weight: 600;
    color: #9b9b9b;
}

#faq .page-bread__item:first-child:after { width: 140px; }



/*------------------------------------------- contact -------------------------------------------*/

#contact .page-head-ttl:after {
    content: "CONTACT";
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
}

#contact-Box { margin-bottom: 60px; padding: 2em; text-align: center; border: 2px #006ab8 solid; }
#contact-Box .contact-conts { width: 60%; margin: auto; color: #006ab8; }
#contact-Box .contact-conts dt { margin-bottom: 20px; font-size: 1.5em; font-weight: bold; }
#contact-Box .contact-conts dd { margin: 0; margin-bottom: 20px; }
#contact-Box .contact-conts p { font-size: 3em; font-family: aktiv-grotesk, sans-serif; font-style: normal; font-weight: 800; color: #006ab8; line-height: 1.5em; }
#contact-Box .contact-conts span { display: block; margin-bottom: 20px; }

.contact-cont { margin: 0 auto 60px; line-height: 2em; }

.contact-box { width: 100%; margin: 0 auto; }
.contact-box span { margin-right: 20px; }

.toi-btn-l-01 { width: 200px; text-align: center; margin: 0 auto; }
.toi-btn-l-02 { width: 200px; text-align: center; margin-right: 20%; float: right; }
.toi-btn-r-01 { width: 200px; text-align: center; margin-left: 20%; float: left; }

.contact-box .btn-Box { width: 100%; text-align: center; }

.contact-box .btn01 {
	width: 200px;
	padding: .7em 1em;
	background: #222;
	border: 2px #222 solid;
	border-radius: 6px;
	font-size: 1em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #fff;
	margin-right: 30px;
	transition: .2s linear;
	-webkit-transition: .2s linear;
}
.contact-box .btn02 {
	width: 200px;
	padding: .7em 1em;
	background: #222;
	border: 2px #222 solid;
	border-radius: 6px;
	font-size: 1em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #fff;
	transition: .2s linear;
	-webkit-transition: .2s linear;
}
.contact-box .btn03 {
	width: 200px;
	padding: .7em 1em;
	background: #222;
	border: 2px #222 solid;
	border-radius: 6px;
	font-size: 1em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #fff;
	margin-right: 30px;
	transition: .2s linear;
	-webkit-transition: .2s linear;
}
.contact-box .btn04 {
	width: 200px;
	padding: .7em 1em;
	background: #222;
	border: 2px #222 solid;
	border-radius: 6px;
	font-size: 1em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #fff;
	transition: .2s linear;
	-webkit-transition: .2s linear;
}
.contact-box .btn01:hover, .contact-box .btn02:hover,
.contact-box .btn03:hover, .contact-box .btn04:hover {
	color: #222;
    background: #fff;
}

.contact-box table { width: 100%; table-layout: fixed; margin-bottom: 30px; }
.contact-box tr:first-child th, .contact-box tr:first-child td { border-top: 1px solid #ddd; }
.contact-box th { width: 30%; border: 0; padding: 2em 0; text-align: left; border-bottom: 1px solid #ddd; }
.contact-box td { border: 0; padding: 2em 0; text-align: left; border-bottom: 1px solid #ddd; }

.contact-box .require {
    padding: 1px 8px;
	margin: 0 0 0 10px;
    font-size: .8em;
	font-weight: 300;
	font-style: normal;
	color: #fff;
    letter-spacing: 1px;
    line-height: 9px;
    background: #006ab8;
	border-radius: 3px;
	zoom: normal;
}

.from-text01 { padding: 10px; border: 1px #ccc solid; border-radius: 5px; }
.from-text02 { padding: 10px; border: 1px #ccc solid; border-radius: 5px; }
.from-text03 { padding: 10px; border: 1px #ccc solid; border-radius: 5px; width: 80%; }
.from-text04 { padding: 10px; border: 1px #ccc solid; border-radius: 5px; }



/*------------------------------------------- curtain -------------------------------------------*/

.color-curtain {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 1;
}
.scroll-pos.on-02 .color-curtain {
	-webkit-animation: scroll-pos-out 600ms cubic-bezier(0.77, 0, 0.175, 1) both;
	animation: scroll-pos-out 600ms cubic-bezier(0.77, 0, 0.175, 1) both;
}
.scroll-pos.on-01 .color-curtain:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: #006ab8;
	-webkit-animation: scroll-pos-in 500ms cubic-bezier(0.77, 0, 0.175, 1) forwards;
	animation: scroll-pos-in 500ms cubic-bezier(0.77, 0, 0.175, 1) forwards;
	-webkit-transform: translate(-100%, 0);
	transform: translate(-100%, 0);
}

@-webkit-keyframes scroll-pos-in {
	0% {
		-webkit-transform: translate(-102%, 0);
		transform: translate(-102%, 0);
	}
	100% {
		-webkit-transform: translate(0%, 0);
		transform: translate(0%, 0);
	}
}
@keyframes scroll-pos-in {
	0% {
		-webkit-transform: translate(-102%, 0);
		transform: translate(-102%, 0);
	}
	100% {
		-webkit-transform: translate(0%, 0);
		transform: translate(0%, 0);
	}
}
@-webkit-keyframes scroll-pos-out {
	0% {
		-webkit-transform: translate(0%, 0);
		transform: translate(0%, 0);
	}
	100% {
		-webkit-transform: translate(102%, 0);
		transform: translate(102%, 0);
	}
}
@keyframes scroll-pos-out {
	0% {
		-webkit-transform: translate(0%, 0);
		transform: translate(0%, 0);
	}
	100% {
		-webkit-transform: translate(102%, 0);
		transform: translate(102%, 0);
	}
}



/*------------------------------------------- page top -------------------------------------------*/

#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 0.9em;
	line-height: 15px;
	z-index: 5;
}
#page-top a {
	display: block;
	padding: 1em 1.5em;
	font-family: aktiv-grotesk, sans-serif;
    font-weight: 800;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background-color: #006ab8;
	border-radius: 8px;
	transition: .1s linear;
	-webkit-transition: .1s linear;
}
#page-top a:hover {
	text-decoration: none;
	color: #006ab8;
	background-color: #fff;
}