@charset "UTF-8";

html {
    font-size: 62.5%;
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
}

body {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.6;
	background-color: #FFF;
	padding-top: 0;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
}

@media (min-width: 992px) {
	body {
		padding-left: 0px;
	}
	.container-fluid {
		padding-left: 150px;
		padding-right: 0;
	}
}

.preload::after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    background-color: #FFF;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../assets/img/logo300.png);
}

a {
	color: #212121;
    outline: 0;
    outline: none;
    text-decoration: none;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

a:hover {
    color: #065FFF;
    outline: 0;
    outline: none;
    text-decoration: none;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

a:focus, *:focus { 
	outline: none;
}

a[href^="tel:"] { 
	cursor: default;
}

img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    height: auto;
}

img.img-fluid {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    height: auto;
}


.container-100p {
    width: 100%;
	margin: 0 auto;
}

.row:before, 
.row:after { 
	width: 0;
}

.row.no-margin {
    margin-right: 0;
    margin-left: 0;
}

.row.flex {
    display: flex;
    flex-wrap: wrap;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.flex-center {
    display: flex;
    align-items: center;
}

ul {
    display: block;
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

h1 {
    margin: 0 0;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: none;
}

dt {
    font-weight: 600;
}


.navbar {
	position: relative;
    padding: 0rem 1rem;
}

.fixed-top {
	position: fixed;
    z-index: 1030;
}

.navbar-brand {
	width: 280px;
}

.d-lg-block h1 {
	font-size: 0rem;
    padding: 10px 1rem;
}

#sideNav .navbar-toggler:focus {
    outline-color: #009CD1;
}

#sideNav .navbar-nav .nav-item .nav-link {
	font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0;
	line-height: 1.2;
    color: #000;
	text-align: left;
	text-transform: none;
	margin: 10px 0;
	padding: 4px 0 0 5%;
}
#sideNav .navbar-nav .nav-item .nav-link span {
	font-size: 1.2rem;
    font-weight: 400;
	font-family: 'Roboto', sans-serif;
}

.navbar-dark .navbar-nav .nav-link {
	position: relative;
    color: #444;
    -webkit-transition: color .25s;
    transition: color .25s;
}

.navbar-dark .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 2px solid #009CD1;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all .25s;
    transition: all .25s;
}

.navbar-toggler {
    background-color: #009CD1;
    border: 1px solid #009CD1;
}

.navbar-dark .navbar-toggler {
    color: #009CD1;
    border-color: #009CD1;
}

.navbar-dark .navbar-nav .nav-link:hover, 
.navbar-dark .navbar-nav .nav-link:focus {
    color: #009CD1;
}

.navbar-dark .navbar-nav .nav-link:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.navbar-dark .navbar-nav .show > .nav-link, 
.navbar-dark .navbar-nav .active > .nav-link, 
.navbar-dark .navbar-nav .nav-link.show, 
.navbar-dark .navbar-nav .nav-link.active {
    color: #009CD1;
}

@media (min-width: 510px) {
	#sideNav .navbar-nav .nav-item .nav-link {
		margin: 4px 0;
		padding: 4px 0 0 5%;
	}
	.navbar-brand {
		width: 320px;
	}
	.d-lg-block h1 {
		padding: 5px 1rem;
	}
}

@media (min-width: 992px) {
	.navbar {
		padding: 1rem 2rem;
	}
	#sideNav {
		width: 150px;
		height: 100vh;
		text-align: left;
	}
	.d-lg-block {
		position: absolute;
		top: 0;
		left: 0;
		width: 300px;
		font-size: 0rem;
		padding: 1rem 2rem;
		background-color: #FFF;
		border-radius: 0 0 10px 0;
	}
	.d-lg-block h1 {
		padding: 0;
	}
	#sideNav .navbar-collapse .navbar-nav {
		width: 140px;
		margin: 10% auto 0;
	}
	#sideNav .navbar-nav .nav-item .nav-link {
		display: block;
		margin: 8px 0;
		padding: 4px 0;
	}
	#sideNav .navbar-nav .nav-item .nav-link:hover {
		color: #009CD1;
	}
}

@media (min-width: 1490px) {
	#sideNav .navbar-nav .nav-item .nav-link {
		display: block;
		margin: 15px 0;
		padding: 4px 0;
	}
}


section.resume-section {
    max-width: 100%;
}

.bg-primary {
    background-color: #FFF !important;
}


.movie-home-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    background-color: #FFF;
	background-image: url(../assets/img/home-bg-top.jpg);
    overflow: hidden;
}

.movie-home-section video {
    position: absolute;
    top: 0%;
    left: 40%;
    min-height: 100%;
    min-height: 100vh;
    min-width: 100%;
    min-width: 100vw;
    margin: auto;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.hero-img-section {
    position: absolute;
    top: 0%;
    left: 40%;
    width: 60%;
    min-height: 100%;
    min-height: 100vh;
    margin: 0;
	padding: 0;
}

.hero-slide-wrap {
    overflow: hidden;
}

@media (max-width: 1200px){
	.movie-home-section video {
		display: none;
	}
}
@media (max-width: 499px){
	.movie-home-section {
		width: 100%;
		height: 100vh;
		background-image: none;
	}
	.hero-img-section {
		position: relative;
		top: auto;
		left: auto;
		display: block;
		width: 100%;
		height: 70%;
		min-height: auto;
		min-height: auto;
		margin: 0;
		padding: 0;
		overflow: hidden;
	}
}

/*!------------------------------------------------------------------
[Home Hero Section]
*/

.hero-text-section {
    position: relative;
	width: 40%;
	height: 100%;
	margin: 0 60% 0 0;
	padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}

.hero-section-content {
    position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
    height: 100%;
}

.hero-lead-wrap {
	position: absolute;
	top: 50%;
	left: 10%;
    display: block;
	width: 200%;
	height: 400px;
	margin-top: -200px;
}

.hero-lead-en {
    display: block;
    font-size: 7.0vw;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
    color: #000;
    margin: 0 auto 40px;
    padding: 0;
}
.hero-copy {
    display: block;
    font-size: 3.0rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 22px;
    color: #009CD1;
    margin: 0 auto 15px;
    padding: 0 0 0 10px;
}
.hero-lead {
    display: block;
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #444;
    margin: 0 auto;
    padding: 0 0 0 10px;
}

.hero-mask-wrap {
	position: absolute;
	right: -100px;
	bottom: 0;
	width: 100px;
	height: 100px;
}
.hero-mask-wrap img {
	width: 100%;
	height: 100%;
}

@media (max-width: 1680px){
}
@media (max-width: 1480px){
	.hero-lead-wrap {
		height: 360px;
		margin-top: -180px;
	}
	.hero-lead-en {
		font-size: 6.4vw;
		margin: 0 auto 30px;
	}
	.hero-copy {
		font-size: 2.4rem;
		letter-spacing: 10px;
		padding: 0 0 0 5px;
	}
	.hero-lead {
		font-size: 1.4rem;
		letter-spacing: 0;
		padding: 0 0 0 5px;
	}
}
@media (max-width: 1300px){
	.hero-lead-wrap {
		height: 320px;
		margin-top: -160px;
	}
}
@media (max-width: 1200px){
	.hero-lead-wrap {
		height: 300px;
		margin-top: -100px;
	}
	.hero-copy {
		font-size: 2.0rem;
		letter-spacing: 15px;
	}
}
@media (max-width: 749px){
	.hero-lead-wrap {
		height: 200px;
		margin-top: -70px;
	}
	.hero-lead-en {
		font-size: 3.6rem;
		margin: 0 auto 20px;
	}
	.hero-copy {
		font-size: 2.0rem;
		letter-spacing: 2px;
		padding: 0;
	}
}
@media (max-width: 499px){
	.hero-text-section {
		position: relative;
		width: 100%;
		height: 35%;
		margin: 0;
		padding: 0;
	}
	.hero-section-content {
		display: block;
	}
	.hero-lead-wrap {
		position: relative;
		top: auto;
		left: auto;
		display: block;
		width: 100%;
		height: auto;
		padding: 10%;
	}
	.hero-lead {
		padding: 0 0 0 0;
	}
	.hero-lead br {
		display: none;
	}
	.hero-lead-en {
		text-align: center;
	}
	.hero-copy {
		text-align: center;
		letter-spacing: 1px;
	}
}


/*!------------------------------------------------------------------
[Home Hero Section]
*/
.tunagu-section-content {
	width: 86%;
	height: auto;
	margin: 0 auto;
	padding: 0;
}
section.tunagu-section {
	width: 100%;
	height: auto;
	margin: 10% 0;
	padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}
.tunagu-title {
    display: block;
    font-size: 3.0vw;
	font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000;
	text-align: center;
    margin: 0 0 5%;
    padding: 0;
}
.tunagu-title span {
    display: block;
    font-size: 1.0vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    padding: 20px 0 0;
}

.tunagu-title-img {
    display: block;
	width: 100px;
    margin: 0 auto 30px;
    padding: 0;
}
.tunagu-subtitle {
    display: block;
    font-size: 2.0rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 6px;
    color: #000;
	text-align: center;
    margin: 0 0 20px;
    padding: 0;
}
.tunagu-subtitle span {
	color: #009CD1;
}
.tunagu-subtext {
    display: block;
	width: 80%;
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #444;
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 1480px){
	.tunagu-subtext {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
}
@media (max-width: 1380px){
}
@media (max-width: 1300px){
}
@media (max-width: 1200px){
	.tunagu-subtitle {
		font-size: 1.8rem;
		letter-spacing: 4px;
	}
}
@media (max-width: 990px){
	.tunagu-section-content {
		width: 94%;
	}
	.tunagu-title {
		font-size: 3.6rem;
	}
	.tunagu-title span {
		font-size: 1.5rem;
		padding: 10px 0 0;
	}
}
@media (max-width: 749px){
	.tunagu-subtitle {
		font-size: 1.8rem;
		letter-spacing: 0;
	}
}
@media (max-width: 499px){
	section.tunagu-section {
		margin: 40px 0 40px;
	}
	.tunagu-title {
		font-size: 3.0rem;
		margin: 0 0 40px;
	}
	.tunagu-subtext {
		padding: 0 0 30px;
	}
}


/*!------------------------------------------------------------------
[Home About Section]
*/

section.about-section {
	width: 100%;
	height: auto;
	margin: 0 0 10%;
	padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}

.about-slide-wrap {
    border-radius: 0 80px 80px 0;
    overflow: hidden;
}

.home-img-wrap {
    position: relative;
    text-align: center;
    margin: 0px;
    padding: 0;
    border-radius: 0px;
    overflow: hidden;
}
.home-img-wrap a img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: auto;
    -webkit-transition: 0.9s ease;
    transition: 0.9s ease;
    overflow: hidden;
}
.home-img-wrap a img:hover {
    -webkit-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}


.about-copy-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}
.about-lead-wrap {
	padding: 0 10% 0 15%;
}
.about-title {
    display: block;
    font-size: 3.0vw;
	font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000;
    text-align: left;
    margin: 0 0 10%;
    padding: 0;
}
.about-title span {
    display: block;
    font-size: 1.0vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    padding: 20px 0 0 5px;
}
.about-lead {
    display: block;
    font-size: 1.8vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 4px;
    color: #000;
    margin: 0 0 8%;
    padding: 0;
}
.about-lead span {
	color: #009CD1;
}
.about-text {
    display: block;
	width: 90%;
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #444;
    text-align: left;
    margin: 0 0 8%;
    padding: 0;
}

