@charset "utf-8";
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  padding-top: 10rem;
}
.mv-page__image {
  position: relative;
}
.mv-page__item {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(-5%, -50%);
  height: min(80%, 29.5rem);
  width: min(55%, 73.5rem);
  margin: 0 auto;
}
/* 枠 */
.mv-page__item::before, .mv-page__item::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10rem;
  height: 10rem;
}
.mv-page__item::before {
  top: 0;
  left: 0;
  border-left: solid 3rem #ff6d00;
  border-top: solid 3rem #ff6d00;
}
.mv-page__item::after {
  bottom: 0;
  right: 0;
  border-right: solid 3rem #ff6d00;
  border-bottom: solid 3rem #ff6d00;
}
/* TITLE */
.mv-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(100%, 29.5rem);
}
.mv-title h2 {
  color: #fff;
  font-size: clamp(3.2rem, 3vw, 5rem);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
.mv-title h2 span {
  margin: 0 0 3rem 2.5rem;
  padding-left: 2.5rem;
  border-left: 1px solid #fff;
  color: #4dcee5;
  font-family: "Lexend", sans-serif;
  font-size: clamp(4rem, 3vw, 6.2rem);
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .mv-page__item {
    height: min(50%, 29.5rem);
  }
  .mv-page__item::before, .mv-page__item::after {
    width: 5rem;
    height: 5rem;
  }
  .mv-page__item::before {
    border-left-width: 1.5rem;
    border-top-width: 1.5rem;
  }
  .mv-page__item::after {
    border-right-width: 1.5rem;
    border-bottom-width: 1.5rem;
  }
  .mv-title {
    width: 90%;
    margin: 0 auto;
    padding: 3.5rem 0;
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .mv-page__item {
    top: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
    height: min(80%, 20.5rem);
    width: max(33rem, 75%);
  }
  .mv-title {
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 5rem 0;
  }
  .mv-title h2 {
    font-size: 3.2rem;
    text-align: center;
  }
  .mv-title h2 span {
    display: block;
    margin: 1.5rem 0 3rem;
    padding: 1rem 0 0;
    border-left: none;
    border-top: 1px solid #fff;
    font-size: 4rem;
    text-align: center;
  }
}
/* Page Title
----------------------------------------------------------------------------------------------------*/
.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10rem;
  background: linear-gradient(-90deg, rgba(0, 9, 23, 1) 0%, rgba(22, 65, 134, 1) 100%);
}
.page-title h3 {
  color: #FFF;
  font-size: clamp(2.8rem, 3vw, 4.2rem);
  font-weight: 700;
}
/* Page Container
----------------------------------------------------------------------------------------------------*/
.container {
  width: 100%;
}
.contents {
  width: min(90%, 151rem);
  margin: 20rem auto 18rem;
  text-align: left;
  font-feature-settings: "palt"1;
  -webkit-text-size-adjust: 100%;
}
/* TABLET */
@media (max-width: 1023px) {
  .contents {
    margin: 10rem auto;
  }
}
/* MOBILE */
@media (max-width: 767px) {
  .contents {
    margin: 5rem auto 10rem;
  }
}
/* company-top
----------------------------------------------------------------------------------------------------*/
.c-card {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.c-card:hover {
  opacity: 0.8;
}
.c-card.-greeting {
  padding: 12rem 16rem;
}
.c-card__content {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.-greeting .c-card__content {
  justify-content: flex-start;
  max-width: 58rem;
}
.c-card-grid .c-card__content {
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.c-card-grid .c-card__title {
  margin: 0;
}
.c-card-banner__title {
  color: #fff;
  font-size: 4.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
}
.c-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14rem;
  height: 4rem;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  border: 1px solid #fff;
  border-radius: 2rem;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}
.c-card__text {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.c-card h3 {
  font-size: 4.2rem;
  color: #fff;
}
.c-card.-greeting h3 {
  font-weight: 700;
  margin-bottom: 3.6rem;
}
.c-card.-greeting {
  min-height: 50rem;
  padding: 8rem;
  display: flex;
  align-items: center;
  background: #122038 url('../company/img/img_company-greeting_pc.jpg') no-repeat;
  background-size: contain;
  background-position: right;
}
.-greeting .c-card__content {
  width: min(45%, 58rem);
}
.c-card__text {
  max-width: 58rem;
}
.c-card-grid {
  display: flex;
  flex-wrap: wrap;
}
.c-card-grid .c-card {
  width: 50%;
  height: 42rem;
}
.c-card-grid .c-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 3rem;
  height: 100%;
}
.c-card__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9rem;
  width: 100%;
}
.-greeting .c-card__bottom {
  justify-content: flex-end;
  max-width: 58rem;
  margin-top: auto;
}
.c-card-grid .c-card__title {
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
/* 沿革用 */
.fullspace {
  letter-spacing: 1em;
}
/* 個別背景設定 */
.c-card.-history {
  background-image: url('../company/img/img_company-history.jpg');
}
.c-card.-outline {
  background-image: url('../company/img/img_company-outline.jpg');
}
.c-card.-access {
  background-image: url('../company/img/img_company-access.jpg');
}
.c-card.-ir {
  background-image: url('../company/img/img_company-ir.jpg');
}
@media (max-width: 1367px) {
  .c-card.-greeting {
    min-height: 10rem;
    padding: 2rem 5rem;
    display: flex;
    align-items: flex-start;
    background: #122038 url('../company/img/img_company-greeting_pc.jpg') no-repeat;
    background-size: contain;
    background-position: right;
  }
}
/* TABLET */
@media (max-width: 1023px) {
  .c-card.-greeting {
    align-items: flex-start;
    height: auto;
    width: 100%;
    aspect-ratio: 330 / 420;
    padding: 2rem 3rem;
    background-image: url('../company/img/img_company-greeting_sp.jpg');
    background-position: bottom;
  }
  .-greeting .c-card__content {
    max-width: 58rem;
    width: 100%;
    margin: 0 auto;
  }
  .c-card-grid .c-card {
    height: auto;
    width: 100%;
    aspect-ratio: 330 / 184;
  }
}
/* MOBILE */
@media (max-width: 767px) {
  .c-card.-greeting {
    min-height: 50rem;
    padding: 2rem 3rem;
  }
  .c-card.-greeting h3 {
    font-weight: 700;
    margin-bottom: 1.6rem;
  }
  .c-card h3 {
    font-size: 2.4rem;
  }
  .c-card__text {
    max-width: 100%;
    font-size: 1.6rem;
  }
  .c-card-grid .c-card__content {
    padding: 1.5rem;
  }
  .c-card__bottom {
    gap: 3.2rem;
  }
}