@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&family=Roboto:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bellefair&display=swap");
.side-navi {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.side-navi li {
  display: inline-block;
  list-style: none;
  font-size: 17px;
  margin: 0 30px;
}
.side-navi li a {
  color: rgba(73, 73, 73, 0.5);
  position: relative;
  text-decoration: none;
}
.side-navi li a:before, .side-navi li a:after {
  position: absolute;
  transition: all 0.35s ease;
}
.side-navi li a:before {
  bottom: -8px;
  display: block;
  height: 3px;
  width: 0%;
  content: "";
  background-color: #2980b9;
}
.side-navi li a:after {
  left: 0;
  position: absolute;
  content: attr(data-hover);
  color: #000;
  white-space: nowrap;
  max-width: 0%;
  overflow: hidden;
}
.side-navi li a:hover:before {
  opacity: 1;
  width: 100%;
}
.side-navi li a:hover:after {
  max-width: 100%;
}
.side-navi li .company:before {
  opacity: 1;
  width: 100%;
}
.side-navi li .company:after {
  max-width: 100%;
}

.bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 190px;
  color: #fff;
  z-index: -1;
}

.bg.-visible:before {
  transform: translate(0, 0);
}

.bg:before {
  background: url("../img/top-gradieition.png");
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(0, -100%);
  overflow: hidden;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  content: "";
}

/* テキストのスタイル */
.title {
  display: block;
  color: #fff;
  text-align: center;
}
.title span {
  display: block;
  opacity: 0;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s, opacity linear 0.7s;
  transform: translate(0, 0);
  font-size: 48px;
  transition-delay: 0.25s;
}

.bg.-visible .title span {
  opacity: 0.5;
  transform: translate(10, 0);
}

