@charset "utf-8";

/* ----------------------------------------
  company
---------------------------------------- */

/* ---------- company ---------- */
.p-company {
  width: 100%;
  overflow: hidden;
}

.p-company-index {
  width: 100%;
  margin-top: 115px;
  padding: 0 50px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.7,0,.3,1), transform .8s cubic-bezier(.7,0,.3,1);
}

.is-active.p-company-index {
  opacity: 1;
  transform: translateY(0);
}

.p-company-index__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.p-company-index__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p-company-index__item {
  width: calc((100% - 4px) / 2);
}

.p-company-index__item:nth-child(n+3) {
  margin-top: 100px;
}

.p-company-index__link {
  display: block;
}

.p-company-index__img {
  overflow: hidden;
}

.p-company-index__img img {
  transition: transform .5s cubic-bezier(.7,0,.3,1);
}

.p-company-index__link:hover .p-company-index__img img {
  transform: scale(1.15);
}

.p-company-index__item:nth-child(odd) .p-company-index__img {
  border-radius: 10px 0 0 10px;
}

.p-company-index__item:nth-child(even) .p-company-index__img {
  border-radius: 0 10px 10px 0;
}

.p-company-index__text {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-top: 50px;
}

@media screen and (min-width:769px) and (max-width:950px) {}

@media screen and (max-width:768px) {
  .p-company-index {
    margin-top: 80px;
    padding: 0 20px 50px 20px;
  }

  .p-company-index__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .p-company-index__text {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}




/* ---------- strength ---------- */
.p-strength {
  width: 100%;
  overflow: hidden;
}

.p-strength-intro {
  width: 100%;
  margin-top: 240px;
  padding: 0 100px;
}

.p-strength-intro__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.p-strength-intro__wrap {
  display: inline-block;
  padding: 0 110px 100px 0;
  background-color: var(--color-wht);
  border-radius: 0 0 10px 0;
  position: relative;
  z-index: 10;
}

.p-strength-intro__wrap::before {
  content: "";
  width: 70px;
  height: 100%;
  display: block;
  background-color: var(--color-wht);
  position: absolute;
  top: 0;
  left: -70px;
}

.p-strength-intro__heading {
  display: block;
  padding-bottom: 2px;
  overflow: hidden;
}

.p-strength-intro__heading-text {
  display: inline-block;
  font-size: 5.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  transform: skewY(10deg) translateY(100%);
  transform-origin: 0% 0%;
  transition: transform .8s cubic-bezier(.7,0,.3,1);
}

.is-active .p-strength-intro__heading-text {
  transform: skewY(0deg) translateY(0%);
}

.p-strength-intro__text {
  max-width: 670px;
  font-size: 1.6rem;
  line-height: calc(32 / 16);
  margin: 90px 0 0 100px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.7,0,.3,1) .5s, transform .8s cubic-bezier(.7,0,.3,1) .5s;
}

.is-active .p-strength-intro__text {
  opacity: 1;
  transform: translateY(0);
}

.p-strength-intro__mv {
  width: calc(100% + 70px + (50vw - 50%));
  height: 550px;
  margin: -125px 0 0 -70px;
  border-radius: 0 0 0 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.p-strength-intro__mv::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--color-wht);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: scaleX(1);
  transform-origin: 0% 0%;
  transition: transform .6s cubic-bezier(.7,0,.3,1);
}

.is-active.p-strength-intro__mv::before {
  transform: scaleX(0);
}

.p-strength-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
  transition: transform 1s cubic-bezier(.7,0,.3,1);
}

.is-active .p-strength-intro__img {
  transform: scale(1);
}

@media screen and (min-width:769px) and ( max-width:980px) {
  .p-strength-intro {
    padding: 0 50px;
  }

  .p-strength-intro__wrap {
    display: block;
    padding: 0;
    background-color: transparent;
  }

  .p-strength-intro__wrap::before {
    content: none;
  }

  .p-strength-intro__heading-text {
    font-size: 4.8rem;
  }

  .p-strength-intro__text {
    margin: 50px 50px 0 50px;
  }

  .p-strength-intro__mv {
    width: calc(100% + 70px);
    height: 360px;
    margin: 50px -50px 0 -20px;
    border-radius: 10px 0 0 10px;
  }
}

