@charset "UTF-8";
@media screen and (max-width: 768px) {
  /* base */
  .sp-pb-30 {
    padding-bottom: 30px;
  }
  .sp-mt-4 {
    margin-top: calc((8 / 750)* 100vw);
  }
  .sp-mt-5 {
    margin-top: calc((10 / 750)* 100vw);
  }
  .sp-mt-6 {
    margin-top: calc((12/750)*100vw);
  }
  .sp-mt-8 {
    margin-top: calc((16 / 750)* 100vw);
  }
  .sp-mt-9 {
    margin-top: calc((18/750)*100vw)
}
  .sp-mt-10 {
    margin-top: calc((20 / 750)* 100vw);
  }
  .sp-mt-11 {
    margin-top: calc((22 / 750)* 100vw);
  }
  .sp-mt-15 {
    margin-top: calc((30 / 750) * 100vw);
}
  .sp-mt-40 {
    margin-top: calc((80 / 750)* 100vw);
  }
}

/* base */
.color_red {
  color: #FF0000 !important;
}
.container.-mb-none{
  margin-bottom: 0;
}
#wrapper {
  overflow-x: visible;
}

/* animation */
.box_slide_in {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.txt_wrapper:not(:first-child) {
  margin-top: calc((-1 / 750)* 100vw);
}
.box_slide_in .txt_wrapper{
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.5s cubic-bezier(.24,.6,.17,1);
}
.box_slide_in .txt_wrapper.-active{
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@keyframes boxSlideIn {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.txt_slide_in {
  transform: translateY(130%);
  transition: transform 0.8s cubic-bezier(.24,.6,.17,1);
  display: inline-block;
}
.txt_slide_in.-active {
  transform: translateY(0);
}
@keyframes txtSlideIn {
  0% {
    transform: translateY(130%);
  }
  100% {
    transform: translateY(0);
  }
}

/* splash */
.pfa-splash{
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 2.5s 0.3s cubic-bezier(.24,.6,.17,1);
  visibility: visible;
}
.pfa-splash.-hidden{
  visibility: hidden;
  transform: translateY(-120%);
}
.pfa-splash-count{
  font-size: calc((50/750)*100vw);
}

/* header */
.header {
  z-index: 3;
  border: none;
  background-color: unset;
  height: calc((80/750)*100vw);
  padding: 0 4vw;
}

.header .logo{
  display: none;
}

.header .siteTtl{
  display: none;
}

/* menu */
.menu.-open {
  background-image: url(/jp/ja/contents/sustainability/peace-for-all/img/menu.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.menu.-open .menu_line,
.menu.-open .menu_txt {
  display: none;
}
.menu.-open {
  width: calc((109/750)*100vw);
  height: calc((60/750)*100vw);
  top: calc((-30 / 750)* 100vw);
  right: 4vw;
  transform: translateY(-50%);
  transition: top 0.5s;
}

/* breadcrumbs */
.breadcrumbs{
  position: fixed;
  width: calc((442/750)*100vw);
  height: calc((80/750)*100vw);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  z-index: 3;
}

.breadcrumbs_inner{
  display: none;
}

.toen {
  position: absolute;
  top: calc((-30 / 750)* 100vw);
  right: 0;
  transform: translateY(-50%);
  width: calc((109/750)*100vw);
  height: calc((60/750)*100vw);
  margin-top: 0;
  transition: top 0.5s;
}
.toen_link{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* pfaMoreLinks */
.pfaMoreLinks{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: -webkit-sticky;
  position: sticky;
  bottom: -100px;
  left: 50%;
  width: 100%;
  z-index: 5;
  transition: bottom 0.5s, top 0.5s;
  background-color: #ff0000;
}
.pfaMoreLinks::after{
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

body.-moreLinkAppear .pfaMoreLinks{
  bottom: 0;
}
body.-moreLinkAppear .toen{
  top: 50%;
}
body.-moreLinkAppear .menu.-open{
  top: 50%;
}

.pfaMoreLink{
  font-size: calc((24/750)*100vw);
  background-color: #ff0000;
  color: #fff;
  padding-top: calc((9/750)*100vw);
  padding-bottom: calc((9/750)*100vw);
  padding-left: calc((40/750)*100vw);
  padding-right: calc((40/750)*100vw);
  font-weight: 700;
  width: calc((100% - 1px)/2);
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pfaMoreLink::after{
  content: "";
  display: block;
  margin-left: 3px;
  width: calc((16/750)*100vw);
  height: calc((16/750)*100vw);
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

.pfaMoreLink:nth-child(2n)::before{
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 65%;
  background-color: #fff;
  left: 0;
  top: 50%;
  transform: translate(-50%,-50%);
}

.pfaMoreLink:nth-child(n+3){
  margin-top: 1px;
}

/* pageTop */
#pageTop{
  z-index: 6;
}
#pageTop.fixd{
  bottom: 0
}
#pageTop.fixd .pageTop_inner{
  padding: 0 4vw;
}
#pageTop .pageTop_inner{
  bottom: calc(((140 / 750)* 100vw));
  pointer-events: none;
}
#pageTop a{
  pointer-events: initial;
}

.otherNavigation {
  border-top: none;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  /* base */
  .pc-pb-40 {
    padding-bottom: 40px;
  }
  .pc-mt-9 {
    margin-top: 9px;
  }
  .pc-mt-10 {
    margin-top: 10px;
}
  .pc-mt-18 {
      margin-top: 18px;
  }
  .pc-mt-28 {
    margin-top: 28px;
  }
  .pc-mt-30 {
        margin-top: 30px;
  }
  .pc-mr-37 {
    margin-right: 37px;
  }

  /* splash */
  .pfa-splash-count{
    font-size: 40px;
  }

  /* header */
  .header {
    right: 50%;
    transform: translateX(50%);
    max-width: none;
    padding: 0;
    padding-left: 16px;
    padding-right: 16px;
    height: 81px;
  }
  .headerInner{
    position: relative;
    height: 100%;
  }

  /* menu */
  .menu.-open  {
    top: -29px;
    margin-top: 0;
    width: 72px;
    height: 19px;
    right: 0;
    transform: unset;
  }

  /* breadcrumbs */
  .breadcrumbs{
    position: fixed;
    width: 100%;
    max-width: none;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0;
    padding-left: 80px;
    padding-right: 80px;
    z-index: 3;
    height: auto;
  }

  .toen {
    position: absolute;
    top: -85px;
    right: 98px;
    width: 75px;
    height: 19px;
    margin-top: 0;
    transform: initial;
  }

  .toen_link {
    width: 100%;
    height: 100%;
  }

  /* pfaMoreLinks */
  .pfaMoreLinks{
    transform: translateX(-50%);
    justify-content: flex-end;
    max-width: none;
    padding: 0;
    bottom: auto;
    top: -85px;
    background-color: unset;
    margin-top: 0;
    position: fixed;
  }

  .pfaMoreLinks::after{
    content: none;
  }

  .pfaMoreLink:not(:first-child)::before,
  .pfaMoreLink:nth-child(2n)::before{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 65%;
    background-color: #fff;
    left: 0;
    top: 50%;
    transform: translate(-50%,-50%);
  }

  body.-moreLinkAppear .pfaMoreLinks{
    top: 0;
    bottom: auto;
  }
  body.-moreLinkAppear .toen{
    top: 0;
  }
  body.-moreLinkAppear .menu.-open{
    top: 56px;
  }
  
  .pfaMoreLink{
    font-size: 13px;
    padding: 7px 19.5px;
    width: auto;
  }

  .pfaMoreLink:nth-child(n+3){
    margin-top: 0;
  }
  
  .pfaMoreLink::after{
    width: 8px;
    height: 8px;
    right: 10px;
    margin-left: 8px;
  }
  
  /* .pfaMoreLink:not(:first-child){
    margin-left: 5px;
  } */

  .txt_wrapper:not(:first-child) {
    margin-top: -1px;
  }

  /* pageTop */
  #pageTop{
    position: fixed;
    height: 0;
    bottom: 0;
    z-index: 4;
    right: 16px;
    left: auto;
    width: 1176px;
    margin-left: 50%;
  }
  #pageTop.fixd{
    bottom: -90px;
  }
  #pageTop.fixd .pageTop_inner{
    padding: 0 16px;
  }
  #pageTop .pageTop_inner{
    bottom: 16px;
  }
  #pageTop a{
    width: 30px;
    height: 30px;
  }
  #pageTop.fixd .pageTop_inner{
    bottom: 0;
  }

  .otherNavigation {
    margin-top: 120px;
    border-top: 1px solid #dadada;
  }
  .otherNavigation_inner {
    max-width: none;
    width: 100%;
    padding-top: 28px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }
  .otherNavigation_logo {
    margin-top: 0;
    transition: opacity .6s;
  }
  .otherNavigation_list {
    padding-left: 15px;
    width: auto;
    flex-wrap: unset;
    margin: 0;
  }
  .otherNavigation_listItem{
    margin-top: 0;
    transition: opacity .6s;
    font-size: 13px;
  }

  .footer{
    margin-top: 28px;
    padding: 28px 0;
    text-align: left;
    margin-bottom: 0;
  }
  .footerInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .footerCopyright {
    font-size: 13px;
    display: inline-block;
  }
}

@media screen and (min-width: 813px) {
  body.fix{
    position: unset;
  }
}
