@charset "utf-8";
/* CSS Document — Crack up top page (BEM) */
.main-wrap{overflow: hidden;}

.fv_news_slider {
  z-index: 8;
  width: min(800px, 80%);
	margin: 80px auto 0;
}
.fv_news_slider .contents {
  width: 100%;
}
.fv_news_slider .webgene-blog {
  position: relative;
  height: 54px;
  overflow: hidden;
  border: 1px solid #3aaecc;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 0 10px rgba(0,0,0,0.1)
}
.fv_news_slider .webgene-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) rotateX(18deg);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.fv_news_slider .webgene-item.active {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  pointer-events: auto;
}
.fv_news_slider .webgene-item a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 clamp(24px, 3vw, 44px);
  box-sizing: border-box;
  text-decoration: none;
}
.fv_news_slider .item {
  width: 100%;
  gap: clamp(18px, 2vw, 28px);
  min-width: 0;
}
.fv_news_slider .label1 {
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(16px, 2vw, 28px);
}
.fv_news_slider .catelabel, .fv_news_slider .date {
  position: relative;
}
.fv_news_slider .catelabel::after, .fv_news_slider .date::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(clamp(16px, 2vw, 28px) * -0.5);
  width: 1px;
  height: 22px;
  background: rgba(129, 99, 83, 0.35);
  transform: translateY(-50%);
}
.fv_news_slider .label1 {
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(14px, 2vw, 24px);
}
.fv_news_slider .catelabel {
  color: #3aaecc;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.fv_news_slider .date {
  font-size: 12px;
  letter-spacing: 0.08em;
}
.fv_news_slider h3 {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.fv_news_slider .over-txt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 576px) {
  .fv_news_slider {
    width: 92%;
  }
  .fv_news_slider .webgene-blog {
    height: 50px;
  }
  .fv_news_slider .webgene-item a {
    padding: 0 18px;
  }
  .fv_news_slider .item {
    gap: 12px;
  }
  .fv_news_slider h3 {
    font-size: 12px;
  }
}

/* ---------- shared index utilities ---------- */
.idx-section {
	position: relative;
	padding: var(--cr-section-pad) 0;
	overflow: hidden;
}

/* GradDiamond — Figma background ornaments */
.idx-deco {
	position: absolute;
	border-radius: 10px;
	transform: rotate(45deg);
	pointer-events: none;
	z-index: 0;
}
.idx-deco--yellow {
	background: linear-gradient(135deg, rgb(248, 240, 168) 0%, rgb(244, 220, 106) 100%);
}
.idx-deco--orange {
	background: linear-gradient(135deg, rgb(248, 212, 168) 0%, rgb(244, 184, 122) 100%);
}
.idx-deco--peach {
	background: linear-gradient(135deg, rgb(248, 228, 184) 0%, rgb(244, 202, 132) 100%);
}
.idx-deco--blue {
	background: linear-gradient(135deg, rgb(200, 238, 248) 0%, rgb(160, 216, 240) 100%);
}
.idx-deco--green {
	background: linear-gradient(135deg, rgb(168, 236, 212) 0%, rgb(122, 218, 184) 100%);
}
.idx-deco--purple {
	background: linear-gradient(135deg, rgb(212, 184, 244) 0%, rgb(184, 154, 232) 100%);
}
.idx-section > .cr-inner,
.idx-section > .idx-about__inner,
.idx-section > .idx-recruit__inner {
	position: relative;
	z-index: 1;
}

