@charset "UTF-8";
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

header h1, .vision h2, .service h2, footer p {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}

html, body, h1, h2, h3, h4, ul, li, p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #257e7c;
  scroll-behavior: smooth;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E",  serif;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 26px;
}

a {
  display: block;
  color: #257e7c;
  text-decoration: none;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E",  serif;
}

ul {
  list-style: none;
}

img {
  vertical-align: bottom;
}
/*aはPC時非適用*/
a[href^="tel:"] {
    pointer-events: none;
}
/*aはSP時適用*/
@media screen and (max-width:767px){
a[href^="tel:"] {
    pointer-events: auto;
}
}

/*リセットはここまで*/
header {
  width: 100%;
  height: 80px;
  padding: 0 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 9999;
  transition: 0.2s;
}

@media (max-width: 767px) {
  header {
    padding: 0 10px;
  }
}

header h1 {
  background: url(../img/logo.svg) no-repeat center center/contain;
  width: 10%;
  line-height: 80px;
}

header h1 a {
	height: 100%;
}

@media (max-width: 767px) {
  header h1 {
    width: 100px;
  }
}

header .hum {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 767px) {
  header .hum {
    display: block;
    width: 80px;
    height: 80px;
  }
  header .hum span {
    display: block;
    width: 20px;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #257e7c;
    transition: 0.2s;
  }
  header .hum span::before {
    display: block;
    content: "";
    width: 20px;
    height: 3px;
    position: absolute;
    top: 15px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #257e7c;
    transition: 0.2s;
  }
  header .hum span::after {
    display: block;
    content: "";
    width: 20px;
    height: 3px;
    position: absolute;
    top: -15px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #257e7c;
    transition: 0.2s;
  }
  header .hum.close span {
    background: transparent;
  }
  header .hum.close span::before {
    transform: rotate(45deg);
    top: 0;
  }
  header .hum.close span::after {
    transform: rotate(-45deg);
    top: 0;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  header .hum.close + nav ul {
    display: block;
  }
}

header ul {
  display: flex;
  justify-content: end;
}

@media (max-width: 767px) {
  header ul {
    display: none;
    width: 100%;
    height: calc(100vh - 80px);
    position: absolute;
    top: 80px;
    left: 0;
    background: #257e7c;
    padding-top: 20px;
  }
}

header ul li a {
  line-height: 80px;
  padding: 0 20px;
  font-weight: bold;
  position: relative;
  transition: 0.2s;
}

header ul li a::after {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background: #257e7c;
  position: absolute;
  left: 15%;
  bottom: 20px;
  transition: 0.3s;
}

header ul li a:hover {
  opacity: 0.6;
}

header ul li a:hover::after {
  width: 70%;
}

@media (max-width: 767px) {
  header ul li a {
    color: #fff;
    text-align: center;
  }
}

header.scroll {
  background: rgba(255, 255, 255, 0.8);
}

.effect-fade {
	opacity: 0;
	transform: translate(0, 60px);
	transition: 1.3s;
}

.effect-fade.effect-scroll {
	opacity: 1;
	transform: translate(0, 0);
}

.top {
  width: 100%;
  height: 100vh;
  background: url(../img/top.jpg) no-repeat center center/cover;
}

@media (max-width: 767px) {
  .top {
	  background: url(../img/top-sp.jpg) no-repeat center center/cover;
	}
}

.top .container {
  position: relative;
}

.top p {
  font-size: 60px;
  color: #fff;
  position: absolute;
  top: 20vh;
  left: 20px;
}

@media (max-width: 767px) {
  .top p {
    font-size: 40px;
  }
}

.vision {
  padding-top: 150px;
  margin: 0 150px 150px;
    position: relative;
}

@media (max-width: 767px) {
  .vision {
	padding-top: 80px;
    margin: 0 0 100px;
  }
}

.vision:before {
    display: block;
    content: "";
    width: 500px;
    height: 300px;
    background: url(../img/vision_bg.svg)no-repeat center center/contain;
    position: absolute;
    top: 30px;
    left: -80px;
}

.vision:after {
    display: block;
    content: "";
    width: 500px;
    height: 300px;
    background: url(../img/vision_bg.svg)no-repeat center center/contain;
    position: absolute;
    bottom: -80px;
    right: -80px;
    transform: rotate(180deg);
}


@media (max-width: 960px) {
  .vision:before, .vision:after {
	display: none;
  }
}

.vision .container {
    max-width: 600px;
}

.vision p {
    margin-bottom: 1rem;
    line-height: 2;
}

.service ul {
  width: 100%;
  height: 100vh;
  display: flex;
}

@media (max-width: 767px) {
  .service ul {
    display: block;
  }
}

.service ul li {
  width: 50%;
  position: relative;
}

@media (max-width: 767px) {
  .service ul li {
    width: 100%;
    height: 50vh;
  }
}

.service ul li:first-child {
  background: rgba(0, 0, 0, 0.8) url("../img/reuse.jpg") no-repeat center center/cover;
}

.service ul li:nth-child(2) {
  background: rgba(0, 0, 0, 0.8) url("../img/moving.jpg") no-repeat center center/cover;
}

.service ul li::before {
  display: block;
  content: "";
  transition: 0.2s;
}

.service ul li:hover::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}

