@charset "utf-8";
/* CSS Document */
.company_page {
  position: relative;
  overflow: hidden;
}

.company_page > .cate {
  position: relative;
  z-index: 2;
}


.top_message {
  position: relative;
  overflow: hidden;
}

.top_message .inner {
  --message-gap: clamp(30px, 5vw, 70px);
  width: 100%;
  max-width: none;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: var(--message-gap);
  padding-right: max(90px, calc((100vw - 1280px) / 2));
  box-sizing: border-box;
}

.top_message .message_img {
  position: relative;
  z-index: 1;
  flex: 0 0 calc((100% - var(--message-gap)) * 0.58);
  width: calc((100% - var(--message-gap)) * 0.58);
  margin-right: calc(var(--message-gap) * -2.4);
}

.top_message .message_txtbox {
  position: relative;
  z-index: 2;
  flex: 0 0 calc((100% - var(--message-gap)) * 0.56);
  width: calc((100% - var(--message-gap)) * 0.56);
}

.top_message .message_img .imgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top_message .message_img .imgbox img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.top_message .message_img .imgbox::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.62) 28%,
    rgba(255, 255, 255, 0) 62%
  );
  pointer-events: none;
}

.top_message .message_profile {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  letter-spacing: 0.08em;
}
.top_message .message_profile .message_name{
	position: relative;
	padding-bottom: 10px;
}
.top_message .message_profile .message_en{
	color: #1A73F1;
}
.top_message .message_profile .message_name::after{
	content: "";
	position: absolute;
	width: 20px;
	height: 1px;
	background-color: #1A73F1;
	bottom: 0;
	left: 0;
}
.top_message .message_person {
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
}

.top_message .message_txtbox h3 {
  letter-spacing: 0.08em;
}

.top_message .message_box {
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

@media screen and (max-width: 768px) {
  .top_message .inner {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
  }

  .top_message .message_img,
  .top_message .message_txtbox {
    width: 100%;
    flex: none;
  }

  .top_message .message_img {
    margin-right: 0;
    margin-bottom: 36px;
  }
}

/* COMPANY PROFILE */
.company_profile .profile_table {
  width: 100%;
}

.company_profile .profile_row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.company_profile .profile_row p {
  padding: clamp(18px, 2.4vw, 28px) 0;
  line-height: 1.8;
}

.company_profile .profile_row .label {
  width: min(240px, 30%);
  flex: none;
  font-weight: 700;
}

.company_profile .profile_row p:not(.label) {
  flex: 1;
}


@media screen and (max-width: 576px) {
  .company_profile .profile_row {
    display: block;
  }

  .company_profile .profile_row .label {
    width: 100%;
    padding-bottom: 0;
  }
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