@media (max-width: 1480px){
	.about-text {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
}
@media (max-width: 1380px){
}
@media (max-width: 1300px){
}
@media (max-width: 1200px){
	.about-lead {
		letter-spacing: 2px;
	}
}
@media (max-width: 990px){
	.about-slide-wrap {
		width: 94%;
	}
	.about-lead-wrap {
		padding: 6% 8% 0;
	}
	.about-title {
		font-size: 3.6rem;
		margin: 0 0 5%;
	}
	.about-title span {
		font-size: 1.5rem;
		padding: 10px 0 0 5px;
	}
	.about-lead {
		font-size: 3.0rem;
		letter-spacing: 2px;
		margin: 0 0 5%;
	}
	.about-text {
		width: 100%;
		font-size: 1.5rem;
		letter-spacing: 0;
		margin: 0 0 5%;
	}
}
@media (max-width: 749px){
	.about-lead {
		font-size: 2.4rem;
		letter-spacing: 1px;
		margin: 0 0 5%;
	}
}
@media (max-width: 499px){
	section.about-section {
		margin: 0 0 70px;
	}
	.about-slide-wrap {
		width: 100%;
		border-radius: 0 0px 0px 0;
	}
	.about-lead-wrap {
		padding: 50px 8% 10px;
	}
	.about-title {
		font-size: 3.0rem;
		text-align: center;
		margin: 0 0 40px;
	}
	.about-lead {
		font-size: 2.0rem;
		letter-spacing: 1px;
		text-align: center;
		margin: 0 0 30px;
	}
	.about-text {
		margin: 0 0 40px;
	}
}


/*!------------------------------------------------------------------
[Button a]
*/
.linkbutton-round-wrapper {
	display: block;
    width: 100%;
    height: 70px;
    text-align: left;
	margin: 5rem 0 0;
    padding: 0;
}
a.linkbutton-round-wrap {
	display: flex;
	align-items: center;
    width: 180px;
    height: 70px;
	color: #000;
    text-align: left;
	margin: 0;
    padding: 0;
}
a.linkbutton-round-wrap-center {
	display: flex;
	align-items: center;
    width: 180px;
    height: 70px;
	color: #000;
    text-align: left;
	margin: 0 auto;
    padding: 0;
}
.button-text {
	display: inline-block;
    font-size: 1.6rem;
	font-family: 'Roboto', sans-serif;
    font-weight: 600;
	text-align: left;
	margin-bottom: 0;
	padding: 0 10px 0 0;
}
.button-a {
	position: relative;
	display: inline-block;
	width: 70px;
    height: 70px;
    font-size: 1.3rem;
	font-family: 'Roboto', sans-serif;
    font-weight: 600;
	text-align: left;
	text-decoration: none;
	outline: none;
	line-height: 1.0;
	letter-spacing: 1px;
	color: #000;
	padding: 20px 20px;
	background-color: transparent;
	border: solid 1px #000;
	border-radius: 50%;
	overflow: hidden;
	z-index: 2;
}

.button-a::before,
.button-a::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button-a,
.button-a::before,
.button-a::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.button-a::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0;
    width: 3rem;
    height: 1px;
    background: #000;
    -webkit-transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
    transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
}
a.linkbutton-round-wrap:hover {
	color: #009CD1;
}
a.linkbutton-round-wrap-center:hover {
	color: #009CD1;
}
.button-a:hover {
	color: #FFFFFF;
	border-color: #009CD1;
}
.button-a::after {
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
}
.button-a:hover::before {
    background: #FFFFFF;
    -webkit-transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
    transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
}
.button-a:hover::after {
	left: 0;
	background-color: #009CD1;
}

@media (max-width: 1200px){
	.linkbutton-round-wrapper {
		margin: 2rem 0 0;
	}
}
@media (max-width: 990px){
}
@media (max-width: 749px){
}
@media (max-width: 499px){
	a.linkbutton-round-wrap {
		margin: 0 auto;
	}
}


/*!------------------------------------------------------------------
[Home Works Section]
*/

section.works-section {
	width: 100%;
	height: auto;
	margin: 0 0 8%;
	padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}

.works-copy-wrapper {
	display: block;
	width: 40%;
	margin: -7% auto 0;
	padding: 3% 4% 0;
	background-color: #FFF;
    border-radius: 40px;
	z-index: 999;
}

.works-btn-wrapper {
    display: flex;
    align-items: center;
}

.works-title {
    display: block;
    font-size: 3.0vw;
	font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000;
	text-align: center;
    margin: 0 0 4%;
    padding: 0;
}
.works-title span {
    display: block;
    font-size: 1.0vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    padding: 20px 0 0 0;
}

.works-subtitle {
    display: block;
    font-size: 2.0vw;
	font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000;
	text-align: center;
    margin: 0 0 5%;
    padding: 0;
}
.works-lead {
    display: block;
    font-size: 1.4vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    color: #000;
	text-align: center;
    margin: 0 0 3%;
    padding: 0;
}
.works-lead span {
	color: #009CD1;
}
.works-text {
    display: block;
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #444;
	text-align: center;
    margin: 0 0 8%;
    padding: 0;
}

.linkbutton-round-wrapper-works {
    display: block;
    width: 170px;
    height: 70px;
    margin: 0;
    padding: 0;
}

.home-works-slide-wrap {
	position: relative;
	display: block;
	height: auto;
    background-color: #FFF;
    padding: 0;
	margin-bottom: 0;
	overflow: hidden;
}

.swiper-slide-imgwrap {
	display: block;
	width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 40px;
	overflow: hidden;
}

@media (max-width: 1480px){
	.works-text {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
}
@media (max-width: 1380px){
}
@media (max-width: 1300px){
}
@media (max-width: 1200px){
}
@media (max-width: 990px){
	section.works-section {
		margin: 0 0 10%;
	}
	.works-title {
		font-size: 3.6rem;
		margin: 0 0 3%;
	}
	.works-title span {
		font-size: 1.5rem;
		padding: 10px 0 0 0;
	}
	.works-copy-wrapper {
		width: 90%;
		margin: -6% 5% 0;
		padding: 5% 5% 0;
	}
	.works-subtitle {
		font-size: 3.6rem;
		margin: 0 0 5%;
	}
	.works-lead {
		font-size: 2.4rem;
		letter-spacing: 1px;
		margin: 0 0 5%;
	}
	.works-text {
		font-size: 1.5rem;
		letter-spacing: 0;
		margin: 0 0 5%;
	}
}
@media (max-width: 749px){
}
@media (max-width: 499px){
	section.works-section {
		margin: 0 0 70px;
	}
	.works-title {
		font-size: 2.8rem;
		margin: 0 0 30px;
	}
	.swiper-slide-imgwrap {
		border-radius: 0px;
	}
	.works-copy-wrapper {
		margin: -8% 5% 0;
		padding: 30px 30px 0;
		border-radius: 20px;
	}
	.works-subtitle {
		font-size: 3.0rem;
		text-align: center;
		margin: 0 0 30px;
	}
	.works-lead {
		font-size: 2.0rem;
		letter-spacing: 1px;
		text-align: center;
		margin: 0 0 30px;
	}
	.works-text {
		margin: 0 0 30px;
	}
}


/*!------------------------------------------------------------------
[Home Cover BG Section]
*/

section.cover-section {
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
}

#cover-innerbg {
    position: relative;
	width: 100%;
    height: 90vh;
    background-color: rgba(255, 255, 255, 1.0);
	background-image: url("../assets/img/about-bg-011.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	margin: 0;
    padding: 0;
}
.parallax {
    background-attachment: fixed !important;
}

@media (max-width: 1200px){
	.parallax {
		background-attachment: scroll !important;
	}
}


/*!------------------------------------------------------------------
[Home Sale Section]
*/

section.sale-section01 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}

