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

ul,
ol {
  list-style: none;
}

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

img {
  border: none;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/*--------------------------
* responsive
--------------------------*/
/*--------------------------
* 共通  フォント
--------------------------*/
/*--------------------------
* header
--------------------------*/
/*--------------------------
* hero
--------------------------*/
.hero {
  position: relative;
}
.hero__bg {
  position: relative;
  height: 300px;
  background-image: url(../img/header/sub/main.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .page_name {
  position: absolute;
  bottom: 24px;
  left: 10%;
  z-index: 998;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .hero .page_name {
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%);
  }
}
.hero .page_name h1 {
  text-align: center;
  font-size: 3.2em;
  font-weight: 800;
  border-bottom: solid 1px #fff;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .hero .page_name h1 {
    font-size: 2.4em;
  }
}
.hero .page_name .breadcrumb {
  height: 40px;
  margin-top: 8px;
  word-break: keep-all;
  white-space: nowrap;
}
.hero .page_name .breadcrumb::-webkit-scrollbar {
  height: 5px;
}
.hero .page_name .breadcrumb::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .hero .page_name .breadcrumb {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
.hero .page_name .breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: bold;
}
.hero .page_name .breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
  color: #fff;
}
.hero .page_name .breadcrumb li:last-child:after {
  content: "";
}
.hero .page_name .breadcrumb li a {
  margin: 0 16px;
  color: #fff;
  text-decoration: none;
}
.hero .page_name-en {
  position: absolute;
  bottom: 0px;
  right: 10%;
  z-index: 998;
  font-size: 5rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .hero .page_name-en {
    display: none;
  }
}

/*----------------------------
*  hamburger メニュー
*----------------------------*/
#js-hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  #js-hamburger {
    display: block;
  }
}

.hamburger {
  width: 60px;
  height: 60px;
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -11px;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  -webkit-transition: all 0.6s cubic-bezier(1, 0, 0, 1);
  transition: all 0.6s cubic-bezier(1, 0, 0, 1);
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
          transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.hamburger span:nth-child(1) {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}
.hamburger span:nth-child(3) {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}

.active .hamburger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #000;
}
.active .hamburger span:nth-child(2) {
  width: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.active .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #000;
}
.active .drawer {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 9999;
}

