@charset "utf-8";

.content_area {
	padding: 0 20px;
}

/* .ln {
    display: none;
}
 */
/* =========================
   採用情報：h1背景
   ========================= */
.h1_bg.recruit {
  position: relative;
  overflow: hidden;
  min-height: clamp(180px, 22vw, 300px);
  max-height: 300px;
}

.h1_bg.recruit::after {
  background-image:
    linear-gradient(rgba(0, 119, 192, .55), rgba(0, 119, 192, .55)),
    url("/wp-content/themes/tygr-tozai/images/recruit_h1_bg.jpg");
}

.h1_bg.recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #0D52A0;
  clip-path: polygon(0 0,
      /* 左上 */
      58% 0,
      /* 上側の境界位置（調整可） */
      48% 100%,
      /* 下側の境界位置（調整可） */
      0 100%
      /* 左下 */
    );
}

.h1_bg.recruit .h1_inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(32px, 4vw, 64px) 20px;
}

.h1_bg.recruit .h1_text {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.h1_bg.recruit .h1_title.recruit {
  color: #fff;
  margin: 0;
  padding-top: 3.3em;
}

.h1_title.recruit::after {
  content: "RECRUIT";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(3.6rem, 6vw, 6.0rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

/* 下層ページ（interview）の場合 */
.h1_title.recruit.interview::after {
  content: "INTERVIEW";
}

@media (max-width: 767px) {
  .h1_bg.recruit::before {
    clip-path: polygon(0 0, 60% 0, 35% 100%, 0 100%);
  }

  .h1_bg.recruit::after {
    background-size: cover;
	  background-position: 75% center; 
  }

}

/* =========================
   社員インタビューページ
   ========================= */

/* インタビューコンテンツ */
.interview-content {
  max-width: 1440px;
  margin: 0 auto;
}

/* 紹介テキスト */
.interview-intro-text {
  max-width: 1440px;
  margin: 0 auto;
	padding: 0 20px 120px;
  text-align: center;
}

.interview-intro-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin: 0;
}

/* メンバー紹介セクション */
.interview-member-intro {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 100px;
  background: #ECEEF0;
  padding: 60px 20px;
}

.interview-member-intro-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.interview-member-intro-header {
  margin-bottom: 90px;
}

.interview-member-intro-disclaimer {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  margin-top: -70px;
  text-align: right;
}


.interview-member-cards {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.interview-member-card {
  width: 326px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.interview-member-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}

.interview-member-card-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.interview-member-card:hover .interview-member-card-image img {
  transform: scale(1.05);
}

.interview-member-card-number {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 108px;
  background: rgba(255, 255, 255, 0.8);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 10px 10px 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0D52A0;
  line-height: 1;
}

.interview-member-card-info {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
}

.interview-member-card-department {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  color: #000;
  margin: 0 0 8px 0;
}

.interview-member-card-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #0D52A0;
  margin: 0;
}

.interview-member-card-arrow {
  position: absolute;
  bottom: 15px;
  right: 0;
  width: 13px;
  height: 13px;
  border-right: 2px solid #0D52A0;
  border-bottom: 2px solid #0D52A0;
  transform: rotate(45deg);
}

/* インタビューアイテム（各社員） */
.interview-item {
  margin-bottom: 80px;
}

.interview-item:last-child {
  margin-bottom: 0;
}

/* ヒーローセクション */
.interview-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 430px;
  overflow: hidden;
}

.interview-hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.interview-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interview-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.interview-hero-content {
    position: absolute;
    bottom: 10%;
    left: 10%;
    right: 0;
    padding: 40px 35px;
    z-index: 2;
    max-width: 595px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
}

.interview-number {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #0D52A0;
  line-height: 1;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  pointer-events: none;
}

/* 番号を::afterで表示 */
.interview-number-01::after {
  content: "#01";
}

.interview-number-02::after {
  content: "#02";
}

.interview-number-03::after {
  content: "#03";
}

/* 白い装飾：右側の斜め三角（interview-hero-image-wrapperを基準に右下に配置） */
.interview-hero-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 170px;
  height: 237px;
  background: rgba(236, 238, 240, 0.8);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.interview-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #0D52A0;
  margin-bottom: 10px;
  line-height: 1.2;
}

.interview-department {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.5;
}

.interview-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000;
  line-height: 1.5;
  padding-bottom: 30px;
}

/* セクション */
.interview-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 0 0;
}