.home-sale-img-wrap01 {
    position: relative;
    text-align: center;
    margin: 5px;
    padding: 0;
	border-radius: 0 50px 50px 0;
    overflow: hidden;
}
.home-sale-img-wrap01 a img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: auto;
    -webkit-transition: 0.9s ease;
    transition: 0.9s ease;
    overflow: hidden;
}
.home-sale-img-wrap01 a img:hover {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

section.sale-section02 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}
.lixil-wrap {
	flex-direction: row-reverse;
}
.home-sale-img-wrap02 {
    position: relative;
    text-align: center;
    margin: 5px;
    padding: 0;
	border-radius: 50px 0 0 50px;
    overflow: hidden;
}
.home-sale-img-wrap02 a img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: auto;
    -webkit-transition: 0.9s ease;
    transition: 0.9s ease;
    overflow: hidden;
}
.home-sale-img-wrap02 a img:hover {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

section.sale-section03 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}

.sale-lead-wrap {
    padding: 0 15%;
}

.sale-title {
    display: block;
    text-align: left;
    margin: 0 0 5%;
    padding: 0;
}
.sale-lead {
    display: block;
    font-size: 1.5vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 4px;
    color: #000;
    margin: 0 0 4%;
    padding: 0;
}
.sale-lead span {
    color: #009CD1;
}
.sale-text {
    display: block;
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #444;
    text-align: left;
    margin: 0;
    padding: 0;
}

@media (max-width: 1480px){
	.sale-title {
		margin: 0 0 3%;
	}
	.sale-text {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
}
@media (max-width: 1380px){
}
@media (max-width: 1300px){
}
@media (max-width: 1200px){
	.sale-lead-wrap {
		padding: 5% 10%;
	}
}
@media (max-width: 990px){
	.home-sale-img-wrap01 {
		margin: 0 6% 0 0;
	}
	.home-sale-img-wrap02 {
		margin: 0 0 0 6%;
	}
	.sale-lead {
		font-size: 3.0rem;
		letter-spacing: 2px;
		margin: 0 0 4%;
	}
}
@media (max-width: 749px){
	.sale-lead {
		font-size: 2.4rem;
		letter-spacing: 1px;
	}
}
@media (max-width: 499px){
	.sale-lead-wrap {
		padding: 40px 8%;
	}
	.home-sale-img-wrap01 {
		margin: 0 0 0 0;
		border-radius: 0 0px 0px 0;
	}
	.home-sale-img-wrap02 {
		margin: 0 0 0 0;
		border-radius: 0 0 0 0;
	}
	.sale-title {
		width: 50%;
		margin: 0 auto 20px;
	}
	.sale-lead {
		font-size: 2.0rem;
		text-align: center;
	}
}


/*!------------------------------------------------------------------
[Button b]
*/

.button-b {
	position: relative;
	display: inline-block;
	width: 100%;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
	line-height: 1.0;
	letter-spacing: 4px;
	color: #000;
	text-align: center;
	text-decoration: none;
	outline: none;
	padding: 20px 20px;
	background-color: transparent;
	border: solid 2px #000;
	border-radius: 10px;
	overflow: hidden;
	z-index: 2;
}

.button-b::before,
.button-b::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}

.button-b,
.button-b::before,
.button-b::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.button-b:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0;
    width: 3rem;
    height: 2px;
    background: #000;
    -webkit-transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
    transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
}

.button-b:hover {
	color: #F1F1F1;
	border-color: #009CD1;
}

.button-b::after {
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
}

.button-b:hover::before {
    background: #F1F1F1;
    -webkit-transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
    transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
}

.button-b:hover::after {
	left: 0;
	background-color: #009CD1;
}

@media (max-width: 1200px){
	.button-a {
		font-size: 1.3rem;
		padding: 15px 20px;
	}
	.button-b {
		width: 100%;
		font-size: 1.2rem;
		letter-spacing: 1px;
		margin: 10px 0 0;
		padding: 15px 0px;
	}
}
@media (max-width: 990px){
	.linkbutton-w-wrap-t {
		width: 200px;
		margin: 4rem auto 0;
	}
	.button-a {
		margin: 0 auto;
		margin-bottom: 0px;
	}
}
@media (max-width: 499px){
	.linkbutton-w-wrap {
		display: block;
		width: 240px;
		margin: 0 auto;
	}
	.linkbutton-w-wrap-t {
		width: 200px;
		margin: 4rem auto 0;
	}
}



/*!------------------------------------------------------------------
[Home Contact Section]
*/

section.contact-section {
	width: 90%;
	height: auto;
	margin: 0 auto;
	padding: 10% 0 8%;
    background-color: rgba(255, 255, 255, 1.0);
}

.contact-titles {
    display: block;
    font-size: 3.0vw;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0;
	color: #000;
    text-align: center;
    margin: 0 0 2%;
    padding: 0;
}
.contact-titles span {
    display: block;
    font-size: 1.0vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    padding: 20px 0 0 0;
}

.contact-section-content {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 5% 5% 5% 5%;
    background-color: #F5F5F5;
	border-radius: 30px;
}

.contact-wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.contact-lead {
    display: block;
    font-size: 1.2vw;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    letter-spacing: 1px;
	text-align: center;
    color: #000;
    margin: 0 0 3%;
    padding: 0;
}
.contact-lead br {
    display: none;
}

.contact-tel-wrap {
	display: block;
    margin: 0;
    padding: 0;
	text-align: center;
}
a.contact-tel {
    display: block;
    font-size: 3.6vw;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    letter-spacing: 1px;
	color: #000;
    margin: 0;
    padding: 0;
}
.contact-tel-uke {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.0;
    letter-spacing: 1px;
    color: #000;
    margin: 0;
    padding: 10px 0 0;
}

@media (max-width: 1680px){
	.contact-lead {
	}
}
@media (max-width: 1480px){
	.contact-lead {
		font-size: 1.8rem;
		letter-spacing: 1px;
	}
	.contact-lead br {
		display: block;
	}
	.contact-tel-uke {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
}
@media (max-width: 1380px){
}
@media (max-width: 1300px){
}
@media (max-width: 1200px){
	.contact-lead br {
		display: block;
	}
	a.contact-tel {
		font-size: 3.6vw;
	}
	.contact-tel-uke {
		font-size: 1.3rem;
	}
}
@media (max-width: 990px){
	section.contact-section {
		width: 100%;
		margin: 0;
		padding: 8% 0;
	}
	.contact-titles {
		font-size: 3.6rem;
		margin: 0 0 3%;
	}
	.contact-titles span {
		font-size: 1.5rem;
		letter-spacing: 0;
		padding: 10px 0 0 0;
	}
	.contact-lead {
		font-size: 1.8rem;
		letter-spacing: 1px;
		margin: 0 0 4%;
	}
	.contact-section-content {
		padding: 8% 5%;
		border-radius: 0px 0 0 0px;
	}
	.contact-tel-wrap {
		margin: 0 0 3%;
	}
	a.contact-tel {
		font-size: 3.6rem;
	}
}
@media (max-width: 749px){
	.contact-lead {
		font-size: 1.6rem;
	}
}
@media (max-width: 499px){
	section.contact-section {
		width: 100%;
		margin: 0;
		padding: 8% 0 60px;
	}
	.contact-section-content {
		padding: 8% 10%;
	}
	.contact-titles {
		font-size: 3.0rem;
		margin: 0 0 30px;
	}
	.contact-lead {
		font-size: 1.6rem;
		letter-spacing: 0;
		text-align: left;
		margin: 0 0 30px;
		padding: 0 8%;
	}
	.contact-lead br {
		display: none;
	}
	a.contact-tel {
		font-size: 3.2rem;
	}
	.contact-tel-uke {
		font-size: 1.2rem;
	}
}
@media (max-width: 359px){
}



/*!------------------------------------------------------------------
[Home Footer Section]
*/

section.footer-section {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 2%;
    background-color: rgba(255, 255, 255, 1.0);
}

.footer-section-content {
	width: 98%;
	height: auto;
	margin: 0 auto;
	padding: 0;
}

.footer-logo-wrapper {
	margin: 0;
	padding: 0 5%;
}

.footer-logo-wrap {
	display: block;
	width: 100%;
	padding: 0 0 10px;
	margin: 0 auto;
}

.footer-address {
	display: block;
	font-size: 1.5rem;
	font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.4;
	letter-spacing: 1px;
	color: #000;
	text-align: center;
	padding: 0 0 20px;
	margin: 0;
}

.footer-address br {
	display: none;
}

.footer-address span.footer-gmap {
	display: block;
    margin: 0;
    padding: 5px 0 0;
}

.footer-address span.footer-gmap a {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.0;
	color: #000;
}


.footer-tel-wrapper {
	padding: 0;
}

.footer-tel-wrap01 {
	display: inline-block;
	width: 50%;
	margin: 0;
	padding: 0;
	text-align: center;
}

.footer-tel-wrap02 {
	display: inline-block;
	width: 50%;
	margin: 0;
	padding: 0;
	text-align: center;
}

a.footer-tel {
	display: block;
	font-size: 1.6rem;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
	line-height: 1.0;
	letter-spacing: 0px;
	color: #000;
	text-align: center;
	margin: 0;
	padding: 5px 0;
}

.footer-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 0 0 10%;
}