.service ul li a {
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
}

@media (max-width: 767px) {
  .service ul li a {
    height: 50%;
  }
}

.service ul li a h3 {
  margin: 40vh 0 50px;
  font-size: 34px;
  color: #fff;
}

@media (max-width: 767px) {
  .service ul li a h3 {
    margin: 50px 0 30px;
  }
}

.service ul li a h4 {
  color: #fff;
  margin-bottom: 40px;
  position: relative;
}

.service ul li a h4::after {
  display: block;
  content: "";
  width: 10%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 55px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.service ul li a p {
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background: #257e7c;
  transition: 0.2s;
  border-radius: 3px;
}

.btn::after {
  display: inline-block;
  content: "";
  width: 60px;
  height: 20px;
  background: url(../img/arrow.svg) no-repeat center bottom/contain;
  margin-left: 10px;
  transition: 0.3s;
}

.btn:hover {
  background: #CFA83D;
}

.btn:hover::after {
  width: 80px;
}

.about {
  width: 100%;
  height: 100vh;
  background: url("../img/warehouse.jpg") no-repeat center center/cover;
}

.about .container {
  position: relative;
}

.about .container h2 {
  padding-top: 40vh;
  margin-bottom: 50px;
  color: #fff;
}

.about .container p {
  color: #fff;
  filter: drop-shadow(2px 4px 6px black);
}

.about .container .btn {
  position: absolute;
  left: 20%;
  top: 110%;
}

.recruit {
  width: 100%;
  height: 100vh;
  background: url("../img/recruit1.jpg") no-repeat center center/cover;
}

.recruit .container {
  position: relative;
}

.recruit .container h2 {
  position: absolute;
  top: 40vh;
  right: 10px;
  color: #fff;
}

.recruit .container p {
  position: absolute;
  top: calc(40vh + 75px);
  right: 10px;
  color: #fff;
}

.recruit .container .btn {
  position: absolute;
  left: 70%;
  top: calc(40vh + 50px + 100px);
}

@media (max-width: 767px) {
  .recruit .container .btn {
    right: 10%;
    left: auto;
  }
}

.contact {
  width: 100%;
  height: 60vh;
  margin: 20px 0;
}

@media (max-width: 767px) {
  .contact {
    height: auto;
  }
}

.contact .contact-inner {
  display: flex;
}

@media (max-width: 767px) {
  .contact .contact-inner {
    display: block;
  }
}

.contact .contact-inner .contact-left {
  width: 50%;
}

@media (max-width: 767px) {
  .contact .contact-inner .contact-left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.contact .contact-inner .contact-left h2 {
  text-align: center;
  padding-top: 25vh;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .contact .contact-inner .contact-left h2 {
    padding-top: 30px;
  }
}

.contact .contact-inner .contact-left p {
  display: inline-block;
  padding-left: 20%;
}

@media (max-width: 960px) {
  .contact .contact-inner .contact-left p {
    padding-left: 10px;
  }
}

.contact .contact-inner .contact-right {
  width: 50%;
}

@media (max-width: 767px) {
  .contact .contact-inner .contact-right {
    width: 100%;
  }
}

.contact .contact-inner .contact-right .tel {
  height: 30vh;
  border: 15px double #257e7c;
  box-sizing: border-box;
  background: #fff;
  position: relative;
}

.contact .contact-inner .contact-right .tel p {
  text-align: center;
}

.contact .contact-inner .contact-right .tel p:first-child {
  font-size: 40px;
  font-weight: bold;
  padding-top: calc(15vh - 74px);
}

@media (max-width: 767px) {
  .contact .contact-inner .contact-right .tel p:first-child {
    font-size: 36px;
  }
}

.contact .contact-inner .contact-right .tel p:first-child::before {
  display: inline-block;
  content: "";
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: url(../img/tel.svg) no-repeat center center/contain;
}

@media (max-width: 767px) {
  .contact .contact-inner .contact-right .tel p:first-child::before {
    width: 36px;
    height: 36px;
  }
}

.contact .contact-inner .contact-right .mail {
  background: #257e7c;
  height: 30vh;
  position: relative;
  transition: 0.2s;
}

.contact .contact-inner .contact-right .mail::after {
  display: block;
  content: "";
  width: calc(100% - 10px);
  height: calc(30vh - 10px);
  border: 5px solid #fff;
  box-sizing: border-box;
  position: absolute;
  top: 5px;
  left: 5px;
}

.contact .contact-inner .contact-right .mail p {
  font-size: 20px;
  color: #fff;
  text-align: center;
  padding-top: calc(15vh - 21px);
}

.contact .contact-inner .contact-right .mail p::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url(../img/mail.svg) no-repeat center bottom/contain;
}

.contact .contact-inner .contact-right .mail p::after {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 30%;
  bottom: 80px;
  transition: 0.3s;
}

.contact .contact-inner .contact-right .mail:hover {
  opacity: 0.8;
}

.contact .contact-inner .contact-right .mail:hover > p::after {
  width: 40%;
}

footer {
  width: 100%;
  height: 200px;
  background: #257e7c;
  padding: 20px 0 0 50px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  footer {
    padding: 20px 0 0 10px;
  }
}

footer p {
  background: url(../img/logo-footer.svg) no-repeat center center/contain;
  width: 100px;
  height: 50px;
  margin-bottom: 20px;
}

footer ul li {
  color: #fff;
}

.current:after {
  display: block;
  content: "";
  width: 70%;
  height: 2px;
  background: #257e7c;
  position: absolute;
  left: 15%;
  bottom: 20px;
  transition: 0.3s;
}

/*#about*/
.about-top {
  width: 100%;
  height: 60vh;
  background: url("../img/warehouse.jpg") no-repeat center center/cover;
}

.about-top h2 {
  color: #fff;
  text-align: center;
  padding-top: 30vh;
  filter: drop-shadow(2px 4px 6px black);
}

.greeting .greeting-inner {
  display: flex;
}

@media (max-width: 767px) {
  .greeting .greeting-inner {
    display: block;
  }
}

.greeting .greeting-inner .greeting-left {
  width: 40%;
  height: auto;
  background: url("../img/representative.jpg") no-repeat center center/cover;
}

@media (max-width: 960px) {
  .greeting .greeting-inner .greeting-left {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .greeting .greeting-inner .greeting-left {
	display: none;
  }
}

.greeting .greeting-inner .greeting-right {
  width: 60%;
  background: #257e7c;
  padding-left: 10%;
}

@media (max-width: 960px) {
  .greeting .greeting-inner .greeting-right {
    width: 50%;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .greeting .greeting-inner .greeting-right {
    width: 100%;
  }
}

.greeting .greeting-inner .greeting-right h3, .greeting .greeting-inner .greeting-right p {
  color: #fff;
}

.greeting .greeting-inner .greeting-right h3 {
  padding-top: 100px;
  margin-bottom: 30px;
  width: 60%;
  text-align: center;
}

@media (max-width: 960px) {
  .greeting .greeting-inner .greeting-right h3 {
    width: 100%;
  }
}

.greeting .greeting-inner .greeting-right p {
  width: 60%;
}

@media (max-width: 960px) {
  .greeting .greeting-inner .greeting-right p {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .greeting .greeting-inner .greeting-right p {
    width: 80%;
  }
}

.greeting .greeting-inner .greeting-right p:nth-of-type(2) {
  padding: 20px 0 100px;
  text-align: right;
}

.overview {
  padding-top: 100px;
  margin-bottom: 100px;
}

.overview h3 {
  text-align: center;
  margin-bottom: 50px;
}

.overview table {
  width: 50%;
  margin: 0 auto 100px;
}

@media (max-width: 960px) {
  .overview table {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .overview table {
    width: 90%;
  }
}

.overview table tr {
  height: 3rem;
}

@media (max-width: 767px) {
  .overview table tr {
    height: auto;
  }
}

.overview table th {
  width: 30%;
  text-align: left;
  font-weight: bold;
}

@media (max-width: 767px) {
  .overview table th {
    width: 100%;
    display: block;
  }
}

.overview table td {
  width: 70%;
}

@media (max-width: 767px) {
  .overview table td {
    width: 100%;
    display: block;
    margin-bottom: 16px;
  }
}

.overview .map p:first-child {
  width: 60%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .overview .map p:first-child {
    width: 90%;
  }
}

.overview .map p:nth-child(2) {
  text-align: center;
  padding-top: 30px;
}

/*#recruit*/
.recruit-top {
  width: 100%;
  height: 60vh;
  background: url("../img/recruit2.jpg") no-repeat center center/cover;
  margin-bottom: 100px;
}

.recruit-top h2 {
  color: #fff;
  text-align: center;
  padding-top: 30vh;
}

.recruit-intro {
  text-align: center;
  margin-bottom: 100px;
}

.entrance h3 {
  text-align: center;
  margin-bottom: 50px;
}

.entrance table {
  width: 50%;
  margin: 0 auto 100px;
}

@media (max-width: 960px) {
  .entrance table {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .entrance table {
    width: 90%;
  }
}

.entrance table tr {
  height: 3rem;
}

@media (max-width: 767px) {
  .entrance table tr {
    height: auto;
  }
}

.entrance table th {
  width: 30%;
  text-align: left;
  font-weight: bold;
}

@media (max-width: 767px) {
  .entrance table th {
    width: 100%;
    display: block;
  }
}

.entrance table td {
  width: 70%;
}

.entrance table td a {
  display: inline-block;
  text-decoration: underline;
  padding: 3px;
}

@media (max-width: 767px) {
  .entrance table td {
    width: 100%;
    display: block;
    margin-bottom: 16px;
  }
}

/*#contact*/
#contact h2, #confirm h2, #submit h2 {
  text-align: center;
  margin: 180px 0 50px;
}

#contact .container p, #confirm .container p {
  text-align: center;
  margin-bottom: 50px;
}

#submit .container p {
	width: 60%;
	margin: 0 auto;
}

@media (max-width: 767px) {
	#contact .container p, #confirm .container p {
		text-align: left;
	}
	#submit .container p {
		width: 100%;
	}
}

#contact form, #confirm form, #submit form {
	margin-bottom: 150px;
}

