/* 職種と業務連携を知る
=========================================================================
=========================================================================*/
main {
  background-color: #D8EEF7;
}

/* Page title
-----------------------------------------------------------*/
.title {
  position: relative;
  padding: 75px 15px;
  text-align: center;
  background-image: linear-gradient(135deg, #C2E2FC 0%, #C6DEF9 25%, #C2EEFF 61%, #9ED1FC 100%)
}

.title h1 {
  overflow: visible !important;
  font-weight: 600;
  font-size: 37px;
  line-height: 1em;
}

.title h1 span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.title h1 span:nth-child(2) {
  display: block;
  margin-top: .75em;
  font-size: 14px;
  text-transform: uppercase;
}

/* Content
-----------------------------------------------------------*/
.content {
  padding: 60px 0 130px;
  background-color: #D8EEF7;
}

.content .inner {
  margin: 0 auto;
  max-width: 918px;
}

@media screen and (max-width:948px) {
  .content .inner {
    padding: 0 15px;
  }
}

.content p.intro {
  margin: 0 auto 40px;
  max-width: fit-content;
}

.content .chart {
  position: relative;
  margin-bottom: 70px;
}

.content .chart a {
  position: absolute;
  display: block;
  padding: 1.35em 0;
  width: calc(180 / 918 * 100%);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  border-radius: 6px;
  transition: 0.6s;
}

@media screen and (max-width:948px) {
  .content .chart a {
    font-size: calc(18 / 948 * 100vw);
  }
}

.content .chart a::before {
  content: '';
  position: absolute;
  top: -11px;
  right: -11px;
  width: 22px;
  height: 22px;
  background: url(../images/job/relationship/chart_plus.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
  transition: 0.6s;
}
@media(hover: hover) {
  .content .chart a:hover::before {
    transform: scale(1.25, 1.25);
  }

}

/* プラント管理 */
.content .chart a.plant {
  top: calc(284 / 752 * 100%);
  left: calc(35 / 918 * 100%);
  background-color: #DAE5A6;
}
.content .chart a.plant img {
  position: absolute;
  top: calc(-71 / 80 * 100%);
  left: calc(-18 / 180 * 100%);
  width: calc(98 / 180 * 100%);
}

/* 営業 */
.content .chart a.sales {
  top: calc(284 / 752 * 100%);
  left: calc(298 / 918 * 100%);
  background-color: #B2D6FF;
}
.content .chart a.sales img {
  position: absolute;
  top: calc(-38 / 80 * 100%);
  left: calc(34 / 180 * 100%);
  width: calc(121 / 180 * 100%);
}

/* 技術 */
.content .chart a.tech {
  top: calc(284 / 752 * 100%);
  left: calc(557 / 918 * 100%);
  background-color: #C5E9D2;
}
.content .chart a.tech img {
  position: absolute;
  bottom: 0;
  left: calc(9 / 180 * 100%);
  width: calc(201 / 180 * 100%);
}

/* 営業事務 */
.content .chart a.salesadmin {
  top: calc(427 / 752 * 100%);
  left: calc(219 / 918 * 100%);
  background-color: #C7D8FF;
}
.content .chart a.salesadmin img {
  position: absolute;
  top: calc(-33 / 80 * 100%);
  left: calc(-60 / 180 * 100%);
  width: calc(115 / 180 * 100%);
}

/* 商品分析 */
.content .chart a.analysis {
  top: calc(427 / 752 * 100%);
  left: calc(683 / 918 * 100%);
  background-color: #C5E1E9;
}
.content .chart a.analysis img {
  position: absolute;
  top: calc(-48 / 80 * 100%);
  left: calc(7 / 180 * 100%);
  width: calc(56 / 180 * 100%);
}

/* 管理事務 */
.content .chart a.admin {
  top: calc(572 / 752 * 100%);
  left: calc(81 / 918 * 100%);
  width: calc(734 / 918 * 100%);
  background-color: #E9E2ED;
}
.content .chart a.admin img {
  position: absolute;
  bottom: 0;
  left: calc(260 / 734 * 100%);
  width: calc(214 / 734 * 100%);
}

@media(hover: hover) {
  .content .chart a.tech:hover {
    background-color: #96D5AC;
  }
  .content .chart a.sales:hover {
    background-color: #7FB6FF;
  }
  .content .chart a.plant:hover {
    background-color: #C5D080;
  }
  .content .chart a.analysis:hover {
    background-color: #9FC8D5;
  }
  .content .chart a.salesadmin:hover {
    background-color: #9FB9FF;
  }
  .content .chart a.admin:hover {
    background-color: #CFC1DA;
  }
}

@media(hover: hover) {
  .content .chart a:hover img {
    animation: bounce 0.4s ease-out;
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-12px);
  }

  /* ← ピョコン上に */
  60% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(-5px);
  }

  /* ← 小さくもう一度 */
  100% {
    transform: translateY(0);
  }
}

.content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px calc(24 / 896 * 100%);
  margin: 0 auto;
  max-width: 896px;
}

.content ul>li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 38px 35px 32px 35px;
  width: calc(436 / 896 * 100%);
  background-color: #FFF;
  border-radius: 6px;
}
/* 営業 */
.content ul li#sales figure {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 139px;
}
/* 技術 */
.content ul li#tech figure {
  position: absolute;
  top: -19px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 186px;
}
/* プラント管理 */
.content ul li#plant figure {
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 98px;
}
/* 商品分析 */
.content ul li#analysis figure {
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 72px;
}
/* 営業事務 */
.content ul li#salesadmin figure {
  position: absolute;
  top: -43px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 106px;
}
/* 管理事務 */
.content ul li#admin figure {
  position: absolute;
  top: -11px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 129px;
}

