@charset "UTF-8";
/* CSS Document */
/* common parts ----------------------------*/
.common-ttl-en {
    display: inline;
	position: relative;
	padding: 0 40px;
	color: rgba(0, 0, 0, 0.4);
}
.common-ttl-en::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 1px;
	height: 100%;
	background-color: #fff;
	box-sizing: content-box;
	border-left: 1px solid #6c6c6c;
	border-right: 1px solid #6c6c6c;
}
.common-ttl-en::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 1px;
	height: 100%;
	background-color: #fff;
	box-sizing: content-box;
	border-left: 1px solid #6c6c6c;
	border-right: 1px solid #6c6c6c;
}
.common-txt-line {
	position: relative;
	writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}
.common-txt-line::after {
	content: "";
	display: block;
	width: 1px;
	margin-inline-start: 13px;
	flex: 1;
	background-color: #cdcdcd;
}
@media (max-width: 767px) {
    .common-txt-line {
        width: 30px;
        margin-right: 25px;
  }
}
@media (max-width: 480px) {
    .common-txt-line {
        margin-right: 20px;
        font-size: 80%;
    }
}

/* generic-list ------------------------------------------ */
.generic-list dl {
	display: flex;
	-moz-column-gap: 8px;
	     column-gap: 8px;
}
.generic-list dt {
	width: 200px;
	padding-left: 1.5%;
	padding-right: 1.5%;
	border-bottom: 1px solid #000;
}
.generic-list dd {
	flex: 1;
	padding-left: 5%;
	padding-right: 5%;
	border-bottom: 1px solid #ccc;
}
.generic-list a:not(.sp-tel):not(.no-tel) {
	color: #003399;
	text-decoration: underline;
	text-underline-offset: 0.15em;
	transition: opacity 0.28s ease;
}
@media (min-width: 767px) {
	.generic-list a:hover {
		opacity: 0.8;
	}
}
@media (max-width: 767px) {
	.generic-list dl {
		flex-direction: column;
		border-top: 1px solid #000;
	}
	.generic-list dl:last-child {
		border-bottom: 1px solid #000;
	}
	.generic-list dt,
	.generic-list dd {
		padding: 20px 15px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.generic-list dt {
		width: 100%;
		border-bottom: 1px solid #ccc;
	}
	.generic-list dd {
		border-bottom: none;
	}
}


/* works-list ----------------------------*/
.works-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: clamp(4.5rem, 2.8336rem + 3.47vw, 7rem);
}
.works-list .img-wrap {
	position: relative;
	z-index: 0;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
.works-list .img-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: #000;
	opacity: 0;
	transition: opacity 0.28s ease;
}
.works-list .img-wrap::after {
	content: "view more";
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-size: clamp(1.7rem, 1.6336rem + 0.14vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.075em;

	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.28s ease;
}
.works-list .img-wrap img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	transition: scale 0.28s ease;
}
.works-list .info-area {
	padding-left: 3.5%;
	padding-right: 3.5%;
}
.works-list .info-area p:last-child {
	margin-bottom: 0;
}
.works-list .info-area .f-noto {
    line-height: 1.4;
}
.works-list .category span:not(:last-child) {
	margin-right: 10px;
}
@media (min-width: 768px) {
	.works-list a:hover .img-wrap img {
		scale: 1.05;
	}
	.works-list a:hover .img-wrap::before {
		opacity: 0.5;
	}
	.works-list a:hover .img-wrap::after {
		opacity: 1;
	}
}
@media (max-width: 767px) {
	.works-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
    .works-list .info-area p:nth-child(3) {
        margin-bottom: 0;
        font-size: 1.5rem;
    }
    .works-list .info-area p:nth-child(4) {
       font-size: 1.5rem; 
    }
}
@media (max-width: 414px) {
	.works-list {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------
    pager
 -------------------------------------- */
.pager ul {
	display: flex;
	width: 100%;
	justify-content: flex-end;
	align-items: center;
}
.pager ul::before {
	content: "";
	display: inline-block;
	height: 1px;
	flex: 1;
	background-color: #cbcbcb;
}
.pager .nav-backlist {
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	column-gap: 50px;
}
.pager .nav-backlist::after {
	content: "";
	display: inline-block;
	height: 1px;
	flex: 1;
	background-color: #cbcbcb;
}



.pager ul .nav-pre a,
.pager ul .nav-next a,
.pager ul .nav-pre > span,
.pager ul .nav-next > span,
.pager .nav-backlist a {
	display: flex;
	width: fit-content;
	justify-content: flex-start;
	align-items: center;
	column-gap: 25px;
}
.pager ul .nav-current {
	margin: 0 45px;
}
.pager ul .nav-pre {
	margin-right: 10px;
}


.pager .nav-next i,
.pager .nav-pre i,
.pager .nav-backlist i {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	/* background: #999; */
	border: 1px solid #000;
	border-radius: 50%;
	overflow: hidden;
}
.pager .nav-pre > span,
.pager .nav-next > span {
	opacity: 0.1;
}
.pager .nav-pre i::before,
.pager .nav-backlist i::before,
.pager .nav-next i::before {
	content:"";
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 10px;
	height: 10px;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
}
.pager .nav-pre i:before,
.pager .nav-backlist i:before {
	transform: translate(-25%,-50%) rotate(-45deg);
}
.pager .nav-next i:before {
	transform: translate(-75%,-50%) rotate(135deg);
}
@media screen and (min-width: 768px) {
	.pager ul .nav-pre a:hover i:before,
	.pager .nav-backlist a:hover i:before {
		animation: move-left-anim .65s ease 0s 1 forwards;
	}
	.pager ul .nav-next a:hover i:before {
		animation: move-right-anim .65s ease 0s 1 forwards;
	}
}
@media screen and (max-width: 767px) {
	.pager .nav-pre a span,
	.pager .nav-next a span,
	.pager .nav-pre > span span,
	.pager .nav-next > span span {
		display: none;
	}
}
@media screen and (max-width: 480px) {
	.pager ul .nav-current {
		margin: 0 25px;
	}
}
@keyframes move-left-anim {
	0%{transform: translate(-25%,-50%) rotate(-45deg); opacity:1;}
	50%{transform: translate(-100%,-50%) rotate(-45deg); opacity:0;}
	50.1%{transform: translate(0%,-50%) rotate(-45deg); opacity:0;}
	100%{transform: translate(-25%,-50%) rotate(-45deg); opacity:1;}
}
@keyframes move-right-anim {
	0%{transform: translate(-75%,-50%) rotate(135deg); opacity:1;}
	50%{transform: translate(0%,-50%) rotate(135deg); opacity:0;}
	50.1%{transform: translate(-100%,-50%) rotate(135deg); opacity:0;}
	100%{transform: translate(-75%,-50%) rotate(135deg); opacity:1;}
}

/* recruit ----------------------------*/
.sec-recruit {
	position: relative;
	z-index: 0;
    overflow-x: hidden;
}
.sec-recruit .bg-top,
.sec-recruit .bg-bottom {
	position: absolute;
	left: 0;
	z-index: -1;
	width: 100%;
}
.sec-recruit .bg-top img {
    max-width: 1550px;
    width: 100%;
}
.sec-recruit .bg-bottom img {
    max-width: 1600px;
    width: 100%;
}
.sec-recruit .bg-top.js-bgtop::after,
.sec-recruit .bg-bottom.js-bgbottom::after{
    content:"";
    position: absolute;
    display: block;
    background: #fff;
    width: 100%;
    height: 100%;
    transition: all ease-out .4s;
}
.sec-recruit .bg-top.js-bgtop::after {
    left: 0;
    top: 0;
}
.sec-recruit .bg-bottom.js-bgbottom::after {
    right: 0;
    bottom: 0;
}
.sec-recruit .bg-top.js-bgtop.is-active::after {
    left: -101%;
}
.sec-recruit .bg-bottom.js-bgbottom.is-active::after {
    right: -101%;
}
.sec-recruit .js-contrecruit {
    transition: all ease 0.3s;
}
.sec-recruit .js-contrecruit.is-active {
    box-shadow: 0 15px 30px 0 rgba(10,10,50,0.15);
    transition: all ease 0.38s;
    transition-delay: 0.65s;
}

.sec-recruit .bg-top {
	top: 0;
}
.sec-recruit .bg-bottom {
	bottom: 0;
}
.sec-recruit .cont-area {
	max-width: 610px;
	width: 100%;
	background-color: #4c70b7;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}
.sec-recruit .txt-box {
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}
@media (max-width: 767px) {
    .sec-recruit .bg-top img,
    .sec-recruit .bg-bottom img {
        width: 120%;
    }
}
@media (max-width: 374px) {
	.sec-recruit .txt-message {
		letter-spacing: 0.05em;
	}
}

/* contact ----------------------------*/
.sec-contact .head-area {
	position: relative;
	font-size: min(13vw, 13.22rem);
	z-index: 0;
}

.sec-contact .head-area .txt-en {
	display: block;
	line-height: 0.68;
	color: #e1e7f3;
}

/* animation */
.js-contact.is-active .js-txten .letter:nth-of-type(1) { transition-delay: 0.1s;}
.js-contact.is-active .js-txten .letter:nth-of-type(2) { transition-delay: 0.15s;}
.js-contact.is-active .js-txten .letter:nth-of-type(3) { transition-delay: 0.2s;}
.js-contact.is-active .js-txten .letter:nth-of-type(4) { transition-delay: 0.25s;}
.js-contact.is-active .js-txten .letter:nth-of-type(5) { transition-delay: 0.3s;}
.js-contact.is-active .js-txten .letter:nth-of-type(6) { transition-delay: 0.35s;}
.js-contact.is-active .js-txten .letter:nth-of-type(7) { transition-delay: 0.4s;}
.js-contact.is-active .js-txten .letter:nth-of-type(8) { transition-delay: 0.45s;}
.js-contact.is-active .js-txten .letter:nth-of-type(9) { transition-delay: 0.5s;}
.js-contact.is-active .js-txten .letter:nth-of-type(10) { transition-delay: 0.525s;}
.js-contact.is-active .js-txten .letter:nth-of-type(11) { transition-delay: 0.55s;}

.js-contact.is-active .js-txten {
	visibility: visible;
    opacity: 1;
}
.js-contact.is-active .js-txten .letter {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
}

.js-contact .js-txten .letter {
  	display: inline-block;
	transition: -webkit-transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
	transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
	transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1), -webkit-transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
	-webkit-transform: translate(0, 105%);
			transform: translate(0, 105%);
	position: relative;
	z-index: 1;
	visibility: hidden;
	opacity: 0;  
}
.js-contact .head-area .txt-ja {
 	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
    visibility: hidden;
	opacity: 0;
    transition: all ease-in 0.3s;
    transform: translate(-50%, -50%);
}
.js-contact.is-active .head-area .txt-ja {
    visibility: visible;
    opacity: 1;
    transition-delay: 0.85s;
	transform: translate(-50%, -60%);
}


/* sec-contact cont-area */
.sec-contact .cont-area {
	background-color: #e1e7f3;
    position: relative;
    z-index: 0;
}
.sec-contact .cont-area .info-box {
	justify-content: center;
	align-items: center;
	-moz-column-gap: 50px;
	     column-gap: 50px;
	row-gap: 10px;
}
.sec-contact .cont-area .info-indent {
	padding-left: 2.5em;
	text-indent: -2.5em;
}
.sec-contact .btn-inner {
	justify-content: space-between;
	align-items: center;
	-moz-column-gap: 20px;
	     column-gap: 20px;
	padding-left: 50px;
	padding-right: 50px;
	background-color: #003399;
}

.sec-contact .btn-inner .arrow {
	position: relative;
	display: block;
	width: 130px;
	height: 1px;
	background-color: #fff;
    transition: all ease 0.25s;
}
.sec-contact .btn-inner .arrow::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 25px;
	height: 1px;
	background-color: #fff;
	transform: rotate(38deg);
	transform-origin: right;
}

.sec-contact .btn-area a {
    position: relative;
        overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    transition: all ease 0.25s;
}

.sec-contact .btn-area a:hover,
.sec-contact .btn-area a:active {
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
}



.sec-contact .btn-area a .btn-inner .txt {
    z-index: 3;
}


@keyframes skewanime {
  100% {
    left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
  }
}
@media (min-width: 768px) {
    .sec-contact .btn-area a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -130%;
      background:rgba(0,0,0,0.15);
      width:120%;
      height: 100%;
      transform: skewX(-25deg);  
    }
    .sec-contact .btn-area a:hover::before,
    .sec-contact .btn-area a:active::before {
        animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
    }
    .sec-contact a:hover .btn-inner .arrow,
    .sec-contact a:active .btn-inner .arrow {
        width: 90px;
    }
	.sec-contact .btn-area a .btn-inner {
		/*transition: background-color 0.28s ease;*/
	}
    
	.sec-contact .btn-area a:hover .btn-inner {
		/*background-color: #002266;*/
	}
    
}
@media (max-width: 640px) {
    .sec-contact .btn-inner {
        padding-left: 6%;
        padding-right: 6%;
    }
    .sec-contact .btn-inner .arrow {
        width: 100px;
    }
}
@media (max-width: 480px) {
	.sec-contact .btn-inner {
		flex-direction: column;
		row-gap: 35px;
		padding-left: 0;
		padding-right: 0;
	}
    .sec-contact .btn-inner .arrow::before {
        width: 20px;
    }
	.sec-contact .btn-inner .txt {
		text-align: center;
	}
}

