@charset "utf-8";

/* ==================================================
elements
================================================== */
a {
  text-decoration: none;
}


/* ==================================================
section
================================================== */
.cntSec {
  padding: 0 0 0;
}
.cntSec_inner {
  padding: 0 20px;
}
.bgCnt {
  background-image: url(/common/images/bg_white.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top left;
}

.newsPage {
  padding-top: 58px;
}


/* ==================================================
heading2
================================================== */
/* Company h2 */
.heading2-company {
  align-items: flex-start;
}
.heading2-company .heading2_en img {
  height: 53px;
}
.heading2-company .heading2_ja {
  display: flex;
  align-items: center;
  gap: 0 12px;
  margin-top: -7px;
}
.heading2-company .heading2_ja::before {
  content: "";
  display: block;
  width: 24px;
  height: 4px;
  background: #CCCCCC;
  transform: translateY(-50%);
}


/* ==================================================
MV
================================================== */
.mv {
  position: relative;
  height: 100vh;
  height: 100svh;
  background-image: url(/top/images/mv_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.mv_logo {
  padding: 20px 0 0 20px;
}
.mv_logo img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
}
.mv_title {
  position: absolute;
  left: -14px;
  width: 83%;
  top: 13.1%;
}
.mv_title img {}

/* newsPage MV */
.newsPage .mv {
  height: 156px;
  background: #333333;
  background-image: url(/common/images/bg_black.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.newsPage .mv_title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}


/* スクロールバー */
.scroll {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  height: 127px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll_text {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.075em;
  color: #fff;
  transition: 300ms;
  margin-bottom: 2px;
}
.scroll_frame {
  position: relative;
  overflow: hidden;
  height: 64px;
  width: 20px;
}
.scroll_bar_line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #fff;
}
.scroll_dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: scrollDot 1.5s ease 0.6s infinite;
}

@keyframes scrollDot {
  0% {
    transform: translate(-50%, -64px);
  }
  100% {
    transform: translate(-50%, 8px);
  }
}



/* ==================================================
about
================================================== */
.about {
  padding-top: 63px;
  margin-bottom: 58px;
}
.about_title {
  margin-bottom: 43px;
}
.about_titleLogo {
  display: block;
}
.about_titleLogo img {
  height: auto;
  width: 100%;
  max-width: 334px;
  object-fit: contain;
}

.about_text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
}
.about_textMain {
  display: block;
  margin-bottom: 17px;
} 


/* ==================================================
topNews
================================================== */
.topNews {
  margin-bottom: 65px;
  padding: 0 20px;
}
.topNews_inner {
  background: linear-gradient(to top right, #242424, #4E4E4E);
  padding: 40px 16px;
}
.topNews_header {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.topNews_btn {
  margin-top: 24px;
}
.topNews_btnLink {
  position: relative;
  display: inline-block;
  background: #fff;
  text-align: center;
  padding: 8px 25px;
  min-height: 40px;
  width: 200px;
  border-radius: 100px;
}
.topNews_btnLink:hover {
  background: #fff;
}
.topNews_btnLink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(100, 124, 163, 1) 0%,
    rgba(240, 192, 179, 1) 53%,
    rgba(220, 157, 157, 1) 75%,
    rgba(224, 215, 216, 1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
  border-radius: 100px;
}
.topNews_btnLink:hover::before {
  opacity: 0.5;
}
.topNews_btnLink > * {
  position: relative;
  z-index: 1;
}
.topNews_btnText {
  color: #333;
  font-size: 12px;
  font-weight: 600;
}

.topNews_btnIcon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.topNews_btnIcon::after {
  content: '';
  display: block;
  width: 8px;
  height: 12px;
  background-image: url(/common/images/icon_right.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

/* topNewsリスト
================================================== */
.top .news_itemLink {
  background: #fff;
  color: #333;
}


/* ==================================================
company
================================================== */
.company {
  margin-bottom: -14px;
}
.company_list {
  margin-top: 20px;
}
.company_item {
  border-bottom: 2px solid #CCCCCC;
  padding: 19px 0 18px;
}
.company_label {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}
.company_value {
  line-height: 1.71;
  font-size: 14px;
}

.company_nestedList {
  margin-top: 16px;
}
.company_nestedItem {
  margin-bottom: 14px;
}
.company_nestedItem:last-child {
  margin-bottom: 0px;
}
.company_nestedLabel {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.company_nestedValue {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding-left: 1.8em;
}
.company_nestedValue::before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  left: 8px;
  width: 8px;
  height: 1px;
  background-color: #CCCCCC;
}
.company_nestedValue.markNone::before {
  content: none;
}

/* 横並び */
.company_nestedItem-row .company_nestedLabel {
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
}
.company_nestedItem-row .company_nestedValue {
  padding-left: 0;
  line-height: 1.5;
}
.company_nestedItem-row .company_nestedValue::before {
  content: none;
}

.company_listItem {
  position: relative;
  display: flex;
  padding-left: 1.5em;
}
.company_listItem:nth-child(n+2) {
  margin-top: 6px;
}
.company_listItem::before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  left: 8px;
  width: 8px;
  height: 1px;
  background-color: #CCCCCC;
}