/* ---------- hero ---------- */
.idx-hero {
	position: relative;
	min-height: calc(100vh - var(--cr-header-height));
	min-height: calc(100dvh - var(--cr-header-height));
	max-height: 100vh;
	max-height: 100dvh;
	background: #fff;
	overflow: hidden;
}
.idx-hero__inner {
	display: flex;
	flex-direction: row-reverse;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	min-height: calc(100vh - var(--cr-header-height));
	min-height: calc(100dvh - var(--cr-header-height));
	max-height: 100vh;
	max-height: 100dvh;
	height: calc(100vh - var(--cr-header-height));
	height: calc(100dvh - var(--cr-header-height));
}
.idx-hero__content {
	position: relative;
	flex: 0 0 42%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(48px, 5.21vw, 100px) clamp(24px, 4.17vw, 80px);
	background: linear-gradient(148.78deg, #fffdf8 8.49%, #fef6e8 58.3%, #eef8fc 91.51%);
	z-index: 1;
}
.idx-hero__content .idx-deco--1 {
	top: 6%;
	left: 3%;
	width: 80px;
	height: 80px;
	opacity: 0.35;
}
.idx-hero__content .idx-deco--2 {
	top: 54%;
	left: 13%;
	width: 36px;
	height: 36px;
	opacity: 0.28;
}
.idx-hero__content .idx-deco--3 {
	top: 82%;
	left: 64%;
	width: 48px;
	height: 48px;
	opacity: 0.28;
}
.idx-hero__content > *:not(.idx-deco) {
	position: relative;
	z-index: 1;
}
.idx-hero__subtitle {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.idx-hero__subtitle::before {
	content: "";
	display: block;
	width: 24px;
	height: 1px;
	background: var(--cr-primary);
	flex-shrink: 0;
}
.idx-hero__subtitle p {
	font-size: 12px;
	font-weight: 700;
	color: var(--cr-text-pale);
	letter-spacing: 0.28em;
	margin: 0;
}
.idx-hero__heading {
	margin-bottom: 24px;
}
.idx-hero__heading-line {
	font-size: clamp(32px, 3.75vw, 72px);
	font-weight: 900;
	line-height: 1.15;
	color: #2a2018;
	margin: 0;
	font-family: var(--cr-font-heading);
}
.idx-hero__heading-line.idx-hero__accent {
	color: var(--cr-orange);
}
.idx-hero__lead p {
	font-size: clamp(14px, 0.89vw, 17px);
	color: var(--cr-text-light);
	line-height: 2;
	margin-bottom: 8px;
	max-width: 520px;
}
.idx-hero__lead p:last-child {
	margin-bottom: 32px;
}
.idx-hero__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: clamp(32px, 3.13vw, 56px);
}
.idx-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-right: 20px;
	box-shadow: 0 4px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
}
.btn-primary-teal:hover p{
	color: #fff;
}
.btn-outline-teal:hover p{
	color: var(--cr-primary);
}
.idx-hero__btn-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.idx-hero__btn-icon img {
	width: 100%;
	height: 100%;
	display: block;
}
.idx-hero__features-wrap {
	background: rgba(255, 255, 255, 0.85);
	border-radius: 20px;
	padding: 24px;
	max-width: 480px;
}
.idx-hero__features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.idx-hero__feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px;
	border-radius: 14px;
}
.idx-hero__feature--teal { background: #eef8fc; }
.idx-hero__feature--orange { background: #fff4ed; }
.idx-hero__feature--yellow { background: #fffbe6; }
.idx-hero__feature--pink { background: #fdeef5; }
.idx-hero__feature--green { background: #eafaf4; }
.idx-hero__feature--purple { background: #f3eeff; }
.idx-hero__feature-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}
.idx-hero__feature-icon img {
	width: 16px;
	height: 16px;
	display: block;
}
.idx-hero__feature-title {
	font-family: var(--cr-font-heading);
	font-size: 13px;
	font-weight: 900;
	color: var(--cr-text-dark);
	margin: 0 0 2px;
	line-height: 1.25;
}
.idx-hero__feature-desc {
	font-size: 11px;
	font-weight: 400;
	color: var(--cr-text-pale);
	margin: 0;
	line-height: 1.375;
}
.idx-hero__image {
	flex: 0 0 58%;
	position: relative;
	max-height: 100vh;
	overflow: hidden;
	align-self: stretch;
}
body:not(.gjs-dashed) .idx-hero__image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, #fef6e8 0%, rgba(254, 246, 232, 0.85) 20%, rgba(254, 246, 232, 0.5) 50%, rgba(254, 246, 232, 0.15) 75%, transparent 100%);
	z-index: 3;
	pointer-events: none;
}
.idx-hero__slider,
.idx-hero__slider.swiper-container {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-height: 100vh;
	overflow: hidden;
	z-index: 0;
}
.idx-hero__slider .swiper-wrapper,
.idx-hero__slider .swiper-slide {
	width: 100%!important;
	height: 100%;
}
body.gjs-dashed .swiper-wrapper{
	display: flex!important;
	flex-direction: column;
}
body.gjs-dashed .idx-hero__slider .swiper-slide{
	height: 30vh!important;
	width: 50%!important;
	overflow: hidden;
}

.idx-hero__image .rectangle-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.idx-hero__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
body.gjs-dashed .idx-hero__image .rectangle-img,body.gjs-dashed .idx-hero__image img{
	position: static!important;
}
.idx-hero__scroll {
	position: absolute;
	bottom: 48px;
	right: clamp(24px, 4vw, 80px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 4;
}
.idx-hero__scroll p {
	font-size: 11px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.25em;
	margin: 0;
}
.idx-hero__scroll-line {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.6);
	opacity: 0.51;
}

/* ---------- about ---------- */
.idx-about {
	background: linear-gradient(180deg, #fff 0%, var(--cr-bg-light) 100%);
	overflow: visible;
}
.idx-about > .idx-deco--1 {
	top: 8%;
	right: -2%;
	width: 80px;
	height: 80px;
	opacity: 0.35;
}
.idx-about > .idx-deco--2 {
	bottom: 6%;
	left: 2%;
	width: 48px;
	height: 48px;
	opacity: 0.3;
}
.idx-about__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 4.17vw, 80px);
	align-items: center;
}
.idx-about__text p {
	font-size: clamp(15px, 0.94vw, 18px);
	color: var(--cr-text-body);
	line-height: 1.9;
	margin-bottom: 20px;
}
.idx-about__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}
.idx-about__visual {
	position: relative;
}
.idx-about__main-img {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
}
.idx-about__main-img img {
	display: block;
	width: 100%;
	height: auto;
}
.idx-about__badge {
	position: absolute;
	min-width: clamp(88px, 5.83vw, 112px);
	padding: 20px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 7.5px rgba(0, 0, 0, 0.1), 0 4px 3px rgba(0, 0, 0, 0.1);
	z-index: 2;
}
.idx-about__badge--years {
	bottom: 0;
	left: -20px;
	background: var(--cr-yellow);
}
.idx-about__badge--capacity {
	top: -20px;
	right: -20px;
	background: var(--cr-primary);
}
.idx-about__badge-num {
	font-family: var(--cr-font-heading);
	font-size: clamp(20px, 1.56vw, 30px);
	font-weight: 900;
	color: #fff;
	margin: 0;
	line-height: 1;
}
.idx-about__badge-label {
	font-size: clamp(9px, 0.57vw, 11px);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}
.idx-about__sub-img {
	position: absolute;
	z-index: 2;
	pointer-events: none;
}
.idx-about__sub-img img {
	display: block;
	width: 100%;
	height: auto;
}
.idx-about__sub-img--1 {
	top: 6%;
	left: -8%;
	width: clamp(110px, 9vw, 175px);
}
.idx-about__sub-img--2 {
	bottom: -2%;
	right: -12%;
	width: clamp(140px, 12vw, 230px);
}

/* ---------- reasons ---------- */
.idx-reasons {
	background: linear-gradient(135deg, #e8f5fb 0%, #fffdf8 50%, #fef3e2 100%);
}
.idx-reasons > .idx-deco--1 {
	top: 4%;
	right: -3%;
	width: 90px;
	height: 90px;
	opacity: 0.25;
}
.idx-reasons > .idx-deco--2 {
	top: 59%;
	left: 1%;
	width: 56px;
	height: 56px;
	opacity: 0.22;
}
.idx-reasons > .idx-deco--3 {
	bottom: 4%;
	right: 4%;
	width: 40px;
	height: 40px;
	opacity: 0.22;
}
.idx-reasons .section-label-center {
	margin-bottom: clamp(32px, 3.13vw, 60px);
}
.idx-reasons__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(20px, 1.67vw, 32px);
}
.idx-reasons__card {
	position: relative;
	background: var(--cr-bg-white);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.idx-reasons__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cr-shadow-md);
}
.idx-reasons__card-img {
	position: relative;
}
.idx-reasons__card-img .rectangle-img {
	height: 260px;
	overflow: hidden;
}
.idx-reasons__card-num {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.idx-reasons__card--01 .idx-reasons__card-num { background: rgba(58, 174, 204, 0.6); }
.idx-reasons__card--02 .idx-reasons__card-num { background: rgba(244, 135, 75, 0.6); }
.idx-reasons__card--03 .idx-reasons__card-num { background: rgba(212, 168, 0, 0.6); }
.idx-reasons__card--04 .idx-reasons__card-num { background: rgba(42, 148, 112, 0.6); }
.idx-reasons__card-num p {
	font-family: var(--cr-font-heading);
	font-size: 24px;
	font-weight: 900;
	color: #fff;
	margin: 0;
}
.idx-reasons__card-body {
	padding: clamp(28px, 2.08vw, 40px);
}
.idx-reasons__card-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}
.idx-reasons__card-icon {
	width: 48px;
	height: 48px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.idx-reasons__card--01 .idx-reasons__card-icon { background: linear-gradient(135deg, #c8eef8 0%, #a0d8f0 100%); }
.idx-reasons__card--02 .idx-reasons__card-icon { background: linear-gradient(135deg, #f8d4a8 0%, #f4b87a 100%); }
.idx-reasons__card--03 .idx-reasons__card-icon { background: linear-gradient(135deg, #f8f0a8 0%, #f4dc6a 100%); }
.idx-reasons__card--04 .idx-reasons__card-icon { background: linear-gradient(135deg, #a8ecd4 0%, #7ada88 100%); }
.idx-reasons__card-icon img {
	width: 22px;
	height: 22px;
	display: block;
}
.idx-reasons__card-head h3 {
	font-size: clamp(18px, 1.15vw, 22px);
	font-weight: 900;
	margin: 0;
}
.idx-reasons__card-line {
	width: 48px;
	height: 2px;
	border-radius: 999px;
	margin-bottom: 24px;
}
.idx-reasons__card--01 .idx-reasons__card-line { background: var(--cr-primary); }
.idx-reasons__card--02 .idx-reasons__card-line { background: var(--cr-orange); }
.idx-reasons__card--03 .idx-reasons__card-line { background: #d4a800; }
.idx-reasons__card--04 .idx-reasons__card-line { background: #2a9470; }
.idx-reasons__card-body > p {
	font-size: clamp(13px, 0.83vw, 15px);
	color: var(--cr-text-light);
	line-height: 2;
	margin: 0;
}

/* ---------- services ---------- */
.idx-services {
	background: var(--cr-bg-light);
}
.idx-services .section-label-center {
	margin-bottom: clamp(32px, 3.13vw, 60px);
}
.idx-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 1.67vw, 32px);
}
.idx-services__card {
	background: var(--cr-bg-white);
	border-radius: var(--cr-radius-md);
	overflow: hidden;
	box-shadow: var(--cr-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.idx-services__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cr-shadow-md);
}
.idx-services__card-img {
	position: relative;
}
.idx-services__card-img .rectangle-img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.idx-services__card-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 6px 16px;
	border-radius: var(--cr-radius-pill);
	background: var(--cr-gradient-teal);
	z-index: 2;
}
.idx-services__card-badge p {
	font-size: clamp(11px, 0.68vw, 13px);
	font-weight: 700;
	color: #fff;
	margin: 0;
}
.idx-services__card-body {
	padding: clamp(20px, 1.67vw, 28px);
}
.idx-services__card-body h3 {
	font-size: clamp(16px, 1.04vw, 20px);
	font-weight: 900;
	margin-bottom: 8px;
}
.idx-services__card-body > p {
	font-size: clamp(13px, 0.83vw, 15px);
	color: var(--cr-text-muted);
	line-height: 1.8;
	margin-bottom: 16px;
}
.idx-services__card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: clamp(13px, 0.83vw, 15px);
	font-weight: 700;
	color: var(--cr-primary);
}
.idx-services__card-link p {
	margin: 0;
	color: inherit;
}
.idx-services__card-link::after {
	content: "→";
}

/* ---------- facility ---------- */
.idx-facility {
	background: var(--cr-bg-white);
}
.idx-facility .cr-inner{
	max-width: 1440px;
}
.idx-facility .section-label-center {
	margin-bottom: clamp(32px, 3.13vw, 60px);
}
.idx-facility__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	grid-template-rows: repeat(2, 1fr);
	gap: clamp(12px, 0.83vw, 16px);
}
.idx-facility__main {
	grid-row: 1 / 3;
	border-radius: var(--cr-radius-md);
	overflow: hidden;
	background: var(--cr-bg-white);
	box-shadow: var(--cr-shadow-sm);
}
.idx-facility__main-img.rectangle-img {
	width: 100%;
	height: 100%;
	min-height: 400px;
	overflow: hidden;
	position: relative;
}
.idx-facility__main-img.rectangle-img img{
	position: static;
	transform: none;
	object-fit: cover;
	width: 100%;
	height: 100%;
	min-height: 400px;
}
.idx-facility__main-body,
.idx-facility__sub-body {
	padding: clamp(16px, 1.25vw, 24px);
}
.idx-facility__main-body h3,
.idx-facility__sub-body h3 {
	font-size: clamp(15px, 1.04vw, 18px);
	font-weight: 900;
	margin-bottom: 8px;
}
.idx-facility__main-body p,
.idx-facility__sub-body p {
	font-size: clamp(13px, 0.83vw, 14px);
	color: var(--cr-text-muted);
	line-height: 1.8;
	margin: 0;
}
.idx-facility__sub {
	border-radius: var(--cr-radius-sm);
	overflow: hidden;
	background: var(--cr-bg-white);
	box-shadow: var(--cr-shadow-sm);
}
.idx-facility__sub-img .rectangle-img {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

/*追加*/
.idx-facility__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: clamp(12px, 0.83vw, 16px);
}

.idx-facility__main {
	grid-column: span 2;
	grid-row: span 2;
	border-radius: var(--cr-radius-md);
	overflow: hidden;
	background: var(--cr-bg-white);
	box-shadow: var(--cr-shadow-sm);
}

.idx-facility__sub {
	grid-column: span 1;
	border-radius: var(--cr-radius-sm);
	overflow: hidden;
	background: var(--cr-bg-white);
	box-shadow: var(--cr-shadow-sm);
}
/* ---------- staff ---------- */
.idx-staff {
	background: var(--cr-bg-light);
}
.idx-staff .section-label-center {
	margin-bottom: clamp(16px, 1.67vw, 32px);
}
.idx-staff__lead {
	text-align: center;
	margin-bottom: clamp(24px, 2.08vw, 40px);
}
.idx-staff__lead p {
	font-size: clamp(14px, 0.94vw, 16px);
	color: var(--cr-text-muted);
	margin: 0;
}
.idx-staff__grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(0, calc((100% - clamp(12px, 1.04vw, 20px) * 4) / 5))
  );
  gap: clamp(12px, 1.04vw, 20px);
  justify-content: center;}
.idx-staff__card {
	background: var(--cr-bg-white);
	border-radius: var(--cr-radius-md);
	overflow: hidden;
	box-shadow: var(--cr-shadow-sm);
	text-align: center;
	transition: transform 0.3s ease;
}
.idx-staff__card:hover {
	transform: translateY(-4px);
}
.idx-staff__card-img .rectangle-img {
	aspect-ratio: 3 / 4;
	overflow: hidden;
}
.idx-staff__card-body {
	padding: 16px 12px 20px;
}
.idx-staff__card-role {
	font-size: clamp(10px, 0.63vw, 12px);
	color: var(--cr-primary);
	font-weight: 500;
	margin-bottom: 4px;
}
.idx-staff__card-body h3 {
	font-size: clamp(13px, 0.83vw, 15px);
	font-weight: 900;
	margin-bottom: 8px;
}
.idx-staff__card-body > p {
	font-size: clamp(11px, 0.68vw, 13px);
	color: var(--cr-text-light);
	margin: 0;
	line-height: 1.7;
}
.idx-staff__btn-wrap {
	text-align: center;
	margin-top: clamp(32px, 2.6vw, 48px);
}
.idx-staff > .idx-deco--1 {
	top: 4%;
	right: -2%;
	width: 64px;
	height: 64px;
	opacity: 0.3;
}
.idx-staff > .idx-deco--2 {
	bottom: 5%;
	left: 2%;
	width: 44px;
	height: 44px;
	opacity: 0.28;
}

/* ---------- recruit ---------- */
.idx-recruit {
	background: linear-gradient(153.64deg, #f4874b 0%, #f9b46a 40%, #f5c531 100%);
	color: #fff;
	overflow: hidden;
}
.idx-recruit > .idx-deco--1 {
	top: 6%;
	left: 6%;
	width: 80px;
	height: 80px;
	opacity: 0.3;
}
.idx-recruit > .idx-deco--2 {
	top: 48%;
	left: 20%;
	width: 56px;
	height: 56px;
	opacity: 0.25;
}
.idx-recruit > .idx-deco--3 {
	top: 19%;
	right: 2%;
	width: 42px;
	height: 42px;
	opacity: 0.35;
}
.idx-recruit > .idx-deco--4 {
	bottom: -4%;
	right: -4%;
	width: 100px;
	height: 100px;
	opacity: 0.22;
}
.idx-recruit__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 3.13vw, 60px);
	align-items: center;
	position: relative;
	z-index: 1;
}
.idx-recruit__content .section-label__en {
	color: rgba(255, 255, 255, 0.85);
	letter-spacing: 0.22em;
}
.idx-recruit__content .section-label__marks {
	display: none;
}
.idx-recruit__content h2 {
	font-size: clamp(28px, 2.4vw, 46px);
	font-weight: 900;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.25;
}
.idx-recruit__content > p {
	font-size: clamp(15px, 0.99vw, 19px);
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.85;
	margin-bottom: 28px;
}
.idx-recruit__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 36px;
}
.idx-recruit__tags .tag-pill {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.idx-recruit__tags .tag-pill p {
	color: #fff;
}
.idx-recruit__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 60px;
	padding: 14px 32px;
	border-radius: var(--cr-radius-pill);
	background: #fff;
	box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
	transition: opacity 0.3s ease;
}
.idx-recruit__btn p {
	font-size: 18px;
	font-weight: 900;
	color: var(--cr-orange);
	margin: 0;
}
.idx-recruit__btn-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.idx-recruit__btn-icon img {
	width: 100%;
	height: 100%;
	display: block;
}
.idx-recruit__image {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.idx-recruit__image .rectangle-img {
	aspect-ratio: 4 / 3;
	max-height: 420px;
	overflow: hidden;
}

/* ---------- instagram ---------- */
.idx-instagram {
	background: var(--cr-bg-white);
}
.idx-instagram > .idx-deco--1 {
	top: 3%;
	left: 2%;
	width: 70px;
	height: 70px;
	opacity: 0.28;
}
.idx-instagram > .idx-deco--2 {
	bottom: 4%;
	right: -1%;
	width: 48px;
	height: 48px;
	opacity: 0.28;
}
.idx-instagram .section-label-center {
	margin-bottom: clamp(16px, 1.67vw, 24px);
}
.idx-instagram__lead {
	text-align: center;
	margin-bottom: 8px;
}
.idx-instagram__lead p {
	font-size: clamp(14px, 0.94vw, 16px);
	color: var(--cr-text-muted);
	margin: 0;
}
.idx-instagram__account {
	text-align: center;
	margin-bottom: clamp(24px, 2.08vw, 40px);
}
.idx-instagram__account a p {
	font-size: clamp(14px, 0.94vw, 18px);
	font-weight: 700;
	color: var(--cr-primary);
	margin: 0;
}
.idx-instagram .webgene-blog {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: clamp(8px, 0.52vw, 10px);
}
.idx-instagram .webgene-blog .webgene-item {
	border-radius: var(--cr-radius-sm);
	overflow: hidden;
	aspect-ratio: 1;
	transition: transform 0.3s ease, opacity 0.3s ease;
	position: relative;
}
.idx-instagram .webgene-blog .webgene-item a{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
}
.idx-instagram .webgene-blog .webgene-item:hover {
	transform: scale(1.03);
	opacity: 0.9;
}
.idx-instagram .webgene-blog .webgene-item .square-img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* ---------- news ---------- */
.idx-news {
	background: var(--cr-bg-light);
}
.idx-news > .idx-deco--1 {
	top: 7%;
	right: -1%;
	width: 60px;
	height: 60px;
	opacity: 0.28;
}
.idx-news > .idx-deco--2 {
	bottom: 4%;
	left: 2%;
	width: 42px;
	height: 42px;
	opacity: 0.25;
}
.idx-news__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: clamp(24px, 2.08vw, 40px);
}
.idx-news__more p {
	font-size: clamp(13px, 0.83vw, 15px);
	font-weight: 700;
	color: var(--cr-primary);
	margin: 0;
}
.idx-news .webgene-blog {
	display: flex;
	flex-direction: column;
}
.idx-news .webgene-blog .webgene-item a{
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: clamp(16px, 1.25vw, 24px);
	align-items: center;
	padding: clamp(16px, 1.25vw, 24px) 0;
	border-bottom: 1px solid rgba(58, 174, 204, 0.15);
	transition: background 0.3s ease;
}
.idx-news .webgene-blog .webgene-item:first-child {
	border-top: 1px solid rgba(58, 174, 204, 0.15);
}
.idx-news .webgene-blog .webgene-item:hover {
	background: rgba(255, 255, 255, 0.6);
}
.idx-news .webgene-blog .webgene-item .idx-news__item-img {
	border-radius: var(--cr-radius-sm);
	overflow: hidden;
}
.idx-news .webgene-blog .webgene-item .idx-news__item-img.square-img {
	aspect-ratio: 1;
	overflow: hidden;
}
.idx-news .webgene-blog .webgene-item-date {
	font-size: clamp(12px, 0.73vw, 14px);
	color: var(--cr-text-light);
	margin-bottom: 4px;
}
.idx-news .webgene-blog .webgene-item-body h3 {
	font-size: clamp(14px, 0.94vw, 16px);
	font-weight: 500;
	color: var(--cr-text-dark);
	margin: 0;
	line-height: 1.6;
}

/* ---------- blog ---------- */
.idx-blog {
	background: var(--cr-bg-white);
}
.idx-blog > .idx-deco--1 {
	top: 4%;
	right: -2%;
	width: 76px;
	height: 76px;
	opacity: 0.28;
}
.idx-blog > .idx-deco--2 {
	bottom: 5%;
	left: 2%;
	width: 48px;
	height: 48px;
	opacity: 0.26;
}
.idx-blog > .idx-deco--3 {
	top: 44%;
	right: 6%;
	width: 36px;
	height: 36px;
	opacity: 0.22;
}
.idx-blog__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: clamp(24px, 2.08vw, 40px);
}
.idx-blog__more p {
	font-size: clamp(13px, 0.83vw, 15px);
	font-weight: 700;
	color: var(--cr-primary);
	margin: 0;
}
.idx-blog .webgene-blog {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 1.67vw, 32px);
}
.idx-blog .webgene-blog .webgene-item a{
	width: 100%;
	background: var(--cr-bg-white);
	border-radius: var(--cr-radius-md);
	overflow: hidden;
	box-shadow: var(--cr-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.idx-blog__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cr-shadow-md);
}
.idx-blog__card-img .rectangle-img {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.idx-blog__card-body {
	padding: clamp(16px, 1.25vw, 24px);
}
.idx-blog__card-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}
.idx-blog__card-date {
	font-size: clamp(11px, 0.68vw, 13px);
	color: var(--cr-text-light);
	margin: 0;
}
.idx-blog__card-cat {
	padding: 4px 12px;
	border-radius: var(--cr-radius-pill);
	background: var(--cr-tag-bg);
}
.idx-blog__card-cat p {
	font-size: clamp(10px, 0.63vw, 12px);
	font-weight: 500;
	color: var(--cr-tag-text);
	margin: 0;
}
.idx-blog__card-body h3 {
	font-size: clamp(14px, 0.94vw, 16px);
	font-weight: 700;
	line-height: 1.6;
	margin: 0;
}

/* ---------- IE only ---------- */
@media all and (-ms-high-contrast: none) {
	.idx-hero__inner {
		display: block;
	}
}

/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
	.idx-hero__content {
		flex: 0 0 45%;
		padding: 48px 40px;
	}
	.idx-hero__image {
		flex: 0 0 55%;
	}
	.idx-staff__grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.idx-instagram .webgene-blog {
		grid-template-columns: repeat(4, 1fr);
	}
	.idx-section{
		padding-left: 80px;
		padding-right: 80px;
	}
}

