@charset "utf-8";
/*------------------------------------------------------------
	graduate
------------------------------------------------------------*/
#pagePath::before {
	background: #F5F5F5;
}
.pageHeader_wrap {
    display: flex;
    align-items: center;
    gap: 80px;
	margin-top: 0.5rem;
    width: 116.4rem;
	color: #fff;
}
.pageHeader_wrap p {
    color: #fff;
    margin-bottom: 0 !important;
}
.pageTitle h2 {
    width: unset;
}
#main {
	padding-bottom: 21.4rem;
	background: #ECF3F8;
}
#main .pageTitle {
	background-image: url(../img/requirement/page_title_bg.webp);
}
#main .content {
	width: 116.4rem;
}
#main p {
	margin-bottom: 4rem;
    font-size: 1.8rem;
	line-height: 1.875;
}
#main p.lead {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 7rem;
}
#main .btn a {
	display: block;
}
#main .btn a:hover {
	opacity: 0.7;
}
#main section {
    /* background: #fff;
    border-radius: 20px;
    padding: 30px 40px;
	margin-bottom: 40px;
	border: 1px solid #005BAB; */
}

#main section .heading01 {
    margin-bottom: 3.3rem;
    color: #2078D0;
    font-weight: 500;
    font-size: 3.8rem;
    line-height: 1.356;
    display: flex;
    align-items: center;
}
#main section .heading01 .icon {
    width: 60px;
    margin-right: 20px;
}
.fBtn {
  width: 28.6rem;
  margin: 30px auto 15px;
  text-align: center;
  background: linear-gradient(90deg, #1191f4 0%, #50b9f2 100%);
  border-radius: 32px;
}
.fBtn a {
    padding: 1.8rem 4rem 1.7rem 1.9rem;
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #fff;
    border: 0.1rem solid #fff;
    background: url(../img/common/icon03.png) no-repeat right 2rem center / 1.7rem;
}

/* ===== Job Spec (recruit table) ===== */
.jobSpec{
  --frame: #2f6fd6;
  --line: rgba(0,0,0,.08);
  --text: #1b1f2a;
  --muted: rgba(27,31,42,.78);

  color: var(--text);

  background-color: #FCFCFC;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  /* background: linear-gradient(90deg, #1191f4 0%, #50b9f2 100%); */
}

.jobSpec__toggle {
  width: 100%;
  text-align: left;
  font-size: 2rem;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  /* color: #fff; */
}
.jobSpec__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .3s ease;
}
.jobSpec__icon::before,
.jobSpec__icon::after {
  content: "";
  position: absolute;
  background: #000;
}

.jobSpec__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.jobSpec__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: opacity .3s ease;
}

/* 開いた状態 */
.jobSpec.is-open .jobSpec__icon::after {
  opacity: 0;
}
.jobSpec.is-open {
  padding-bottom: 60px;
}

.jobSpec__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.jobSpec__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 22px;
  border: 2px solid var(--frame);
  border-radius: 10px;
  background: #fff;
}

.jobSpec__list{
  margin: 0;
}

.jobSpec__row{
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  column-gap: 28px;
  padding: 18px 0;

}

.jobSpec__row:first-child{
  border-top: none;
}

/* left label */
.jobSpec__dt{
  margin: 0;
  padding-left: 6px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--frame);

  border-bottom: 1px solid var(--frame);
  padding-bottom: 10px;
}

/* underline like the screenshot */
/* .jobSpec__dt::after{
  content:"";
  display: block;
  margin-top: 10px;
  width: 120px;
  height: 2px;
  background: var(--frame);
  border-radius: 2px;
} */

/* right body */
.jobSpec__dd{
  margin: 0;
  color: var(--muted);
  line-height: 2.0;
  font-size: 14.5px;

  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

/* improve wrapping for long texts */
.jobSpec__dd{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===== responsive ===== */
@media (max-width: 640px){
  .jobSpec__inner{
    padding: 18px 14px;
    border-radius: 8px;
  }

  .jobSpec__row{
    grid-template-columns: 1fr; /* label + body stacked */
    row-gap: 10px;
    padding: 14px 0;
  }

  .jobSpec__dt::after{
    width: 96px;
    margin-top: 8px;
  }

  .jobSpec__dd{
    font-size: 14px;
    line-height: 1.9;
  }
}

@media all and (max-width: 896px) {
	.pageTitle {
        margin-bottom: 3.5rem;
        height: 19rem;
    }
	.pageHeader_wrap {
		display: flex;
		align-items: center;
		gap: 0;
		padding: 0 30px;
		color: #fff;
		flex-direction: column;
	}
	.pageTitle h2 {
		padding: 0 !important;
	}
	#main {
		padding-bottom: 16rem;
	}
	#main p {
		margin-bottom: 4rem;
		font-size: 1.6rem;
	}
	#main .btn {
		margin: 0 auto;
		max-width: 32rem;
	}
	
}