@media screen and (max-width:768px) {
  .p-strength-intro {
    margin-top: 120px;
    padding: 0 20px;
  }

  .p-strength-intro__wrap {
    display: block;
    padding: 0;
    background-color: transparent;
  }

  .p-strength-intro__wrap::before {
    content: none;
  }

  .p-strength-intro__heading {
    text-align: center;
  }

  .p-strength-intro__heading-text {
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    transition: transform .8s cubic-bezier(.7,0,.3,1) 1s;
  }

  .p-strength-intro__text {
    max-width: 100%;
    font-size: 1.4rem;
    margin: 30px 30px 0 30px;
    transition: opacity .8s cubic-bezier(.7,0,.3,1) 1.5s, transform .8s cubic-bezier(.7,0,.3,1) 1.5s;
  }

  .p-strength-intro__mv {
    width: calc(100% + 30px);
    height: 300px;
    margin: 60px -20px 0 -10px;
    border-radius: 10px 0 0 10px;
  }
}

.p-strength-point {
  width: 100%;
  margin-top: 100px;
  padding: 0 50px;
}

.p-strength-point__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.p-strength-point__unit {
  width: 100%;
  border: 1px solid var(--color-sub);
  border-radius: 10px;
  padding: 100px 50px 95px 50px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.7,0,.3,1), transform .8s cubic-bezier(.7,0,.3,1);
}

.is-active.p-strength-point__unit {
  opacity: 1;
  transform: translateY(0);
}

.p-strength-point__unit + .p-strength-point__unit {
  margin-top: 50px;
}

.p-strength-point__heading {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.p-strength-point__text {
  width: 100%;
  max-width: 710px;
  text-align: justify;
  font-size: 1.6rem;
  line-height: calc(32 / 16);
  margin: 35px auto 0 auto;
}

@media screen and (max-width:768px) {
  .p-strength-point {
    padding: 0 20px;
  }

  .p-strength-point__unit {
    padding: 30px;
  }

  .p-strength-point__unit + .p-strength-point__unit {
    margin-top: 30px;
  }

  .p-strength-point__heading {
    font-size: 2.8rem;
  }

  .p-strength-point__text {
    font-size: 1.4rem;
    margin: 20px auto 0 auto;
  }
}

.p-strength .c-other-nav__list--blank::after {
  margin-top: 0;
}




/* ---------- profile ---------- */
.p-profile {
  width: 100%;
  overflow: hidden;
}

.p-profile-detail {
  width: 100%;
  margin-top: 180px;
  padding: 0 50px;
}

.p-profile-detail__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.p-profile-detail__unit {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.7,0,.3,1), transform .8s cubic-bezier(.7,0,.3,1);
}

.is-active.p-profile-detail__unit {
  opacity: 1;
  transform: translateY(0);
}

.p-profile-detail__unit + .p-profile-detail__unit {
  margin-top: 150px;
}

.p-profile-detail__heading {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}

.p-profile-detail__table {
  width: 100%;
  margin-top: 50px;
}

.p-profile-detail__table tr {
  border-top: 1px solid var(--color-sub);
  border-bottom: 1px solid var(--color-sub);
}

.p-profile-detail__table th,
.p-profile-detail__table td {
  text-align: left;
  font-size: 1.6rem;
  line-height: calc(32 / 16);
  padding: 24px 0;
}

.p-profile-detail__table th {
  width: 20%;
}

.p-profile-detail__table td {
  width: 100%;
}