#contact form table, #confirm form table, #submit form table {
  width: 60%;
  margin: 0 auto 50px;
}

@media (max-width: 767px) {
	#contact form table, #confirm form table, #submit form table {
		width: 90%;
	}
}

#contact form tr, #confirm form tr, #submit form tr {
  height: 3rem;
}

@media (max-width: 767px) {
  #contact form tr, #confirm form tr, #submit form tr {
    height: auto;
  }
}

#contact form th, #confirm form th, #submit form th {
  width: 30%;
  text-align: left;
  font-weight: bold;
}

@media (max-width: 767px) {
  #contact form th, #confirm form th, #submit form th {
    width: 100%;
    display: block;
  }
}

#contact form td, #confirm form td, #submit form td {
  width: 70%;
}

#contact form td input, #confirm form td input, #submit form td input {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

#contact form td textarea, #confirm form td textarea, #submit form td textarea {
  width: 100%;
}

@media (max-width: 767px) {
  #contact form td, #confirm form td, #submit form td {
    margin-bottom: 10px;
    width: 100%;
    display: block;
  }
}

.btn-wrapper {
	display: flex;
	justify-content: center;
}

.submit {
	display: block;
	width: 200px;
	height: 60px;
	background: #257e7c;
	border-radius: 3px;
  	-webkit-box-sizing: content-box;
  	-webkit-appearance: button;
  	appearance: button;
  	border: none;
  	box-sizing: border-box;
	color: #fff;
	transition: 0.2s;
	font-size: 18px;
	margin: 20px;
}

@media (max-width: 767px) {
  .btn-wrapper {
    display: block;
  }
	
	.submit {
		margin: 20px auto;
	}
}

.submit:hover {
	background: #CFA83D;
}

.to-top {
	padding-top: 50px;
	margin-bottom: 100px!important;
	text-align: center!important;
}

.to-top a {
	text-decoration: underline;
}