.content ul li h2 {
  margin-bottom: 14px;
  padding: 1.25em;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  border-radius: 6px;
}
/* 営業 */
.content ul li#sales h2 {
  background-color: #B2D6FF;
}
/* 技術 */
.content ul li#tech h2 {
  background-color: #C5E9D2;
}
/* プラント管理 */
.content ul li#plant h2 {
  background-color: #DAE5A6;
}
/* 商品分析 */
.content ul li#analysis h2 {
  background-color: #C5E1E9;
}
/* 営業事務 */
.content ul li#salesadmin h2 {
  background-color: #C7D8FF;
}
/* 管理事務 */
.content ul li#admin h2 {
  background-color: #E9E2ED;
}

.content ul li p {
  margin-bottom: 40px;
  font-size: 14px;
}

.content ul li h3 {
  margin-top: auto;
    /* これで下寄せになる */
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding-right: 9px;
  width: fit-content;
}

.content ul li h3::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #2D2D2D;
  border-left: solid 1px #2D2D2D;
  transform: rotate(135deg);
  position: absolute;
  top: 12px;
  right: 0;
}

.content .interviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 calc(8 / 366 * 100%);
  padding: 10px;
  background-color: #F6F6F6;
  border-radius: 6px;
  box-shadow: 0 0 2px rgba(0, 0, 0, .25);
}

.content .interviews a {
  position: relative;
  display: block;
  max-width: 56px;
}

.content .interviews a::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: url(../images/job/relationship/person_plus.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
  transition: 0.6s;
}

.content .interviews a img {
  transition: 0.6s;
}

@media(hover: hover) {
  .content .interviews a:hover::before {
    transform: scale(1.5, 1.5);
  }
  .content .interviews a:hover img {
    transform: scale(1.025, 1.025);
    opacity: .9;
  }
}

/*  1150px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:1150px) {

}

/*  スマホ（767px以下）
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {
  /* Page title
  -----------------------------------------------------------*/
  .title {
    padding: 40px 15px;
  }

  .title h1 {
    font-size: 30px;
  }

  .title h1 span:nth-child(2) {
    font-size: 13px;
  }

  /* Content
  -----------------------------------------------------------*/
  .content {
    padding: 40px 0 80px;
    background-color: #D8EEF7;
  }

  .content p.intro {
    margin: 0 auto 40px;
  }

  .content .chart {
    margin-bottom: 80px;
  }

  .content .chart a {
    padding: 1.35em 0;
    width: calc(130 / 358 * 100%);
    font-size: 13px;
    font-size: calc(13 / 390 * 100vw);
  }

  .content .chart a::before {
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
  }

  /* プラント管理 */
  .content .chart a.plant {
    top: calc(390 / 501 * 100%);
    left: calc(37 / 358 * 100%);
  }
  .content .chart a.plant img {
    top: calc(-45 / 58 * 100%);
    left: calc(-13 / 137 * 100%);
    width: calc(64 / 137 * 100%);
  }

  /* 営業 */
  .content .chart a.sales {
    top: calc(158 / 501 * 100%);
    left: calc(37 / 358 * 100%);
  }
  .content .chart a.sales img {
    top: calc(-27 / 58 * 100%);
    left: calc(22 / 137 * 100%);
    width: calc(89 / 137 * 100%);
  }

  /* 技術 */
  .content .chart a.tech {
    top: calc(158 / 501 * 100%);
    left: calc(190 / 358 * 100%);
  }
  .content .chart a.tech img {
    bottom: 0;
    left: calc(6 / 137 * 100%);
    width: calc(145 / 137 * 100%);
  }

  /* 営業事務 */
  .content .chart a.salesadmin {
    top: calc(274 / 501 * 100%);
    left: calc(37 / 358 * 100%);
  }
  .content .chart a.salesadmin img {
    top: calc(-10 / 58 * 100%);
    left: calc(-21 / 137 * 100%);
    width: calc(63 / 137 * 100%);
  }

  /* 商品分析 */
  .content .chart a.analysis {
    top: calc(274 / 501 * 100%);
    left: calc(190 / 358 * 100%);
  }
  .content .chart a.analysis img {
    top: calc(-33 / 58 * 100%);
    left: calc(6 / 137 * 100%);
    width: calc(40 / 137 * 100%);
  }

  /* 管理事務 */
  .content .chart a.admin {
    top: calc(390 / 501 * 100%);
    left: calc(190 / 358 * 100%);
    width: calc(130 / 358 * 100%);
  }
  .content .chart a.admin img {
    bottom: 0;
    left: calc(87 / 137 * 100%);
    width: calc(69 / 137 * 100%);
  }

  .content ul {
    gap: 70px 0;
  }

  .content ul>li {
    padding: 38px 20px 30px 20px;
    width: 100%;
  }

  .content ul li p {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .content .interviews {
    gap: 10px calc(6 / 311 * 100%);
    padding: 10px 3px;
  }


}

/*  スマホ（360px以下）
=========================================================================
=========================================================================*/
@media screen and (max-width:360px) {

}