/*----------------------------
*  drawer
*----------------------------*/
.drawer {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer {
    display: block;
    position: fixed;
    z-index: -10;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
    will-change: auto;
    display: block;
    overflow-y: scroll;
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.4s 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);
  }
  .drawer__container {
    height: 100%;
    padding-top: 20px;
    max-width: 720px;
    position: relative;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
  .drawer__wrapper {
    z-index: 2;
    position: relative;
    padding-right: 5px;
    padding-left: 5px;
  }
  .drawer__logo {
    width: 100px;
    margin-bottom: 1rem;
  }
  .drawer__nav--link {
    display: inline-block;
    overflow: hidden;
    color: #554c49;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-decoration: none;
  }
  .drawer .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .drawer .row .sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .drawer .drawer__nav {
    margin: 0;
    padding: 0;
    color: #554c49;
    list-style: none;
  }
  .drawer .drawer__nav.slide-in span {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .drawer .drawer__nav li {
    margin-bottom: 13px;
    padding: 0.4rem 0;
  }
  .drawer .drawer__nav li a {
    display: inline-block;
    overflow: hidden;
    color: #554c49;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-decoration: none;
  }
  .drawer .drawer__nav li span {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    line-height: 1.1;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
  }
  .drawer .drawer__nav li span .en {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .drawer .drawer__nav li span .ja {
    margin-top: 4px;
    font-size: 0.75rem;
  }
}
.drawer .drawer__copyright {
  padding: 40px 0;
  font-size: 0.6875rem;
  text-align: center;
}

/*----------------------------
*  header
*----------------------------*/
.header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header-bg-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: #fcf9f4;
  content: "";
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  max-width: 200px;
  margin-right: 40px;
  margin-bottom: 0;
  padding: 15px 0 15px 25px;
  font-size: 1rem;
  line-height: 100%;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header__logo--link {
  position: relative;
}
.header__logo--link .logo-big {
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header__logo--link .logo-small {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.1;
          transition-delay: 0.1;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*----------------------------
*  globalNav
*----------------------------*/
.global__nav {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .global__nav {
    display: none;
  }
}
.global__nav--list {
  margin-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.global__nav--list li a {
  display: block;
  padding: 0 30px;
  color: #000;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: wrap;
  padding: 1.2rem;
}

.common .hamburger span {
  background: #000;
}
.common .global__nav--list a {
  color: #554c49;
}
.common .global__nav--list a:before {
  background: #000;
}
.common .header-bg-el {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.common .header__logo--link {
  display: block;
  height: 48px;
}
.common .header__logo--link .logo-big {
  width: 48px;
  height: 48px;
  opacity: 0;
}
.common .header__logo--link .logo-small {
  opacity: 1;
}

/*--------------------------
* 共通
--------------------------*/
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;
  word-wrap: break-word;
  scrollbar-width: none;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.sec {
  padding: min(8vw, 80px) 0;
  margin: 0 auto;
}
.sec .sec__wrapper {
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.sec__title {
  text-align: center;
}
.sec__title h2 {
  display: inline-block;
  font-size: 3.2rem;
  margin-bottom: 24px;
  padding: 0 30px 4px;
  border-bottom: solid 2px #707070;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .sec__title h2 {
    font-size: 2.4rem;
  }
}

.globalcontact {
  text-align: center;
}
.globalcontact .globalcontact-content {
  background-color: #E4E4E4;
  border-radius: 50px;
  padding: 42px;
}
@media screen and (max-width: 768px) {
  .globalcontact .globalcontact-content {
    padding: 32px;
  }
}
@media screen and (max-width: 375px) {
  .globalcontact .globalcontact-content {
    padding: 32px 16px;
  }
}
.globalcontact .globalcontact-content .globalcontact-text {
  margin-bottom: 32px;
}
@media screen and (max-width: 375px) {
  .globalcontact .globalcontact-content .globalcontact-text {
    margin-bottom: 16px;
  }
}

.sec__btn {
  text-align: center;
}

.btn {
  display: inline-block;
  cursor: pointer;
  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;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(rgb(247, 93, 139)), to(rgb(254, 220, 64)));
  background: linear-gradient(90deg, rgb(247, 93, 139), rgb(254, 220, 64));
}
.btn::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn:hover::before {
  right: 25px;
}

footer {
  background: #afa301;
}
footer .sec__wrapper {
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
footer .sec__wrapper .footer-nav {
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  footer .sec__wrapper .footer-nav {
    padding: 1rem 2rem;
  }
}
footer .sec__wrapper .footer-nav .pc-gnavi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 3% 0;
}
footer .sec__wrapper .footer-nav .pc-gnavi__list li span a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #554c49;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: wrap;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  footer .sec__wrapper .footer-nav .pc-gnavi__list li span a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  footer .sec__wrapper .footer-nav .pc-gnavi__list li span a {
    font-size: 1rem;
  }
}
footer .copyright {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 50px 0 20px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 0.3rem;
    margin: 0 0 20px;
  }
}

/*--------------------------
* about
--------------------------*/
.about__text {
  max-width: 650px;
  width: 90%;
  margin: 0 auto;
}

/*--------------------------
* company-info
--------------------------*/
.company-info table {
  width: 100%;
  max-width: 760px;
  margin: 32px auto 0;
  line-height: 2em;
}
.company-info table tr th {
  border-bottom: solid 1px #afa301;
  padding: 30px;
  width: 35%;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .company-info table tr th {
    width: 100%;
    display: block;
    border: none;
    padding: 24px 0 0 2rem;
    text-align: left;
  }
}
.company-info table tr td {
  border-bottom: solid 1px #afa301;
  width: 65%;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .company-info table tr td {
    width: 100%;
    display: block;
    padding: 0 0 16px 4rem;
  }
}
.company-info table tr:last-of-type th {
  border-bottom: none;
}
.company-info table tr:last-of-type td {
  border-bottom: none;
}

/*--------------------------
* service
--------------------------*/
.service__list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .service__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service__list li {
  border-radius: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  border: solid 1px #FEA62E;
  z-index: 0;
}
.service__list li:not(:first-child) {
  line-height: 56px;
}
.service__list li h3 {
  height: 91px;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
  padding: 8% 5% 0;
  border-bottom: solid 1px #FEA62E;
  color: #FEA62E;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 16px;
}
.service__list li h3 span {
  font-size: 2rem;
  padding-right: 1.6rem;
}
@media screen and (max-width: 768px) {
  .service__list li h3 {
    padding: 5% 5% 3%;
  }
}
.service__list li p {
  padding: 3% 5% 8%;
  line-height: normal;
}

/*--------------------------
* access
--------------------------*/
.access table {
  width: 100%;
  margin: 32px 0 auto;
}
.access table tr th {
  padding: 30px;
  width: 40%;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .access table tr th {
    display: block;
    width: 100%;
    padding: 24px 0 0 2rem;
    text-align: left;
  }
}
.access table tr td {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .access table tr td {
    display: block;
    width: 100%;
    padding: 0 0 16px 4rem;
  }
}
.access iframe {
  width: 100%;
  display: block;
  margin: 32px auto 0;
}

.product-img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 60px;
}
.product-img img {
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-text {
  padding: 3rem;
}
.product-text .product-title {
  font-size: 3rem;
}
.product-text h3 {
  font-size: 2rem;
}/*# sourceMappingURL=company.css.map */