/* 画像とテキストの左右配置 */
.interview-section-with-image {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.interview-section-image-left {
  flex: 0 0 45%;
  width: 45%;
}

.interview-section-image-left img {
  width: 100%;
  height: auto;
  display: block;
}

.interview-section-content-right {
  flex: 1;
}

.interview-section-content-left {
  flex: 1;
}

.interview-section-image-right {
  flex: 0 0 45%;
  width: 45%;
}

.interview-section-image-right img {
  width: 100%;
  height: auto;
  display: block;
}

.interview-section-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.125;
  color: #000;
  margin-bottom: 0;
}

/* スケジュールセクション */
.interview-schedule {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 0 0;
}

.interview-schedule-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #0D52A0;
  /*   margin-bottom: 30px; */
  position: relative;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.interview-schedule-timeline {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  background: #F8FAFC;
  padding: 55px 100px;
}

.schedule-column {
  flex: 1;
  position: relative;
}

.schedule-timeline-line {
  display: none; /* ドット間セグメントで描くため非表示 */
}

.schedule-items {
  position: relative;
  z-index: 2;
}

/* ドットから次のドットまで線を引く */
.schedule-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 64px;
  top: -12px;
  width: 2px;
  height: calc(100% - 9px + 40px + 54px);
  transform: translateX(-50%);
  background: #0D52A0;
  z-index: 1;
}

.schedule-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  gap: 40px;
}

.schedule-item:last-child {
  margin-bottom: 0;
}

.schedule-item-left {
  flex-direction: row;
}

.schedule-item-right {
  flex-direction: row;
}

.schedule-time {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #0D52A0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 50px;
  text-align: right;
}

.schedule-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0D52A0;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  margin-left: calc(-20px - 6px);
  margin-right: 0;
  transform: translateX(-50%) translateY(4px);
}

.schedule-content {
  flex: 1;
  max-width: 400px;
}

.schedule-event {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.125;
  color: #000;
}

.schedule-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.286;
  color: #000;
  margin-top: 8px;
}

/* メッセージセクション */
.interview-message {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 60px;
  padding: 70px 20px;
  background: #ECEEF0;
}

.interview-message-title {
  max-width: 1080px;
  margin: 0 auto 20px auto;
}

.interview-message-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.125;
  color: #000;
  max-width: 1080px;
  margin: 0 auto;
}

/* レスポンシブ */
@media (max-width: 767px) {
	.h1_bg.recruit {
		margin-bottom: 0;
	}
	
  .interview-intro-text {
    padding: 40px 0;
  }

  .interview-intro-text p {
    font-size: 14px;
  }

  .interview-member-intro {
    padding: 30px 0;
	  margin-bottom: 50px;
  }

  .interview-member-intro-header {
    flex-direction: column;
    gap: 15px;
	margin-bottom: 30px;
  }

  .interview-member-intro-disclaimer {
    text-align: left;
    font-size: 12px;
	margin-top: 0;
  }

  .interview-member-cards {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .interview-member-card {
    width: 100%;
    max-width: 326px;
  }

  .interview-item {
    margin-bottom: 60px;
  }
	
/* スマホ：画像を左寄せにして人物が見えるように */
  .interview-hero-image {
    object-position: 67% center;
  }

  .interview-hero {
    height: 300px;
  }

  .interview-hero-content {
	  padding: 10px;
	  left: 0;
	  bottom: 5%;
	  max-width: 320px;
  }

  .interview-number {
	  font-size: 20px;
	  bottom: 6px;
	  right: 10px;
  }

  .interview-hero-image-wrapper::after {
	width: 70px;
    height: 90px;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  }

  .interview-hero-content::before {
    bottom: 35px;
    left: 25px;
    width: calc(100% - 40px);
    max-width: 320px;
    height: auto;
    min-height: 100px;
  }

  .interview-name {
	  font-size: 18px;
	  margin-bottom: 0;
  }

  .interview-department {
    font-size: 12px;
  }

  .interview-title {
    font-size: 15px;
	padding-bottom: 10px;
  }

  .interview-section {
    padding: 30px 0 0;
  }

  .interview-section-with-image {
    flex-direction: column;
    gap: 0;
  }

  .interview-section-image-left,
  .interview-section-image-right {
    flex: 1;
    width: 100%;
  }

  .interview-section-content-left,
  .interview-section-content-right {
    flex: 1;
  }

  .interview-section-title {
    font-size: 20px;
  }

  .interview-section-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .interview-schedule-title {
    font-size: 20px;
  }

  .interview-schedule-timeline {
    flex-direction: column;
    gap: 20px;
    padding: 30px 10px;
    background: #F8FAFC;
  }

  .schedule-column {
    width: 100%;
  }

  /* スマホ：ドット間セグメントの位置・高さ（margin 30px、ドット中心 5px） */
  .schedule-item:not(:last-child)::after {
    left: 80px;
    top: -15px;
    height: calc(100% - 5px + 30px + 42px);
  }

  .schedule-item {
    margin-bottom: 30px;
    padding-left: 20px;
  }

  .schedule-item-left,
  .schedule-item-right {
    flex-direction: row;
  }

  .schedule-time {
    font-size: 14px;
    width: 45px;
    padding-right: 15px;
  }

  .schedule-dot {
    width: 10px;
    height: 10px;
    position: relative;
    margin-left: calc(-20px - 5px);
    margin-right: 0;
    transform: translateX(-50%) translateY(3px);
  }

  .schedule-content {
    max-width: 100%;
  }

  .schedule-event {
    font-size: 14px;
  }

  .schedule-description {
    font-size: 12px;
  }

  .interview-schedule {
    padding: 30px 0;
  }

  .interview-message {
    padding: 30px 20px;
  }

}


/* Recruit セクション（共通デザイン） */
#entry_sec.recruit-section {
  position: relative;
  padding: 100px 0 145px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(rgba(119, 208, 179, 0.3), rgba(119, 208, 179, 0.3)), url('../images/recruit_img_entry.jpg') var(--bg-light-gray);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#entry_sec .recruit-background {
  position: relative;
}

