@charset "UTF-8";
/* common */
.hl-anker-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 38px;
}
@media screen and (max-width: 768px) {
  .hl-anker-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
}
.hl-anker-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
.hl-anker-item > a {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  height: 180px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.hl-anker-item > a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  z-index: 2;
  pointer-events: none;
}
.hl-anker-item p {
  padding: 20px;
  font-size: clamp(12px, 1.4vw, 1.4rem);
}
.hl-anker-item a h2 {
  color: #fff;
}
.hl-anker-item a h2:nth-of-type(1) {
  position: absolute;
  top: 25px;
  left: 20px;
  display: inline-block;
  font-size: clamp(14px, 1.6vw, 1.6rem);
  z-index: 2;
  pointer-events: none;
}
.hl-anker-item a > h2:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -20px;
  right: -30px;
  z-index: -1;
  border-top: 35px solid #0068b7;
  border-right: 12px solid transparent;
  line-height: 50px;
  padding-left: 12px;
}
@media screen and (max-width: 768px) {
  .hl-anker-item a > h2:nth-of-type(1)::before {
    top: -7px;
    }
  }
.hl-anker-item a > h2:nth-of-type(1)::before {
  opacity: 0.7;
}
.hl-anker-item a h2:nth-of-type(2) {
  position: absolute;
  top: 50%;
  font-size: clamp(34px, 3.6vw, 3.6rem);
  text-align: center;
  display: inline-block;
  width: 100%;
  line-height: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 1);
  z-index: 2;
  pointer-events: none;
}
.hl-anker-item .icon-nxt {
  display: inline-block;
  position: absolute;
  right: 19px;
  bottom: 30px;
}
.hl-anker-item .icon-nxt span {
  display: inline-block;
  position: absolute;
  height: 1px;
  z-index: 3;
  background-color: #fff;
}
.hl-anker-item .icon-nxt span:nth-of-type(1) {
  transform: rotate(45deg);
  width: 24px;
  top: 6px;
  right: 0px;
}
.hl-anker-item .icon-nxt span:nth-of-type(2) {
  width: 50px;
  top: 14px;
  right: 4px;
}
.hl-anker-list .hl-anker-item a img {
  transition: all 0.5s ease 0s;
  z-index: 1;
  border-radius: 15px 15px 0 0;
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.hl-anker-list .hl-anker-item a img:hover {
	transform: scale(1.2, 1.2);
}
.hl-label {
  position: absolute;
  top: -10px;
  left: -20px;
  z-index: 1;
  width: 150px;
  height: 150px;
}
.hl-label-inner {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  background: #0068b7;
  color: #fff;
}
.hl-label-inner span {
  display: block;
}
.hl-label-txt01 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  border-bottom: #fff solid 1px;
  margin: 0 0 8px 0;
  padding: 0 0 10px 0;
}
.hl-label-txt02 {
  font-size: 2.6rem;
  line-height: 1;
}
.hl-label-txt03 {
  font-size: 5.4rem;
  line-height: 1;
}
@media screen and (max-width: 568px) {
  .hl-label {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
  }
  .hl-label-inner {
    padding: 13px 10px 10px 10px;
  }
  .hl-label-txt01 {
    font-size: 1.0rem;
    margin: 0 0 6px 0;
    padding: 0 0 5px 0;
  }
  .hl-label-txt02 {
    font-size: 2.0rem;
  }
  .hl-label-txt03 {
    font-size: 3.0rem;
  }
}
.hl-main-photo {
  position: relative;
  width: 100%;
  margin: 80px 0;
}
.hl-main-photo img {
  width: 100%;
  border-radius: 20px;
}
.hl-title01 {
  position: absolute;
  bottom: -50px;
  right: -20px;
  z-index: 1;
  width: 540px;
  height: auto;
}
.hl-title02 {
  position: absolute;
  bottom: -50px;
  right: -20px;
  z-index: 1;
  width: 560px;
  height: auto;
}
.hl-title03 {
  position: absolute;
  bottom: -50px;
  right: -20px;
  z-index: 1;
  width: 580px;
  height: auto;
}
.hl-title-inner {
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 20px 30px;
  background: #0068b7;
  color: #fff;
}
.hl-title-inner h2 {
  font-size: 2.6rem;
}
@media screen and (max-width: 568px) {
  .hl-title01 {
    position: absolute;
    bottom: -40px;
    right: -15px;
    z-index: 1;
    width: 320px;
    height: auto;
  }
  .hl-title02 {
    position: absolute;
    bottom: -40px;
    right: -15px;
    z-index: 1;
    width: 340px;
    height: auto;
  }
  .hl-title03 {
    position: absolute;
    bottom: -40px;
    right: -15px;
    z-index: 1;
    width: 350px;
    height: auto;
  }
  .hl-title-inner {
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 10px 15px;
  }
  .hl-title-inner h2 {
    font-size: 1.6rem;
  }
}
.hl-main-lead {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
.hl-main-lead p {
  font-size: clamp(16px, 2.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.8;;
}
.hl-main-lead span {
  background:linear-gradient(transparent 60%, #faee00 60%);
}
@media screen and (max-width: 568px) {
  .hl-main-lead {
    width: 100%;
  }
  .hl-main-lead span {
    background:linear-gradient(transparent 60%, #faee00 60%);
  }
}
.zr-ind {
  position: relative;
  z-index: 0;
}
/* common */
/* highlight01 */
.hl01-circle-box {
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items:center;
  position: relative;
}
.circle-cir {
  width: 380px;
  height: 380px;
  z-index: 1;
  background: #0068b7;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  justify-content: center;
  align-items:center;
  flex-flow: column;
  order: 1;
}
.circle-inner {
  text-align: center;
}
.circle-tit01 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  flex: 1;
}
.circle-tit02 {
  color: #faee00;
  font-size: 1.8rem;
  font-weight: 600;
  flex: 1;
  margin: 14px 0 8px 0;
  display: flex;
  align-items: center;
}
.circle-tit02:before,
.circle-tit02:after {
  content: "";
  width: 60px;
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
}
.circle-tit02:before {
  margin-right: 1rem;
}
.circle-tit02:after {
  margin-left: 1rem;
}
.circle-txt {
  color: #fff;
  font-size: 1.8rem;
  flex: 1;
}
.circle-dev {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0 20px 0 0;;
  padding: 20px;
  order: 0;
  top: -90px;
}
.circle-dev::before {
  transform: skewX(-6deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.circle-per {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0 0 0 20px;;
  padding: 20px;
  order: 2;
  top:90px;
}
.circle-per::before {
  transform: skewX(-6deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.circle-sub-tit {
  font-size: clamp(16px, 1.8vw, 1.8rem);
  color: #0068b7;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.circle-sub-tit span {
  background:linear-gradient(transparent 60%, #faee00 60%);
}
.circle-sub-txt {
  font-size: clamp(14px, 1.6vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .hl01-circle-box {
    width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(0deg, rgba(250,250,250,1) 0%, rgba(250,250,250,1) 100%);
  }
  .circle-cir {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  .circle-tit01 {
    font-size: 1.6rem;
  }
  .circle-tit02 {
    font-size: 1.4rem;
    margin: 14px 0 5px 0;
  }
  .circle-tit02:before,
  .circle-tit02:after {
    width: 30px;
  }
  .circle-tit02:before {
    margin-right: .5rem;
  }
  .circle-tit02:after {
    margin-left: .5rem;
  }
  .circle-txt {
    font-size: 1.4rem;
  }
  .circle-dev {
    margin: 30px 0 0 0;
    top: 0;
  }
  .circle-per {
    margin: 30px 0 0 0;
    top: 0;
  }
}
.hl01-line-box-01 {
  position: relative;
  z-index: 0;
  margin: 0 0 40px 0;
  padding: 40px 30px 20px;
  background: #fff;
  border: 2px solid #0068b7;
  border-radius: 6px;
  width: 768px;
}
.hl01-line-box-02 {
  position: relative;
  z-index: 0;
  margin: 0 0 40px auto;
  padding: 40px 30px 20px;
  background: #fff;
  border: 2px solid #0068b7;
  border-radius: 6px;
  width: 768px;
}
@media screen and (max-width: 768px) {
  .hl01-line-box-01, .hl01-line-box-02 {
    padding: 20px 15px 10px;
    width: 100%;
  }
}
.hl01-box-tit {
  font-size: clamp(18px, 2.0vw, 2.0rem);
  color: #0068b7;
  margin: 0 0 20px 0;
}
.hl01-figure {
  margin: 0 auto 20px;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 568px) {
  .hl01-figure {
    width: 60%;
    margin: 0 auto 25px;
  }
}
.hl01-figure img {
  border-radius: 8px;
}
.hl01-box-line {
  display: block;
  width: 80%;
  border-bottom: 1px solid #0068b7;
  margin: 0 auto 35px;
}
.hl01-comment-box01 {
  position: relative;
  z-index: 0;
  margin: 0 0 40px 0;
  padding: 40px 30px 20px;
  background: #f0f0f0;
  border-radius: 6px;
  width: 680px;
}
.hl01-comment-wrap01 {
  width: 100%;
  display: flex;
}
.hl01-comment-fig01 {
  width: 185px;
}
.hl01-comment-txt01 {
  width: 495px;
}
.hl01-comment-article01 {
  margin: 0 0 34px 0;
  padding:0 0 0 25px;
}
.hl01-comment-article01 p {
  margin: 0;
  padding: 0;
  font-size: clamp(13px, 1.6vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.hl01-comment-tit01 {
  font-size: clamp(18px, 2.0vw, 2.0rem);
  color: #666;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding: 0 0 3px 0;
  border-bottom: #999 solid 1px;
}
.hl01-comment-tit01::before {
  content: "●";
  margin: 0 0.5rem 0 3px;
}
@media screen and (max-width: 768px) {
  .hl01-comment-box01 {
    padding: 20px 15px 10px;
    width: 100%;
  }
  .hl01-comment-wrap01 {
    display: block;
  }
  .hl01-comment-fig01 {
    width: 100%;
  }
  .hl01-comment-txt01 {
    width: 100%;
  }
  .hl01-comment-article01 {
    padding: 0;
  }
}
.hl01-comment-box02 {
  position: relative;
  z-index: 0;
  margin: 0 0 40px 0;
  padding: 40px 30px 20px;
  background: #edf4fa;
  border-radius: 6px;
  width: 680px;
}
.hl01-comment-box03 {
  position: relative;
  z-index: 0;
  margin: 0 0 40px auto;
  padding: 40px 30px 20px;
  background: #edf4fa;
  border-radius: 6px;
  width: 680px;
}
.hl01-comment-wrap02, .hl01-comment-wrap03 {
  width: 100%;
  display: flex;
}
.hl01-comment-fig02 {
  width: 185px;
}
.hl01-comment-txt02 {
  width: 495px;
}
.hl01-comment-article02 {
  margin: 0 0 34px 0;
  padding:0 0 0 25px;
}
.hl01-comment-fig03 {
  width: 185px;
  order: 1;
}
.hl01-comment-txt03 {
  width: 495px;
  order: 0
}
.hl01-comment-article03 {
  margin: 0 0 34px 0;
  padding:0 25px 0 0;
}
.hl01-comment-article02 p, .hl01-comment-article03 p {
  margin: 0;
  padding: 0;
  font-size: clamp(13px, 1.6vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.hl01-comment-tit02, .hl01-comment-tit03 {
  font-size: clamp(18px, 2.0vw, 2.0rem);
  color: #0068b7;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding: 0 0 3px 0;
  border-bottom: #76aed8 solid 1px;
}
.hl01-comment-tit02::before, .hl01-comment-tit03::before {
  content: "●";
  margin: 0 0.5rem 0 3px;
}
@media screen and (max-width: 768px) {
  .hl01-comment-box02, .hl01-comment-box03 {
    padding: 20px 15px 10px;
    width: 100%;
  }
  .hl01-comment-wrap02, .hl01-comment-wrap03 {
    display: block;
  }
  .hl01-comment-fig02, .hl01-comment-fig03 {
    width: 100%;
  }
  .hl01-comment-txt02, .hl01-comment-txt03 {
    width: 100%;
  }
  .hl01-comment-article02, .hl01-comment-article03 {
    padding: 0;
  }
}
.hl01-line-box-02 .pure-gap30 {
  align-items: center;
}
.hl01-line-box-02 .pure-gap30.pos {
  height: 200px;
}
.hl01-line-box-02 .pure-gap30.pos > div {
  height: 100%;
}
.hl01-line-box-02 .pure-gap30.pos > div > figure {
  height: 100%;
}
.hl01-line-box-02 .pure-gap30.pos > div > figure > img {
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 568px) {
  .hl01-line-box-02 .pure-gap30.fit {
    height: auto;
    column-gap: 20px;
  }
}
.para01 {
  position: absolute;
  transform: skewX(-6deg);
  top: -250px;
  left: -1800px;
  width: 2000px;
  height: 600px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.6) 100%);
  z-index: -1;
}
.para02 {
  position: absolute;
  transform: skewX(-6deg);
  bottom: -510px;
  right: -1900px;
  width: 2000px;
  height: 450px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.1) 100%);
  z-index: -1;
}
.para03 {
  position: absolute;
  transform: skewX(-6deg);
  bottom: -490px;
  right: -1880px;
  width: 2000px;
  height: 450px;
  margin: 0;
  border: 1px solid #0068b7;
  z-index: -1;
}
.para04 {
  position: absolute;
  transform: skewX(-6deg);
  top: -100px;
  left: -1990px;
  width: 2000px;
  height: 300px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.para05 {
  position: absolute;
  transform: skewX(-6deg);
  bottom: -190px;
  right: -1940px;
  width: 2000px;
  height: 330px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.2) 0%, rgba(0, 104, 183, 0.3) 100%);
  z-index: -1;
}
.para08 {
  position: absolute;
  transform: skewX(-6deg);
  bottom: 90px;
  left: -1990px;
  width: 2000px;
  height: 280px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.3) 0%, rgba(0, 104, 183, 0.5) 100%);
  z-index: -1;
}
.para09 {
  position: absolute;
  transform: skewX(-6deg);
  bottom: 60px;
  left: -2020px;
  width: 2000px;
  height: 280px;
  margin: 0;
  border: 1px solid #0068b7;
  z-index: -1;
}
.para10 {
  position: absolute;
  transform: skewX(-6deg);
  bottom: -80px;
  right: -1970px;
  width: 2000px;
  height: 200px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.4) 0%, rgba(0, 104, 183, 0.6) 100%);
  z-index: -1;
}
.para11 {
  position: absolute;
  transform: skewX(-6deg);
  top: -100px;
  left: -1900px;
  width: 2000px;
  height: 280px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.2) 0%, rgba(0, 104, 183, 0.4) 100%);
  z-index: -1;
}
.para12 {
  position: absolute;
  transform: skewX(-6deg);
  bottom: -160px;
  right: -1940px;
  width: 2000px;
  height: 310px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.3) 100%);
  z-index: -1;
}
.para13 {
  position: absolute;
  transform: skewX(-6deg);
  top: 320px;
  left: -1940px;
  width: 2000px;
  height: 500px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.para14 {
  position: absolute;
  transform: skewX(-6deg);
  bottom: 290px;
  right: -1950px;
  width: 2000px;
  height: 240px;
  margin: 0;
  border: 1px solid #0068b7;
  z-index: -1;
}
.para15 {
  position: absolute;
  transform: skewX(-6deg);
  bottom: 260px;
  right: -1920px;
  width: 2000px;
  height: 240px;
  margin: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .para01, .para02, .para03, .para04, .para05, .para06, .para07, .para08, .para09, .para10, .para11, .para12, .para13, .para14, .para15 {
    display: none;
  }
}
/* highlight01 */
/* highlight02 */
.hl02-sub-tit01 {
  font-size: clamp(18px, 2.2vw, 2.2rem);
  color: #0068b7;
  border-bottom: solid 1px  #0068b7;
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
}
.hl02-sub-tit02 {
  font-size: clamp(16px, 1.8vw, 1.8rem);
  margin: 0 0 10px 0;
}
.hl02-layer-wrap {
  padding: 50px 0 100px 0;
}
.hl02-nonlayer-wrap {
  padding: 50px 0 0 0;
}
.hl02-article01 {
  margin: 0 0 34px 0;
}
.hl02-article02 {
  margin: 0 0 34px 0;
  padding: 0 2rem 0 0;
}
.hl02-article03 {
  margin: 0 0 34px 0;
  padding: 0 0 0 2rem;
}
.hl02-article01 p, .hl02-article02 p, .hl02-article03 p {
  margin: 0 0 1.6rem 0;
  padding: 0;
  font-size: clamp(13px, 1.6vw, 1.6rem);
  line-height: 1.8;
}
.hl02-figure01 {
  position: relative;
}
.hl02-figure01 img {
  width: 55%;
  border-radius: 8px;
  margin: 0 0 5px 0;
}
.hl02-img-top01 {
  position: absolute;
  top: 90px;
  right: 20px;
  z-index: 2;
}
.hl02-img-bottom01 {
  position: absolute;
  bottom: -130px;
  left: 0px;
  z-index: 1;
}
.hl02-img-top02 {
  position: absolute;
  top: 90px;
  right: 0px;
  margin: 0;
  z-index: 2;
}
.hl02-img-bottom02 {
  position: absolute;
  bottom: -140px;
  left: 20px;
  margin: 0;
  z-index: 1;
}
.hl02-order0 {
  order: 0;
}
.hl02-order1 {
  order: 1;
}
.hl02-flex-center {
 align-items: center;
}
.hl02-zero-carbon {
  justify-content: center;
  gap: 40px;
}
.hl02-zero-carbon figure img {
  width: 70%;
  margin-right: 0;
  margin-left: auto;
  border-radius: 8px;
}
.hl02-zero-carbon figure:nth-of-type(2) img {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .hl02-layer-wrap, .hl02-nonlayer-wrap {
    margin: 0 0 34px 0;
    padding: 0;
  }
  
  .hl02-figure01 {
    display: block;
  }
  .hl02-img-top01, .hl02-img-top02, .hl02-img-bottom01, .hl02-img-bottom02 {
    position: inherit;
    top: 0;
    left: 0;
    right: 0;
  }
  .hl02-figure01 img {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
  .hl02-figure01 img:last-child {
    margin-bottom: 0;
  }
  .hl02-article02, .hl02-article03 {
    padding: 0;
  }
  .hl02-order0 {
    order: 1;
  }
  .hl02-order1 {
    order: 0;
  }
  .hl02-zero-carbon {
    gap: 10px;
  }
  .hl02-zero-carbon figure img {
    width: 100%;
  }
}
.squa01 {
  position: absolute;
  top: -330px;
  left: -160px;
  width: 280px;
  height: 280px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.6) 100%);
  z-index: -1;
}
.squa02 {
  position: absolute;
  top: -250px;
  left: -80px;
  width: 280px;
  height: 280px;
  margin: 0;
  background: linear-gradient(180deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.squa03 {
  position: absolute;
  bottom: -390px;
  right: -170px;
  width: 200px;
  height: 200px;
  margin: 0;
  background: linear-gradient(90deg, rgba(0, 104, 183, 0.4) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.squa04 {
  position: absolute;
  bottom: -300px;
  right: -270px;
  width: 200px;
  height: 200px;
  margin: 0;
  border: 1px solid #0068b7;
  z-index: -1;
}
.squa05 {
  position: absolute;
  top: 0px;
  left: -220px;
  width: 190px;
  height: 190px;
  margin: 0;
  background: linear-gradient(90deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.3) 100%);
  z-index: -1;
}
.squa06 {
  position: absolute;
  top: 130px;
  left: -90px;
  width: 150px;
  height: 150px;
  margin: 0;
  background: linear-gradient(90deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.squa07 {
  position: absolute;
  bottom: -160px;
  right: -250px;
  width: 240px;
  height: 240px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.squa08 {
  position: absolute;
  bottom: -20px;
  right: -110px;
  width: 240px;
  height: 240px;
  margin: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
  z-index: -1;
}
.squa09 {
  position: absolute;
  top: 20px;
  left: -140px;
  width: 120px;
  height: 120px;
  margin: 0;
  background: linear-gradient(90deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.4) 100%);
  z-index: -1;
}
.squa10 {
  position: absolute;
  top: 100px;
  left: -60px;
  width: 280px;
  height: 280px;
  margin: 0;
  background: linear-gradient(-90deg, rgba(0, 104, 183, 0.2) 0%, rgba(0, 104, 183, 0.4) 100%);
  z-index: -1;
}
.squa11 {
  position: absolute;
  bottom: -360px;
  right: -300px;
  width: 310px;
  height: 310px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.squa12 {
  position: absolute;
  bottom: -90px;
  right: -30px;
  width: 270px;
  height: 270px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.squa13 {
  position: absolute;
  top: 140px;
  left: -30px;
  width: 80px;
  height: 80px;
  margin: 0;
  border: 1px solid #0068b7;
  z-index: -1;
}
.squa14 {
  position: absolute;
  top: 200px;
  left: -160px;
  width: 150px;
  height: 150px;
  margin: 0;
  border: 1px solid #0068b7;
  z-index: -1;
}
.squa15 {
  position: absolute;
  top: 110px;
  right: -160px;
  width: 230px;
  height: 230px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.3) 0%, rgba(0, 104, 183, 0.4) 100%);
  z-index: -1;
}
.squa16 {
  position: absolute;
  bottom: -300px;
  right: -170px;
  width: 320px;
  height: 320px;
  margin: 0;
  background: linear-gradient(90deg, rgba(0, 104, 183, 0.4) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.squa17 {
  position: absolute;
  bottom: -450px;
  right: 80px;
  width: 220px;
  height: 220px;
  margin: 0;
  background: linear-gradient(45deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.squa18 {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 180px;
  height: 180px;
  margin: 0;
  background: linear-gradient(-45deg, rgba(0, 104, 183, 0.2) 0%, rgba(0, 104, 183, 0.1) 100%);
  z-index: -1;
}
.squa19 {
  position: absolute;
  top: -310px;
  left: 30px;
  width: 210px;
  height: 210px;
  margin: 0;
  background: linear-gradient(-90deg, rgba(0, 104, 183, 0.6) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .squa01, .squa02, .squa03, .squa04, .squa05, .squa06, .squa07, .squa08, .squa09, .squa10, .squa11, .squa12, .squa13, .squa14, .squa15, .squa16, .squa17, .squa18, .squa19 {
    display: none;
  }
}
/* highlight02 */
/* highlight03 */
.hl03-sub-tit01 {
  font-size: clamp(15px, 1.6vw, 1.6rem);
  font-weight: 600;
  margin: 0 0 10px 0;
}
.hl03-sub-tit01::before {
  content: "■";
  margin: 0 0.5rem 0 3px;
}
.circ01 {
  position: absolute;
  top: -500px;
  left: -80px;
  width: 390px;
  height: 390px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.2) 0%, rgba(0, 104, 183, 0.3) 100%);
  z-index: -1;
}
.circ02 {
  position: absolute;
  top: -390px;
  left: -240px;
  width: 480px;
  height: 480px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.5) 100%);
  z-index: -1;
}
.circ03 {
  position: absolute;
  top: -160px;
  right: -180px;
  width: 350px;
  height: 350px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(45deg, rgba(0, 104, 183, 0.4) 0%, rgba(0, 104, 183, 0.1) 100%);
  z-index: -1;
}
.circ04 {
  position: absolute;
  top: -140px;
  left: -300px;
  width: 430px;
  height: 430px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(-90deg, rgba(0, 104, 183, 0.2) 0%, rgba(0, 104, 183, 0.1) 100%);
  z-index: -1;
}
.circ16 {
  position: absolute;
  top: -120px;
  left: -320px;
  width: 430px;
  height: 430px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(-90deg, rgba(0, 104, 183, 0.2) 0%, rgba(0, 104, 183, 0.3) 100%);
  z-index: -1;
}
.circ05 {
  position: absolute;
  top: -630px;
  right: -130px;
  width: 270px;
  height: 270px;
  border-radius: 300px;
  margin: 0;
  border: 1px solid #0068b7;
  z-index: -1;
}
.circ17 {
  position: absolute;
  top: -600px;
  right: -100px;
  width: 270px;
  height: 270px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(-90deg, rgba(0, 104, 183, 0.3) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.circ06 {
  position: absolute;
  top: -230px;
  left: -140px;
  width: 370px;
  height: 370px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(-45deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.3) 100%);
  z-index: -1;
}
.circ07 {
  position: absolute;
  top: -30px;
  right: -270px;
  width: 410px;
  height: 410px;
  border-radius: 300px;
  margin: 0;
  border: 1px solid #0068b7;
  z-index: -1;
}
.circ08 {
  position: absolute;
  top: 290px;
  right: 230px;
  width: 200px;
  height: 200px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(-90deg, rgba(0, 104, 183, 0.4) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.circ09 {
  position: absolute;
  top: 330px;
  right: -160px;
  width: 540px;
  height: 540px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(-45deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.circ10 {
  position: absolute;
  top: -110px;
  left: -160px;
  width: 140px;
  height: 140px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.4) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.circ11 {
  position: absolute;
  top: -40px;
  left: -110px;
  width: 240px;
  height: 240px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.1) 0%, rgba(0, 104, 183, 0.3) 100%);
  z-index: -1;
}
.circ12 {
  position: absolute;
  top: 70px;
  right: -360px;
  width: 230px;
  height: 230px;
  border-radius: 300px;
  margin: 0;
  border: 1px solid #0068b7;
  z-index: -1;
}
.circ13 {
  position: absolute;
  top: -100px;
  right: -500px;
  width: 260px;
  height: 260px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 104, 183, 0.5) 0%, rgba(0, 104, 183, 0.1) 100%);
  z-index: -1;
}
.circ14 {
  position: absolute;
  top: -90px;
  left: -450px;
  width: 410px;
  height: 410px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(-45deg, rgba(0, 104, 183, 0.4) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
.circ15 {
  position: absolute;
  top: 230px;
  left: -210px;
  width: 230px;
  height: 230px;
  border-radius: 300px;
  margin: 0;
  background: linear-gradient(-45deg, rgba(0, 104, 183, 0.4) 0%, rgba(0, 104, 183, 0.2) 100%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .circ01, .circ02, .circ03, .circ04, .circ05, .circ06, .circ07, .circ08, .circ09, .circ10, .circ11, .circ12, .circ13, .circ14, .circ15, .circ16, .circ17 {
    display: none;
  }
}
/* highlight03 */

@media print {
  .hl02-img-top01 {
    position: unset;
  }
  .hl02-img-bottom01 {
    position: unset;
  }
  .hl02-img-top02 {
    position: unset;
}
  .hl02-img-bottom02 {
    position: unset;
  }
  img {
    width: 50%;
  }
  figure {
    width: 50%;
  }
}