/* footer ----------------------------*/
.site-footer {
	position: fixed;
	z-index: -1;
	bottom: 0;
	width: 100%;
}
.site-footer .bg-img {
	position: absolute;
	bottom: -5px;
	left: 0;
	display: block;
	width: 100%;
	z-index: -1;
	padding-left: 35px;
	padding-right: 100px;
}
.site-footer .bg-img img {
	width: 100%;
	opacity: 0.15;
}
.site-footer .f-outer {
	display: flex;
}
.site-footer .left-txt {
	display: flex;
	align-items: end;
	width: 60px;
	text-align: start;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
}
.site-footer .f-inner {
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: space-between;
}
.site-footer .head-area {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	-moz-column-gap: 45px;
	     column-gap: 45px;
}
.site-footer .f-logo {
	width: 140px;
}
.site-footer .head-area .f-logo img {
	width: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.site-footer .head-area .f-cname {
	line-height: 1;
}

.site-footer .address a {
	position: relative;
	top: 0;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	display: block;
	padding-left: 1em;
}
.site-footer .address a::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	display: block;
	width: 0.8em;
	height: 1em;
	background: url(../img/common/icon_map.svg) no-repeat center / contain;
}
.site-footer .f-nav .nav-list {
	display: grid;
	grid-template-rows: repeat(4, 1fr);
	grid-auto-flow: column;
	row-gap: 15px;
	justify-content: space-between;
}

