@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');



/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
	--bg-grey-1: #F5F4F4;
	--bg-grey-2: #ECEBEB;	
	--font-roboto: #'Roboto', sans-serif;
}
body {
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}
a {
	color: #000;
}



/*  ----------------------------------------------------------

font-size

----------------------------------------------------------  */
html {
    font-size: 0.833vw;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 1.303vw;
    }	
}
@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }	
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }	
}
@media screen and (min-width: 1401px) {
    html {
		font-size: 0.714vw;
    }	
}



/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 8rem;
	padding: 0 5rem 0 3rem;
	position: relative;
	z-index: 999;
}
header h1 {
	width: 14rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	header {
		justify-content: center;
		position: relative;
		height: 6rem;
		padding: 0;
	}
	header h1 {
		width: 12rem;
	}
}



/*  ----------------------------------------------------------

nav

----------------------------------------------------------  */
ul.gnav-menu {
	display: flex;
	align-items: center;
}
ul.gnav-menu > li {
	font-family: var(--font-roboto);
	font-weight: 700;
	white-space: nowrap;
}
ul.gnav-menu > li:not(:last-child) {
	margin-right: 5rem;
}
ul.gnav-menu > li > a {
	display: flex;
	align-items: center;
	height: 8rem;
}
ul.gnav-menu > li:last-child a {
	border: solid 0.15rem #000;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 3.2rem;
	padding: 0 1.2rem 0.1rem 1.2rem;

}
ul.gnav-menu > li:last-child a:hover {
	opacity: 1;
	background: #000;
	color: #fff;
}
/* dropmenu */
ul.gnav-menu > li > a {
    height: 8rem;
}
.dropmenu {
    position: relative;
}
.dropmenu > ul {
    position: absolute;
    left: 0;
    top: 8rem;
    background: rgba(255,255,255,0.9);
    padding: 1.5rem 0;
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
}
.dropmenu > ul li a {
    display: flex;
	align-items: center;
    white-space: nowrap;
    padding: 0.8rem 2.5rem 0.8rem 2.5rem;
    line-height: 1;
    font-size: 1.2rem;
}
.dropmenu > ul li a i {
	margin-left: 0.6rem;
	margin-top: 0.15rem;
}
.dropmenu:hover ul {
    opacity: 1;
    pointer-events: all;
}





/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
	padding: 10rem 0 10rem 0; 
	overflow: hidden;
}
footer .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10rem;
}
footer .logo {
	width: 14rem;
}
footer nav {
	position: relative;
	z-index: 99;
}
footer nav > ul {
	display: flex;
	align-items: center;
	font-family: var(--font-roboto);
	font-weight: 700;
}
footer nav > ul > li:not(:last-child) {
	margin-right: 4rem;
}
footer small {
	display: block;
	text-align: center;
	font-size: 1.2rem;
}
/* dropmenu */
footer nav > ul > li > a {
    height: 4rem;
	display: flex;
	align-items: center;
}
footer nav > ul > li {
	position: relative;
}
.dropmenu {
    position: relative;
}
footer .dropmenu > ul {
    position: absolute;
    left: 0;
    top: 4rem;
    background: rgba(255,255,255,0.9);
    padding: 1.5rem 0;
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
	box-shadow: 0 0 0.3rem rgba(0,0,0,0.1);
	z-index: 99;
}
footer .dropmenu > ul li a {
    display: flex;
	align-items: center;
    white-space: nowrap;
    padding: 0.8rem 2.5rem 0.8rem 2.5rem;
    line-height: 1;
    font-size: 1.2rem;
}
footer .dropmenu > ul li a i {
	margin-left: 0.6rem;
	margin-top: 0.15rem;
}
footer .dropmenu:hover ul {
    opacity: 1;
    pointer-events: all;
}
@media screen and (max-width: 768px) {
	footer {
		padding: 8rem 0 6rem 0; 
	}
	footer .wrap {
		flex-direction: column;
		margin-bottom: 0;
	}
	footer .logo {
		width: 16rem;
	}
	footer nav {
		margin: 6rem 0;
	}
	footer nav > ul {
		flex-direction: column;
		font-size: 1.8rem;
	}
	footer nav > ul > li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 2.5rem;
	}
	footer nav > ul > li {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	/* dropmenu */
	footer nav > ul > li > a {
		height: auto;
	}
	footer nav > ul > li {
		position: relative;
	}
	.dropmenu {
		position: relative;
	}
	footer .dropmenu > ul {
		position: relative;
		left: auto;
		top: auto;
		background: none;
		padding: 0;
		opacity: 1;
		box-shadow: none;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 0.5rem;
	}
	footer .dropmenu > ul li a {
		padding: 0.8rem 0 0.8rem 0;
		font-size: 1.2rem;
		font-weight: normal;
	}
}