.main .box {
  transition: 512ms;
  opacity: 0;
}
.main .fadein-bottom {
  animation-name: fadeup;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main .wrapper {
  width: 1100px;
  margin: 0 auto;
}
.main .sub-title {
  color: #cbcbcb;
  width: -moz-fit-content;
  width: fit-content;
  margin: 170px 0 -40px auto;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.main .sub-title h1 {
  font-size: 140px;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.main .sub-title h1 span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.main .sub-title h1 span:nth-child(2) {
  transition-delay: 0.06s;
}
.main .sub-title h1 span:nth-child(3) {
  transition-delay: 0.12s;
}
.main .sub-title h1 span:nth-child(4) {
  transition-delay: 0.18s;
}
.main .sub-title h1 span:nth-child(5) {
  transition-delay: 0.24s;
}
.main .sub-title h1 span:nth-child(6) {
  transition-delay: 0.3s;
}
.main .sub-title h1 span:nth-child(7) {
  transition-delay: 0.36s;
}
.main .sub-title h1 span:nth-child(8) {
  transition-delay: 0.42s;
}
.main .sub-title h1.-visible span {
  transform: translate(0, 0);
}
.main .office h1 {
  font-size: 25px;
  margin-bottom: 16px;
  font-weight: 400;
}
.main .office h1::before {
  content: "";
  display: inline-block;
  background-color: #000;
  width: 2px;
  height: 26px;
  margin: 0 10px -4px 0;
}
.main .office p {
  font-size: 18px;
  line-height: 2em;
  margin-bottom: 0;
}
.main .office span {
  font-size: 16px;
}
.main .office .img-box {
  width: 500px;
  overflow: hidden;
}
.main .office .img-box img {
  width: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .office .img-box img:hover {
  cursor: pointer;
  transform: scale(1.2, 1.2);
  transition: all 0.6s;
}
.main .office .img-box span {
  display: none;
}
.main .office .first, .main .office .second, .main .office .third {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 230px;
}
.main .office .first .text, .main .office .second .text, .main .office .third .text {
  width: 500px;
  margin-bottom: -13px;
}
.main .office .first .text .mb-22, .main .office .second .text .mb-22, .main .office .third .text .mb-22 {
  margin-bottom: 22px;
}
.main .office .first .text .fs-17, .main .office .second .text .fs-17, .main .office .third .text .fs-17 {
  font-size: 17px;
}
.main .office .first {
  margin-top: 170px;
}
.main .office .second {
  white-space: nowrap;
}
.main .office .second p {
  font-size: 16px;
}
.main .company, .main .supplier {
  position: relative;
}
.main .company .text, .main .supplier .text {
  background-color: #edecfc;
  height: 700px;
  width: 560px;
}
.main .company .text .text-inner, .main .supplier .text .text-inner {
  margin: 0 auto;
  width: 430px;
  position: relative;
}
.main .company .text h1, .main .supplier .text h1 {
  font-family: "Bellefair", serif;
}
.main .company, .main .supplier, .main .access {
  z-index: 1;
}
.main .company h1, .main .supplier h1, .main .access h1 {
  font-family: "Cormorant Garamond", serif;
  font-family: "Roboto", sans-serif;
  font-size: 56px;
  padding-top: 40px;
}
.main .company h2, .main .supplier h2, .main .access h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
.main .company h2:after, .main .supplier h2:after, .main .access h2:after {
  content: "";
  background-color: #000;
  width: 100px;
  height: 1px;
  display: block;
  margin-top: 24px;
}
.main .company .text ul {
  position: absolute;
  display: flex;
  top: 116px;
  left: 100px;
}
.main .company .text ul li {
  list-style: none;
  text-align: center;
  font-size: 14px;
  width: 50px;
  border-radius: 10px;
  background-color: #414141;
  margin: 0 20px;
  transition: all 0.4s;
}
.main .company .text ul li:hover {
  background-color: #fff;
}
.main .company .text ul li a {
  text-decoration: none;
  color: #fff;
  display: block;
}
.main .company .text ul li a:hover {
  color: #414141;
}
.main .company .text tbody {
  font-size: 20px;
}
.main .company .text tbody tr td {
  padding-bottom: 20px;
}
.main .company .text tbody tr td:nth-child(2n+1) {
  width: 120px;
}
.main .company .image {
  width: 570px;
  height: 380px;
  position: absolute;
  top: 220px;
  left: 500px;
}
.main .company .image img {
  width: inherit;
  height: inherit;
}
.main .supplier .text {
  margin-left: auto;
}
.main .supplier table {
  margin-top: 60px;
}
.main .supplier tr:nth-child(n+2) {
  width: 440px;
  display: flex;
  justify-content: space-between;
  margin-left: 30px;
}
.main .supplier tr:nth-child(2) td {
  margin-top: 30px;
}
.main .supplier tr th {
  font-size: 20px;
}
.main .supplier tr th::before {
  content: "";
  display: inline-block;
  background-color: #000;
  width: 2px;
  height: 32px;
  margin: 0 10px -4px 0;
}
.main .supplier tr td {
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px 0;
}
.main .supplier .image {
  width: 570px;
  height: 380px;
  position: absolute;
  top: 160px;
  left: 0px;
}
.main .supplier .image img {
  width: inherit;
  height: inherit;
}
.main .sub-title.left {
  margin-left: 0;
}
.main .access {
  height: 644px;
  width: 100%;
  background-color: #edecfc;
  font-size: 22px;
}
.main .access .access-inner {
  width: 1160px;
  padding-top: 50px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main .access .access-inner p {
  margin: 60px 0 80px;
  font-size: 18px;
}
.main .access .access-inner ul {
  padding-left: 0;
}
.main .access .access-inner ul li {
  margin-bottom: 30px;
  font-size: 18px;
}
.main .access .access-inner iframe {
  width: 600px;
  height: 410px;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.main .access .access-inner h1 {
  font-family: "Bellefair", serif;
}

@media screen and (max-width: 1100px) {
  .main .bg {
    height: 100px;
  }
  .main .title span {
    font-size: 35px;
  }
  .main .title h1 {
    font-size: 20px;
  }
  .main .wrapper {
    width: 340px;
  }
  .main .sub-title {
    margin: 40px 0 0 0;
    letter-spacing: 0;
  }
  .main .sub-title h1 {
    font-size: 60px;
  }
  .main .office h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .main .office p {
    font-size: 18px;
    line-height: 1.4em;
    padding: 20px 0;
  }
  .main .office span {
    font-size: 16px;
  }
  .main .office .img-box {
    width: 100%;
    position: relative;
  }
  .main .office .img-box a::after {
    content: "click here →";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 108px;
    padding-left: 6px;
    color: #000;
    background-color: #fff;
  }
  .main .office .img-box img {
    width: 340px;
  }
  .main .office .first, .main .office .second, .main .office .third {
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
  }
  .main .office .first .text, .main .office .second .text, .main .office .third .text {
    width: 100%;
    background-color: #edecfc;
  }
  .main .office .first .text .pc-br, .main .office .second .text .pc-br, .main .office .third .text .pc-br {
    display: none;
  }
  .main .office .first {
    margin-top: 20px;
  }
  .main .office .first p {
    margin: auto 20px;
  }
  .main .office .second {
    white-space: normal;
  }
  .main .office .second .text {
    order: 2;
  }
  .main .office .second p {
    padding: 0px 20px;
    margin: 0px;
  }
  .main .office .second .top {
    padding-top: 20px;
  }
  .main .office .second .bottom {
    padding-bottom: 20px;
  }
  .main .office .second .image {
    order: 1;
  }
  .main .office .third p {
    padding: 0px 20px;
    margin: 0px;
  }
  .main .office .third .top {
    padding-top: 20px;
  }
  .main .office .third .bottom {
    padding-bottom: 20px;
  }
  .main .company, .main .supplier {
    display: flex;
    flex-direction: column;
  }
  .main .company .text, .main .supplier .text {
    order: 2;
    height: 650px;
    width: 100%;
  }
  .main .company .text .text-inner, .main .supplier .text .text-inner {
    width: 90%;
  }
  .main .company .text .text-inner ul, .main .supplier .text .text-inner ul {
    margin-top: 4px;
  }
  .main .company .text .text-inner ul .link-botton a, .main .supplier .text .text-inner ul .link-botton a {
    font-size: 7px;
    padding: 3px 5px;
  }
  .main .company .text .text-inner table .address-nowrap, .main .supplier .text .text-inner table .address-nowrap {
    white-space: nowrap;
  }
  .main .company .image, .main .supplier .image {
    order: 1;
  }
  .main .company h1, .main .supplier h1, .main .access h1 {
    font-size: 30px;
    padding-top: 20px;
  }
  .main .company h2, .main .supplier h2, .main .access h2 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .main .company h2:after, .main .supplier h2:after, .main .access h2:after {
    width: 60px;
    margin-top: 14px;
  }
  .main .company .text {
    height: 620px;
  }
  .main .company .text ul {
    top: 61px;
    left: 60px;
  }
  .main .company .text ul li {
    font-size: 14px;
    width: 36px;
    margin: 0 14px;
  }
  .main .company .text tbody {
    font-size: 17px;
  }
  .main .company .text tbody tr td {
    padding-bottom: 26px;
  }
  .main .company .text tbody tr td:nth-child(2n+1) {
    width: 90px;
  }
  .main .company .text tbody tr .bank {
    vertical-align: text-top;
  }
  .main .company .image {
    width: 100%;
    height: 226px;
    position: static;
  }
  .main .supplier table {
    margin-top: 10px;
    width: 100%;
  }
  .main .supplier tr:nth-child(n+2) {
    width: 90%;
    flex-direction: column;
    margin-left: 20px;
  }
  .main .supplier tr:nth-child(2) td {
    margin-top: 20px;
  }
  .main .supplier tr:nth-child(2) td:nth-child(2) {
    margin-top: 10px;
  }
  .main .supplier tr th {
    font-size: 18px;
  }
  .main .supplier tr th::before {
    height: 20px;
    margin: 0 6px -4px 0;
  }
  .main .supplier tr td {
    font-size: 16px;
    margin: 10px 0;
  }
  .main .supplier .image {
    position: static;
    width: 100%;
    height: 226px;
  }
  .main .access {
    height: 824px;
    width: 100%;
    background-color: #edecfc;
    font-size: 18px;
  }
  .main .access .access-inner {
    width: 306px;
    padding-top: 0;
    flex-direction: column;
    align-items: start;
  }
  .main .access .access-inner p {
    margin: 10px 0 20px;
    font-size: 16px;
  }
  .main .access .access-inner ul {
    padding-left: 22px;
  }
  .main .access .access-inner ul li {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .main .access .access-inner iframe {
    width: 100%;
    height: 340px;
  }
}/*# sourceMappingURL=company.css.map */