@charset "utf-8";

.l-container{
  max-width: 1080px;
  margin-inline:auto;
  padding-inline: 40px;
}

@media screen and (max-width:768px) {
  .l-container{
    padding-inline: 20px;
  }
}

.c-heading-primary{
  color: #0066BA;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.c-heading-primary span{
  display: inline-block;
}

@media screen and (max-width:768px){
  .c-heading-primary{
    font-size: 24px;
  }
}

.c-heading-primary.-wh{
  color: #fff;
}

.p-header__logo{
  position: absolute;
  top: 24px;
  left: 24px;
  width: 7.9vw;
  height: auto;
}

@media screen and (max-width:768px){
  .p-header__logo{
    top: 20px;
    left: 20px;
    width: 16vw;
  }
}

.p-hero{
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 40px 40px 80px;
}

.p-hero::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 23.57247vw;
  background: url(../img/line.svg) no-repeat center / cover;
  z-index: -1;
}

.p-hero__text{
  flex-shrink: 0;
  align-self: center;
}

.p-hero__copy{
  color: #0066BA;
  font-size: 4.09956vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.p-hero__copy span{
  font-size: 3.513909vw;
}

.p-hero__read{
  margin-top: 24px;
  font-size: 1.464128vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-hero__read span{
  font-size: 1.75695vw;
  font-weight: 600;
}

.p-hero__image{
  width: 58vw;
}

@media screen and (max-width:768px){
  .p-hero{
    flex-direction: column;
    gap: 16px;
    padding-inline: 20px;
    padding-top: 25vw;
    padding-bottom: 40px;
  }

  .p-hero::after{
    bottom: 40vw;
  }

  .p-hero__text{
    align-self: auto;
  }

  .p-hero__copy{
    font-size: 10vw;
  }

  .p-hero__copy span{
    font-size: 8vw;
  }

  .p-hero__read{
    font-size:4vw;
  }

  .p-hero__read span{
    font-size: 5vw;
  }

  .p-hero__image{
    width: 100%;
  }
}

.p-about{
  margin-top: 40px;
  text-align: center;
}

.p-about__copy{
  color: #0066BA;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-about__read{
  margin-bottom: 48px;
  margin-top: 24px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (max-width:768px){
  .p-about{
    margin-top: 0;
  }

  .p-about__copy{
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }

  .p-about__copy span{
    display: inline-block;
  }

  .p-about__read{
    margin-bottom: 32px;
    margin-top: 16px;
    font-size: 20px;
  }

}

.p-point{
  position: relative;
  margin-top: 200px;
  margin-bottom: 80px;
  padding-bottom: 40px;
  background: #E2F2FF;
}

.p-point::before{
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url(../img/curve.svg) no-repeat center / cover;
}

.p-point::after{
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url(../img/curve-botton.svg) no-repeat center / cover;
}


.p-point__list{
  display: flex;
  gap: 24px;
  margin-top: 64px;
}

.p-point__item{
  align-self: flex-start;
  position: relative;
  width: 100%;
  padding: 40px 32px;
  background: #fff;
  border-radius: 5px;
}

.p-point__item:nth-child(2){
  margin-top: 40px;
}

.p-point__item:nth-child(3){
  margin-top: 80px;
}

.p-point__num{
  position: absolute;
  top: -40px;
  color: #0066BA;
  font-family: "Oswald", sans-serif;
  font-size: 56px;
  font-weight: 700;
}

.p-point__title{
  color: #0066BA;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.p-point__item img{
  display: block;
  width: 80px;
  margin: 32px auto;
}

.p-point__item:nth-child(1) img{
  margin: 40px auto;
}

@media screen and (max-width:768px){
  .p-point{
    margin-top: 120px;
    margin-bottom: 56px;
    padding-bottom: 24px;
  }

  .p-point::before{
    top: -56px;
    height: 56px;
  }

  .p-point::after{
    bottom: -80px;
    height: 80px;
  }


  .p-point__list{
    flex-direction: column;
  }

  .p-point__item{
    padding: 32px 24px;
  }

  .p-point__item:nth-child(2){
    margin-top: 40px;
  }

  .p-point__item:nth-child(3){
    margin-top: 40px;
  }

  .p-point__num{
    top: -30px;
    font-size: 48px;
  }

  .p-point__title{
    font-size: 20px;
  }

  .p-point__item img{
    margin: 16px auto;
  }

  .p-point__item:nth-child(1) img{
    margin: 24px auto;
  }

}

.p-target{
  margin-top: 200px;
}

.p-target__block{
  display: flex;
  gap: 80px;
  max-width: 800px;
  margin-inline: auto;
  margin-top: 48px;
}

.p-target__block:nth-child(odd){
  flex-direction: row-reverse;
}

.p-target__block + .p-target__block{
  margin-top: 32px;
}

.p-target__text{
  flex: 1;
  align-self: center;
}

.p-target__heading{
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 16px;
  background-color: #0066BA;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.p-target__image{
  width: 266px;
}

.p-sdgs{
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
}

.p-sdgs__item{
  position: relative;
  text-align: center;
  min-width: 268px;
}

.p-sdgs__item:nth-child(n+2)::after{
  content: "";
  position: absolute;
  top: 20px;
  left: -50%;
  width: 100%;
  height: 3px;
  background: #0066BA;
  z-index: -1;
}

.p-sdgs__name{
  display: inline-block;
  padding: 8px 24px;
  color: #0066BA;
  background: #fff;
  border: 3px solid #0066BA;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-sdgs__images{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.p-sdgs__image{
  width: 130px;
}

@media screen and (max-width:768px){
  .p-target{
    margin-top: 120px;
    padding-bottom: 32px;
  }

  .p-target__block{
    gap: 24px;
    flex-direction: column;
  }

  .p-target__block:nth-child(odd){
    flex-direction: column;
  }

  .p-target__block + .p-target__block{
    margin-top: 40px;
  }

  .p-target__text{
    flex: 1;
    align-self: center;
  }

  .p-target__heading{
    margin-bottom: 16px;
    padding: 8px 16px;
    font-size: 20px;
  }

  .p-target__image{
    width: 240px;
    margin: auto;
  }

  .p-sdgs{
    display: block;
    margin-top: 56px;
  }

  .p-sdgs__item{
    text-align: left;
    min-width: 268px;
  }

  .p-sdgs__item + .p-sdgs__item{
    margin-top: 24px;
  }

  .p-sdgs__item:nth-child(n+2)::after{
    position: absolute;
    top: -100%;
    left: 30px;
    width: 3px;
    height: 100%;
  }

  .p-sdgs__name{
    font-size: 16px;
  }

  .p-sdgs__images{
    margin-top: 16px;
  }

  .p-sdgs__image{
    width: 120px;
  }
}

.p-entry{
  padding: 140px 0 80px;
  background: url(../img/arrow.svg) no-repeat top / 100%;
  background-color: #0066BA;
}

.p-entry__block{
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 48px;
  padding: 32px;
  background-color: #fff;
  border-radius: 5px;
}

.p-entry__text{
  align-self: center;
}

.p-entry__heading{
  margin-bottom: 24px;
  color: #0066BA;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-entry__line{
  flex-shrink: 0;
  display: flex;
  gap: 40px;
}

.p-entry__qr{
  text-align: center;
}

.p-entry__qr img{
  display: block;
  width: 110px;
  margin: 8px auto 0;
}

.p-entry__label{
  align-self: center;
  display: inline-block;
  padding: 8px 16px;
  background: #0066BA;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-entry__id{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-entry__id-box{
  display: flex;
  gap: 12px;
  margin: auto;
  padding: 10px 24px 10px 12px;
  color: #0066BA;
  border: 1px solid #0066BA;
  border-radius: 3px;
}

.p-entry__id-box img{
  flex-shrink: 0;
  width: 18px;
}

.p-entry__id-line{
  font-weight: 700;
}

.p-entry__attr{
  margin-top: 40px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width:768px){
  .p-entry{
    padding: 80px 0 56px;
  }

  .p-entry__block{
    display: block;
    margin-top: 32px;
    padding: 32px 24px;
  }

  .p-entry__text{
    align-self: center;
  }

  .p-entry__heading{
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.25;
  }

  .p-entry__line{
    margin-top: 24px;
    gap: 24px;
    justify-content: center;
  }

  .p-entry__qr{
    text-align: center;
  }

  .p-entry__qr img{
    width: 100px;
  }

  .p-entry__label{
    font-size: 12px;
  }

  .p-entry__id-box img{
    flex-shrink: 0;
    width: 16px;
  }

  .p-entry__id-line{
    font-size: 14px;
  }

  .p-entry__attr{
    margin-top: 32px;
    font-size: 12px;
  }
}

.p-provider{
  margin-top: 80px;
  background: url(../img/border02.svg) no-repeat center / 100%;
}

.p-provider__block{
  padding: 80px 64px 48px;
  background-color: #E2F2FF;
  border-radius: 5px 5px 0 0;
}

.p-provider__read{
  margin-top: 32px;
  text-align: center;
}

.p-provider__list{
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
}

.p-provider__item{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 16px;
  background-color: #fff;
  border: 3px solid #0066BA;
  border-radius: 5px;
  text-align: center;
}

.p-provider__point{
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  display: inline-block;
  width: fit-content;
  margin: auto;
  padding: 8px 24px;
  background: #fff;
  border: 3px solid #0066BA;
  border-radius: 20px;
  color: #0066BA;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-provider__text{
  margin: auto;
  color: #0066BA;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.p-provider__contact{
  display: flex;
  justify-content: center;
  padding: 48px;
  background-color: #E2F2FF;
  border-top: 3px solid #fff;
  border-radius: 0 0 5px 5px;
}

.p-provider__textBox{
  position: relative;
  margin-right: 24px;
  padding-right: 60px;
}

.p-provider__textBox::after{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  margin: auto;
  border-left: solid 16px #0066BA;
  border-top: solid 16px transparent;
  border-bottom: solid 16px transparent;
}

.p-provider__title{
  margin-bottom: 16px;
  color: #0066BA;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-provider__line{
  align-self: center;
  flex-shrink: 0;
  width: 110px;
}

@media screen and (max-width:768px){
  .p-provider{
  margin-top: 56px;
}

.p-provider__block{
  padding: 40px 24px 32px;
}

.p-provider__read{
  margin-top: 24px;
}

.p-provider__list{
  display: block;
  margin-top: 48px;
}

.p-provider__item{
  padding: 24px 16px;
}

.p-provider__item + .p-provider__item{
  margin-top: 40px;
}

.p-provider__point{
  top: -18px;
  font-size: 16px;
}

.p-provider__text{
  font-size: 14px;
}

.p-provider__contact{
  display: block;
  padding: 32px;
}

.p-provider__textBox{
  margin-right: 0;
  padding-right: 0;
  margin-bottom: 16px;
  padding-bottom: 32px;
}

.p-provider__textBox::after{
  left: 0;
  top: auto;
  border-top: solid 16px #0066BA;
  border-left: solid 16px transparent;
  border-right: solid 16px transparent;
}

.p-provider__title{
  font-size: 18px;
}

.p-provider__line{
  display: block;
  width: 100px;
  margin: auto;
}
}

.p-footer{
  margin-top: 120px;
}

.p-footer__top{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  padding-inline: 40px;
}

.p-footer__logo{
  width: 112px;
}

.p-footer__read{
  font-size: 16px;
  font-weight: 500;
}

.p-footer__read strong{
  font-size: 20px;
}

.p-footer__types{
  margin-top: 12px;
  font-size: 12px;
  line-height: 2;
}

.p-footer__bottom{
  margin-top: 40px;
  padding-block: 32px;
  background-color: #0066BA;
  color: #fff;
}

.p-footer__grid{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.p-footer__add{
  font-size: 14px;
}

.p-footer__right{
  margin-left: auto;
}

.p-footer__list{
  display: flex;
  justify-content: flex-end;
}

.p-footer__item + .p-footer__item::before{
  content: "/";
  display: inline-block;
  margin-inline: 1em;
}

.p-footer__link{
  transition: opacity 0.3s;
}

.p-footer__link:hover{
  opacity: 0.7;
}

.p-footer__copy{
  margin-top: 24px;
  font-size: 10px;
  text-align: right;
}

@media screen and (max-width:768px){
  .p-footer{
    margin-top: 80px;
  }

  .p-footer__top{
    display: block;
    padding-inline: 20px;
  }

  .p-footer__logo{
    display: block;
    width: 112px;
    margin: auto;
  }

  .p-footer__read{
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
  }

  .p-footer__read strong{
    display: block;
    font-size: 18px;
  }

  .p-footer__link{
    font-size: 14px;
  }
}

.u-text{
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

@media screen and (max-width:768px){
  .u-text{
    font-size: 14px;
  }
}
