@charset "UTF-8";
/* ============================================ */
/* business
/* ============================================ */
#main {
  position: relative;
}

/* ===== dot-link ===== */
#dot-link {
  position: fixed;
  bottom: calc(50% - 120px);
  right: 35px;
  height: 140px;
  width: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  transition: opacity 0.2s ease;
}
#dot-link.is-hidden {
  opacity: 0;
  pointer-events: none;
}
#dot-link .link-item a {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-gray);
  border-radius: 50%;
  transition: 0.2s;
}
#dot-link .link-item.is-current a {
  transform: scale(2);
  background: var(--color-red);
}

@media (hover: hover) {
  #dot-link .link-item a:hover {
    transform: scale(2);
    background: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  #dot-link {
    right: 20px;
  }
}
@media screen and (max-width: 600px) {
  #dot-link {
    right: 15px;
  }
}
/* ===== contents-wrap ===== */
.contents-wrap {
  margin: -145px 0 0;
}

/* ===== top ===== */
#top {
  position: relative;
  padding: 220px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100svh - 86px);
  min-height: 700px;
  background-image: url(../img/about-us/business/top_bg_pc.jpg);
  background-position: center center;
  background-size: cover;
}
#top #page-title {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 100%;
}
#top .anchor-link {
  width: 100%;
}
#top .anchor-link .wrap {
  max-width: 1000px;
}
#top .anchor-link .text {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 30px;
  line-height: 2.2;
}
#top .anchor-link .link-list {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px 8%;
  grid-template-areas: "link01 link03" "link02 link04";
  white-space: nowrap;
}
#top .anchor-link .link-list .link01 {
  grid-area: link01;
}
#top .anchor-link .link-list .link02 {
  grid-area: link02;
}
#top .anchor-link .link-list .link03 {
  grid-area: link03;
}
#top .anchor-link .link-list .link04 {
  grid-area: link04;
}
#top .anchor-link .link-list .link-item {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--color-white);
}
#top .anchor-link .link-list .link-item a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 46px 0 0;
  border-bottom: solid 1px var(--color-white);
}
#top .anchor-link .link-list .link-item a::after {
  content: "";
  position: absolute;
  right: 0.8em;
  bottom: 0.8em;
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(135deg);
  transition: 0.2s ease-out;
}
#top .anchor-link .link-list .link-item a .number {
  position: relative;
  display: inline-block;
  font-family: var(--fontfamily-en);
  font-size: 94px;
  font-size: 5.875rem;
  font-weight: 100;
  width: 1.7em;
  padding: 0 0 0 0.2em;
  transition: 0.2s ease-out;
}
#top .anchor-link .link-list .link-item a .number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 40%;
  height: 100%;
  background: url(../img/about-us/business/deco-cattle.svg) no-repeat center bottom 0.2em;
  background-size: contain;
  transition: 0.2s ease-out;
}

@media (hover: hover) {
  #top .anchor-link .link-item a:hover::after {
    transform: rotate(135deg) translate(20%, -20%);
  }
  #top .anchor-link .link-item a:hover .number {
    transform: scale(1.1);
  }
  #top .anchor-link .link-item a:hover .number::after {
    transform: translate(-10%, 0);
  }
}
@media screen and (max-width: 1200px) {
  #top .anchor-link .link-list .link-item {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #top .anchor-link .link-list .link-item a .number {
    font-size: 80px;
    font-size: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  #top {
    justify-content: flex-start;
    gap: 60px;
    height: auto;
    min-height: auto;
    background-image: url(../img/about-us/business/top_bg_sp.jpg);
    background-position: right center;
    padding: 0 0 100px;
  }
  #top #page-title {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
  #top .anchor-link .link-list {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas: "link01" "link02" "link03" "link04";
  }
}
@media screen and (max-width: 768px) {
  #top .anchor-link .text {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  #top .anchor-link .link-list .link-item {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #top .anchor-link .link-list .link-item a .number {
    font-size: 64px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 600px) {
  #top .anchor-link .link-list .link-item {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #top .anchor-link .link-list .link-item a .number {
    font-size: 46px;
    font-size: 2.875rem;
  }
}
/* ===== section共通 ===== */
.section {
  padding: 0 0 200px;
}
.section .section-title {
  position: relative;
  color: var(--color-white);
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  height: 130px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  margin: 60px 0 100px;
  padding: 0 60px 0 0;
  white-space: nowrap;
}
.section .section-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: calc(100% + 100px);
  height: 100%;
  background: var(--color-red);
  border-radius: 0 100px 100px 0;
}
.section .section-title .inner {
  position: relative;
}
.section .section-title .number {
  position: relative;
  display: inline-block;
  font-family: var(--fontfamily-en);
  font-size: 94px;
  font-size: 5.875rem;
  font-weight: 100;
  width: 1.7em;
  padding: 0 0 0 0.2em;
}
.section .section-title .number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 40%;
  height: 100%;
  background: url(../img/about-us/business/deco-cattle.svg) no-repeat center bottom 0.2em;
  background-size: contain;
}
.section .section-catch {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.8;
  margin: 0 0 2em;
}
.section .section-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.2;
  text-align: justify;
}
.section .section-text p + p {
  margin: 2em 0 0;
}