/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
	.idx-hero {
		min-height: auto;
		max-height: none;
	}
	.idx-hero__inner {
		flex-direction: column;
		min-height: auto;
		max-height: none;
		height: auto;
	}
	.idx-hero__content {
		flex: none;
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: center;
		gap: 20px;
		padding: 64px 40px 48px;
	}
	.idx-hero__image {
		flex: none;
		width: 100%;
		height: 40vh;
		max-height: 100vh;
		min-height: 320px;
	}
	.idx-hero__scroll {
		display: none;
	}
	.idx-about__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	/*
	.idx-about__badge--years {
		top: 16px;
		right: 16px;
	}
	*/
	.idx-facility__main {
		grid-row: auto;
		grid-column: 1 / -1;
	}
	.idx-staff__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.idx-recruit__inner {
		grid-template-columns: 1fr;
	}
	.idx-instagram .webgene-blog {
		grid-template-columns: repeat(3, 1fr);
	}
	.idx-about__visual{
		width: 70%;
		margin: 0 auto;
	}
	.idx-section{
		padding-left: 60px;
		padding-right: 60px;
	}
	body:not(.gjs-dashed) .idx-hero__image::before{
		display: none;
	}
	.idx-facility__grid {
		grid-template-columns: 1fr;
	}
	.idx-facility__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}
}