/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
	position: relative;
	display: flex;
	align-items: center;
}
.page-ttl > div:nth-of-type(1) {
	width: 40%;
}
.page-ttl .mv {
	border-radius: 2rem;
	height: 32rem;
	width: 60%;
	position: relative;
}
.page-ttl .mv.company {
	background: url(../img/mv-comapny.jpg) no-repeat center / cover;
}
.page-ttl .mv.service-sales {
	background: url(../img/mv-service-sales.jpg) no-repeat center / cover;
}
.page-ttl .mv.service-docu {
	background: url(../img/mv-service-docu.jpg) no-repeat center / cover;
}
.page-ttl .mv.service-new {
	background: url(../img/mv-service-new.jpg) no-repeat center / cover;
}
.page-ttl .mv.contact {
	background: url(../img/mv-contact.jpg) no-repeat center / cover;
}
.page-ttl .mv.privacy {
	background: url(../img/mv-privacy.jpg) no-repeat center / cover;
}
.page-ttl h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	line-height: 1;
}
.page-ttl h2 > span:nth-child(2) {
	font-family: var(--font-roboto);
	font-size: 4rem;
	letter-spacing: 0.15em;
	margin-top: 1.2rem;
}
.page-ttl h2 > span:nth-child(2).adjust {
	font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
	.page-ttl {
		position: relative;
		display: flex;
		align-items: center;
	}
	.page-ttl > div:nth-of-type(1) {
		width: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		z-index: 99;
	}
	.page-ttl .mv {
		border-radius: 0;
		height: 22rem;
		width: 100%;
	}
	.page-ttl .mv::before {
		content: "";
		width: 100%;
		height: 100%;
		background: rgba(255,255,255,0.65);
		position: absolute;
		left: 0;
		top: 0;
	}
	.page-ttl h2 > span:nth-child(2).adjust {
		font-size: 3.2rem;
	}	
}



/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 3rem;
	font-family: var(--font-roboto);
	font-size: 4.0rem;
	letter-spacing: 0.12em;
	display: flex;
	align-items: center;
}
.heading-1.jp {
	font-size: 2.4rem;
}
.heading-1::before {
	content: "";
	width: 0.8rem;
	height: 5.6rem;
	background: #000;
	margin-right: 3rem;
	margin-top: 0.3rem;
}
.heading-2 {
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	.heading-1 {
		font-size: 3.6rem;
	}
	.heading-1::before {
		height: 4.8rem;
		margin-top: 0.35rem;
	}
}

/* img */
img.radius-1 {
	border-radius: 2rem;
}
img.radius-2 {
	border-radius: 0 2rem 2rem 0;
}
img.radius-3 {
	border-radius: 25rem 0 0 25rem;
}
img.radius-4 {
	border-radius: 0 25rem 25rem 0;
}
@media screen and (max-width: 768px) {
	img.radius-3,
	img.radius-4 {
		border-radius: 6rem;
	}
}

/* more */
.more {
	text-align: center;
	line-height: 1;
	display: block;
	color: #fff;
	background: #000;
	width: 24rem;
	padding: 1.8rem 0 2rem 0;
	border-radius: 10rem;
}
.more span {
	display: flex;
	align-items: center;
	justify-content: center;
}
.more span::after {
	content: "";
	width: 6rem;
	height: 2rem;
	background: url(../img/arrow-1.png) no-repeat center;
	background-size: 6rem auto;
	margin-left: 1.2rem;
	transition: all .3s;
}
.more:hover span::after {
	margin-left: 2.2rem;
}
@media screen and (max-width: 768px) {
	.more {
		margin: 0 auto;
		width: 100%;
	}
}

