@charset "UTF-8";

.p-mainVisual {
  position: relative;
}
.p-mainVisualScroll {
  color: var(--color-text-main);
  font-size: 13px;
  text-transform: uppercase;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.03em;
  position: absolute;
  right: 38px;
  bottom: calc(44px + 10px);
  z-index: 1;
}
.p-mainVisualScroll::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 44px;
  background-color: var(--color-border-light);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}
.p-mainVisualScroll::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 44px;
  background-color: var(--color-border-main);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  -webkit-animation: scrollBorder 4s infinite ease;
  animation: scrollBorder 4s infinite ease;
}
.p-mainVisualScroll.is-white {
  color: var(--color-text-light);
}
.p-mainVisualScroll.is-white::before {
  background-color: var(--color-border-light);
}
.p-mainVisualScroll.is-white::after {
  background-color: var(--color-bg-white);
}

@keyframes scrollBorder {
  0% {
    transform: translateX(-50%) scaleY(0);
  }
  100% {
    transform: translateX(-50%) scaleY(1);
  }
}
@-webkit-keyframes scrollBorder {
  0% {
    transform: translateX(-50%) scaleY(0);
  }
  100% {
    transform: translateX(-50%) scaleY(1);
  }
}

@media screen and (max-width: 820px) {
  .p-mainVisualScroll {
    right: 32px;
  }
}

@media screen and (max-width: 420px) {
  .p-mainVisualScroll {
    right: 4px;
  }
}

/*-------------------------------------
  slider
------------------------------------- */
.p-mvSlider {
  width: 100%;
  position: relative;
}
.p-slideInner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3.91vw;
  position: absolute;
  top: calc(50% - 80px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.p-slideLogo {
  width: 38.28vw;
}
.p-slideLogo img {
  width: 100%;
}
.p-slideText {
  font-size: 3.91vw;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: nowrap;
  direction: ltr;
  text-align: center;
}
.p-slideText.--firstSlide span {
  color: var(--color-text-main);
}
.p-slideText span {
  color: var(--color-text-light);
  font-size: inherit;
  display: inline-block;
}
.p-slideText em {
  color: var(--color-text-red);
  font-size: inherit;
}
/* ロゴスライド */
.js-slideLogo,
.js-slideText {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.js-slideLogo.is-active,
.js-slideText.is-active {
  opacity: 1;
}

/* 動画、静止画スライド */
.p-videoWrap {
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* 16:9 (9/16 = 0.5625) */
  overflow: hidden;
  position: relative;
}
.p-videoWrap .p-slideVideo,
.p-videoWrap .p-slideImage {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  aspect-ratio: 16 / 9;
}
.p-mvSlider .swiper-wrapper {
  width: 100%;
  height: auto;
}
.p-mvSlider .swiper-slide {
  width: 100%;
  height: auto;
}
/* ページネーション */
.p-mvSlider .swiper-pagination {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  position: absolute;
  top: 50% !important;
  right: 24px!important;
  bottom: inherit!important;
  left: inherit!important;
  translate: 0 -50%;
  z-index: 10;
  counter-reset: pagination;
}
.p-mvSlider .swiper-pagination-bullet {
  width: 40px!important;
  height: 40px!important;
  display: inline-flex!important;
  align-items: center;
  justify-content: center;
  background: transparent!important;
  opacity: 1!important;
  margin: 0;
  border-radius: 50%;
  color: #B7B7B7;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  counter-increment: pagination;
}
.p-mvSlider .swiper-pagination-bullet::before {
  color: #B7B7B7;
  content: counter(pagination);
  font-family: inherit;
  position: relative;
  z-index: 1;
}
.p-mvSlider .swiper-pagination-bullet-active {
  background: transparent!important;
  color: var(--color-text-light);
}
.p-progressRing {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 44px;
  height: 44px;
  transform: rotate(0deg);
}
.p-progressRing__circle {
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
}

/* プログレスリング */
.p-mvSlider .swiper-pagination-bullet .p-progressRing__circle {
  animation: progress-ring 4s linear;
}
.p-mvSlider .swiper-pagination-bullet-active .p-progressRing__circle {
  animation-play-state: running;
}
.p-mvSlider .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) .p-progressRing__circle {
  animation: none;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
}

@keyframes progress-ring {
  from {
    stroke-dasharray: 126;
    stroke-dashoffset: 126;
  }
  to {
    stroke-dasharray: 126;
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes progress-ring {
  from {
    stroke-dasharray: 126;
    stroke-dashoffset: 126;
  }
  to {
    stroke-dasharray: 126;
    stroke-dashoffset: 0;
  }
}

@media screen and (max-width: 1439px) {
  .p-slideInner {
    top: calc(50% - 24px);
  }
}

@media screen and (max-width: 820px) {
  .p-videoWrap {
    /* 820:1080のアスペクト比に変更 (1080/820) */
    padding-top: 131.70%;
  }
  .p-slideInner {
    gap: 14.63vw;
  }
  .p-slideLogo {
    width: 48.54vw;
  }
  .p-slideText {
    font-size: 5.12vw;
    line-height: 1.667;
  }
  .p-slideText span {
    display: block;
  }
  .p-mvSlider .swiper-pagination {
    right: 20px!important;
  }
  .p-videoWrap .p-slideVideo.--ohy {
    left: 0;
  }
}

@media screen and (max-width: 420px) {
  .p-videoWrap {
    /* 375:665のアスペクト比に変更 (665/375) */
    padding-top: 177.33%;
  }
  .p-slideInner {
    gap: 18.67vw;
    top: calc(50% - 80px);
  }
  .p-slideLogo {
    width: 69.87vw;
  }
  .p-slideText {
    font-size: 8vw;
  }
  .p-mvSlider .swiper-pagination {
    top: 30px!important;
    right: 4px!important;
    translate: 0 0;
  }
  .p-videoWrap .p-slideVideo.--ohy {
    transform: translate(-56%, -50%);
  }
}

/*-------------------------------------
  page common
------------------------------------- */
.p-topSectionInner {
  padding-inline: 20px;
}
.p-topHeadingPrimary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 64px;
  margin-bottom: 40px;
  position: relative;
}
.p-topHeadingPrimary::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--color-border-light);
  position: absolute;
  top: 50%;
  left: 6px;
  translate: 0 -50%;
  z-index: 0;
}
.p-topHeadingPrimary::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url('/assets/images/common/icon_double_circle_red.svg');
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  z-index: 1;
}
.p-topHeadingPrimary span[lang="en"] {
  font-size: 22px;
  text-transform: uppercase;
}
.p-topHeadingPrimary span[lang="en"]:first-letter {
  color: var(--color-text-red);
}
.p-topHeadingPrimary span[lang="ja"] {
  font-size: 12px;
  font-weight: 500;
}
.p-moreLink {
  font-size: 12px;
  display: inline-block;
  padding-right: calc(10px + 20px);
  position: relative;
}
.p-moreLink::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('/assets/images/common/icon_arrow_black.svg');
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.p-topBottomSection {
  padding-block: 200px;
}

