@charset "UTF-8";
/* Reset */
* {
  padding: 0;
  margin: 0;
  font-size: 100%;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------
* responsive
--------------------------*/
/*--------------------------
* 共通  フォント
--------------------------*/
/*--------------------------
* 共通
* header
--------------------------*/
.sub-header {
  position: fixed;
  height: 100px;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  margin: auto;
}
@media screen and (max-width: 520px) {
  .sub-header {
    height: 64px;
  }
}
.sub-header__logo {
  position: absolute;
  left: 5%;
  top: 0px;
}
@media screen and (max-width: 960px) {
  .sub-header__logo {
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 520px) {
  .sub-header__logo {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.sub-header__logo img {
  width: 300px;
  height: 100px;
}
@media screen and (max-width: 520px) {
  .sub-header__logo img {
    width: 150px;
    height: auto;
  }
}

.pc-gnavi {
  height: auto;
  background: none;
  position: absolute;
  width: auto;
  z-index: 1;
  right: 5%;
  left: auto;
  top: 42px;
}
@media screen and (max-width: 960px) {
  .pc-gnavi {
    display: none;
  }
}
.pc-gnavi__content {
  position: relative;
  top: unset;
  left: unset;
  -webkit-transform: none;
          transform: none;
  width: auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pc-gnavi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.pc-gnavi__list li {
  font-size: 1em;
  margin: 0 1em;
}

.tb-gnavi {
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: -100vw;
  width: 100%;
  visibility: visible;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.tb-gnavi__wrapper {
  position: absolute;
  width: 100%;
  top: 8%;
  left: 50%;
  -webkit-transform: translate(-50%, -5%);
          transform: translate(-50%, -5%);
}
.tb-gnavi__logo {
  margin: 0 auto;
  max-width: 500px;
}
@media screen and (max-width: 520px) {
  .tb-gnavi__logo {
    width: 60%;
  }
}
.tb-gnavi__list {
  max-width: 700px;
  width: 60%;
  margin: 0 auto;
  padding-top: 34px;
}
@media screen and (max-width: 520px) {
  .tb-gnavi__list {
    padding-top: 0px;
  }
}
.tb-gnavi__list li {
  margin-bottom: 24px;
}
@media screen and (max-width: 520px) {
  .tb-gnavi__list li {
    margin-bottom: 8px;
  }
}
.tb-gnavi__list li .en {
  display: block;
}
.tb-gnavi__list li .en a {
  font-size: 1.58em;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.tb-gnavi__list li .ja {
  display: block;
}
.tb-gnavi__list li .ja a {
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.tb-gnavi__copy {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.copyright {
  width: 100%;
  font-size: 0.5em;
  text-align: center;
  opacity: 0.6;
}

.hamburger {
  display: none;
}

.hero {
  margin-top: 100px;
}
@media screen and (max-width: 520px) {
  .hero {
    margin-top: 64px;
  }
}
.hero__bg {
  position: relative;
  height: 200px;
  background-image: url(../img/hero/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
@media screen and (max-width: 520px) {
  .hero__bg {
    height: 170px;
  }
}
.hero__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.hero__content {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  height: 200px;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 520px) {
  .hero__content {
    height: 170px;
  }
}
.hero__content p {
  margin-top: 40px;
  color: #fff;
}
@media screen and (max-width: 520px) {
  .hero__content p {
    margin-top: 24px;
  }
}
.hero__content h1 {
  margin-top: 8px;
  color: #fff;
  font-size: 4.5rem;
}
@media screen and (max-width: 520px) {
  .hero__content h1 {
    font-size: 4rem;
  }
}
.hero__content .breadcrumb {
  height: 40px;
  margin-top: 8px;
  word-break: keep-all;
  white-space: nowrap;
}
.hero__content .breadcrumb::-webkit-scrollbar {
  height: 5px;
}
.hero__content .breadcrumb::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .hero__content .breadcrumb {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
.hero__content .breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: bold;
}
.hero__content .breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
  color: #fff;
}
.hero__content .breadcrumb li:last-child:after {
  content: "";
}
.hero__content .breadcrumb li a {
  margin: 0 16px;
  color: #fff;
  text-decoration: none;
}

/*-------------------------
  * hamburger　nav
  --------------------------*/
.hamburger,
.main-hamburger {
  position: fixed;
  text-align: center;
  z-index: 9999;
}
@media screen and (max-width: 960px) {
  .hamburger,
.main-hamburger {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  .hamburger,
.main-hamburger {
    height: 65px;
  }
}
.hamburger:hover,
.main-hamburger:hover {
  cursor: pointer;
}
.hamburger--trigger,
.main-hamburger--trigger {
  width: 64px;
  height: 64px;
  position: relative;
}
.hamburger--trigger span,
.main-hamburger--trigger span {
  display: inline-block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  right: 13px;
  margin: 0 auto;
  width: 39px;
  height: 1.5px;
  background-color: #19A2DB;
  border-radius: 0;
}
.hamburger--trigger span:nth-of-type(1),
.main-hamburger--trigger span:nth-of-type(1) {
  top: 21px;
}
.hamburger--trigger span:nth-of-type(2),
.main-hamburger--trigger span:nth-of-type(2) {
  top: 32px;
}
.hamburger--trigger span:nth-of-type(3),
.main-hamburger--trigger span:nth-of-type(3) {
  top: 43px;
}

.hamburger {
  top: 0.7%;
  left: 3%;
}
@media screen and (max-width: 520px) {
  .hamburger {
    top: 0;
  }
}

.main-hamburger {
  top: 2%;
  right: 3%;
}
@media screen and (max-width: 960px) {
  .main-hamburger {
    left: 3%;
    right: auto;
  }
}

/*--------------------------
  * hamburger js
  --------------------------*/
.drawer--active .tb-gnavi,
.drawer--active .main-gnavi {
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 999;
}

.btn--active .hamburger--trigger span:nth-of-type(1),
.btn--active .main-hamburger--trigger span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
          transform: translateY(11px) rotate(45deg);
}
.btn--active .hamburger--trigger span:nth-of-type(2),
.btn--active .main-hamburger--trigger span:nth-of-type(2) {
  width: 0;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.btn--active .hamburger--trigger span:nth-of-type(3),
.btn--active .main-hamburger--trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(-45deg);
          transform: translateY(-11px) rotate(-45deg);
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.pc-gnavi__list a,
.tb-gnavi__list a,
.footer__nav a,
.breadcrumb a,
.service-menu__list a {
  position: relative;
}

.pc-gnavi__list a:before,
.tb-gnavi__list a:before,
.footer__nav a:before,
.breadcrumb a:before,
.service-menu__list a:before {
  background-color: #202A39;
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.breadcrumb a:before {
  background-color: #fff;
}

.pc-gnavi__list a:hover:before,
.tb-gnavi__list a:hover:before,
.footer__nav a:hover:before,
.breadcrumb a:hover:before,
.service-menu__list a:hover:before {
  width: 100%;
}

/*--------------------------
* セクション
--------------------------*/
.sec {
  padding: min(8vw, 80px) 0;
  margin: 0 auto;
}

.sec__wrapper {
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.sec__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
}

.sec__text {
  max-width: 650px;
  padding: 32px 0 0;
  margin: 0 auto;
}

.btn {
  text-align: center;
}
.btn a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}
.btn .btn-c {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding: 2rem 6rem;
  border-radius: 100vh;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn .btn-c::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn .btn-c:hover::before {
  right: 25px;
}

.btn--blue {
  color: #000;
  background-color: #CBDAF3;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn--blue:hover {
  color: #fff;
  background: #97B5E7;
}

.btn--pink {
  color: #000;
  background-color: #F2E0E5;
}
.btn--pink:hover {
  color: #fff;
  background: #E6C2CB;
}

.btn--green {
  color: #000;
  background-color: #C0EAF2;
}
.btn--green:hover {
  color: #fff;
  background: #81D6E6;
}

.btn--orange {
  color: #000;
  background-color: #FFDF88;
}
.btn--orange:hover {
  color: #fff;
  background: #FDD258;
}

/*
--------------------------------------
global-contact
--------------------------------------
*/
.global-contact {
  margin-top: min(8vw, 80px);
  background-color: #202A39;
}
@media screen and (max-width: 520px) {
  .global-contact {
    padding: 48px 0;
  }
}
.global-contact .content {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 520px) {
  .global-contact .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.global-contact .content .global-contact__text {
  width: 50%;
}
@media screen and (max-width: 520px) {
  .global-contact .content .global-contact__text {
    width: 80%;
  }
}
.global-contact .content .global-contact__text p {
  margin-top: 48px;
}
@media screen and (max-width: 350px) {
  .global-contact .content .global-contact__text p {
    margin-top: 32px;
  }
}
.global-contact .content .global-contact__btn {
  width: 50%;
}
@media screen and (max-width: 520px) {
  .global-contact .content .global-contact__btn {
    width: 100%;
    margin-top: 32px;
  }
}

/*
--------------------------------------
footer
--------------------------------------
*/
.footer {
  background-color: #E5E5E5;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.footer .totop {
  display: block;
  height: 80px;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  border-bottom: solid 1px #202A39;
}
.footer .totop::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: calc(50% - 5px);
  width: 15px;
  height: 15px;
  border-top: 1px solid #202A39;
  border-right: 1px solid #202A39;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer .totop:hover {
  background-color: rgb(241, 241, 241);
}
.footer .totop:hover::before {
  top: calc(50% - 10px);
}
.footer__wrapper {
  width: 90%;
  padding-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 960px;
}
@media screen and (max-width: 960px) {
  .footer__wrapper {
    display: block;
  }
}
.footer__company {
  width: 50%;
  padding-right: 2rem;
}
@media screen and (max-width: 960px) {
  .footer__company {
    width: 100%;
    padding-right: 0;
  }
}
.footer__company .logo {
  width: 300px;
  height: 100px;
}
@media screen and (max-width: 520px) {
  .footer__company .logo {
    width: 200px;
    height: 66.6px;
  }
}
.footer__company .address {
  margin-top: 24px;
  line-height: 30px;
  font-style: normal;
}
@media screen and (max-width: 520px) {
  .footer__company .address {
    margin-top: 0;
  }
}
.footer__nav {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .footer__nav {
    width: 100%;
    margin-top: 24px;
  }
}
.footer__nav--tb, .footer__nav--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .footer__nav--tb, .footer__nav--sp {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav--tb, .footer__nav--sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.footer__nav--tb .menu-list, .footer__nav--sp .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding-right: 5%;
  border-right: solid 1px #202A39;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list, .footer__nav--sp .menu-list {
    padding-right: 0;
    border-right: none;
  }
}
.footer__nav--tb .menu-list:nth-child(2), .footer__nav--sp .menu-list:nth-child(2) {
  border: none;
  padding-left: 5%;
  padding-right: 0;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list:nth-child(2), .footer__nav--sp .menu-list:nth-child(2) {
    border-left: none;
    padding-left: 0;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list .sp, .footer__nav--sp .menu-list .sp {
    display: none;
  }
}
.footer__nav--tb .menu-list li, .footer__nav--sp .menu-list li {
  margin-bottom: 24px;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list li, .footer__nav--sp .menu-list li {
    margin-bottom: 16px;
  }
}
.footer__nav--tb .menu-list li:last-child, .footer__nav--sp .menu-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb, .footer__nav--sp {
    border: none;
    margin-top: 30px;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav--tb {
    display: none;
  }
}
.footer__nav--sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .footer__nav--sp {
    display: block;
  }
}
.footer__nav .service-list--tb, .footer__nav .service-list--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.footer__nav .service-list--tb li, .footer__nav .service-list--sp li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}
.footer__nav .service-list--tb li:last-child, .footer__nav .service-list--sp li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .footer__nav .service-list--tb {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav .service-list--tb {
    display: none;
  }
}
.footer__nav .service-list--sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .footer__nav .service-list--sp {
    display: block;
  }
}

.copyright {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 50px 0 20px;
  font-size: 13px;
}

/*--------------------------
* 共通
--------------------------*/
.produce .content,
.consign .content,
.ses .content,
.consul .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .produce .content,
.consign .content,
.ses .content,
.consul .content {
    display: block;
  }
}
.produce .content__text,
.consign .content__text,
.ses .content__text,
.consul .content__text {
  padding-right: 24px;
  width: 60%;
}
@media screen and (max-width: 960px) {
  .produce .content__text,
.consign .content__text,
.ses .content__text,
.consul .content__text {
    padding: 0;
    width: 100%;
  }
}
.produce .content__text .title,
.consign .content__text .title,
.ses .content__text .title,
.consul .content__text .title {
  font-size: 3rem;
  padding: 2rem 1.5rem;
}
.produce .content__text p,
.consign .content__text p,
.ses .content__text p,
.consul .content__text p {
  margin: 48px 0px 48px 16px;
}
.produce .content__img,
.consign .content__img,
.ses .content__img,
.consul .content__img {
  margin-bottom: 40px;
  padding-left: 24px;
  width: 40%;
  height: 400px;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .produce .content__img,
.consign .content__img,
.ses .content__img,
.consul .content__img {
    padding: 0;
    width: 80%;
    margin: 56px auto 32px;
    padding: 0px;
  }
}
@media screen and (max-width: 520px) {
  .produce .content__img,
.consign .content__img,
.ses .content__img,
.consul .content__img {
    width: 100%;
    height: 250px;
  }
}

.consign .row,
.consul .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.consign .row .content__text,
.consul .row .content__text {
  padding-right: 0px;
  padding-left: 24px;
}
@media screen and (max-width: 960px) {
  .consign .row .content__text,
.consul .row .content__text {
    padding: 0;
  }
}
.consign .row .content__img,
.consul .row .content__img {
  padding-left: 0px;
  padding-right: 24px;
}
@media screen and (max-width: 960px) {
  .consign .row .content__img,
.consul .row .content__img {
    padding: 0;
  }
}

.produce .title {
  border-left: 16px solid #97B5E7;
  height: 100px;
}

.consign .title {
  border-left: 16px solid #F2E0E5;
}

.ses .title {
  border-left: 16px solid #81D6E6;
}

.consul .title {
  border-left: 16px solid #FDD258;
}

.produce .content__img img {
  -webkit-box-shadow: 3vw 3vw 0 #97B5E7;
          box-shadow: 3vw 3vw 0 #97B5E7;
}

.consign .content__img img {
  -webkit-box-shadow: -3vw 3vw 0 #F2E0E5;
          box-shadow: -3vw 3vw 0 #F2E0E5;
}

.ses .content__img img {
  -webkit-box-shadow: 3vw 3vw 0 #81D6E6;
          box-shadow: 3vw 3vw 0 #81D6E6;
}

.consul .content__img img {
  -webkit-box-shadow: -3vw 3vw 0 #FDD258;
          box-shadow: -3vw 3vw 0 #FDD258;
}/*# sourceMappingURL=service.css.map */