@media screen and (min-width: 1401px) {
  #section02 .section-title::before,
#section04 .section-title::before {
    width: calc(100% + (100vw - 1100px) / 2);
  }
}
@media screen and (max-width: 1400px) {
  #section02 .section-title::before,
#section04 .section-title::before {
    width: calc(100% + 10vw);
  }
}
@media screen and (max-width: 1200px) {
  .section .section-title {
    height: 120px;
    font-size: 24px;
    font-size: 1.5rem;
  }
  .section .section-title .number {
    font-size: 80px;
    font-size: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .section {
    padding: 0 0 100px;
  }
}
@media screen and (max-width: 768px) {
  .section .section-title {
    height: 90px;
    font-size: 20px;
    font-size: 1.25rem;
    margin: 60px 0 60px;
  }
  .section .section-title .number {
    font-size: 64px;
    font-size: 4rem;
  }
  .section .section-catch {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .section .section-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .section .section-title {
    height: 70px;
    font-size: 18px;
    font-size: 1.125rem;
    min-width: 220px;
    padding: 0 40px 0 0;
  }
  .section .section-title .number {
    font-size: 46px;
    font-size: 2.875rem;
  }
  .section .section-catch {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
/* ===== section01 ===== */
#section01 .flex-wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
}
#section01 .text-wrap {
  width: 50%;
}
#section01 .img {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  #section01 .flex-wrap {
    flex-direction: column;
    gap: 50px;
  }
  #section01 .text-wrap {
    width: 100%;
    padding: 0 0 0 10vw;
  }
  #section01 .img {
    width: 100%;
  }
}
/* ===== section02 ===== */
#section02 .flex-wrap {
  display: flex;
  align-items: first baseline;
  gap: 60px;
}
#section02 .section-title {
  margin-top: 0;
}
#section02 .img {
  position: relative;
}
#section02 .img .modal {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 23%;
  border-radius: 50%;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
  transition: 0.2s ease-out;
  cursor: pointer;
}
#section02 .img .modal.modal01 {
  left: 34.5%;
  top: 17%;
}
#section02 .img .modal.modal02 {
  left: 67.5%;
  top: 17%;
}
#section02 .img .modal.modal03 {
  left: 34.5%;
  top: 75%;
}
#section02 .img .modal.modal04 {
  left: 67.5%;
  top: 75%;
}

@media (hover: hover) {
  #section02 .img .modal:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@media screen and (min-width: 1025px) {
  #section02 .section-catch {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  #section02 .flex-wrap {
    flex-direction: column;
    gap: 0;
  }
}
/* ===== section03 ===== */
#section03 .flex-wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
}
#section03 .text-wrap {
  width: 50%;
}
#section03 .img {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  #section03 .flex-wrap {
    flex-direction: column;
    gap: 50px;
  }
  #section03 .text-wrap {
    width: 100%;
    padding: 0 0 0 10vw;
  }
  #section03 .img {
    width: 100%;
  }
}
/* ===== section04 ===== */
#section04 .flex-wrap {
  display: flex;
  gap: 100px;
}
#section04 .text-wrap {
  width: 50%;
}
#section04 .img {
  width: 50%;
}
#section04 .wrap .section-text {
  width: 80%;
  margin: 2em 0 0;
}

@media screen and (max-width: 1024px) {
  #section04 .flex-wrap {
    flex-direction: column;
    gap: 50px;
  }
  #section04 .text-wrap {
    width: 100%;
    padding: 0 10vw 0 0;
  }
  #section04 .img {
    width: 100%;
    margin: 100px 0 0;
  }
  #section04 .wrap .section-text {
    width: 100%;
  }
}
/* ===== section01、03、04の.link共通 ===== */
#section01 .link,
#section03 .link,
#section04 .link {
  margin: 70px 0 0;
}
#section01 .link p,
#section03 .link p,
#section04 .link p {
  color: var(--color-red);
  font-weight: 400;
  margin: 0 0 1em;
}

@media screen and (max-width: 768px) {
  #section01 .link,
#section03 .link,
#section04 .link {
    margin: 50px 0 0;
  }
}

/*# sourceMappingURL=business.css.map */