@charset "utf-8";
/* CSS Document */
.hero {
  background-color: #FEFDFB;
  background-image:
    radial-gradient(at left top, #7CC1DE 0%, transparent 55%),
    radial-gradient(at right top, #FAE69D 0%, transparent 55%),
    radial-gradient(at right bottom, #FDB8CA 0%, transparent 55%),
    radial-gradient(at left bottom, #FEFDFB 0%, transparent 55%);
  background-repeat: no-repeat;
  background-size: cover;
}
h1.photo {
  position: relative;
}

h1.photo .bgimg {
  background-size: cover;
  max-height: 470px;
  min-height: 30vw;
  background-repeat: no-repeat;
}

h1.photo .innerwidth {
  position: absolute;
  inset: 0;
}

h1.photo .title {
  font-size: 2.5rem;
  font-weight: 700;
  position: absolute;
  top: 5vw;
  left: 0;
}

h1.photo .title .lead {
  font-size: 1.8rem;
  margin-top: 0.5em;
  font-weight: 700;
}

h1.photo .subtext_upper {
  font-size: 1.8rem;
  font-weight: 700;
  position: absolute;
  right: 0;
  bottom: 50px;
  text-align: right;
  margin: 0;
}
.btn.ic-pdf:after {
    color: #FFF !important;
}
.innerwidth {
    max-width: 1200px;
    margin: auto;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

/* 中央の縦線 */
.timeline-line {
  position: absolute;
  top: 18px;
  bottom: 10px;
  left: 22%;
  width: 1px;
  background: #111;
  z-index: 2;
}

/* アンカーナビ */
.anchorNavLP {
  width: 100%;
  background: #073040;
}

.anchorNavLP ul {
  max-width: 1166px;
  margin: 0 auto;
  padding: 0;
  list-style: none;

  display: grid;
  grid-template-columns: repeat(6, 1fr);

  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);

  background-size:
    1px 16px,
    1px 16px,
    1px 16px,
    1px 16px,
    1px 16px,
    1px 16px,
    1px 16px;

  background-repeat: no-repeat;

  background-position:
    0 center,
    calc(100% / 6) center,
    calc(100% / 6 * 2) center,
    calc(100% / 6 * 3) center,
    calc(100% / 6 * 4) center,
    calc(100% / 6 * 5) center,
    100% center;
}

.anchorNavLP li {
  min-width: 0;
}

.anchorNavLP a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  min-height: 54px;
  padding: 0 12px;

  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.anchorNavLP a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;

  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  margin-top: -3px;
}

.anchorNavLP a:hover {
  opacity: 0.7;
}

/* スマホ：3つずつ2段 */
@media screen and (max-width: 750px) {
  .anchorNavLP ul {
    grid-template-columns: repeat(3, 1fr);

    background-image:
      linear-gradient(#fff, #fff),
      linear-gradient(#fff, #fff),
      linear-gradient(#fff, #fff),
      linear-gradient(#fff, #fff),
      linear-gradient(#fff, #fff),
      linear-gradient(#fff, #fff),
      linear-gradient(#fff, #fff),
      linear-gradient(#fff, #fff);

    background-size:
      1px 16px,
      1px 16px,
      1px 16px,
      1px 16px,
      1px 16px,
      1px 16px,
      1px 16px,
      1px 16px;

    background-repeat: no-repeat;

    background-position:
      0 25%,
      calc(100% / 3) 25%,
      calc(100% / 3 * 2) 25%,
      100% 25%,
      0 75%,
      calc(100% / 3) 75%,
      calc(100% / 3 * 2) 75%,
      100% 75%;
  }

  .anchorNavLP a {
    min-height: 48px;
    padding: 0 6px;
    font-size: 13px;
  }
}/*end*/

/*見出し*/

/*中央寄せ*/
h2.is-style-vkp-heading-vertical_bottomborder{
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction : column;
 margin-bottom: 2em;
	font-size: 2.8em;
	font-weight: 700;
	
}
/*縦下線*/
h2.is-style-vkp-heading-vertical_bottomborder::before{
 content: '';
 position: absolute;
 display: inline-block;
 width: 3px;
 height: 20px;
 bottom: -30px;
 left: 50%;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
 background-color:currentColor !important;
 top:unset;
 border: unset;
 margin-left: unset;
 margin-right:unset;
}

/*数字*/

.head-m::before {
	content: attr(data-number);
	display: inline-block;
	margin-right: 10px;
	color: #C00;
	font-size: 40px;
	border-bottom: 1px solid #C00;
}

/*入れ物*/
.imgBlockC {
  display: flex;
  /*flex-direction: row-reverse;*/
  align-items: center;
  gap: 32px;
}

.imgBlockC .img {
  flex: 0 0 calc(30% - 16px);
}

.imgBlockC .cont {
  flex: 0 0 calc(60% - 16px);
}

.imgBlockC .img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 750px) {
  .imgBlockC {
    display: block;
  }

  .imgBlockC .img,
  .imgBlockC .cont {
    width: 100%;
  }

  .imgBlockC .cont {
    margin-top: 20px;
  }
}/*end*/
/*タグ*/
.tag-list {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;       
  height: 28px;
  color: #073040;
  font-size: 12px;
}

/* 三色に変更 */
.tag-border {
  border: 1px solid #073040;
}

.tag-flow {
  background-color: #f59e0b;
}

.tag-efficiency {
  background-color: #2563eb;
}
/* タイムライン */
.timeline-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #0B2A3A;
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 22% 1fr;
  min-height: 76px;
  padding: 18px 0;
}

.timeline-row.top {
  min-height: 86px;
  align-items: center;
}

.timeline-row.pink {
  background: #fff3f2;
}

.timeline-row.dark-pink {
  background: #e7cccc;
}

.timeline-label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.timeline-dot {
  position: absolute;
  left: 22%;
  top: 28px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #0B2A3A;
  border-radius: 50%;
  z-index: 3;
}

.timeline-content {
  padding: 0 48px;
}

.timeline-head {
  display: flex;
  gap: 48px;
  align-items: center;
  font-size: 15px;
}

.timeline-head strong {
  font-size: 17px;
}

.timeline-content h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.timeline-content ul {
  margin: 0;
  padding-left: 1em;
  font-size: 13px;
  line-height: 1.55;
}

.timeline-content li {
  margin: 0;
}

/* スマホ対応 */
@media screen and (max-width: 750px) {
    .contwidth {
        padding-left: var(--S) !important;
        padding-right: var(--S) !important;
    }
}
@media (max-width: 750px) {


  .timeline {
    border-left: none;
    border-right: none;
  }

  .timeline-line {
    left: 24px;
  }

  .timeline-row {
    display: block;
    padding: 20px 20px 20px 56px;
  }

  .timeline-label {
    justify-content: flex-start;
    padding: 0 0 8px;
    font-size: 18px;
  }

  .timeline-dot {
    left: 24px;
    top: 24px;
  }

  .timeline-content {
    padding: 0;
  }

  .timeline-head {
    display: block;
  }

  .timeline-head strong {
    display: block;
    margin-bottom: 6px;
  }
}/*end*/

.imgBlockC.imgR .img{
	padding-left: 0;
}

@media screen and (max-width: 851px) {
    .photoBnrArea.spimgTop .bnrbody {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}