@media screen and (max-width: 420px) {
  .p-topHeadingPrimary {
    padding-left: 52px;
  }
  .p-topHeadingPrimary::before {
    width: 32px;
  }
  .p-topHeadingPrimary span[lang="en"] {
    font-size: 18px;
  }
  .p-topSectionInner {
    padding-inline: 10px;
  }
  .p-topBottomSection {
    padding-block: 100px 150px;
  }
}

/*-------------------------------------
  about
------------------------------------- */
.p-topAboutSection {
  padding-block: 194px 104px;
}
.p-topAboutSectionBasis {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
.p-topAboutContentsWrapper {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 2;
}
.p-topAboutContents {
  display: inline-block;
}
.p-topAboutCopy {
  font-size: 50px;
  margin-top: 130px;
}
.p-topAboutCopy .--tab {
  display: none;
}
.p-topAboutCopy .--accent {
  color: var(--color-text-red);
  font-size: inherit;
}
.p-topAboutText {
  font-size: 20px;
  line-height: 3;
  margin-top: 100px;
}
.p-topAboutText p {
  font-size: inherit;
  margin-top: 80px;
}
.p-topAboutMore {
  margin-top: 40px;
  text-align: right;
}
.p-topAboutImages {
  width: 100%;
  padding-bottom: 92px;
  position: relative;
  right: -2.5vw;
}
.p-topAboutImage {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.p-topAboutImageTop {
  width: 35.16vw;
  max-width: 450px;
}
.p-topAboutImageBottom {
  width: 36.56vw;
  max-width: 468px;
  position: relative;
  margin-top: -56px;
  right: 182px;
  z-index: 1;
}
.p-topAboutImage.--third {
  position: absolute;
  top: 0;
  right: 0;
}
.p-topAboutImage.--first {
  position: relative;
  z-index: 1;
}
.p-topAboutImage.--third {
  z-index: 3;
}
.p-topAboutTextUpper {
  width: 39.92vw;
  max-width: 511px;
  position: absolute;
  right: 2.34vw;
  top: 38.3%;
  z-index: 3;
}
.p-topAboutTextBottom {
  width: 51.56vw;
  max-width: 660px;
  position: absolute;
  left: 0;
  bottom: 0.3%;
  z-index: 3;
}

@media screen and (max-width: 1199px) {
  .p-topAboutImages {
    right: 0;
  }
}

@media screen and (max-width: 1039px) {
  .p-topAboutSection {
    padding-block: 160px 80px;
  }
  .p-topAboutContentsWrapper {
    top: 0;
  }
  .p-topAboutCopy {
    margin-top: 60px;
  }
  .p-topAboutCopy .--tab {
    display: block;
  }
  .p-topAboutCopy {
    font-size: 48px;
    line-height: 1.667;
  }
  .p-topAboutText {
    font-size: 18px;
    margin-top: 48px;
  }
  .p-topAboutText p {
    margin-top: 40px;
  }
  .p-topAboutImages {
    margin-top: 270px;
  }
  .p-topAboutImageTop {
    width: 41.83vw;
  }
  .p-topAboutImageBottom {
    width: 43.66vw;
  }
  .p-topAboutTextUpper {
    width: 47.56vw;
  }
  .p-topAboutTextBottom {
    width: 61.59vw;
  }
}

@media screen and (max-width: 819px) {
  .p-topAboutSectionBasis {
    flex-direction: column;
  }
  .p-topAboutContentsWrapper {
    position: static;
  }
  .p-topAboutCopy {
    font-size: 40px;
  }
  .p-topAboutText {
    font-size: 17px;
  }
  .p-topAboutImages {
    padding-inline: 10px;
    margin-top: 70px;
  }
.p-topAboutImage.--third {
  width: 100%;
  padding-inline: 10px;
}
  .p-topAboutImageTop {
    width: 58.67vw;
  }
  .p-topAboutImageBottom {
    width: 60.8vw;
    margin-top: -32px;
    margin-inline: 0 auto;
    right: inherit;
  }
  .p-topAboutTextUpper {
    width: 66.67vw;
    top: 35.8%;
    right: 8.34vw;
  }
  .p-topAboutTextBottom {
    width: 85.87vw;
  }
}

@media screen and (max-width: 420px) {
  .p-topAboutSection {
    padding-block: 100px;
  }
}

/* about animation */
.js-fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.js-fadeIn.is-active {
  opacity: 1;
  transform: translateY(0);
}
.js-aboutImage {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  position: absolute;
  top: 0;
  right: 0;
}
.js-aboutImageFirst {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}
.js-aboutImageThird {
  z-index: 3;
}
.js-aboutImage.is-active {
  opacity: 1;
  visibility: visible;
}

/*-------------------------------------
  csr
------------------------------------- */
.p-topCsrSection {
  background-color: var(--color-bg-lightYellow);
  padding-block: 100px;
}
.p-topCsrIntroduction {
  text-align: center;
}
.p-topCsrIntroductionText {
  font-size: 20px;
  line-height: 1.5;
}
.p-topCsrMore {
  text-align: right;
  margin-top: 10px;
}
.p-topCsrList {
  list-style: none;
  margin-top: 64px;
  display: grid;
  gap: 45px;
}
.p-topCsrListItem {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.p-topCsrListItem:nth-child(even) {
  flex-direction: row;
}
.p-topCsrListItem.--01 .p-topCsrImage {
  padding-top: 30px;
  padding-right: 85px;
  position: relative;
}
.p-topCsrListItem.--01 .p-topCsrImage::before {
  content: '';
  display: inline-block;
  width: 145px;
  height: 112px;
  background-image: url('/assets/images/top/txt_csr_01.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.p-topCsrListItem.--02 .p-topCsrImage {
  padding-top: 30px;
  padding-left: 85px;
  position: relative;
}
.p-topCsrListItem.--02 .p-topCsrImage::before {
  content: '';
  display: inline-block;
  width: 174px;
  height: 112px;
  background-image: url('/assets/images/top/txt_csr_02.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.p-topCsrTextContents {
  padding-top: 50px;
}
.p-topCsrLogo {
  text-align: center;
  margin-bottom: 72px;
}
.p-topCsrText {
  text-align: center;
  flex-grow: 1;
}
.p-topCsrText p {
  font-size: 16px;
  line-height: 2;
}
.p-topCsrText .--sp {
  display: none;
}
.p-topCsrListMore {
  margin-top: 40px;
}

@media screen and (max-width: 819px) {
  .p-topCsrListItem,
  .p-topCsrListItem:nth-child(even) {
    flex-direction: column-reverse;
  }
  .p-topCsrTextContents {
    padding-top: 30px;
    display: flex;
  }
  .p-topCsrLogo {
    margin-bottom: 0;
  }
  .p-topCsrLogo img {
    width: 100%;
  }
  .p-topCsrListItem.--01 .p-topCsrTextContents {
    gap: 32px;
  }
  .p-topCsrListItem.--01 .p-topCsrLogo {
    width: 35%;
  }
  .p-topCsrListItem.--02 .p-topCsrTextContents {
    align-items: center;
    gap: 24px;
  }
  .p-topCsrListItem.--02 .p-topCsrLogo {
    width: 30%;
  }
  .p-topCsrText {
    text-align: left;
  }
  .p-topCsrListMore {
    text-align: right;
    margin-top: 10px;
  }
  .p-topCsrListMore .p-moreLink {
    text-align: right;
  }
}

@media screen and (max-width: 420px) {
  .p-topCsrSection {
    padding-block: 60px;
  }
  .p-topCsrIntroductionText {
    font-size: 16px;
    text-align: left;
  }
  .p-topCsrMore {
    margin-top: 15px;
  }
  .p-topCsrList {
    margin-top: 40px;
    gap: 20px;
  }
  .p-topCsrTextContents {
    flex-shrink: 0;
  }
  .p-topCsrListItem.--01 .p-topCsrTextContents {
    gap: 24px;
  }
  .p-topCsrListItem.--01 .p-topCsrImage {
    padding-right: 42px;
  }
  .p-topCsrListItem.--01 .p-topCsrImage::before {
    width: 84px;
    height: 65px;
  }
  .p-topCsrListItem.--02 .p-topCsrImage {
    padding-left: 42px;
  }
  .p-topCsrListItem.--02 .p-topCsrImage::before {
    width: 101px;
    height: 65px;
  }
  .p-topCsrText p {
    font-size: 14px;
  }
  .p-topCsrText .--sp {
    display: block;
  }
}

/*-------------------------------------
  group company
------------------------------------- */
.p-topGroupListWrapper {
  max-width: 830px;
  margin-inline: auto;
}
.p-topGroupList {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 10px;
}
.p-topGroupListItem {
  display: grid;
  gap: 4px;
}
.p-topGroupLink {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.p-topGroupLogo {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-lightest);
}
.p-topGroupListName {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}
.p-topGroupMoreLink {
  margin-top: 70px;
  text-align: right;
}

@media screen and (max-width: 819px) {
  .p-topGroupList {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 420px) {
  .p-topGroupList {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  .p-topGroupLogo {
    height: 84px;
  }
  .p-topGroupMoreLink {
    margin-top: 20px;
  }
}

/*-------------------------------------
  news
------------------------------------- */
.p-topNewsSection {
  padding-top: 224px;
}
.p-topNewsContainer {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: flex-start;
  gap: 2em;
}
.p-topNewsList {
  list-style: none;
  max-width: 800px;
  margin-inline: auto 0;
}
.p-topNewsListItem {
  border-bottom: 1px solid var(--color-border-lightest);
  margin-bottom: 20px;
}
.p-topNewsLink {
  display: block;
  padding-bottom: 20px;
}
.p-topNewsLink:hover {
  text-decoration: none;
}
.p-topNewsUpper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-topNewsDate {
  flex-shrink: 0;
}
.p-topNewsDate .--year {
  font-size: 14px;
}
.p-topNewsDate .--date {
  font-size: 20px;
}
.p-topNewsCategoryList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.p-topNewsCategoryList li {
  display: inline-block;
  padding-inline: 14px;
  line-height: 19px;
  border: 1px solid var(--color-border-light);
  border-radius: 11px;
}
.p-topNewsBottom {
  margin-top: 20px;
}
.p-topNewsTitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.p-topNewsTitle::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('/assets/images/common/icon_arrow_black.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.p-topNewsMoreLink {
  text-align: right;
  margin-top: 40px;
}

@media screen and (max-width: 819px) {
  .p-topNewsContainer {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media screen and (max-width: 420px) {
  .p-topNewsSection {
    padding-top: 100px;
  }
  .p-topNewsDate .--year {
    font-size: 12px;
    display: block;
  }
  .p-topNewsDate .--date {
    font-size: 18px;
    display: block;
  }
  .p-topNewsUpper {
    gap: 30px;
  }
  .p-topNewsBottom {
    margin-top: 16px;
  }
  .p-topNewsTitle {
    font-size: 16px;
  }
  .p-topNewsMoreLink {
    margin-top: 25px;
  }
}