/* ttl */
.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 2.2rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
}
.ttl:after {
	border-bottom: solid 4px var(--color);
	bottom: -4px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}



/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: #fff;	
}
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu > li {
	font-size: 1.8rem;
	text-align: center;
	font-family: var(--font-roboto);
	font-weight: bold;
}
.gnav-sp-menu  > li > a {
	display: block;
	padding: 1.8rem 0;
	white-space: nowrap;
}
.gnav-sp-menu-service > a {
	padding: 1.8rem 0 1rem 0 !important;
}
.gnav-sp-menu-service ul li {
	font-size: 1.4rem;
	font-weight: normal;
	margin-bottom: 0.75rem;
}

/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: #000;
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	background-color: #fff;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}
/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span {
	background-color: #fff;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}



/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.site-width {
	max-width: 1440px;
	margin: 0 auto;
}
.contents-width {
	width: 80%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.contents-width {
		width: 100%;
		max-width: none;
		padding-left: 3rem;
		padding-right: 3rem;
	}
}



/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;	
}
#page-top a {
	background: #000;
	color: #fff;	
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.4rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {

}



/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;  
    -moz-transition: 0.3s ease-in-out;  
    -o-transition: 0.3s ease-in-out;  
    transition: 0.3s ease-in-out; 
}
a.line {
	text-decoration: underline;
}
a:hover.line {
	text-decoration: none;
}
a:hover {
    opacity: 0.5;
} 
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}



/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
/* list */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
@media screen and (max-width: 768px) {
	ul.list-group li:not(:last-child) {
		margin-bottom: 0.6rem;
	}
}

/* map */
.gmap iframe {
	width: 100%;
	height: 40rem;
}

/* margin */
.mb-10 { 
	margin-bottom: 1rem !important;
}
.mb-15 {
	margin-bottom: 1.5rem !important;
}
.mb-20 {
	margin-bottom: 2.0rem !important;
}
.mb-25 {
	margin-bottom: 2.5rem !important;
}
.mb-30 {
	margin-bottom: 3.0rem !important;
}
.mb-35 {
	margin-bottom: 3.5rem !important;
}
.mb-40 {
	margin-bottom: 4.0rem !important;
}
.mb-45 {
	margin-bottom: 4.5rem !important;
}
.mb-50 {
	margin-bottom: 5.0rem !important;
}
.mb-55 {
	margin-bottom: 5.5rem !important;
}
.mb-60 {
	margin-bottom: 6.0rem !important;
}
.mb-65 {
	margin-bottom: 6.5rem !important;
}
.mb-70 {
	margin-bottom: 7.0rem !important;
}
.mb-75 {
	margin-bottom: 7.5rem !important;
}
.mb-80 {
	margin-bottom: 8.0rem !important;
}
.mb-85 {
	margin-bottom: 8.5rem !important;
}
.mb-90 {
	margin-bottom: 9.0rem !important;
}
.mb-95 {
	margin-bottom: 9.5rem !important;
}
.mb-100	{
	margin-bottom: 10.0rem !important;
}



/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeInUp {
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeInDown {
    animation: fadeInDown 0.5s ease;
    animation-fill-mode: both
}
@keyframes imgSlide {
	0% {
		width: 100%;
	}
	100% {
		width: 0;
	}
}
.imgSlide {
	animation: imgSlide 1s ease;
	animation-fill-mode: forwards;
}
.mask.grey-1 {
	background: var(--bg-grey-1);
}
.mask.grey-2 {
	background: var(--bg-grey-2);
}

.fade,
.fadeDown {
	opacity: 0;
}
.mask {
	background: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	z-index: 99;
	display: block;	
}


.delay-1 {
	animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
}
.delay-2 {
	animation-delay: 0.35s;
	-moz-animation-delay: 0.35s;
	-webkit-animation-delay: 0.35s;
	-o-animation-delay: 0.35s;
}
.delay-3 {
	animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
}
.delay-4 {
	animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-webkit-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}
.delay-5 {
	animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
}