#entry_sec .recruit-content {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

#entry_sec .recruit-header {
  margin-bottom: 40px;
}

#entry_sec .recruit-title-en {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--primary-blue-light);
  margin-bottom: 7px;
	border-bottom: none;
}

#entry_sec .recruit-title-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--text-white);
}

#entry_sec .recruit-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--text-white);
  text-shadow: 0px 4px 4px rgba(74, 74, 74, 0.25);
  margin: 40px 0 25px;
}

#entry_sec .recruit-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--text-white);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 45px;
}

#entry_sec .btn-primary {
    position: relative;
	text-decoration: none;
    background-color: #008BD2;
    border: 1px solid #008BD2;
    padding: 15px 150px;
    transition: background 0.3s ease;
    z-index: 1;
}

#entry_sec .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--text-white);
    transition: width 0.3s ease;
    z-index: -1;
}

#entry_sec .btn-primary:hover::before {
    width: 100%;
}

.btn-primary[target="_blank"] {
    background: none;
}

#entry_sec .btn-primary:hover {
	/*opacity: .8;*/
}

#entry_sec .recruit_entry_btm {
	display: flex;
	justify-content: space-between;
}

#entry_sec .recruit-banner-label {
    font-size: 29px;
	font-weight: 700;
	background-size: 25px 25px;
	padding-right: 35px;
	margin-bottom: 0;
	transition: all 0.3s ease;
}

#entry_sec .btn-primary:hover .recruit-banner-label {
    color: #008BD2;
    background-image: url(../images/icon_popup_blue.svg);
	background-repeat: no-repeat;
	background-position: right center;
}

@media (max-width: 1024px) {
  #entry_sec .recruit-header {
    margin-bottom: 20px;
  }

  #entry_sec.recruit-section {
    padding: 35px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-position: 68%;
  }

  #entry_sec .recruit-title-en {
    font-size: 28px;
    margin-bottom: 0;
  }

  #entry_sec .recruit-title-ja {
    font-size: 11px;
  }

  #entry_sec .recruit-subtitle {
    font-size: 16px;
    margin: 15px 0;
  }

  #entry_sec .recruit-description {
    font-size: 13px;
    margin-bottom: 30px;
  }

  #entry_sec .recruit_entry_btm {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #entry_sec .btn-primary {
    display: block;
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 12px 20px;
    margin: 0;
  }

  #entry_sec .btn-primary:first-child {
    margin-top: 0;
  }
	
	#entry_sec .recruit-banner-label {
    font-size: 18px;
	background-size: 18px 18px;
	}
	
}

/* jobdescription　採用情報 */
.profile-flow {
    margin: 90px 0 125px;
}

@media (max-width: 767px) {
	.profile-flow {
		margin: 50px 0 80px;
	}
	
  .profile-flow_img{
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; 
    padding-bottom: 10px;             
  }

  .profile-flow_img img{
    display: block;
    width: auto;
    max-width: none;
    height: auto;
    max-width: 840px; 
  }
}