.footer-menu li.menu-list {
	text-align: center;
	margin: 0 4%;
	padding: 0;
}

.footer-menu li a {
	display: block;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: #000;
	text-align: center;
	margin: 0;
	padding: 5px 10px;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.footer-menu li a span {
	font-size: 13px;
	font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.footer-menu li a:hover {
	color: #009CD1;
}

.footer-last-menu {
	text-align: center;
	margin: 0;
	padding: 40px 0 0 0;
}
.footer-last-menu a {
	font-size: 1.4rem;
    font-weight: 500;
	letter-spacing: 0px;
	color: #000;
	text-align: center;
	margin: 0;
	padding: 0;
}
.footer-last-menu a:hover {
	color: #009CD1;
}
.copyright {
	font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
	letter-spacing: 0;
	line-height: 1.0;
	color: #000;
	text-align: center;
	margin: 0;
	padding: 5% 0 10px;
}

@media (max-width: 1680px){
	.footer-section-content {
		width: 96%;
	}
	.footer-logo-wrapper {
		padding: 0 2%;
	}
}
@media (max-width: 1480px){
	.footer-menu li.menu-list {
		margin: 0 2%;
	}
	.footer-menu li a {
		font-size: 14px;
	}
	.footer-section-content {
		width: 90%;
	}
	.footer-logo-wrapper {
		padding: 0 0 0 5%;
	}
	.footer-address {
		font-size: 1.5rem;
		line-height: 1.4;
		letter-spacing: 0px;
	}
	a.footer-tel {
		font-size: 1.6rem;
		letter-spacing: 0px;
		padding: 5px 0;
	}
	.footer-last-menu a {
		font-size: 1.2rem;
	}
}
@media (max-width: 1380px){
}
@media (max-width: 1300px){
	a.footer-tel {
		font-size: 1.5rem;
	}
	.footer-address {
		font-size: 1.4rem;
		line-height: 1.4;
		letter-spacing: 0px;
		padding: 0 0 5px;
	}
}
@media (max-width: 1200px){
	.footer-address br {
		display: block;
	}
	.footer-address {
		font-size: 1.2rem;
	}
	a.footer-tel {
		font-size: 1.2rem;
	}
	.footer-menu li.menu-list {
		margin: 0 0%;
	}
	.footer-menu li a {
		font-size: 1.3rem;
	}
}
@media (max-width: 990px){
	.footer-logo-wrapper {
		padding: 0;
	}
	.footer-address br {
		display: none;
	}
	.footer-menu {
		padding: 0 0 50px;
	}
	.footer-menu li.menu-list {
		width: 32%;
		padding: 10px 0%;
		text-align: center;
	}
	.footer-menu li a {
		font-size: 1.6rem;
	}
	.footer-logo-wrap {
		width: 50%;
		padding: 0 0 10px;
		margin: 0 auto;
	}
	.footer-address {
		width: 50%;
		font-size: 1.6rem;
		margin: 0 auto;
		padding: 0 0 10px;
	}
	.row.no-margin.footer-tel-wrapper {
		width: 50%;
		margin: 0 auto;
		margin-right: auto;
		margin-left: auto;
	}
	a.footer-tel {
		font-size: 1.6rem;
	}
	.copyright {
		font-size: 1.4rem;
		text-align: center;
		padding: 30px 0 20px;
	}
}
@media (max-width: 749px){
}
@media (max-width: 499px){
	.footer-menu {
		flex-wrap: wrap;
	}
	.footer-menu li.menu-list {
		width: 49%;
		padding: 10px 0%;
		text-align: center;
	}
	.footer-menu li a {
		font-size: 1.6rem;
	}
	.footer-logo-wrap {
		width: 90%;
		padding: 0 0 10px;
		margin: 0 auto;
	}
	.footer-address {
		width: 100%;
		font-size: 1.6rem;
		margin: 0 auto;
		padding: 0 0 10px;
	}
	.footer-address br {
		display: block;
	}
	.row.no-margin.footer-tel-wrapper {
		width: 100%;
		margin: 0 auto;
		margin-right: auto;
		margin-left: auto;
	}
	.footer-tel-wrap01 {
		display: block;
		width: 100%;
	}
	.footer-tel-wrap02 {
		display: block;
		width: 100%;
	}
	a.footer-tel {
		width: 100%;
		font-size: 1.8rem;
	}
	.copyright {
		font-size: 1.4rem;
		text-align: center;
		padding: 30px 0 20px;
	}
}

.home-office-gmap {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.home-office-gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    filter: grayscale(100%);
    transition: all 0.7s ease;
}



/*!------------------------------------------------------------------
[Scroll UP]
*/

.scroll-up {
    position: fixed;
    display: none;
    bottom: 120px;
    right: 0px;
    z-index: 999;
}

.scroll-up a {
    display: block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    color: #FFF;
    opacity: 1.0;
	border-radius: 6px 0 0 6px;
	background-color: #009CD1;
}
.scroll-up a::after {
    position: absolute;
    bottom: calc(50% - 2px);
	top: 1.6em;
    right: 0.8em;
    border-bottom: 1.0px solid #FFF;
    border-right: 2.0px solid #FFF;
    content: '';
    display: block;
    height: 8px;
	transform: rotate(-90deg) skewX(45deg);
    transition: .2s linear;
    width: 30px;
}

.scroll-up a:hover, .scroll-up a:active {
    opacity: 1;
}

@media (max-width: 1480px){
}
@media (max-width: 1200px){
}
@media (max-width: 749px){
	.scroll-up {
		bottom: 500px;
		right: 0px;
	}
	.scroll-up a {
		height: 34px;
		width: 36px;
		line-height: 34px;
		font-size: 16px;
	}
	.scroll-up a::after {
		top: 1.0em;
		right: 0.3em;
		height: 6px;
	}
}



/*!------------------------------------------------------------------
[concept.html]
*/
.concept-top-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    background-color: #FFF;
    overflow: hidden;
}

.concept-hero-lead-wrapper {
	display: flex;
	height: 100vh;
	justify-content: center;
	align-items: center;
}
.concept-hero-lead-wrap {
	width: 100%;
	margin: 0;
	padding: 0 10% 0 20%;
}

.concept-hero-title-en {
    display: block;
    font-size: 4.0vw;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
    color: #000;
    margin: 0 auto 2%;
    padding: 0;
}
.concept-hero-title-jp {
    display: block;
    font-size: 1.2vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 10px;
    color: #000;
    margin: 0 auto 15px;
    padding: 0 0 0 10px;
}

.concept-slide-wrap {
	height: 100vh;
	border-radius: 0 0 0 100px;
    overflow: hidden;
}


.hero-copy-second {
    display: block;
    font-size: 4.0rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 5px;
    color: #4E3A65;
    text-align: center;
    margin: 0 auto 20px;
    padding: 0 0 0 5px;
}

.hero-copy-second span {
    color: #B34B76;
}

.hero-lead-en-second {
    display: block;
    font-size: 2.4rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0px;
    color: #333;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}

section.about-second-section {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}

.row.about-second-section-wrapper {
    display: flex;
    flex-wrap: wrap;
	align-items: stretch;
}

.concept-photo-wrap01 {
    border-radius: 0 50px 50px 0;
    overflow: hidden;
}
.concept-photo-wrap02 {
    border-radius: 50px 0 0 50px;
    overflow: hidden;
}
.concept-photo-wrap03 {
    border-radius: 0 50px 50px 0;
    overflow: hidden;
}
.concept-photo-wrap04 {
    border-radius: 50px 0 0 50px;
    overflow: hidden;
}

.second-title-wrapper {
    display: table;
    height: 100%;
}

.second-title-wrap {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    margin: 0;
	padding-left: 15%;
	padding-right: 15%;
}

.about-title-no {
    position: relative;
	display: inline-block;
    width: 180px;
    height: 180px;
    font-size: 1.0vw;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    letter-spacing: 0px;
    text-align: center;
    color: #FFF;
    margin: 0 0 10%;
    padding: 30px 0 0;
    background: -moz-linear-gradient(top, #000,#000000);
    background: -webkit-linear-gradient(top, #000,#000000);
    background: linear-gradient(to bottom, #000,#000000);
    border-radius: 10px;
    box-sizing: border-box;
}
.about-title-no span {
    display: block;
    font-size: 9.6rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    letter-spacing: 0px;
    margin-top: 10px;
}
.about-title-no:before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 50%;
    margin-left: -20px;
    border: 20px solid transparent;
    border-top: 20px solid #000000;
    z-index: 0;
}

.about-title-number {
    position: relative;
    display: block;
    font-size: 2.0vw;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    letter-spacing: 0;
    text-align: left;
    color: #000;
    margin: 0 0 7%;
    padding: 0;
}
.about-title-number span {
	display: inline-block;
    font-size: 7.2vw;
	margin: 0;
	padding: 0 0 0 20px;
}


.second-title-01 {
    display: block;
    font-size: 2.2vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 4px;
    color: #000;
    text-align: left;
    margin: 0 auto;
    padding: 0 0 5% 0px;
}
.second-title-01 span {
    color: #009CD1;
}

.second-text-01 {
    display: block;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #000;
    text-align: left;
    margin: 0 auto;
    padding: 0;
}


section.about-third-section {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 0 8%;
    background-color: rgba(255, 255, 255, 1.0);
}

.about-third-wrapper {
    display: table;
    height: 100%;
}

.about-third-wrap {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    margin: 0;
	padding-left: 15%;
	padding-right: 15%;
}

@media (max-width: 1680px){
	.hero-copy-second {
		font-size: 3.6rem;
		letter-spacing: 5px;
		margin: 0 auto 15px;
		padding: 0 0 0 5px;
	}
	.hero-lead-en-second {
		font-size: 2.0rem;
	}
	
	.second-title-wrap {
		padding-left: 12%;
		padding-right: 12%;
	}
	.about-third-wrap {
		padding-left: 12%;
		padding-right: 12%;
	}
	.second-title-01 {
		letter-spacing: 3px;
	}
	.second-text-01 {
		font-size: 1.5rem;
	}
}
@media (max-width: 1480px){
	.hero-copy-second {
		font-size: 3.0rem;
		letter-spacing: 4px;
		margin: 0 auto 15px;
		padding: 0 0 0 4px;
	}
	.hero-lead-en-second {
		font-size: 1.8rem;
	}
	
	.second-title-wrap {
		padding-left: 10%;
		padding-right: 10%;
	}
	.about-third-wrap {
		padding-left: 10%;
		padding-right: 10%;
	}
	.second-title-01 {
		letter-spacing: 2px;
	}
	.second-text-01 {
		font-size: 1.4rem;
	}
}
@media (max-width: 1380px){
	.hero-lead-en-second {
		font-size: 1.6rem;
	}
}
@media (max-width: 1300px){
	.second-title-01 {
		font-size: 2.4rem;
		letter-spacing: 5px;
	}
}
@media (max-width: 1200px){
	.hero-copy-second {
		font-size: 2.8rem;
		letter-spacing: 4px;
		margin: 0 auto 15px;
		padding: 0 0 0 4px;
	}
	.second-title-wrap {
		padding-left: 8%;
		padding-right: 8%;
	}
	.second-title-01 {
		font-size: 2.0rem;
		letter-spacing: 1px;
	}
	.second-text-01 {
		letter-spacing: 0;
	}
	.second-text-01 br {
		display: none;
	}
}
@media (max-width: 990px){
	.concept-hero-lead-wrapper {
		display: block;
		height: auto;
	}
	.concept-hero-lead-wrap {
		padding: 100px 10% 50px;
	}
	.concept-slide-wrap {
		height: 90vh;
		border-radius: 0 0 0 0px;
	}
	
	.about-title-number {
		font-size: 2.4rem;
	}
	
	.concept-photo-wrap01 {
		display: none;
	}
	.concept-photo-wrap02 {
		border-radius: 0px 0 0 0px;
	}
	.concept-photo-wrap03 {
		border-radius: 0 0px 0px 0;
	}
	.concept-photo-wrap04 {
		display: none;
	}

	.row.about-second-section-wrapper {
		display: flex;
		flex-direction: row-reverse;
	}
	.second-title-wrap {
		padding-top: 8%;
		padding-left: 8%;
		padding-right: 8%;
		padding-bottom: 8%;
	}
	.about-third-wrap {
		padding-top: 8%;
		padding-left: 8%;
		padding-right: 8%;
		padding-bottom: 8%;
	}
	.second-title-01 {
	}
	.second-title-01 br {
		display: none;
	}
	.second-text-01 {
	}
}
@media (max-width: 749px){
	.concept-hero-lead-wrap {
		padding: 80px 10% 30px;
	}
}
@media (max-width: 499px){
	.concept-hero-title-en {
		font-size: 3.0rem;
		text-align: center;
		margin: 0 auto 10px;
	}
	.concept-hero-title-jp {
		font-size: 1.6rem;
		letter-spacing: 2px;
		text-align: center;
		margin: 0 auto 15px;
		padding: 0 0 0 0px;
	}
	.hero-text-section-left {
		width: 100%;
		height: 100vh;
		margin: 0;
	}
	.second-title-wrap {
		padding-top: 8%;
		padding-left: 9%;
		padding-right: 9%;
		padding-bottom: 8%;
	}
	.about-third-wrap {
		padding-top: 8%;
		padding-left: 9%;
		padding-right: 9%;
		padding-bottom: 8%;
	}
	
	.about-title-number span {
		font-size: 4.8rem;
	}
}
@media (max-width: 359px){
}


/*!------------------------------------------------------------------
[Works works.html]
*/
.works-hero-bg-section {
    position: relative;
	width: 100%;
	height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #FFF;
    background-image: url(../assets/img/works-bg-top.jpg);
	border-radius: 0 0 0 100px;
    overflow: hidden;
}
.works-hero-subtitle {
    display: block;
    font-size: 2.4vw;
	font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000;
    margin: 15% 0 3%;
    padding: 0;
}
.works-hero-lead {
    display: block;
    font-size: 1.2vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    color: #000;
    margin: 0 0 3%;
    padding: 0;
}
.works-hero-lead span {
	color: #009CD1;
}
.works-hero-text {
    display: block;
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #444;
    margin: 0;
    padding: 0;
}

section.first-service-section {
    width: 100%;
    height: auto;
    margin: 10% 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}
section.second-service-section {
    width: 100%;
    height: auto;
    margin: 0 0 10%;
    padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}
.works-service-lead {
    display: block;
    font-size: 1.4vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2px;
    color: #000;
    margin: 0 0 3%;
    padding: 0;
}
.works-service-lead span {
	color: #009CD1;
}
.works-service-text {
    display: block;
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #444;
    margin: 0 0 5%;
    padding: 0;
}
dl.service-content-wrap {
    width: 100%;
    padding: 0;
    margin: 0;
}
dl.service-content-wrap dt {
    float: left;
    width: 35px;
    font-size: 2.4rem;
    font-weight: 500;
    color: #000;
    text-align: left;
    line-height: 1.4;
    padding: 5px 0;
    margin: 0;
}
dl.service-content-wrap dd {
    margin-left: 35px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #000;
    padding: 10px 0;
}
dl.service-content-wrap dd br {
	display: none;
}

.service-photo-wrap01 {
    border-radius: 0 50px 50px 0;
    overflow: hidden;
}
.service-photo-wrap02 {
    border-radius: 50px 0 0 50px;
    overflow: hidden;
}

/* Workas Img */
.second-works-section {
    position: relative;
    width: 100%;
	margin: 0 0 10%;
	padding: 0;
    background-color: #FFF;
    overflow: hidden;
}
.container-100p {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}
.row.works-modal-wrap {
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
.row.works-modal-wrap .col-lg-3.col-6 {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.works-img-hover {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.works-img-hover .works-img-hover-img {
	margin: 0;
	padding: 0;	
	border-radius: 20px;
	overflow: hidden;
}
.works-img-hover-img img {
	width: 100%;
	height: 100%;
}
.works-img-hover .works-img-hover-text {
	position: absolute;
	top: 0;
	left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
	width: 100%;
	height: 100%;
	color: #FFF;
	background-color:	rgba(0, 156, 209, 0.9);
	opacity: 0;
	transition: .3s ease-in-out;
	border-radius: 20px;
}
.works-img-hover .works-img-hover-text .text1 {
	font-size: 2.0rem;
	font-weight: 600;
	color: #FFF;
	text-align: center;
	padding: 0 10%;
}

/*ホバーエフェクト*/
.works-img-hover:hover .works-img-hover-text {
	opacity: 1;
	padding-top: 5%;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    background-clip: padding-box;
    outline: 0;
}
.popup-modal .modal-content {
    width: 100%;
    height: auto;
    border-radius: 0;
    background-clip: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
	margin: 0 auto;
    padding: 0;
}
.popup-modal .close-modal {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0px;
    right: 0;
    cursor: pointer;
	font-size: 4.0rem;
	line-height: 1.0;
	color: #000;
	padding: 10px 17px;
	background-color: #FFF;
	z-index: 9;
}
.modal-container {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
}
.modal-container .flexslider {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
}
.modal-text-container {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 60px 5% 5% 5%;
}
.modal-text-title {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.0;
	color: #009CD1;
	padding: 0 0 15px;
	margin: 0 20px 15px;
	border-bottom: solid 1px #000;
}
.modal-text-text {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.5;
	color: #000;
	padding: 0 0 20px;
	margin: 0 20px;
}
@media (max-width: 1680px){
	.works-img-hover .works-img-hover-text .text1 {
		font-size: 1.8rem;
	}
}
@media (max-width: 1480px){
	.works-service-lead {
		font-size: 1.6vw;
	}
	.works-service-text {
		font-size: 1.4rem;
	}
	dl.service-content-wrap dt {
		font-size: 2.4rem;
		width: 30px;
	}
	dl.service-content-wrap dd {
		margin-left: 30px;
		font-size: 1.6rem;
		letter-spacing: 0px;
	}
	.works-img-hover .works-img-hover-text .text1 {
		font-size: 1.6rem;
	}
}
@media (max-width: 1200px){
	.works-hero-title-vertical {
		width: 140px;
		height: 210px;
		font-size: 2.4rem;
		padding: 50px 40px;
	}
	.works-img-hover .works-img-hover-img {
		border-radius: 10px;
	}
	.popup-modal .close-modal {
		width: 40px;
		height: 40px;
		font-size: 2.0rem;
		padding: 10px 12px;
	}
}
@media (max-width: 990px){
	.works-hero-subtitle {
		font-size: 2.4rem;
		margin: 8% 0 3%;
	}
	.works-hero-lead {
		font-size: 1.8rem;
		letter-spacing: 1px;
	}
	.works-hero-bg-section {
		display: none;
	}
	section.first-service-section {
		margin: 0 0 0;
	}
	.works-service-lead {
		font-size: 2.0rem;
	}
	.service-photo-wrap01 {
		border-radius: 0 0px 0px 0;
	}
	.service-photo-wrap02 {
		border-radius: 0px 0 0 0px;
	}
	.second-works {
		background-position: 40% 0%;
	}
	.modal-text-container {
		height: auto;
		padding: 10% 5% 5%;
	}
}
@media (max-width: 749px){
	.second-works {
		height: 110vh;
		margin-top: 76px;
		background-position: 0% 0%;
	}
}
@media (max-width: 499px){
	.works-hero-subtitle {
		text-align: center;
	}
	.works-hero-lead {
		text-align: center;
		margin: 0 0 20px;
	}
	.works-hero-text {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
	.works-service-lead {
		font-size: 2.0rem;
		letter-spacing: 0px;
		margin: 0 0 20px;
	}
	.works-service-lead br {
		display: none;
	}
}
@media (max-width: 359px){
}


/*!------------------------------------------------------------------
[Company company.html]
*/

.company-hero-lead-wrap {
    width: 100%;
    margin: 0;
    padding: 0 20%;
}

.company-hero-bg-section {
    position: relative;
	width: 100%;
	height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #FFF;
    background-image: url(../assets/img/company-bg-top.jpg);
	border-radius: 0 0 0 100px;
    overflow: hidden;
}

.second-top-section {
    position: relative;
    width: 100%;
	margin: 0;
	padding: 5% 5% 3%;
    background-color: #FFF;
    overflow: hidden;
}

.second-hero-title-en {
    display: block;
    font-size: 3.6vw;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
    color: #000;
    margin: 0 auto 20px;
    padding: 0;
}
.second-hero-title-jp {
    display: block;
    font-size: 2.0rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 5px;
    color: #000;
    margin: 0 auto;
    padding: 0 0 0 10px;
}

section.company-second-section {
    width: 100%;
    height: auto;
    margin: 0 0 10%;
    padding: 0;
}

.company-second-wrapper {
	padding-left: 10%;
	padding-right: 10%;
}
.company-second-title {
    display: block;
    font-size: 3.0vw;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0;
	text-align: left;
    color: #000;
    margin: 0 0 5%;
    padding: 0;
}
.company-second-title span {
    display: block;
    font-size: 1.0vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    padding: 20px 0 0 5px;
}
.company-second-lead {
    display: block;
    font-size: 1.6vw;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.4;
    letter-spacing: 0;
	text-align: left;
    color: #000;
    margin: 0 0 5%;
    padding: 0;
}
.company-second-lead span {
    color: #009CD1;
}
.company-text-01 {
    display: block;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #000;
    text-align: left;
    margin: 0 auto;
    padding: 0 0 40px;
}
.company-text-name {
    display: block;
    font-size: 1.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 2.0;
    letter-spacing: 1px;
    color: #000;
    text-align: right;
    margin: 0 auto;
    padding: 0 30px 0 0;
}
.company-text-name span {
	display: inline-block;
    font-size: 1.5rem;
    padding: 0 25px 0 0;
}
.company-second-photo-wrapper {
	padding-right: 5%;
}


/*!-----------------------------------------
[Overview company.html]
*/

section.company-third-section {
    width: 80%;
    height: auto;
    margin: 0 auto 5%;
    padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}
.company-third-title {
    display: block;
    font-size: 3.0vw;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0;
	text-align: right;
    color: #000;
    margin: 0 30px 5% 0;
    padding: 0;
}
.company-third-title span {
    display: block;
    font-size: 1.0vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    padding: 20px 5px 0 0;
}

table.overvew {
    width: 100%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 20px 0;
}
table.overvew th {
    width: 20%;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
    letter-spacing: 1px;
    vertical-align: middle;
	text-align: center;
    padding: 1.5em 1.0em;
    border-bottom: solid 1px #666;
}
table.overvew td {
    width: 75%;
    text-align: left;
    vertical-align: middle;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.6;
    padding: 1.5em 1.0em;
    border-bottom: solid 1px #666;
}
table.overvew td a {
	display: block;
    font-size: 1.6rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 0px;
    line-height: 1.0;
    padding: 5px 0 0;
}
table.overvew td a:hover {
    color: #B34B76;
}
table.overvew td a.tel {
    font-size: 1.6rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.6;
    padding: 0;
}
table.overvew td a.address-gm {
    font-size: 1.3rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 0px;
    line-height: 1.0;
    padding: 10px 0 15px;
}
table.overvew td a.address-gm:hover {
    color: #009CD1;
}

dl.overvew-content-wrap {
    width: 100%;
    padding: 0;
    margin: 0;
}
dl.overvew-content-wrap dt {
    float: left;
    width: 25px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #000;
    text-align: left;
    line-height: 1.4;
    padding: 5px 0;
    margin: 0;
}
dl.overvew-content-wrap dd {
    margin-left: 25px;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #000;
    padding: 5px 0;
}

.office-gmap {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 10px;
}
.office-gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}


/*!-----------------------------------------
[Photo company.html]
*/

section.company-photo-section {
    width: 78%;
    height: auto;
    margin: 0 auto 10%;
    padding: 0;
}

.tab {
	display: flex;
	justify-content: center;
}
.tab li {
	position: relative;
	width: 20%;
}
.tab li a {
	display: block;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: #000;
	background: #ddd;
	margin: 0 4px;
	padding: 10px 20px;
	border-radius: 0px;
	border-top: solid 1px #666;
	border-bottom: solid 1px #666;
	border-left: solid 1px #666;
	border-right: solid 1px #666;
}
.tab li.active a {
    color: #009CD1;
	background: #FFF;
	border-radius: 0px;
	border-top: solid 1px #666;
	border-bottom: none;
	border-left: solid 1px #666;
	border-right: solid 1px #666;
}

.area {
	display: none;
	opacity: 0;
	background: #fff;
	padding: 50px 0;
	border-bottom: solid 1px #666;
}

.area.is-active {
	display: block;
	animation-name: displayAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	background: #fff;
}
  
@keyframes displayAnime{
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
}


:root {
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #ddd;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #ddd;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #ddd;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#ddd,.2);
  }

  .l-section {
    border-top: 0px solid #eee;
  }
  .l-section .l-inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  [class*=swiper]:focus {
    outline: none;
  }

  .slide-media,
  .thumb-media {
    position: relative;
    overflow: hidden;
  }
  .slide-media img,
  .thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }


  .swiper-button-prev, 
  .swiper-button-next {
    display: grid;
    place-content: center;
    width: 6.4rem;
    height: 6.4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .swiper-button-prev::before, 
  .swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
	background-color: #009CD1;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
  }
  .swiper-button-prev::after, 
  .swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid var(--color-gray);
    border-width: 3px 3px 0 0;
  }
  .swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
}

@media (max-width: 1480px){
	.swiper-button-prev, 
	.swiper-button-next {
	  width: 4.8rem;
	  height: 4.8rem;
	}
	.area {
		padding: 20px 0;
	}
}
@media (max-width: 1300px){
	.swiper-button-prev, 
	.swiper-button-next {
	  width: 3.6rem;
	  height: 3.6rem;
	}
	.tab li a {
		font-size: 14px;
	}
}
@media (max-width: 1100px){
	.tab li a {
		font-size: 13px;
		padding: 10px 10px;
	}
}
@media (max-width: 990px){
	.tab li a {
		padding: 10px 0px;
	}
}
@media (max-width: 499px){
	.tab li a {
		font-size: 12px;
		margin: 0 2px;
	}
}


.gallery01, 
.gallery02, 
.gallery03, 
.gallery04, 
.gallery05 {
	overflow: hidden;
}
.gallery01 .swiper, 
.gallery02 .swiper, 
.gallery03 .swiper, 
.gallery04 .swiper, 
.gallery05 .swiper {
    max-width: 80%;
    margin: auto;
}
.gallery01 .swiper-main, 
.gallery02 .swiper-main, 
.gallery03 .swiper-main, 
.gallery04 .swiper-main, 
.gallery05 .swiper-main {
	overflow: visible;
}
.gallery01 .swiper-thumb, 
.gallery02 .swiper-thumb, 
.gallery03 .swiper-thumb, 
.gallery04 .swiper-thumb, 
.gallery05 .swiper-thumb {
    padding-top: 8px;
}
.gallery01 .swiper-fade .swiper-slide, 
.gallery02 .swiper-fade .swiper-slide, 
.gallery03 .swiper-fade .swiper-slide, 
.gallery04 .swiper-fade .swiper-slide, 
.gallery05 .swiper-fade .swiper-slide {
    -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
}
.gallery01 .swiper-fade .swiper-slide-active, 
.gallery02 .swiper-fade .swiper-slide-active, 
.gallery03 .swiper-fade .swiper-slide-active, 
.gallery04 .swiper-fade .swiper-slide-active, 
.gallery05 .swiper-fade .swiper-slide-active  {
    pointer-events: auto;
}
.gallery01 .swiper-controller, 
.gallery02 .swiper-controller, 
.gallery03 .swiper-controller, 
.gallery04 .swiper-controller, 
.gallery05 .swiper-controller  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 62.5%;
}
.gallery01 .swiper-button-prev, 
.gallery01 .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}
.gallery02 .swiper-button-prev, 
.gallery02 .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}
.gallery03 .swiper-button-prev, 
.gallery03 .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}
.gallery04 .swiper-button-prev, 
.gallery04 .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}
.gallery05 .swiper-button-prev, 
.gallery05 .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}
.gallery01 .swiper-button-prev, 
.gallery02 .swiper-button-prev, 
.gallery03 .swiper-button-prev, 
.gallery04 .swiper-button-prev, 
.gallery05 .swiper-button-prev  {
    right: calc(100% + 3.2rem);
}
.gallery01 .swiper-button-next, 
.gallery02 .swiper-button-next, 
.gallery03 .swiper-button-next, 
.gallery04 .swiper-button-next, 
.gallery05 .swiper-button-next  {
    left: calc(100% + 3.2rem);
}
.gallery01 .swiper-scrollbar, 
.gallery02 .swiper-scrollbar, 
.gallery03 .swiper-scrollbar, 
.gallery04 .swiper-scrollbar, 
.gallery05 .swiper-scrollbar  {
    position: relative;
    margin-top: 1.6rem;
}
.gallery01 .swiper-scrollbar::after, 
.gallery02 .swiper-scrollbar::after, 
.gallery03 .swiper-scrollbar::after, 
.gallery04 .swiper-scrollbar::after, 
.gallery05 .swiper-scrollbar::after  {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    margin: auto;
    content: "";
    background-color: #eee;
}
.gallery01 .swiper-scrollbar-drag, 
.gallery02 .swiper-scrollbar-drag, 
.gallery03 .swiper-scrollbar-drag, 
.gallery04 .swiper-scrollbar-drag, 
.gallery05 .swiper-scrollbar-drag  {
    height: 20px;
    padding: 8px 0;
    cursor: pointer;
    background-color: #009CD1;
    background-clip: content-box;
}
.gallery01 .swiper-scrollbar-drag:active, 
.gallery02 .swiper-scrollbar-drag:active, 
.gallery03 .swiper-scrollbar-drag:active, 
.gallery04 .swiper-scrollbar-drag:active, 
.gallery05 .swiper-scrollbar-drag:active  {
    background-color: var(--color-theme-darken);
}
.gallery01 .slide, 
.gallery02 .slide, 
.gallery03 .slide, 
.gallery04 .slide, 
.gallery05 .slide  {
    display: block;
    overflow: hidden;
}
.gallery01 .slide-media, 
.gallery02 .slide-media, 
.gallery03 .slide-media, 
.gallery04 .slide-media, 
.gallery05 .slide-media  {
    padding-top: 62.5%;
    border-radius: 10px;
}
.gallery01 .slide-media img, 
.gallery02 .slide-media img, 
.gallery03 .slide-media img, 
.gallery04 .slide-media img, 
.gallery05 .slide-media img  {
    -o-object-fit: contain;
       object-fit: contain;
}
.gallery01 .slide-title, 
.gallery02 .slide-title, 
.gallery03 .slide-title, 
.gallery04 .slide-title, 
.gallery05 .slide-title  {
    font-weight: bold;
    line-height: 1.6;
    padding: 20px 0 0;
}
.gallery01 .thumb-media, 
.gallery02 .thumb-media, 
.gallery03 .thumb-media, 
.gallery04 .thumb-media, 
.gallery05 .thumb-media  {
    padding-top: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 4px;
}
.gallery01 .thumb-media img, 
.gallery02 .thumb-media img, 
.gallery03 .thumb-media img, 
.gallery04 .thumb-media img, 
.gallery05 .thumb-media img  {
    height: calc(100% + 8px);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
}
.gallery01 .swiper-slide-thumb-active, 
.gallery02 .swiper-slide-thumb-active, 
.gallery03 .swiper-slide-thumb-active, 
.gallery04 .swiper-slide-thumb-active, 
.gallery05 .swiper-slide-thumb-active  {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    opacity: 0.3;
}
.gallery01 .swiper-slide-thumb-active .thumb-media, 
.gallery02 .swiper-slide-thumb-active .thumb-media, 
.gallery03 .swiper-slide-thumb-active .thumb-media, 
.gallery04 .swiper-slide-thumb-active .thumb-media, 
.gallery05 .swiper-slide-thumb-active .thumb-media  {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
}
.gallery01 .swiper-slide-thumb-active .thumb-media img, 
.gallery02 .swiper-slide-thumb-active .thumb-media img, 
.gallery03 .swiper-slide-thumb-active .thumb-media img, 
.gallery04 .swiper-slide-thumb-active .thumb-media img, 
.gallery05 .swiper-slide-thumb-active .thumb-media img  {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

@media only screen and (max-width: 1024px) {
    html {
      -webkit-text-size-adjust: 100%;
    }
    .l-inner {
      padding: 0 4rem;
    }
    .pc {
      display: none !important;
    }
	.gallery01 .swiper, 
	.gallery02 .swiper, 
	.gallery03 .swiper, 
	.gallery04 .swiper, 
	.gallery05 .swiper {
		max-width: 90%;
		margin: auto;
	}

    .gallery01 .swiper-button-prev::before, 
	.gallery01 .swiper-button-next::before {
		background-color: rgba(0, 156, 209, 0.75);
      -webkit-box-shadow: var(--box-shadow-dark);
              box-shadow: var(--box-shadow-dark);
    }
    .gallery01 .swiper-button-prev::after, 
	.gallery01 .swiper-button-next::after {
      border-color: #fff;
    }

    .gallery02 .swiper-button-prev::before, 
	.gallery02 .swiper-button-next::before {
		background-color: rgba(0, 156, 209, 0.75);
      -webkit-box-shadow: var(--box-shadow-dark);
              box-shadow: var(--box-shadow-dark);
    }
    .gallery02 .swiper-button-prev::after, 
	.gallery02 .swiper-button-next::after {
      border-color: #fff;
    }

    .gallery03 .swiper-button-prev::before, 
	.gallery03 .swiper-button-next::before {
		background-color: rgba(0, 156, 209, 0.75);
      -webkit-box-shadow: var(--box-shadow-dark);
              box-shadow: var(--box-shadow-dark);
    }
    .gallery03 .swiper-button-prev::after, 
	.gallery03 .swiper-button-next::after {
      border-color: #fff;
    }

    .gallery04 .swiper-button-prev::before, 
	.gallery04 .swiper-button-next::before {
		background-color: rgba(0, 156, 209, 0.75);
      -webkit-box-shadow: var(--box-shadow-dark);
              box-shadow: var(--box-shadow-dark);
    }
    .gallery04 .swiper-button-prev::after, 
	.gallery04 .swiper-button-next::after {
      border-color: #fff;
    }

    .gallery05 .swiper-button-prev::before, 
	.gallery05 .swiper-button-next::before {
		background-color: rgba(0, 156, 209, 0.75);
      -webkit-box-shadow: var(--box-shadow-dark);
              box-shadow: var(--box-shadow-dark);
    }
    .gallery05 .swiper-button-prev::after, 
	.gallery05 .swiper-button-next::after {
      border-color: #fff;
    }

    .gallery01 .swiper-button-prev, 
	.gallery02 .swiper-button-prev, 
	.gallery03 .swiper-button-prev, 
	.gallery04 .swiper-button-prev, 
	.gallery05 .swiper-button-prev {
      right: calc(100% - 1.8rem);
    }
    .gallery01 .swiper-button-next, 
	.gallery02 .swiper-button-next, 
	.gallery03 .swiper-button-next, 
	.gallery04 .swiper-button-next, 
	.gallery05 .swiper-button-next {
      left: calc(100% - 1.8rem);
    }
}

@media only screen and (max-width: 599px) {
	section.company-photo-section {
		width: 92%;
		margin: 0 auto 10%;
	}
    .l-inner {
      padding: 0 0rem;
    }
    .pc-tab {
      display: none !important;
    }

    .gallery01 .swiper-button-prev, 
	.gallery02 .swiper-button-prev, 
	.gallery03 .swiper-button-prev, 
	.gallery04 .swiper-button-prev, 
	.gallery05 .swiper-button-prev {
      right: calc(100% - 2.4rem);
    }
    .gallery01 .swiper-button-next, 
	.gallery02 .swiper-button-next, 
	.gallery03 .swiper-button-next, 
	.gallery04 .swiper-button-next, 
	.gallery05 .swiper-button-next {
      left: calc(100% - 2.4rem);
    }
}

@media only screen and (min-width: 1025px) {
    .tab-sp {
      display: none !important;
    }
    .swiper-button-prev::before, 
	.swiper-button-next::before {
      -webkit-transition: var(--transition);
      transition: var(--transition);
    }
    .swiper-button-prev:hover::before, 
	.swiper-button-next:hover::before {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    .gallery01 .swiper-scrollbar-drag:hover, 
	.gallery02 .swiper-scrollbar-drag:hover, 
	.gallery03 .swiper-scrollbar-drag:hover, 
	.gallery04 .swiper-scrollbar-drag:hover, 
	.gallery05 .swiper-scrollbar-drag:hover {
      background-color: var(--color-theme-darken);
    }
    .gallery01 .thumb-media:hover, 
	.gallery02 .thumb-media:hover, 
	.gallery03 .thumb-media:hover, 
	.gallery04 .thumb-media:hover, 
	.gallery05 .thumb-media:hover {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
    }
    .gallery01 .thumb-media:hover img, 
	.gallery02 .thumb-media:hover img, 
	.gallery03 .thumb-media:hover img, 
	.gallery04 .thumb-media:hover img, 
	.gallery05 .thumb-media:hover img {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
}

@media only screen and (min-width: 600px) {
    .sp {
      display: none !important;
    }
}


/*!-----------------------------------------
[Access company.html]
*/

section.company-forth-section {
    width: 100%;
    height: auto;
    margin: 0 auto 10%;
    padding: 0;
    background-color: rgba(255, 255, 255, 1.0);
}

.company-forth-textsection {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 10%;
    background-color: rgba(255, 255, 255, 1.0);
}

.gmap-textwrap {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    color: #4E3A65;
    letter-spacing: 1px;
    line-height: 1.6;
	text-align: center;
    padding: 0 20px 40px;
}

.gmap-textwrap a.address-gm {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    color: #4E3A65;
    letter-spacing: 0px;
    line-height: 1.0;
    padding: 10px 0 15px;
}
.gmap-textwrap a.address-gm:hover {
    color: #009CD1;
}

.gmap-wrap {
    position: relative;
    width: 100%;
    height: 500px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
	border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 1680px){
	.company-lead-01 {
		font-size: 2.4rem;
		line-height: 2.0;
		letter-spacing: 2px;
		margin: 0 auto;
		padding: 0 0 7% 2px;
	}
}
@media (max-width: 1480px){
	.company-sub-title {
		width: 140px;
		height: 140px;
		font-size: 1.5rem;
		margin: 0 auto 6%;
		padding: 20px 0 0;
	}
	.company-sub-title span {
		font-size: 2.2rem;
		font-weight: 600;
		letter-spacing: 2px;
		margin-top: 15px;
	}
	
	.company-second-lead {
		font-size: 2.4rem;
	}
	
	.company-third-textsection {
		padding: 8% 8%;
	}
	
	.company-forth-textsection {
		padding: 0 8% 8%;
	}
}
@media (max-width: 1380px){
	.company-lead-01 {
		font-size: 2.0rem;
		line-height: 2.0;
		letter-spacing: 1px;
		margin: 0 auto;
		padding: 0 0 6% 1px;
	}
	
	.company-second-textsection {
		padding: 8% 6%;
	}
	
	.company-third-textsection {
		padding: 8% 5%;
	}
	table.overvew th {
		font-size: 1.6rem;
		letter-spacing: 1px;
		padding: 1.4em 1.0em;
	}
	table.overvew td {
		font-size: 1.6rem;
		letter-spacing: 1px;
		padding: 1.4em 1.0em;
	}
	table.overvew td a.tel {
		font-size: 1.6rem;
		letter-spacing: 1px;
	}
	
	.company-forth-textsection {
		padding: 0 5% 8%;
	}
	.gmap-textwrap {
		font-size: 1.6rem;
	}
}
@media (max-width: 1300px){
}
@media (max-width: 1200px){
	.company-text-01 {
		font-size: 1.5rem;
	}
	.company-text-name {
		font-size: 1.6rem;
		line-height: 1.6;
		letter-spacing: 0;
	}
	table.overvew th {
		font-size: 1.5rem;
		letter-spacing: 1px;
		padding: 1.4em 1.0em;
	}
	table.overvew td {
		font-size: 1.5rem;
		letter-spacing: 1px;
		padding: 1.4em 1.0em;
	}
	table.overvew td a.tel {
		font-size: 1.5rem;
		letter-spacing: 1px;
	}
	dl.overvew-content-wrap dt {
		width: 22px;
		font-size: 1.5rem;
	}
	dl.overvew-content-wrap dd {
		margin-left: 22px;
		font-size: 1.5rem;
		letter-spacing: 1px;
	}
}
@media (max-width: 990px){
	.company-second-lead {
		font-size: 2.0rem;
		text-align: center;
	}
	.company-second-title {
		font-size: 3.6rem;
		text-align: center;
	}
	.company-second-title span {
		font-size: 1.5rem;
		padding: 10px 0 0;
	}
	.company-third-title {
		font-size: 3.6rem;
		margin: 0 0 5%;
		text-align: center;
	}
	.company-third-title span {
		font-size: 1.5rem;
		padding: 10px 0 0;
	}
}
@media (max-width: 749px){
}
@media (max-width: 499px){
	.company-lead-01 {
		font-size: 1.8rem;
		line-height: 1.8;
		letter-spacing: 1px;
		text-align: left;
		margin: 0 auto;
		padding: 20px 0 30px 0px;
	}
	.company-lead-01 br {
		display: none;
	}
	.company-second-title {
		font-size: 3.0rem;
		margin: 0 0 40px;
	}
	.company-second-lead {
		font-size: 1.8rem;
		text-align: center;
		margin-bottom: 30px;
	}
	.company-text-01 {
		font-size: 1.4rem;
		line-height: 1.6;
		padding: 0 0 30px;
	}
	.company-text-name {
		font-size: 1.5rem;
		line-height: 1.5;
		text-align: center;
		margin-bottom: 20px;
		padding: 0;
	}
	.company-third-title {
		font-size: 3.0rem;
		margin: 0 0 20px;
	}
	table.overvew {
		width: 100%;
		border-spacing: 0px 0;
		margin-bottom: 30px;
	}
	table.overvew th {
		display: block;
		width: 100%;
		font-size: 1.6rem;
		letter-spacing: 0px;
		padding: 1.5em 1.0em 0.5em;
		border-bottom: none;
		text-align: left;
	}
	table.overvew td {
		display: block;
		width: 100%;
		font-size: 1.6rem;
		letter-spacing: 0px;
		padding: 0 1.0em 1.5em;
	}
	table.overvew td span {
		display: block;
	}
	table.overvew td a.tel {
		font-size: 1.6rem;
		letter-spacing: 0px;
	}
	.gmap-textwrap {
		display: block;
		font-size: 1.6rem;
		letter-spacing: 0px;
		line-height: 1.4;
		padding: 20px 0px 20px;
	}
	.gmap-textwrap span {
		display: block;
	}
}
@media (max-width: 359px){
}


.contact-leads {
    display: block;
    font-size: 1.1vw;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    letter-spacing: 1px;
    text-align: left;
    color: #000;
    margin: 0 0 20px;
    padding: 0;
}
.contact-leads-s {
    display: block;
    font-size: 0.9vw;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: left;
    color: #000;
    margin: 0;
    padding: 0;
}

.contact-hero-bg-section {
    position: relative;
	width: 100%;
	height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #FFF;
    background-image: url(../assets/img/contact-bg-top.jpg);
	border-radius: 0 0 0 100px;
    overflow: hidden;
}

@media (max-width: 1480px){
	.contact-leads-s {
		font-size: 1.1vw;
		line-height: 1.5;
	}
}
@media (max-width: 1380px){
}
@media (max-width: 1300px){
	.contact-leads {
		font-size: 1.8rem;
	}
	.contact-leads-s {
		font-size: 1.4rem;
	}
}
@media (max-width: 1200px){
	.contact-leads-s br {
		display: none;
	}
}
@media (max-width: 990px){
	.contact-leads {
		font-size: 1.8rem;
		letter-spacing: 0;
		text-align: center;
		margin: 0 0 20px;
	}
	.contact-leads-s {
		font-size: 1.5rem;
		text-align: center;
		margin: 0 0 40px;
	}
}
@media (max-width: 749px){
	.contact-leads {
		font-size: 1.6rem;
	}
}
@media (max-width: 499px){
	.contact-leads-s {
		font-size: 1.5rem;
		text-align: left;
	}
	.contact-leads-s br {
		display: none;
	}
}
@media (max-width: 359px){
}













