@charset "utf-8";

@-ms-viewport {
  width: auto;
  initial-scale: 1;
}

/*--------------------------------------------
  BASE
--------------------------------------------*/
html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  position: relative;
  color: #1e1e1e;
  font-weight: 500;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.8;
  max-width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
img {
  vertical-align: middle;
}
table {
  width: 100%;
}
a {
  color: #333;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  a {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
  }
}

@media screen and (max-width : 1299px ) {
  html {
    font-size: .75vw;
  }
}
@media screen and (max-width : 1199px ) {
  html {
    font-size: .8vw;
  }
}
@media screen and (max-width : 991px ) {
  html {
    font-size: 1.3vw;
  }
}
@media screen and (max-width : 767px ) {
  html {
    font-size: 1.75vw;
  }
  body {
    line-height: 1.5;
  }
}
@media screen and (max-width : 575px ) {
  html {
    font-size: 2.5vw;
  }
}



/*--------------------------------------------
  GLOBAL CSS
--------------------------------------------*/
.img_responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img_full {
  display: block;
  width: 100%;
  height: auto;
}
.center_block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.ta_center {
  text-align: center;
}
.ta_right {
  text-align: right;
}

.visible_sp,
.visible_xs,
.visible_ss {
  display: none;
}
@media screen and (max-width: 991px) {
  .hidden_tb {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .visible_sp {
    display: block!important;
  }
  .visible_sp {
    display: block!important;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .visible_xs {
    display: block!important;
  }
}
@media screen and (max-width:575px) {
  .visible_ss {
    display: block!important;
  }
}



/*--------------------------------------------
  CONTENTS BOX
--------------------------------------------*/
@media screen and ( max-width: 991px ) {
  .inner {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .wrap_conts {
    padding-top: 1.5em;
    padding-bottom: 3em;
  }

  .box_pdt {
    padding-top: 3em;
  }
  .box_pdt_sm {
    padding-top: 1.5em;
  }
}
@media screen and ( min-width: 992px ) {
  .inner {
    width: 100%;
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .wrap_conts {
    padding-top: 3em;
    padding-bottom: 5em;
  }

  .box_pdt {
    padding-top: 5em;
  }
  .box_pdt_sm {
    padding-top: 3em;
  }
}


/*--------------------------------------------
  breadcrumbs
--------------------------------------------*/
.wrap_breadcrumbs {
  padding: .5em 0;
}
.breadcrumbs {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  padding: .5em 0;
}
.breadcrumbs > li {
  position: relative;
}
.breadcrumbs > li > a {
  display: block;
  padding: 0 1.8em;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0599d9;
  line-height: 1.3;
  letter-spacing: .1rem;
}
.breadcrumbs > li:first-child > * {
  padding-left: 0;
}
.breadcrumbs > li + li::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -.2em;
  bottom: 0;
  margin: auto;
  width: .4em;
  height: .4em;
  border-right: .2rem solid #222;
  border-bottom: .2rem solid #222;
  transform: rotate(-45deg);
}
.breadcrumbs > li > a:hover,
.breadcrumbs > li > a:focus {
  text-decoration: underline;
}
.breadcrumbs > li:last-child > a {
  color: #222222;
  text-decoration: none;
  pointer-events: none;
}

.breadcrumbs {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 991px) {
  .breadcrumbs {
    flex-wrap: nowrap;
    width: 100%;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    white-space: nowrap;
  }
  .breadcrumbs::-webkit-scrollbar {
    height: .3em;
  }
  .breadcrumbs::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 1em;
  }
  .breadcrumbs::-webkit-scrollbar-thumb {
    border-radius: 1em;
    background: #0599d9;
  }
}

/*--- page.css ---*/
/* sdgsicon */
.fx_sdgsicon {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin: 0 -1.8em;
}

.jc_end {
  justify-content: flex-end;
}

.jc_center {
  justify-content: center;
}

.fx_sdgsicon>li {
  position: relative;
  z-index: -1;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  padding: 0 1.8em;
}

.fx_sdgsicon>li+li {
  border-left: 1px solid #111;
}

.fx_sdgsicon>.sdgs>img {
  width: 100%;
  max-width: 18.125em;
}

.fx_sdgsicon>.icon>img {
  width: 100%;
  max-width: 30.625em;
}

.fx_sdgsicon.sm>.sdgs>img {
  max-width: 10em;
}

.fx_sdgsicon.sm>.icon>img {
  max-width: 16em;
}

.box_sdgsicon>.sup_text {
  margin-top: 1.5em;
}

@media screen and (max-width: 991px) {
  .fx_sdgsicon {
    margin: 0 -2%;
  }

  .fx_sdgsicon>li {
    padding: 0 2%;
  }

  .box_sdgsicon>.sup_text {
    margin-top: 1em;
    font-size: 1.4rem;
  }
}

/* main key */
.box_main {
  position: relative;
}

.box_main>.title {
  position: absolute;
  right: 2em;
  bottom: 2em;
  text-align: right;
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
  font-size: 4rem;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 991px) {
  .box_main>.title {
    right: 1.2em;
    bottom: 1.2em;
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .box_main>.title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 575px) {
  .box_main>.title {
    font-size: 2rem;
  }
}

/* fukidashi */
.box_fukidashi {
  position: relative;
  margin-bottom: 2.5em;
  padding: 3em 2em;
  border-radius: 0.6em;
  background-color: #009c34;
  text-align: center;
  color: #fff;
}

.box_fukidashi::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.48em;
  margin: auto;
  width: 4.5em;
  height: 2.5em;
  background: url(./fukidashi.png) center/contain no-repeat;
}

.box_fukidashi>.catch {
  margin-top: 1em;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
}

.box_fukidashi>.title {
  margin-top: 1.3em;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.5;
}

.box_fukidashi>.text {
  margin-top: 1em;
}

.box_fukidashi img {
  width: 90px;
}

@media screen and (max-width: 991px) {
  .box_fukidashi {
    margin-bottom: 1.8em;
    padding: 2em 1.5em;
  }

  .box_fukidashi::before {
    bottom: -1.75em;
    width: 3.5em;
    height: 1.8em;
  }

  .box_fukidashi>.logo_pelp {
    width: 100%;
    max-width: 4em;
  }

  .box_fukidashi>.catch {
    font-size: 1.8rem;
  }

  .box_fukidashi>.title {
    font-size: 2.2rem;
  }

  .box_fukidashi>.text {
    text-align: left;
    font-size: 1.4rem;
  }
}

/* upcycle */
.box_upcycle>.title {
  width: 100%;
  max-width: 25em;
  margin: 0 auto;
  margin-bottom: 1.8em;
  padding: 1em 0.8em 0.8em;
  border-radius: 0.4em;
  background: #009c34;
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.1rem;
}

.fx_flow {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: url(./responsive/arrow_bl.png) center/50em no-repeat;
}

.fx_flow>.text {
  position: relative;
  width: 100%;
  padding: 3em 0;
}

.fx_flow>.text>.title {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  color: #009c34;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}

@media screen and (min-width: 992px) {
  .fx_flow>.text {
    order: 1;
  }

  .fx_flow>.flow:nth-of-type(2) {
    order: 0;
  }

  .fx_flow>.flow:nth-of-type(3) {
    order: 0;
  }

  .fx_flow>.flow:nth-of-type(4) {
    order: 2;
  }

  .fx_flow>.flow:nth-of-type(5) {
    order: 2;
  }
}

.fx_flow>.flow {
  position: relative;
  width: 100%;
  max-width: 25em;
}

.fx_flow>.flow>.text {
  position: relative;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  height: 5.6em;
  padding: 1em 1.5em;
  padding-left: 5.6em;
  background-color: #009c34;
  color: #fff;
}

.fx_flow>.flow>.text>span {
  position: absolute;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0.8em;
  bottom: 0;
  margin: auto;
  width: 1.6em;
  height: 1.6em;
  padding-top: 0.1em;
  border-radius: 50%;
  background-color: #fff;
  font-weight: 700;
  font-size: 3rem;
  color: #009c34;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .box_upcycle>.title {
    margin-bottom: 1.8em;
    padding: 1em 0.8em 0.8em;
    font-size: 2rem;
  }

  .fx_flow {
    background: none;
  }

  .fx_flow>.text {
    padding: 1.2em 0;
    background: rgba(255, 255, 255, 0.7);
  }

  .fx_flow>.text::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(./arrow_bl.png) center/contain no-repeat;
  }

  .fx_flow>.text>.title {
    font-size: 1.8rem;
  }

  .fx_flow>.flow {
    margin-top: 1.5em;
    max-width: 48%;
  }

  .fx_flow>.flow>.text {
    padding: 0.8em 1.2em;
    padding-left: 4.5em;
    font-size: 1.4rem;
  }

  .fx_flow>.flow>.text>span {
    left: 0.6em;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .fx_flow>.flow>.text {
    position: static;
    height: 6em;
    padding: 0.8em 1em;
    font-size: 1.2rem;
  }

  .fx_flow>.flow>.text>span {
    top: 0.5em;
    left: 0.5em;
    bottom: auto;
    font-size: 1.8rem;
  }
}

/* searchbox */
.box_search>.title {
  padding: 1em 0.8em 0.8em;
  background: #009c34;
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.1rem;
}

.box_search>.fx_search {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em;
  background: #f4f4f4;
}

.box_search>.fx_search>.item_text {
  margin-left: 1em;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: 0.1rem;
  word-break: break-all;
}

.box_search>.fx_search>.item_text>a:hover,
.box_search>.fx_search>.item_text>a:focus {
  color: #3094b3;
}

@media screen and (max-width: 991px) {
  .box_search>.title {
    font-size: 2rem;
  }

  .box_search>.fx_search>.item_text {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .box_search>.fx_search {
    flex-direction: column;
    padding: 1.2em;
  }

  .box_search>.fx_search>.item_text {
    margin-top: 1em;
    margin-left: 0;
  }
}