@media screen and (max-width:768px) {
  .p-profile-detail {
    margin-top: 120px;
    padding: 0 20px;
  }

  .p-profile-detail__unit + .p-profile-detail__unit {
    margin-top: 100px;
  }

  .p-profile-detail__heading {
    font-size: 1.8rem;
  }

  .p-profile-detail__table {
    width: 100%;
    margin-top: 30px;
  }

  .p-profile-detail__table th {
    font-size: 1.6rem;
    display: inline-block;
    width: 100%;
    padding: 18px 0 0 0;
  }

  .p-profile-detail__table td {
    font-size: 1.4rem;
    display: inline-block;
    width: 100%;
    padding: 0 0 18px 0;
  }
}

.p-profile-history {
  width: 100%;
  margin-top: 150px;
}

.p-profile-history__heading {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: 1em;
  text-indent: 1em;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.7,0,.3,1), transform .8s cubic-bezier(.7,0,.3,1);
}

.is-active.p-profile-history__heading {
  opacity: 1;
  transform: translateY(0);
}

.p-profile-history__chart {
  width: 100%;
  margin-top: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.7,0,.3,1), transform .8s cubic-bezier(.7,0,.3,1);
}

.is-active.p-profile-history__chart {
  opacity: 1;
  transform: translateY(0);
}

.p-profile-history__chart-main {
  width: 100%;
  max-width: 1050px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.p-profile-history__chart-main::before {
  content: "";
  width: calc(50vw - 50%);
  height: 100%;
  display: block;
  background-image: url(../img/company/profile_chart_bg_left.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 99%;
  z-index: -1;
}

.p-profile-history__chart-main::after {
  content: "";
  width: calc(50vw - 50%);
  height: 100%;
  display: block;
  background-image: url(../img/company/profile_chart_bg_right.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 99%;
  z-index: -1;
}

@media screen and (max-width:768px) {
  .p-profile-history {
    margin-top: 100px;
  }

  .p-profile-history__heading {
    font-size: 1.8rem;
  }

  .p-profile-history__chart {
    width: 100%;
    margin-top: 40px;
  }
}

.p-profile-base {
  width: 100%;
  margin-top: 100px;
  height: 500px;
  padding: 0 50px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.7,0,.3,1), transform .8s cubic-bezier(.7,0,.3,1);
}

.is-active.p-profile-base {
  opacity: 1;
  transform: translateY(0);
}

.p-profile-base::before {
  content: "";
  width: 50%;
  height: 100%;
  display: block;
  background-color: var(--color-sub);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-profile-base::after {
  content: "";
  width: 50%;
  height: 100%;
  display: block;
  background-image: url(../img/company/profile_base.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.p-profile-base__inner {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
}

.p-profile-base__main {
  width: 50%;
  height: 100%;
  background-color: var(--color-sub);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.p-profile-base__main::before {
  content: "";
  width: 250px;
  height: 100%;
  display: block;
  background-color: var(--color-sub);
  border-radius: 0 250px 250px 0;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
}

.p-profile-base__heading {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  color: var(--color-wht);
}

.p-profile-base__text {
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: calc(40 / 20);
  color: var(--color-wht);
  margin-top: 45px;
}

.p-profile-base__btn {
  margin-top: 65px;
}

.p-profile-base__link {
  width: 300px;
  height: 80px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--color-wht) !important;
  border: 1px solid var(--color-wht);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: color .3s;
}

.p-profile-base__link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--color-wht);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: 0% 0%;
  transition: transform .3s;
}

.p-profile-base__link:hover {
  color: var(--color-main);
}

.p-profile-base__link:hover::before {
  transform: scaleX(1);
}

@media screen and (max-width:768px) {
  .p-profile-base {
    height: 320px;
    padding: 0 20px;
  }

  .p-profile-base__main {
    width: 80%;
  }

  .p-profile-base__main::before {
    content: none;
  }

  .p-profile-base__heading {
    font-size: 2rem;
  }

  .p-profile-base__text {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-right: 10px;
  }

  .p-profile-base__btn {
    margin-top: 30px;
  }

  .p-profile-base__link {
    width: 240px;
    height: 60px;
    font-size: 1.4rem;
  }
}

.p-profile .c-other-nav__list--blank::after {
  margin-top: 0;
}