.site-footer .link-txt a {
	position: relative;
	z-index: 0;
	padding-left: 17px;
}
.site-footer .link-txt a::before {
	content: "";
	position: absolute;
	top: 49%;
	left: 0;
	z-index: 0;
	display: block;
	width: 10px;
	height: 1px;
	background-color: currentColor;
}
.site-footer .f-copyright {
	color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
	.site-footer .f-wrap {
		padding-right: 30px;
	}
	.site-footer a.hover-blue:hover {
		color: #003399;
	}
}
@media (min-width: 1051px) {
	.site-footer .f-cont {
		display: grid;
		grid-template-columns: 1fr auto;
		justify-content: space-between;
	}
	.site-footer .f-nav  {
		width: 330px;
		grid-column: 2;
		grid-row: 1 / 3;
	}
}
@media (max-width: 1050px) {
	.site-footer .f-inner {
		row-gap: clamp(2.5rem, 2.1664rem + 0.69vw, 3rem);
	}
	.site-footer .f-nav {
		width: 100%;
		max-width: 330px;
	}
	.site-footer .f-info {
		margin-bottom: 25px;
	}
}
@media (max-width: 640px) {
	.site-footer .head-area {
		row-gap: 10px;
	}
}
@media (max-width: 480px) {
	.site-footer {
		position: static;
		padding-bottom: 50px;
	}
	.site-footer .left-txt {
		width: 50px;
	}
	.site-footer .left-txt .en-txt {
		font-size: 1.3rem;
	}
	.site-footer .link-txt.privacy {
		font-size: 1.2rem;
	}
	.site-footer .bg-img {
		padding: 0 10px;
	}
}


