@charset "utf-8";
/*------------------------------------------------
事業領域
------------------------------------------------*/
.main-content {
  padding: 25px 0;
  background-image: url(../../images/business/business_main_bg_top.jpg), url(../../images/business/business_main_bg_bottom.jpg);
  background-position: top -20px right -20px, bottom -20px left -20px;
  background-size: 70%, 70%;
}

@media print, screen and (min-width: 769px) {
  .main-content {
    padding: 50px 0 100px;
    background-size: auto, auto;
  }
}

.business-catch {
  color: #044471;
  font-weight: 900;
  font-size: 2rem;
  padding: 15px;
}

@media print, screen and (min-width: 769px) {
  .business-catch {
    font-size: 4.5rem;
    margin: 50px auto 90px;
    width: 920px;
    padding: 0;
  }
}


/*========== 事業領域 ==========*/

.business {
  margin: 50px 0;
}

.business-inner {
  padding: 0 15px;
  text-align: center;
}

@media print, screen and (min-width: 600px) {
}

@media print, screen and (min-width: 769px) {
  .business {
    margin-top: 70px;
    margin-bottom: 100px;
  }
  .business-inner {
    width: 920px;
    height: 780px;
    margin: auto;
    padding: 0;
    position: relative;
  }
}


.business-title.for-pc {
  width: 100%;
  max-width: 503px;
  margin: auto;
}

.business-title.for-pc > img{
  width: 100%;
}

@media print, screen and (min-width: 769px) {
  .business-title.for-pc {
    width: 503px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 166px;
  }
}


/*事業リスト*/

.business-list {
  margin: 100px auto 50px;
  width: 100%;
}

.business-item {
  width: 100%;
  margin-top: 100px;
  position: relative;
}

.business-item:not(:last-of-type) {
  margin-bottom: 25px;
}

.business-item-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  padding-top: 10px;
  margin-bottom: 10px;
}

.business-item:nth-of-type(1) .business-item-title {
  color: #711718;
}
.business-item:nth-of-type(2) .business-item-title {
  color: #6b2800;
}
.business-item:nth-of-type(3) .business-item-title {
  color: #006896;
}

.business-item-text {
  text-align: left;
}

@media print, screen and (min-width: 769px) {
  .business-item {
    position: absolute;
    margin-top: 0;
  }
  .business-item:not(:last-of-type) {
    margin-bottom: 0;
  }
  .business-item:nth-of-type(1) {
    width: 245px;
    top: 0;
    right: 0;
  }
  .business-item:nth-of-type(2) {
    width: 460px;
    bottom: 0;
    right: 0;
  }
  .business-item:nth-of-type(3) {
    width: 355px;
    top: 165px;
    left: 0;
  }
  .business-item-title {
    font-size: 2.8rem;
    text-align: left;
    line-height: 1.2;
    padding-top: 0;
  }
  .business-item-text {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}


/*SPのみナンバー*/
.business-item::before {
  content: "";
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  /*  border: 3px solid #e8cfa0;*/
  position: absolute;
  top: -66px;
  left: 50%;
  margin-left: -33px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.35);
  padding: 3px;
}

.business-item::after {
  content: "";
  background: radial-gradient(farthest-side circle at center bottom, rgba(255,255,255, 0) 80%, rgba(255,255,255, 0.1) 84%, rgba(255,255,255, 1));
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-shadow: 1px 1px 2px #000;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 6px;
  position: absolute;
  top: -62px;
  left: 50%;
  margin-left: -31px;
}

.business-item:nth-of-type(1)::before {
  background:radial-gradient(farthest-side circle at center bottom, #ff90ad, #e30012 40%, #c4020a 80%, #6b0202);
}
.business-item:nth-of-type(2)::before {
  background:radial-gradient(farthest-side circle at center bottom, #feecd2, #f39800 40%, #c56f00 80%, #6b2800);
}
.business-item:nth-of-type(3)::before {
  background:radial-gradient(farthest-side circle at center bottom, #c0c2da, #6f84c1 40%, #40578c 80%, #203158);
}

.business-item:nth-of-type(1)::after {
  content: "1";
}
.business-item:nth-of-type(2)::after {
  content: "2";
}
.business-item:nth-of-type(3)::after {
  content: "3";
}

@media print, screen and (min-width: 769px) {
  .business-item::before,
  .business-item::after {
    display: none;
  }
}

/*写真*/
.business-item-pic {
  width: 100%;
}
.business-item-pic-inner {
  width: 100%;
  margin-top: 15px;
}
.business-item-pic-inner > img {
  width: 100%;
}
.business-item:nth-of-type(3) .business-item-pic {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.business-item:nth-of-type(3) .business-item-pic-inner:nth-of-type(1)  {
  width: 60%;
}
.business-item:nth-of-type(3) .business-item-pic-inner:nth-of-type(2)  {
  width: 38%;
}
@media print, screen and (min-width: 769px) {
  .business-item:nth-of-type(1) .business-item-pic {
    width: 220px;
    margin-left: auto;
  }
  .business-item:nth-of-type(2) .business-item-pic {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .business-item:nth-of-type(2) .business-item-pic-inner {
    width: 220px;
  }
  .business-item:nth-of-type(3) .business-item-text {
    width: 200px;
  }
  .business-item:nth-of-type(3) .business-item-pic-inner:nth-of-type(1)  {
    width: 210px;
  }
  .business-item:nth-of-type(3) .business-item-pic-inner:nth-of-type(2)  {
    width: 134px;
  }
}