/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
	.idx-hero__content {
		padding: 48px 24px 32px;
	}
	.idx-hero__features {
		grid-template-columns: 1fr;
		max-width: 100%;
	}
	.idx-hero__heading-line {
		font-size: clamp(28px, 7vw, 40px);
	}
	/*
	.idx-about__sub-img--1,
	.idx-about__sub-img--2 {
		position: relative;
		width: 48%;
	}
	*/
	.idx-about__visual {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.idx-about__main-img {
		grid-column: 1 / -1;
	}
	/*
	.idx-about__badge--years,
	.idx-about__badge--capacity {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
	}
	*/
	.idx-staff__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.idx-instagram .webgene-blog {
		grid-template-columns: repeat(2, 1fr);
	}
	.idx-news .webgene-blog .webgene-item a{
		grid-template-columns: 80px 1fr;
		gap: 12px;
	}
	.idx-section{
		padding-left: 50px;
		padding-right: 50px;
	}
	.idx-reasons__grid {
		grid-template-columns: 1fr;
	}
	.idx-services__grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}
}

/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
	.idx-hero__content {
		padding: 32px 16px 24px;
	}
	.idx-hero__content {
		flex: none;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		gap: 20px;
	}
	.idx-hero__content > div{
		width: 100%;
	}
	.idx-hero__btns {
		flex-direction: column;
		max-width: 300px;
		margin: 0 auto;
	}
	.idx-hero__btns a {
		width: 100%;
	}
	.idx-hero__features {
		gap: 8px;
	}
	.idx-about__badge {
		width: 72px;
		height: 72px;
		padding: 10px;
	}
	.idx-staff__grid {
		grid-template-columns: 1fr 1fr;
	}
	.idx-instagram .webgene-blog {
		grid-template-columns: repeat(2, 1fr);
		gap: 6px;
	}
	.idx-news .webgene-blog .webgene-item a{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.idx-news .webgene-blog .webgene-item .idx-news__item-img {
		width: 100%;
		max-width: 240px;
	}
	.idx-section{
		padding-left: 20px;
		padding-right: 20px;
	}
	.idx-about__visual{
		width: 100%;
	}
	.idx-blog .webgene-blog {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}
  .idx-hero__heading-line{
    font-size: clamp(20px, 6vw, 40px)
  }
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {
	.idx-hero__feature {
		padding: 10px 12px;
	}
	.idx-hero__feature-icon {
		width: 28px;
		height: 28px;
	}
	.idx-staff__grid {
		grid-template-columns: 1fr;
	}
	.idx-instagram .webgene-blog {
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 576px) {
    .idx-staff__card-body > p {
        text-align: left;
    }
}