/* toTop ----------------------------*/
#toTop {
	position: fixed;
	width: 65px;
	height: 65px;
	bottom: 0;
	right: 0;
	color: #fff;
	cursor: pointer;
	display: none;
	z-index: 999;
	text-align: center;
	background: #323232;
	animation: toTop-animation 0.3s ease forwards;
	animation-fill-mode: both;
}
#toTop > span {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -7px;
	transform: translate(-50%, -50%);
	width: 14px;
	height: 14px;
	border: solid #fff;
	transform: rotate(-45deg);
	border-width: 1px 1px 0 0;
	transition: all 0.3s ease 0s;
}
#toTop:hover > span {
	top: 30%;
}
@media screen and (max-width: 480px) {
	#toTop {
		width: 50px;
		height: 50px;
	}
	#toTop > i {
		line-height: 50px;
		font-size: 2.0rem;
	}
}

@keyframes toTop-animation {
	from{
		opacity: 0;
		transform: translateY(101%);
		-webkit-transform: translateY(101%);
	}
	to{
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}
}

/* 共通アニメーション
========================= */
/* fade in ----------------------------------------*/
.fadein {
	opacity : 0.0;
	transform : translate(0, 50px);
	transition : 800ms;
}
	.fadein.activein {
	opacity : 1;
	transform : translate(0, 0px);
}

/* show order ----------------------------------------*/
#showOrder01 .order-box {
	transform: translateX(-10%);
	opacity: 0;
	transition : 100ms;
}
