@charset "UTF-8";

/* index

1. table style
      horizontal scroll table
          .fm-sus--table
              テーブル幅がはみ出すときにテーブルタグを囲んで横スクロールさせるためのdivスタイル
      library page table style
          .fm-sus--table--library
          .fm-sus--table--library--social
              https://www.family.co.jp/sustainability/library/esg_data.html などのデータ表示用テーブルのスタイル
      common table style
          テーブルの共通スタイル
          
2. title style
      h2 style
      h3 style
      h4 style
      h6 style
      colored title style
          .fm-sus--title--green
              緑のタイトル
          .fm-sus--title--blue
              青いタイトル
      title size style
          .fm-sus--title--size1
              ボーダーなし、フォントサイズ24px
          .fm-sus--title--size2
              ボーダーなし、フォントサイズ30px、重要課題配下のページの「社会背景と課題認識」などのアイコン付きタイトルに使用
      title step style
          .fm-sus--title--step1
          「ステップ」の表示に
          
*/

@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap");

@media screen and (max-width: 736px) {
  .fm-sus--split-layout .ly-sp-2line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

body {
  counter-reset: number 0;
}

.ly-contents-main-area p {
  line-height: 2.3em !important;
}

/* //////////////////////////////// table style ////////////////////////////////*/

.fm-sus--table table,
table.fm-sus--table {
  border-color: #fff;
  border-top: 1px solid #aaa;
  border-bottom: 5px solid #aaa;
  border-right: 1px solid #aaa;
  border-left: 1px solid #aaa;
  color: #313131;
  vertical-align: top;
  margin: 1em 0;
  width: 100%;
}
.fm-sus--table table tr,
.fm-sus--table table td,
.fm-sus--table table th,
table.fm-sus--table tr,
table.fm-sus--table td,
table.fm-sus--table th {
  border-color: #fff;
  border-width: 0;
  padding: 0.5em 1em;
}
.fm-sus--table table th,
table.fm-sus--table {
  text-align: left;
}
/*.fm-sus--table table tr:not(:last-child),*/
/*.fm-sus--table table td:not(:last-child),
.fm-sus--table table th:not(:last-child),*/
/*table.fm-sus--table tr:not(:last-child),*/
/*table.fm-sus--table td:not(:last-child),
table.fm-sus--table  th:not(:last-child),*/
.fm-sus--table table:not(.fm-sus--table--library) th:not(:last-child),
.fm-sus--table table:not(.fm-sus--table--library) td:not(:last-child),
table.fm-sus--table:not(.fm-sus--table--library) th:not(:last-child),
table.fm-sus--table:not(.fm-sus--table--library) td:not(:last-child) {
  border-right: 1px solid #ccc;
}
.fm-sus--table table thead td,
.fm-sus--table table thead th,
table.fm-sus--table thead td,
table.fm-sus--table thead th {
  color: #999;
  font-size: .8em;
  font-weight: normal;
  white-space: nowrap !important;
}
.fm-sus--table table thead td:first-child,
.fm-sus--table table thead th:first-child {
  /*text-align: left;*/
}
.fm-sus--table table thead td:not(:first-child),
.fm-sus--table table thead th:not(:first-child) {
  /*text-align: right;*/
}
.fm-sus--table table thead,
table.fm-sus--table thead {
  /*border-bottom: 5px solid #aaa;*/
}
.fm-sus--table table tbody tr,
table.fm-sus--table tbody tr {
  border-bottom: 1px solid #fff;
}
.fm-sus--table table tbody tr:nth-of-type(odd),
table.fm-sus--table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.04);
}
.fm-sus--table table tbody tr.fm-sus--tr-even:nth-of-type(odd),
table.fm-sus--table tbody tr.fm-sus--tr-even:nth-of-type(odd) {
  background-color: transparent;
}
.fm-sus--table table tbody tr.fm-sus--tr-even:nth-of-type(even),
table.fm-sus--table tbody tr.fm-sus--tr-even:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.04);
}
.fm-sus--table table tbody tr.fm-sus--tr-white,
table.fm-sus--table tbody tr.fm-sus--tr-white {
  background-color: transparent;
}
.fm-sus--table table tbody tr.fm-sus--tr-gray,
table.fm-sus--table tbody tr.fm-sus--tr-gray {
  background-color: rgba(0, 0, 0, 0.04);
}
.fm-sus--table table tbody tr td,
.fm-sus--table table tbody tr th {
  /*text-align: left;*/
}
.fm-sus--table table tbody tr th,
table.fm-sus--table tbody tr th {
  white-space: nowrap;
}
.fm-sus--table table tbody tr td {
  /*text-align: right;*/
}

/* horizontal scroll table */

@media only screen and (min-width: 1201px) {
  .fm-sus--table .sp-nowrap br {
    /*display: none;*/
  }
}
@media only screen and (max-width: 1200px) {
  .fm-sus--table .sp-nowrap {
    white-space: nowrap;
  }
  div.fm-sus--table .sp-nowrap br {
    /*display: inline-block;*/
  }
  div.fm-sus--table {
    position: relative;
    width: calc(100% + 15px);
  }
  div.fm-sus--table > div {
    overflow-x: scroll;
  }
  div.fm-sus--table > div > table {
    margin-right: 50px;
  }
  div.fm-sus--table::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
    content: "";
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
    height: 100%;
    position: absolute;
    right: 0; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    top: 0;
    width: 50px;
  }
}

/* data table style */
.fm-sus--table--data th {
  /*text-align: left;*/
}
.fm-sus--table--data td {
  text-align: right;
}

/* library page table style */

.fm-sus--table--library {
  font-size: .95em;
}

.fm-sus--table--library thead th {
  /*text-align: center !important;*/
}
.fm-sus--table--library thead th:nth-child(2) {
  text-align: center !important;
  padding: .2em;
  width: 30px !important;
}
.fm-sus--table--library thead th:nth-child(3),
.fm-sus--table--library thead th:nth-child(4),
.fm-sus--table--library thead th:nth-child(5) {
  text-align: right !important;
  width: 10%;
}
.fm-sus--table--library thead th:last-child {
  width: 230px;
}
.fm-sus--table--library tbody th {
  font-weight: normal;
  width: 230px !important;
}
.fm-sus--table--library tbody th:first-child:not(:last-child) {
  padding-left: 1rem;
  text-align: left !important;
}
.fm-sus--table--library tbody th:not:first-child {
  text-align: right !important;
}
.fm-sus--table--library tbody th:nth-child(2) {
  background-color: rgba(0, 0, 0, 0.03);
  font-size: .7em;
  padding: .2em;
  text-align: center;
  width: 30px !important;
}
.fm-sus--table--library tbody td:not(.text-right):not(.text-center):last-child {
  text-align: left !important;
  width: 230px;
}
.fm-sus--table--library tbody td:not(:last-child) {
  text-align: right !important;
  width: 10%;
}
.fm-sus--table--library tbody .fm-sus--table--title th,
h4.fm-sus--table--title {
  background-color: #fff;
  border-bottom: 3px solid #008cd7;
  color: #008cd7;
  font-size: 18px;
  font-weight: bold;
  padding: 1rem 0 0.5rem 0 !important;
  width: 100% !important;
}
.fm-sus--table--library.no-border {
  border: none;
}
.fm-sus--table--library.no-border tr,
.fm-sus--table--library.no-border th,
.fm-sus--table--library.no-border td {
  border-right: none;
}
.fm-sus--table--library--social {
  text-align: right;
}
.fm-sus--table--library--social .fm-sus--table--title th {
  background-color: #fff;
  border-bottom: 3px solid #008cd7;
  color: #008cd7;
  font-size: 18px;
  font-weight: bold;
  padding: 1rem 0 0.5rem 0 !important;
  text-align: left;
  width: 100% !important;
}

/* common table style */

.fm-sus--table table tbody tr th.text-left,
.fm-sus--table table tbody tr td.text-left,
table.fm-sus--table tbody tr th.text-left,
table.fm-sus--table tbody tr td.text-left {
  text-align: left !important;
}
.fm-sus--table table tbody tr th.text-center,
.fm-sus--table table tbody tr td.text-center,
table.fm-sus--table tbody tr th.text-center,
table.fm-sus--table tbody tr td.text-center {
  text-align: center !important;
}
.fm-sus--table table tbody tr th.text-right,
.fm-sus--table table tbody tr td.text-right,
table.fm-sus--table tbody tr th.text-right,
table.fm-sus--table tbody tr td.text-right {
  text-align: right !important;
}


.fm-sus--table--text-left td,
.fm-sus--table--text-left th {
  text-align: left !important;
}
.fm-sus--table--text-center td,
.fm-sus--table--text-center th {
  text-align: center !important;
}

.fm-sus--table--normal th,
.fm-sus--table--normal td {
  text-align: left;
}

.fm-sus--table .border-left {
  border-left: 1px solid #aaa;
}
.fm-sus--table .border-left-none {
  border-left: none;
}
.fm-sus--table .border-right {
  border-right: 1px solid #aaa;
}
.fm-sus--table .border-right-none {
  border-right: none;
}
.fm-sus--table .border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.fm-sus--table .border-top-none {
  border-top: none;
}
.fm-sus--table .border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.fm-sus--table .border-bottom-none {
  border-bottom: none;
}


/* //////////////////////////////// title style ////////////////////////////////*/

/* h2 style */

.h2 {
  text-align: center !important;
  border: none !important;
  color: #313131;
  margin: 7rem 0 3rem 0;
  padding: 0 !important;
}
@media only screen and (max-width: 736px) {
  .h2 {
    margin: 4rem 0 3rem 0;
  }
}
.h2 .h2-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.h2 .h2-border span {
  display: block;
  height: 7px;
  margin: 0 1px;
  width: 43px;
}
.h2 .h2-border span:nth-child(odd) {
  background-color: #1bac4a;
}
.h2 .h2-border span:nth-child(even) {
  background-color: #008cd7;
}
.h2 a {
  color: #313131;
  text-decoration: none;
}
.h2 a:hover {
  text-decoration: none;
  opacity: 0.5;
}
.h2 a:active, .h2 a:visited {
  color: #313131;
}

.title_element:first-child .h2 {
  margin-top: 2em;
}

[class*=fm-sus--border] .h2 {
  margin-top: 0;
}

/* h3 style */

.h3 {
  border: none !important;
  border-left: 7px solid #1bac4a !important;
  font-size: 23px;
  margin: 4rem 0 2rem 0;
  padding: 0 0 0 1em !important;
}
@media only screen and (max-width: 736px) {
  .h3 {
    font-size: 18px;
  }
}

/* h4 style */

.h4 {
  border: none;
  padding: 0;
  margin: 2rem 0 1rem 0 !important;
}
@media only screen and (min-width: 737px) {
  .h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 736px) {
  .h4 {
    font-size: 16px;
  }
}

/* colored title style */

.fm-sus--title--green {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #1bac4a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: bold;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0.9em;
  text-decoration: none;
}
.fm-sus--title--blue {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #008cd7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: bold;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0.9em;
  text-decoration: none;
}

/* title size style */

.fm-sus--title--size1 {
  border-bottom: none;
  font-size: 24px;
}

.fm-sus--title--size2 {
  border-bottom: none;
  font-size: 30px;
  line-height: 45px;
}
@media only screen and (max-width: 736px) {
  .fm-sus--title--size2 {
    font-size: 26px;
  }
}
.fm-sus--title--size2 img {
  width: 75px;
  height: auto;
  margin-right: 1rem;
}


/* h6 style */

.h6 {
  font-size: .8em;
}

/* title step style */

[class*="--title--step"] {
  display: block;
  position: relative;
  padding-top: 0.8em;
}
[class*="--title--step"]::before {
  content: "";
  display: block;
  background-color: #1bac4a;
  padding: 0 1em;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: -2.1em;
  left: 0;
}
@media only screen and (max-width: 736px) {
  [class*="--title--step"]::before {
    top: -2.5em;
  }
}

.fm-sus--title--step1::before {
  content: "STEP1";
}
.fm-sus--title--step2::before {
  content: "STEP2";
}
.fm-sus--title--step3::before {
  content: "STEP3";
}
.fm-sus--title--step4::before {
  content: "STEP4";
}
.fm-sus--title--step5::before {
  content: "STEP5";
}
.fm-sus--h3--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2em;
  margin: 5rem 0 0 0;
}
@media only screen and (max-width: 736px) {
  .fm-sus--h3--icon {
    font-size: 1.3em;
  }
}
.fm-sus--h3--icon img {
  height: 2em;
}
.fm-sus--h3--icon img:not(:first-child) {
  margin: 0 1rem 0 2rem;
}
.fm-sus--h3--icon img:first-child {
  margin: 0 1rem 0 0;
}

[class*="--border"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 5px;
  margin: 0.5rem 0;
  padding: 2rem;
}
@media only screen and (max-width: 736px) {
  [class*="--border"] {
    padding: 1rem;
  }
}
[class*="--border"] .title_element:first-child > h2 {
  margin: 1rem 0 3rem 0;
}
[class*="--border"] .title_element:first-child > h3, [class*="--border"] .title_element:first-child > h4, [class*="--border"] .title_element:first-child > h5 {
  margin: 0 0 1rem 0;
}
[class*="--border"] .title_element:not(:first-child) > h2 {
  margin: 4rem 0 3rem 0;
}
[class*="--border"] .title_element:not(:first-child) > h3, [class*="--border"] .title_element:not(:first-child) > h4, [class*="--border"] .title_element:not(:first-child) > h5 {
  margin: 1rem 0;
}
[class*="--border"] .split_layout_column:not(:first-child) {
  /*margin-top: 2rem;*/
}
[class*="--border"] [class*=icon--] {
  color: #1bac4a;
}

:not([class*="--border"]) .split_layout_column + .split_layout_column {
  /*margin-top: 2rem;*/
}
@media only screen and (max-width: 736px) {
  :not([class*="--border"]) .split_layout_column + .split_layout_column {
    /*margin-top: 2rem;*/
  }
}

.fm-sus--border-green {
  border-color: #1bac4a;
}
@media screen and (min-width: 737px) {
  .fm-sus--border-green .ly-mod-layout-2clmspl .ly-sp-1line .ly-mod-layout-clm:nth-child(2n-1) {
    margin-right: 3.5em;
  }
  .fm-sus--border-green .ly-mod-layout-2clmspl .ly-sp-1line .ly-mod-layout-clm {
    width: calc(50% - 2em);
  }
}
@media screen and (max-width: 736px) {
  .fm-sus--border-green .ly-mod-layout-2clmspl .ly-sp-1line .ly-mod-layout-clm + .ly-mod-layout-clm {
    margin-top: 2rem;
  }
}
.fm-sus--border-gray {
  border-color: #eee;
}
.fm-sus--bg-green {
  padding: 2rem;
  background-color: rgba(27, 172, 74, 0.15);
  margin: 2rem 0 0 0;
}
@media only screen and (max-width: 736px) {
  .fm-sus--bg-green {
    padding: 1rem;
  }
}
.fm-sus--bg-gray {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 736px) {
  .fm-sus--bg-gray {
    padding: 0.5rem;
  }
}
.fm-sus--box-shadow {
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  padding: 2rem;
}
@media only screen and (max-width: 736px) {
  .fm-sus--box-shadow {
    padding: 1rem;
  }
}
.fm-sus--split-layout--half {
  width: calc(50% - 1em);
}
.fm-sus--split-layout--full {
  width: 100%;
}
@media only screen and (min-width: 737px) {
  .fm-sus--ly-mod-def-box--flex {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .fm-sus--ly-mod-def-box--flex [class*=ly-sp-] {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.fm-sus--title--relation-links {
  border: none !important;
  font-size: 19px;
  text-align: left !important;
  margin-bottom: 0 !important;
  color: #999;
}
.fm-sus--title--relation-links .h2-border {
  display: none;
}
.fm-sus--content--relation {
  border-radius: 1em;
  border: 4px dotted #ccc;
  padding: 1.5rem 1.5rem 0.7rem 1.5rem;
  margin-bottom: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fm-sus--content--relation .childpar {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.fm-sus--content--relation .childpar .text_link_unit {
  margin: 0 0.7rem 0.7rem 0;
}
.fm-sus--content--relation .childpar .text_link_unit dt a,
.fm-sus--content--relation .childpar .text_link_unit dd a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #008cd7 !important;
  border-radius: 30px !important;
  color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  line-height: inherit !important;
  min-width: 100px;
  padding: 0.5rem 2rem 0.5rem 1rem !important;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.fm-sus--content--relation .childpar .text_link_unit dt a::before,
.fm-sus--content--relation .childpar .text_link_unit dd a::before {
  border-bottom: 0.25em solid transparent !important;
  border-left: 0.4em solid !important;
  border-right: 0 !important;
  border-top: 0.25em solid transparent !important;
  color: #fff !important;
  content: "" !important;
  display: inline-block !important;
  left: auto !important;
  line-height: inherit !important;
  margin-right: 1em;
  position: relative !important;
  right: auto !important;
  top: auto !important;
}
.fm-sus--content--relation .childpar .text_link_unit dt a:hover,
.fm-sus--content--relation .childpar .text_link_unit dd a:hover {
  opacity: 0.5;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.fm-sus--handwriting {
  font-family: "Klee One", cursiveL, serif;
  font-size: 19px;
}
.fm-sus--flex [class*=ly-sp-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 736px) {
  .fm-sus--flex [class*=ly-sp-] {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 737px) {
  .fm-sus--flex [class*=ly-sp-] > *:not(:first-child) {
    margin-left: 1rem;
  }
}
.fm-sus--flex--column [class*=ly-sp-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fm-sus--flex--column [class*=ly-sp-] > * {
  width: 100%;
}
.fm-sus--flex--column [class*=ly-sp-] > *:not(:first-child) {
  margin-top: 3rem !important;
}
@media only screen and (max-width: 736px) {
  .fm-sus--flex--column [class*=ly-sp-] > *:not(:first-child) {
    margin-top: 0 !important;
  }
}

.fm-sus--btn {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  background: #ffffff !important;
  border-radius: 10em !important;
  border: 4px solid rgba(0, 0, 0, 0.1) !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  color: #313131 !important;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  font-size: 14px;
  font-weight: bold;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  min-width: 200px !important;
  opacity: 1;
  text-align: left !important;
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media only screen and (min-width: 737px) {
  .fm-sus--btn {
    padding: 1em 2.5em !important;
  }
}
@media only screen and (max-width: 736px) {
  .fm-sus--btn {
    padding: 1em 2em !important;
  }
}
.fm-sus--btn::before, .fm-sus--btn::after {
  color: #333 !important;
  border-top: 0.15em solid transparent;
  border-bottom: 0.15em solid transparent;
  display: inline-block;
  font-size: 30px;
  left: auto !important;
  line-height: inherit !important;
  right: 30px !important;
  top: auto !important;
}
.fm-sus--btn::after {
  content: "" !important;
  border-left: 0.25em solid;
  border-right: 0;
}
@media only screen and (min-width: 737px) {
  .fm-sus--btn::after {
    margin: 0 -0.5rem 0 1rem;
  }
}
@media only screen and (max-width: 736px) {
  .fm-sus--btn::after {
    margin: 0 -0.9rem 0 1rem;
  }
}
a.fm-sus--btn.ly-mod-btn.ly-icn-blank:after {
    /*border: none;*/
    /*content: '\e905' !important;*/
    /*font-size: 13px;*/
    font-size: 30px !important;
    /*font-weight: bold;*/
}
.fm-sus--btn:hover {
  border: 4px solid rgba(0, 0, 0, 0.1) !important;
  opacity: 0.5;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.fm-sus--btn a {
  color: #313131 !important;
}
.fm-sus--btn a:visited, .fm-sus--btn a:active {
  color: #313131 !important;
}
.fm-sus--btn a:hover {
  text-decoration: none;
}
@media only screen and (min-width: 737px) {
  .fm-sus--btn.fm-sus--btn--medium {
    max-width: 300px;
  }
}
.fm-sus--btn.ly-icn-rev::after {
  content: none !important;
}
.fm-sus--btn.ly-icn-rev::before {
  content: "" !important;
  border-right: 0.25em solid;
  border-left: 0;
  margin: 0 1rem 0 -0.5rem;
  position: absolute;
  right: auto !important;
  left: 1.5rem !important;
}
.fm-sus--btn--back {
  border-radius: 0 !important;
  border-style: dotted !important;
  border-width: 5px !important;
  border-left-width: 0 !important;
  border-right-width: 0 !important;
  color: #999 !important;
  font-size: 18px !important;
  margin-top: 4rem;
  padding-left: 1rem !important;
}
.fm-sus--btn--back::before {
  border-bottom-width: 0 !important;
  border-left: 4px solid #bbb !important;
  border-right-width: 0 !important;
  border-top: 4px solid #bbb !important;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 30px !important;
  margin: 0;
  -webkit-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
  width: 30px !important;
}
.fm-sus--btn--back:hover {
  border: 5px dotted #eee !important;
  border-left-width: 0 !important;
  border-right-width: 0 !important;
}
.fm-sus--btn--green {
  margin-bottom: 1rem;
}
.fm-sus--btn--green:not(:first-child) {
  margin-left: 0.5em;
}
.fm-sus--btn--green a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1bac4a;
  border-radius: 3rem;
  border: 4px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: bold;
  padding: 0.2rem 1.5rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.fm-sus--btn--green a::before {
  content: "";
  margin-right: 1em;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
  border-left: 0.7em solid #ffffff;
}
.fm-sus--btn--green a:hover, .fm-sus--btn--green a:active {
  text-decoration: none;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.fm-sus--btn--green a:active {
  border-color: rgba(255, 255, 255, 0.2);
}
.fm-sus--btn--square .fm-sus--btn--green a {
  min-height: 4rem;
  width: 100%;
  border-radius: 0.5rem;
}

.fm-sus--btn--gray-small a {
  align-items: center;
  background-color: transparent;
  border: 1px solid #d0d0d0;
  border-radius: 0.5rem;
  color: #313131 !important;
  display: inline-flex;
  font-size: .85rem;
  font-weight: normal;
  margin: 0.3rem;
  padding: 0.1rem 1rem;
  transition: all 0.3s ease-out;
  white-space: nowrap;
}
.fm-sus--btn--gray-small a::before {
  margin-right: 0.5em;
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.45em solid #bababa;
}

.fm-sus--btn--pdf a::before {
  background: transparent url(/content/dam/family/sustainability/icons/icon-pdf.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  border: none;
  height: 1.5em;
  margin: 0 0.5em 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5em;
}
.fm-sus--btn--pdf a .ly-mod-icn006 {
  display: none;
}
.fm-sus--btn--external a::before {
  background: transparent url(/content/dam/family/sustainability/icons/icon-external.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  border: none;
  height: 1.2em;
  margin: 0 0.2em 0 0;
  width: 1.2em;
}
.fm-sus--btn--external a .ly-mod-icn006 {
  display: none;
}

.ly-mod-btn.ly-ta-c.ly-icn-rev.fm-sus--btn {
  margin-top: 3em;
}

.fm-sus--row--40-60 > div > div .ly-mod-layout-clm:first-child {
  width: 35%;
}
.fm-sus--row--40-60 > div > div .ly-mod-layout-clm:last-child {
  width: 60%;
}
@media only screen and (max-width: 736px) {
  .fm-sus--row--40-60 > div > div.ly-sp-1line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
  .fm-sus--row--40-60 > div > div.ly-sp-1line .ly-mod-layout-clm {
    width: 100% !important;
  }
}
@media only screen and (min-width: 737px) {
  .fm-sus--row--40-60--reverce > div > div .ly-mod-layout-clm:first-child {
    width: 60%;
  }
  .fm-sus--row--40-60--reverce > div > div .ly-mod-layout-clm:last-child {
    width: 35%;
  }
}
@media only screen and (max-width: 736px) {
  .fm-sus--row--40-60--no-reverce > div > div.ly-sp-1line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.fm-sus--row--60-40 > div > div .ly-mod-layout-clm:first-child {
  width: 60%;
}
.fm-sus--row--60-40 > div > div .ly-mod-layout-clm:last-child {
  width: 35%;
}
@media only screen and (max-width: 736px) {
  .fm-sus--row--60-40 > div > div.ly-sp-1line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
  .fm-sus--row--60-40 > div > div.ly-sp-1line .ly-mod-layout-clm {
    width: 100% !important;
  }
}
@media only screen and (min-width: 737px) {
  .fm-sus--row--60-40--reverce > div > div .ly-mod-layout-clm:first-child {
    width: 35%;
  }
  .fm-sus--row--60-40--reverce > div > div .ly-mod-layout-clm:last-child {
    width: 60%;
  }
}
@media only screen and (max-width: 736px) {
  .fm-sus--row--60-40--no-reverce > div > div.ly-sp-1line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.fm-sus--row--65-35 > div > div .ly-mod-layout-clm:first-child {
  width: 65%;
}
.fm-sus--row--65-35 > div > div .ly-mod-layout-clm:last-child {
  width: 30%;
}
@media only screen and (max-width: 736px) {
  .fm-sus--row--65-35 > div > div.ly-sp-1line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
  .fm-sus--row--65-35 > div > div.ly-sp-1line .ly-mod-layout-clm {
    width: 100% !important;
  }
}
@media only screen and (min-width: 737px) {
  .fm-sus--row--65-35--reverce > div > div .ly-mod-layout-clm:first-child {
    width: 30%;
  }
  .fm-sus--row--65-35--reverce > div > div .ly-mod-layout-clm:last-child {
    width: 65%;
  }
}
.fm-sus--row--70-30 > div > div .ly-mod-layout-clm:first-child {
  width: 70%;
}
.fm-sus--row--70-30 > div > div .ly-mod-layout-clm:last-child {
  width: 25%;
}
@media only screen and (max-width: 736px) {
  .fm-sus--row--70-30 > div > div.ly-sp-1line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
  .fm-sus--row--70-30 > div > div.ly-sp-1line .ly-mod-layout-clm {
    width: 100% !important;
  }
}
@media only screen and (min-width: 737px) {
  .fm-sus--row--70-30--reverce > div > div .ly-mod-layout-clm:first-child {
    width: 25%;
  }
  .fm-sus--row--70-30--reverce > div > div .ly-mod-layout-clm:last-child {
    width: 70%;
  }
}
.fm-sus--row--80-20 > div > div .ly-mod-layout-clm:first-child {
  width: 80%;
}
.fm-sus--row--80-20 > div > div .ly-mod-layout-clm:last-child {
  width: 15%;
}
@media only screen and (max-width: 736px) {
  .fm-sus--row--80-20 > div > div.ly-sp-1line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
  .fm-sus--row--80-20 > div > div.ly-sp-1line .ly-mod-layout-clm {
    width: 100% !important;
  }
}
@media only screen and (min-width: 737px) {
  .fm-sus--row--80-20--reverce > div > div .ly-mod-layout-clm:first-child {
    width: 15%;
  }
  .fm-sus--row--80-20--reverce > div > div .ly-mod-layout-clm:last-child {
    width: 80%;
  }
}
.fm-sus--row--40-20-40 > div > div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fm-sus--row--40-20-40 > div > div .ly-mod-layout-clm {
  width: 20%;
}
.fm-sus--row--40-20-40 > div > div .ly-mod-layout-clm:first-child, .fm-sus--row--40-20-40 > div > div .ly-mod-layout-clm:last-child {
  width: 35%;
}
@media only screen and (max-width: 736px) {
  .fm-sus--row--40-20-40 > div > div.ly-sp-1line .ly-mod-layout-clm {
    width: 100% !important;
  }
}
.fm-sus--row--50-50 .ly-sp-1line,
.fm-sus--row--50-50 .ly-sp-2line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 736px) {
  .fm-sus--row--50-50 .ly-sp-1line,
.fm-sus--row--50-50 .ly-sp-2line {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.fm-sus--row--50-50 .fm-sus--w50 {
  width: 49% !important;
}
@media screen and (max-width: 736px) {
  .fm-sus--row--50-50 .fm-sus--w50 {
    margin-top: 1em;
    width: 100% !important;
  }
}
.fm-sus--row--30-70 > div > div .ly-mod-layout-clm:first-child {
  width: 25%;
}
.fm-sus--row--30-70 > div > div .ly-mod-layout-clm:last-child {
  width: 70%;
}
@media only screen and (max-width: 736px) {
  .fm-sus--row--30-70 > div > div.ly-sp-1line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
  .fm-sus--row--30-70 > div > div.ly-sp-1line .ly-mod-layout-clm {
    width: 100% !important;
  }
}
.fm-sus--row--30-30-30 .ly-sp-1line,
.fm-sus--row--30-30-30 .ly-sp-2line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 736px) {
  .fm-sus--row--30-30-30 .ly-sp-1line,
.fm-sus--row--30-30-30 .ly-sp-2line {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
@media screen and (max-width: 736px) {
  .fm-sus--row--30-30-30 .fm-sus--w30 {
    margin-top: 1em;
    width: 100% !important;
  }
}
@media screen and (min-width: 737px) {
  .fm-sus--row--30-30-30 .fm-sus--w30 {
    width: 32% !important;
  }
}
.fm-sus--plastic {
  margin: 0;
  padding: 0.5em 0;
}
@media only screen and (max-width: 736px) {
  .fm-sus--plastic {
    border: none;
  }
}
.fm-sus--plastic .ly-sp-1line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 736px) {
  .fm-sus--plastic .ly-sp-1line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.2em 0.5em;
}
@media only screen and (max-width: 736px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child) {
  position: relative;
  border: 5px solid #eee;
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::after, .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
@media only screen and (min-width: 736px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::after, .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::before {
    left: 100%;
    top: 50%;
  }
}
@media only screen and (max-width: 736px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::after, .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::before {
    top: 100%;
    left: 50%;
  }
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::after {
  border-color: rgba(255, 255, 255, 0);
  border-width: 15px;
}
@media only screen and (min-width: 736px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::after {
    margin-top: -15px;
  }
}
@media only screen and (max-width: 736px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::after {
    margin-left: -15px;
  }
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::before {
  border-color: rgba(238, 238, 238, 0);
  border-width: 22px;
}
@media only screen and (min-width: 736px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::before {
    border-left-color: #eee;
    margin-top: -22px;
  }
}
@media only screen and (max-width: 736px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:last-child)::before {
    border-top-color: #eee;
    margin-left: -22px;
  }
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:first-child {
  background: #fff;
}
@media only screen and (min-width: 736px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:first-child::after {
    border-left-color: #fff;
  }
}
@media only screen and (max-width: 736px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:first-child::after {
    border-top-color: #fff;
  }
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:first-child b {
  display: block;
  font-size: 30px;
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:first-child b:first-letter {
  color: #1bac4a;
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:last-child {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1bac4a;
  border-radius: 0.3em;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media only screen and (min-width: 737px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:last-child {
    width: 150px;
  }
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:last-child b {
  font-size: 18px;
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:first-child):not(:last-child) {
  background-color: #eee;
}
@media only screen and (min-width: 737px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:first-child):not(:last-child) {
    margin: 0 0.5em 0 2em;
    width: calc(63.33334% - 150px);
  }
}
@media only screen and (max-width: 737px) {
  .fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm:not(:first-child):not(:last-child) {
    margin-top: -2rem;
    padding: 0.2em;
    z-index: -1;
  }
}
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm .image_element > div,
.fm-sus--plastic .ly-sp-1line .ly-mod-layout-clm .text_element > div {
  margin: 0 !important;
}
.image_element.parbase.section > div > div {
  font-size: .9em;
  margin-top: 0.2em;
  color: #aaa;
  font-weight: 500;
}
.fm-sus--row--three {
  border-top: 5px solid #eee;
  padding: 0.5em 0 0 0;
}
.fm-sus--row--three .ly-sp-1line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media only screen and (max-width: 736px) {
  .fm-sus--row--three .ly-sp-1line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fm-sus--row--three .ly-sp-1line h3,
.fm-sus--row--three .ly-sp-1line h4 {
  margin: .3rem 0 !important;
  white-space: nowrap;
}
.fm-sus--row--three .ly-sp-1line .image_element > div,
.fm-sus--row--three .ly-sp-1line .text_element > div {
  margin: 0 !important;
}
.fm-sus--img--full {
  max-height: 500px;
  overflow: hidden;
}
.fm-sus--img--30per {
  width: 30%;
}
.fm-sus--tab-box {
  margin: 4rem 0 2rem 0;
}
.fm-sus--tab-box .ly-tab-cate-list {
  border-bottom: 5px solid #1bac4a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.fm-sus--tab-box .ly-tab-cate-list li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff !important;
  border-radius: 0 1rem 0 0;
  border: 5px solid #eee !important;
  border-left-color: transparent !important;
  border-bottom: 0 !important;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fm-sus--tab-box .ly-tab-cate-list li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2em;
  padding: 0.5rem;
  min-height: 3rem;
}
.fm-sus--tab-box .ly-tab-cate-list li:hover {
  background: #fff !important;
  border: 5px solid #eee !important;
  border-left-color: transparent !important;
  border-bottom: 0 !important;
  color: #999;
  opacity: 0.5;
}
.fm-sus--tab-box .ly-tab-cate-list li:hover a {
  color: #999;
}
.fm-sus--tab-box .ly-tab-cate-list li:first-child {
  border-radius: 1rem 0 0 0;
  border-right-color: transparent !important;
  border-left-color: #eee !important;
}
.fm-sus--tab-box .ly-tab-cate-list li:first-child:hover {
  border-right-color: transparent !important;
  border-left-color: #eee !important;
}
.fm-sus--tab-box .ly-tab-cate-list li.ly-act {
  background-color: #fff !important;
  border-radius: 1rem 1rem 0 0 !important;
  border: 5px solid #1bac4a !important;
  border-bottom: 0 !important;
  color: #1bac4a;
  position: relative;
}
.fm-sus--tab-box .ly-tab-cate-list li.ly-act a {
  color: #1bac4a;
}
.fm-sus--tab-box .ly-tab-cate-list li.ly-act a:hover {
  color: #1bac4a;
}
.fm-sus--tab-box .ly-tab-cate-list li.ly-act a::after {
  background-color: #fff !important;
  bottom: -5px;
  content: "";
  display: block;
  height: 10px;
  left: 0;
  position: absolute;
  width: 100%;
}
.fm-sus--tab-box .ly-tab-cate-list li.ly-act:hover {
  border: 5px solid #1bac4a !important;
  border-bottom: 0 !important;
  opacity: 1;
}
.fm-sus--tab-box .ly-tab-cate-list li.ly-act:hover a {
  color: #1bac4a;
}

.fm-sus--target-links {
  margin: 0 0 3rem 0;
}
.fm-sus--target-links > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.fm-sus--target-links > div a {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #1bac4a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 1rem;
  white-space: nowrap;
}
@media only screen and (max-width: 736px) {
  .fm-sus--target-links > div a {
    padding: 0.5rem 1rem;
    white-space: normal;
    width: calc(100% - 1rem);
  }
}
.fm-sus--target-links > div a::before {
  content: "";
  margin-right: 1rem;
  border-left: 0.5rem solid transparent;
  border-top: 0.8rem solid #1bac4a;
  border-right: 0.5rem solid transparent;
}
.fm-sus--target-links > div a:hover {
  color: #1bac4a;
  opacity: 0.5;
  text-decoration: none;
}
.fm-sus--target-links--green {
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 736px) {
  .fm-sus--target-links--green {
    margin-bottom: 1rem;
  }
}
.fm-sus--target-links--green > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.fm-sus--target-links--green > div > div {
  width: 30%;
}
.fm-sus--target-links--green > div > div a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1bac4a;
  border-radius: 5em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 2rem 1rem 0;
  padding: 1rem 2rem;
  white-space: nowrap;
}
@media only screen and (max-width: 736px) {
  .fm-sus--target-links--green > div > div a {
    padding: 0.5rem 1rem;
  }
}
.fm-sus--target-links--green > div > div a::before {
  content: "";
  margin-right: 1rem;
  border-left: 0.5rem solid transparent;
  border-top: 0.8rem solid #fff;
  border-right: 0.5rem solid transparent;
}
.fm-sus--target-links--green > div > div a:hover {
  color: #fff;
  opacity: 0.5;
  text-decoration: none;
}
.fm-sus--target-links--green--50 > div > div {
  width: 50%;
}

[class*="--row"] img.ly-hovr {
  width: 100%;
}

.fm-sus--list-square li {
  line-height: 2.3em;
  margin-bottom: 1em;
  padding-left: calc(7px + 1rem);
}
.fm-sus--list-square li:before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin: 0.4rem 1rem 0 calc((7px + 1rem) * -1);
  background-color: #1bac4a;
}
.fm-sus--list-scope li {
  padding-left: calc(80px + 1rem);
  margin-bottom: 0.5em;
}
.fm-sus--list-scope li:before {
  background-color: #1bac4a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  counter-increment: number 1;
  content: "Scope " counter(number);
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  margin: 0 1rem 0 calc((83px + 1rem) * -1);
  padding: 0 1rem 0.1rem 1rem;
  text-align: center;
  width: 80px;
}
.fm-sus--list-asterisk ul,
.fm-sus--list-asterisk ol {
  counter-reset: listnum;
}
.fm-sus--list-asterisk li {
  padding-left: 3rem;
  margin-bottom: 0.3em;
}
.fm-sus--list-asterisk li:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  counter-increment: listnum;
  content: "※" counter(listnum);
  display: inline-block;
  font-size: 15px;
  margin: 0 1rem 0 -3rem;
  width: 2rem;
}
.fm-sus--list-number ol {
  list-style-type: decimal;
  margin-left: 1.5em;
}
.fm-sus--list-number ol li {
  margin-bottom: 0.7em;
  line-height: 2em;
}
.fm-sus--list-number.fm-sus--list-number--green ol li::marker {
  color: #1bac4a;
  font-weight: bold;
}
.fm-sus--list-dl {
  border-left: 1px solid #aaa;
  border-top: 1px solid #aaa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  width: 100%;
}
.fm-sus--list-dl > div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
@media only screen and (max-width: 736px) {
  .fm-sus--list-dl > div {
    width: 50%;
  }
}
.fm-sus--list-dl > div dt,
.fm-sus--list-dl > div dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.7rem;
  text-align: center;
  width: 50%;
}
.fm-sus--list-dl > div dt {
  background: rgba(0, 0, 0, 0.04);
}
.fm-sus--list-ul {
  border-left: 1px solid #aaa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: pre-wrap;
}
.fm-sus--list-ul li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.7rem;
  text-align: center;
  border-right: 1px solid #aaa;
  border-top: 1px solid #aaa;
}
.fm-sus--list-ul li:last-child {
  border-bottom: 1px solid #aaa;
}
.fm-sus--list-ul--20 li {
  text-align: left;
  width: 20%;
}
.fm-sus--list-ul--20 li:nth-child(10n+1), .fm-sus--list-ul--20 li:nth-child(10n+2), .fm-sus--list-ul--20 li:nth-child(10n+3), .fm-sus--list-ul--20 li:nth-child(10n+4), .fm-sus--list-ul--20 li:nth-child(10n+5) {
  background-color: rgba(0, 0, 0, 0.04);
}
.fm-sus--list-ul--20 li:nth-last-child(1), .fm-sus--list-ul--20 li:nth-last-child(2), .fm-sus--list-ul--20 li:nth-last-child(3), .fm-sus--list-ul--20 li:nth-last-child(4), .fm-sus--list-ul--20 li:nth-last-child(5) {
  border-bottom: 1px solid #aaa;
}
.fm-sus--list-ul--33 li {
  text-align: left;
  width: 33%;
}
.fm-sus--list-ul--33 li:nth-child(6n+1), .fm-sus--list-ul--33 li:nth-child(6n+2), .fm-sus--list-ul--33 li:nth-child(6n+3) {
  background-color: rgba(0, 0, 0, 0.04);
}
.fm-sus--list-ul--33 li:nth-last-child(1), .fm-sus--list-ul--33 li:nth-last-child(2), .fm-sus--list-ul--33 li:nth-last-child(3) {
  border-bottom: 1px solid #aaa;
}
.fm-sus--list-ul--50 li {
  text-align: left;
  width: 50%;
}
.fm-sus--list-ul--50 li:nth-child(4n+1), .fm-sus--list-ul--50 li:nth-child(4n+2) {
  background-color: rgba(0, 0, 0, 0.04);
}
.fm-sus--list-ul--50 li:nth-last-child(1), .fm-sus--list-ul--50 li:nth-last-child(2) {
  border-bottom: 1px solid #aaa;
}

[class*="--w"] img.ly-hovr {
  /*width: 100%;*/
}

.fm-sus--w100-sp img.ly-hovr {
  width: 100%;
}

.fm-sus--w10 {
  width: 10% !important;
}
.fm-sus--w20 {
  width: 20% !important;
}
.fm-sus--w30 {
  width: 30% !important;
}
.fm-sus--w40 {
  width: 40% !important;
}
.fm-sus--w50 {
  width: 50% !important;
}
.fm-sus--w60 {
  width: 60% !important;
}
.fm-sus--w70 {
  width: 70% !important;
}
.fm-sus--w80 {
  width: 80% !important;
}
.fm-sus--w90 {
  width: 90% !important;
}
@media only screen and (max-width: 736px) {
  .fm-sus--w10-sp {
    width: 10% !important;
  }
  .fm-sus--w20-sp {
    width: 20% !important;
  }
  .fm-sus--w30-sp {
    width: 30% !important;
  }
  .fm-sus--w40-sp {
    width: 40% !important;
  }
  .fm-sus--w50-sp {
    width: 50% !important;
  }
  .fm-sus--w60-sp {
    width: 60% !important;
  }
  .fm-sus--w70-sp {
    width: 70% !important;
  }
  .fm-sus--w80-sp {
    width: 80% !important;
  }
  .fm-sus--w90-sp {
    width: 90% !important;
  }
  .fm-sus--w100-sp {
    width: 100% !important;
  }
}

.fm-sus--w400 {
  width: 400px !important;
}
@media only screen and (max-width: 400px) {
  .fm-sus--w400 {
    width: 100%;
  }
}

.fm-sus--text-left {
  text-align: left !important;
}
.fm-sus--text-right {
  text-align: right !important;
}
.fm-sus--text-center {
  text-align: center !important;
}
.fm-sus--line-height-default p {
  line-height: inherit !important;
}

@media only screen and (max-width: 736px) {
  .fm-sus--sp-text-left {
    text-align: left !important;
  }
  .fm-sus--sp-text-right {
    text-align: right !important;
  }
  .fm-sus--sp-text-center {
    text-align: center !important;
  }
}

.fm-sus--caption {
  line-height: inherit !important;
  margin-top: .5em;
  font-size: .8em;
}
.fm-sus--caption p {
  line-height: inherit !important;
  margin-top: .5em;
}

.fm-sus--m0 {
  margin: 0 !important;
}
.fm-sus--m1 {
  margin: 1rem !important;
}
.fm-sus--m2 {
  margin: 2rem !important;
}
.fm-sus--m3 {
  margin: 3rem !important;
}
.fm-sus--m4 {
  margin: 4rem !important;
}
.fm-sus--m5 {
  margin: 5rem !important;
}
.fm-sus--m6 {
  margin: 6rem !important;
}
.fm-sus--m7 {
  margin: 7rem !important;
}
.fm-sus--m8 {
  margin: 8rem !important;
}
.fm-sus--m9 {
  margin: 9rem !important;
}
.fm-sus--m10 {
  margin: 10rem !important;
}

.fm-sus--mt0 {
  margin-top: 0 !important;
}
.fm-sus--mt1 {
  margin-top: 1rem !important;
}
.fm-sus--mt2 {
  margin-top: 2rem !important;
}
.fm-sus--mt3 {
  margin-top: 3rem !important;
}
.fm-sus--mt4 {
  margin-top: 4rem !important;
}
.fm-sus--mt5 {
  margin-top: 5rem !important;
}
.fm-sus--mt6 {
  margin-top: 6rem !important;
}
.fm-sus--mt7 {
  margin-top: 7rem !important;
}
.fm-sus--mt8 {
  margin-top: 8rem !important;
}
.fm-sus--mt9 {
  margin-top: 9rem !important;
}
.fm-sus--mt10 {
  margin-top: 10rem !important;
}

.fm-sus--mt-1 {
  margin-top: -1rem !important;
}
.fm-sus--mt-2 {
  margin-top: -2rem !important;
}
.fm-sus--mt-3 {
  margin-top: -3rem;
}
.fm-sus--mt-4 {
  margin-top: -4rem;
}


@media only screen and (max-width: 736px) {
  .fm-sus--mt-3 {
    /*margin-top: -2rem;*/
  }
}
@media only screen and (max-width: 736px) {
  .fm-sus--sp-mt-4 {
    /*margin-top: -2rem;*/
  }
}

.fm-sus--mb0 {
  margin-bottom: 0 !important;
}
.fm-sus--mb1 {
  margin-bottom: 1rem !important;
}
.fm-sus--mb2 {
  margin-bottom: 2rem !important;
}
.fm-sus--mb3 {
  margin-bottom: 3rem !important;
}
.fm-sus--mb4 {
  margin-bottom: 4rem !important;
}
.fm-sus--mb5 {
  margin-bottom: 5rem !important;
}
.fm-sus--mb6 {
  margin-bottom: 6rem !important;
}
.fm-sus--mb7 {
  margin-bottom: 7rem !important;
}
.fm-sus--mb8 {
  margin-bottom: 8rem !important;
}
.fm-sus--mb9 {
  margin-bottom: 9rem !important;
}
.fm-sus--mb10 {
  margin-bottom: 10rem !important;
}

.fm-sus--mh-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.fm-sus--mv0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.fm-sus--mv1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.fm-sus--mv2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.fm-sus--mv3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.fm-sus--mv4 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.fm-sus--mv5 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
.fm-sus--mv6 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}
.fm-sus--mv7 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}
.fm-sus--mv8 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}
.fm-sus--mv9 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}
.fm-sus--mv10 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.fm-sus--p0 {
  padding: 0 !important;
}
.fm-sus--p1 {
  padding: 1rem !important;
}
.fm-sus--p2 {
  padding: 2rem !important;
}
.fm-sus--p3 {
  padding: 3rem !important;
}
.fm-sus--p4 {
  padding: 4rem !important;
}
.fm-sus--p5 {
  padding: 5rem !important;
}
.fm-sus--p6 {
  padding: 6rem !important;
}
.fm-sus--p7 {
  padding: 7rem !important;
}
.fm-sus--p8 {
  padding: 8rem !important;
}
.fm-sus--p9 {
  padding: 9rem !important;
}
.fm-sus--p10 {
  padding: 10rem !important;
}

.fm-sus--pt0 {
  padding-top: 0 !important;
}
.fm-sus--pt1 {
  padding-top: 1rem !important;
}
.fm-sus--pt2 {
  padding-top: 2rem !important;
}
.fm-sus--pt3 {
  padding-top: 3rem !important;
}
.fm-sus--pt4 {
  padding-top: 4rem !important;
}
.fm-sus--pt5 {
  padding-top: 5rem !important;
}
.fm-sus--pt6 {
  padding-top: 6rem !important;
}
.fm-sus--pt7 {
  padding-top: 7rem !important;
}
.fm-sus--pt8 {
  padding-top: 8rem !important;
}
.fm-sus--pt9 {
  padding-top: 9rem !important;
}
.fm-sus--pt10 {
  padding-top: 10rem !important;
}

.fm-sus--pb0 {
  padding-bottom: 0 !important;
}
.fm-sus--pb1 {
  padding-bottom: 1rem !important;
}
.fm-sus--pb2 {
  padding-bottom: 2rem !important;
}
.fm-sus--pb3 {
  padding-bottom: 3rem !important;
}
.fm-sus--pb4 {
  padding-bottom: 4rem !important;
}
.fm-sus--pb5 {
  padding-bottom: 5rem !important;
}
.fm-sus--pb6 {
  padding-bottom: 6rem !important;
}
.fm-sus--pb7 {
  padding-bottom: 7rem !important;
}
.fm-sus--pb8 {
  padding-bottom: 8rem !important;
}
.fm-sus--pb9 {
  padding-bottom: 9rem !important;
}
.fm-sus--pb10 {
  padding-bottom: 10rem !important;
}

.fm-sus--pv1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.fm-sus--pv2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.fm-sus--pv3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.fm-sus--pv4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.fm-sus--pv5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.fm-sus--pv6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
.fm-sus--pv7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}
.fm-sus--pv8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}
.fm-sus--pv9 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}
.fm-sus--pv10 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.fm-sus--ph1 {
  padding-left: 1rem !important;
  padding-left: 1rem !important;
}
.fm-sus--ph2 {
  padding-left: 2rem !important;
  padding-left: 2rem !important;
}
.fm-sus--ph3 {
  padding-left: 3rem !important;
  padding-left: 3rem !important;
}
.fm-sus--ph4 {
  padding-left: 4rem !important;
  padding-left: 4rem !important;
}
.fm-sus--ph5 {
  padding-left: 5rem !important;
  padding-left: 5rem !important;
}
.fm-sus--ph6 {
  padding-left: 6rem !important;
  padding-left: 6rem !important;
}
.fm-sus--ph7 {
  padding-left: 7rem !important;
  padding-left: 7rem !important;
}
.fm-sus--ph8 {
  padding-left: 8rem !important;
  padding-left: 8rem !important;
}
.fm-sus--ph9 {
  padding-left: 9rem !important;
  padding-left: 9rem !important;
}
.fm-sus--ph10 {
  padding-left: 10rem !important;
  padding-left: 10rem !important;
}

@media only screen and (max-width: 736px) {
  .fm-sus--sp-m0 {
    margin: 0 !important;
  }
  .fm-sus--sp-m1 {
    margin: 1rem !important;
  }
  .fm-sus--sp-m2 {
    margin: 2rem !important;
  }
  .fm-sus--sp-m3 {
    margin: 3rem !important;
  }
  .fm-sus--sp-m4 {
    margin: 4rem !important;
  }
  .fm-sus--sp-m5 {
    margin: 5rem !important;
  }
  .fm-sus--sp-m6 {
    margin: 6rem !important;
  }
  .fm-sus--sp-m7 {
    margin: 7rem !important;
  }
  .fm-sus--sp-m8 {
    margin: 8rem !important;
  }
  .fm-sus--sp-m9 {
    margin: 9rem !important;
  }
  .fm-sus--sp-m10 {
    margin: 10rem !important;
  }
  
  .fm-sus--sp-mt0 {
    margin-top: 0 !important;
  }
  .fm-sus--sp-mt1 {
    margin-top: 1rem !important;
  }
  .fm-sus--sp-mt2 {
    margin-top: 2rem !important;
  }
  .fm-sus--sp-mt3 {
    margin-top: 3rem !important;
  }
  .fm-sus--sp-mt4 {
    margin-top: 4rem !important;
  }
  .fm-sus--sp-mt5 {
    margin-top: 5rem !important;
  }
  .fm-sus--sp-mt6 {
    margin-top: 6rem !important;
  }
  .fm-sus--sp-mt7 {
    margin-top: 7rem !important;
  }
  .fm-sus--sp-mt8 {
    margin-top: 8rem !important;
  }
  .fm-sus--sp-mt9 {
    margin-top: 9rem !important;
  }
  .fm-sus--sp-mt10 {
    margin-top: 10rem !important;
  }
  
  .fm-sus--sp-mt-1 {
    margin-top: -1rem !important;
  }
  .fm-sus--sp-mt-2 {
    margin-top: -2rem !important;
  }
  .fm-sus--sp-mt-3 {
    margin-top: -3rem;
  }
  .fm-sus--sp-mt-4 {
    margin-top: -4rem;
  }
  
  .fm-sus--sp-mb0 {
    margin-bottom: 0 !important;
  }
  .fm-sus--sp-mb1 {
    margin-bottom: 1rem !important;
  }
  .fm-sus--sp-mb2 {
    margin-bottom: 2rem !important;
  }
  .fm-sus--sp-mb3 {
    margin-bottom: 3rem !important;
  }
  .fm-sus--sp-mb4 {
    margin-bottom: 4rem !important;
  }
  .fm-sus--sp-mb5 {
    margin-bottom: 5rem !important;
  }
  .fm-sus--sp-mb6 {
    margin-bottom: 6rem !important;
  }
  .fm-sus--sp-mb7 {
    margin-bottom: 7rem !important;
  }
  .fm-sus--sp-mb8 {
    margin-bottom: 8rem !important;
  }
  .fm-sus--sp-mb9 {
    margin-bottom: 9rem !important;
  }
  .fm-sus--sp-mb10 {
    margin-bottom: 10rem !important;
  }
  
  .fm-sus--sp-mh-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .fm-sus--sp-mv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .fm-sus--sp-mv1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .fm-sus--sp-mv2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .fm-sus--sp-mv3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .fm-sus--sp-mv4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .fm-sus--sp-mv5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .fm-sus--sp-mv6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .fm-sus--sp-mv7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .fm-sus--sp-mv8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .fm-sus--sp-mv9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .fm-sus--sp-mv10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  
  .fm-sus--sp-p0 {
    padding: 0 !important;
  }
  .fm-sus--sp-p1 {
    padding: 1rem !important;
  }
  .fm-sus--sp-p2 {
    padding: 2rem !important;
  }
  .fm-sus--sp-p3 {
    padding: 3rem !important;
  }
  .fm-sus--sp-p4 {
    padding: 4rem !important;
  }
  .fm-sus--sp-p5 {
    padding: 5rem !important;
  }
  .fm-sus--sp-p6 {
    padding: 6rem !important;
  }
  .fm-sus--sp-p7 {
    padding: 7rem !important;
  }
  .fm-sus--sp-p8 {
    padding: 8rem !important;
  }
  .fm-sus--sp-p9 {
    padding: 9rem !important;
  }
  .fm-sus--sp-p10 {
    padding: 10rem !important;
  }
  
  .fm-sus--sp-pt0 {
    padding-top: 0 !important;
  }
  .fm-sus--sp-pt1 {
    padding-top: 1rem !important;
  }
  .fm-sus--sp-pt2 {
    padding-top: 2rem !important;
  }
  .fm-sus--sp-pt3 {
    padding-top: 3rem !important;
  }
  .fm-sus--sp-pt4 {
    padding-top: 4rem !important;
  }
  .fm-sus--sp-pt5 {
    padding-top: 5rem !important;
  }
  .fm-sus--sp-pt6 {
    padding-top: 6rem !important;
  }
  .fm-sus--sp-pt7 {
    padding-top: 7rem !important;
  }
  .fm-sus--sp-pt8 {
    padding-top: 8rem !important;
  }
  .fm-sus--sp-pt9 {
    padding-top: 9rem !important;
  }
  .fm-sus--sp-pt10 {
    padding-top: 10rem !important;
  }
  
  .fm-sus--sp-pb0 {
    padding-bottom: 0 !important;
  }
  .fm-sus--sp-pb1 {
    padding-bottom: 1rem !important;
  }
  .fm-sus--sp-pb2 {
    padding-bottom: 2rem !important;
  }
  .fm-sus--sp-pb3 {
    padding-bottom: 3rem !important;
  }
  .fm-sus--sp-pb4 {
    padding-bottom: 4rem !important;
  }
  .fm-sus--sp-pb5 {
    padding-bottom: 5rem !important;
  }
  .fm-sus--sp-pb6 {
    padding-bottom: 6rem !important;
  }
  .fm-sus--sp-pb7 {
    padding-bottom: 7rem !important;
  }
  .fm-sus--sp-pb8 {
    padding-bottom: 8rem !important;
  }
  .fm-sus--sp-pb9 {
    padding-bottom: 9rem !important;
  }
  .fm-sus--sp-pb10 {
    padding-bottom: 10rem !important;
  }
  
  .fm-sus--sp-pv1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .fm-sus--sp-pv2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .fm-sus--sp-pv3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .fm-sus--sp-pv4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .fm-sus--sp-pv5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .fm-sus--sp-pv6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .fm-sus--sp-pv7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .fm-sus--sp-pv8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .fm-sus--sp-pv9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .fm-sus--sp-pv10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  
  .fm-sus--sp-ph1 {
    padding-left: 1rem !important;
    padding-left: 1rem !important;
  }
  .fm-sus--sp-ph2 {
    padding-left: 2rem !important;
    padding-left: 2rem !important;
  }
  .fm-sus--sp-ph3 {
    padding-left: 3rem !important;
    padding-left: 3rem !important;
  }
  .fm-sus--sp-ph4 {
    padding-left: 4rem !important;
    padding-left: 4rem !important;
  }
  .fm-sus--sp-ph5 {
    padding-left: 5rem !important;
    padding-left: 5rem !important;
  }
  .fm-sus--sp-ph6 {
    padding-left: 6rem !important;
    padding-left: 6rem !important;
  }
  .fm-sus--sp-ph7 {
    padding-left: 7rem !important;
    padding-left: 7rem !important;
  }
  .fm-sus--sp-ph8 {
    padding-left: 8rem !important;
    padding-left: 8rem !important;
  }
  .fm-sus--sp-ph9 {
    padding-left: 9rem !important;
    padding-left: 9rem !important;
  }
  .fm-sus--sp-ph10 {
    padding-left: 10rem !important;
    padding-left: 10rem !important;
  }
}



[class*=icon--] {
  /*
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
          */
  -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
  border: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: bold;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-decoration: none;
}
[class*=icon--]::before {
  background-color: transparent;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1em;
  margin-right: 0.3rem;
  width: 1.5em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fm-sus--sdgs-icons {
  border-radius: 1em;
  border: 3px dotted #1bac4a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 1em;
  padding: 1em;
  width: 100%;
}
.fm-sus--sdgs-icons div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fm-sus--sdgs-icons div span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fm-sus--sdgs-icons div span img {
  border: 1px solid #fff;
  width: 100%;
}
.fm-sus--sdgs-icons div:first-child {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 736px) {
  .fm-sus--sdgs-icons div:first-child {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.fm-sus--sdgs-icons div:first-child span {
  margin: 0 2px;
  width: calc(6.6666666667% - 4px);
}
@media only screen and (max-width: 736px) {
  .fm-sus--sdgs-icons div:first-child span {
    width: calc(16.6666666667% - 4px);
  }
}
.fm-sus--sdgs-icons div:first-child span:not(.fm-sus--sdgs-icons--active):not(:first-child) {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.06;
  display: none;
}
@media only screen and (max-width: 736px) {
  .fm-sus--sdgs-icons div:first-child span:not(.fm-sus--sdgs-icons--active):not(:first-child) {
    display: none;
  }
}
.fm-sus--sdgs-icons div:first-child span:first-child {
  margin-left: -0.5rem;
}
.fm-sus--icon--globe::before {
  background-image: url(/content/dam/family/sustainability/icons/icon-globe.png);
}
.fm-sus--icon--leaf::before {
  background-image: url(/content/dam/family/sustainability/icons/icon-leaf.png);
}
.fm-sus--icon--checklist::before {
  background-image: url(/content/dam/family/sustainability/icons/icon-checklist.png);
}
.fm-sus--icon--flag::before {
  background-image: url(/content/dam/family/sustainability/icons/icon-flag.png);
}
.fm-sus--icon--message:before {
  background-image: url(/content/dam/family/sustainability/icons/icon-messages-duotone-blue.svg);
}
.fm-sus--icon--topics:before {
  background-image: url(/content/dam/family/sustainability/icons/bullhorn-duotone.svg);
}
.fm-sus--icon--idea:before {
  background-image: url(/content/dam/family/sustainability/icons/circle-exclamation-check-duotone--green.svg);
}
.fm-sus--icon--pdf:before {
  background-image: url(/content/dam/family/sustainability/icons/icon-pdf-blk.svg);
}
.fm-sus--icon--pdf:not(h3):not(h4) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
.fm-sus--icon--pdf:not(h3):not(h4) a {
  color: #313131;
  text-decoration: underline;
  font-weight: 500;
}
.fm-sus--icon--pdf:not(h3):not(h4) a:hover {
  text-decoration: none;
}
.fm-sus--icon--pdf:not(h3):not(h4)::before {
  height: 1.2em;
}
.fm-sus--icon--pdf:not(h3):not(h4) .ly-mod-icn006 {
  display: none;
}
.fm-sus--icon--square {
  padding-left: 0 !important;
}
.fm-sus--icon--square:before {
  background-color: #1bac4a;
  margin-right: 0.5em;
  height: 0.8em;
  width: 0.8em;
}
.fm-sus--icon-square--md {
  margin: 2.5em 0 .5em 0;
  font-size: 1em;
}
.fm-sus--icon-square--md:before {
  background-color: #1bac4a;
  content: "";
  display: inline-block;
  height: .8em;
  margin-right: .5em;
  width: .8em;
}
.fm-sus--icon-square--sm {
  margin: .5em 0;
  font-size: 1em;
}
.fm-sus--icon-square--sm:before {
  background-color: #1bac4a;
  content: "";
  display: inline-block;
  height: 7px;
  margin: -3px .5em 0 0;
  width: 7px;
}
.fm-sus--icon-after--ecovision::after {
  content: "";
  background: url(/content/dam/family/sustainability/icons/icon-ecovision.jpeg);
  background-size: cover;
  bottom: 3px;
  display: inline-block;
  height: 35px;
  margin-left: 10px;
  position: absolute;
  width: 30px;
}
@media only screen and (max-width: 736px) {
  .fm-sus--icon-after--ecovision::after {
    height: 27px;
    margin-left: 2px;
    width: 23px;
  }
}
.fm-sus--arrow-box {
  background: #fff;
  padding: 2rem;
  border-radius: 2em;
  font-weight: bold;
  margin: 2rem 0;
  position: relative;
  border: 12px solid rgba(1, 139, 213, 0.1);
  -webkit-box-shadow: 0 1px 8px 1px #aaa;
          box-shadow: 0 1px 8px 1px #aaa;
}
@media only screen and (max-width: 736px) {
  .fm-sus--arrow-box {
    padding: 1.5em;
  }
}
.fm-sus--arrow-box h2,
.fm-sus--arrow-box h3,
.fm-sus--arrow-box h4,
.fm-sus--arrow-box h5 {
  border: 0;
  margin: 0 0 0.5em 0 !important;
  padding: 0;
  opacity: 0.5;
  color: #008cd7;
}
.fm-sus--arrow-box h2::before,
.fm-sus--arrow-box h3::before,
.fm-sus--arrow-box h4::before,
.fm-sus--arrow-box h5::before {
  height: 2em;
  margin-right: 0.8em;
  width: 2.5em;
}
.fm-sus--arrow-box .fa-secondary,
.fm-sus--arrow-box .fa-primary {
  background-color: #fff;
}
.fm-sus--arrow-box .image_element > div,
.fm-sus--arrow-box .text_element > div {
  margin-bottom: 0 !important;
}
.fm-sus--arrow-box .title_element > div {
  color: #aaa;
}
.fm-sus--arrow-box p {
  line-height: 1.8em;
}
.fm-sus--arrow-box--green {
  border: 12px solid #1bac4a;
}
.fm-sus--arrow-box--green h2,
.fm-sus--arrow-box--green h3,
.fm-sus--arrow-box--green h4,
.fm-sus--arrow-box--green h5 {
  color: #1bac4a;
  opacity: 1;
}
.fm-sus--arrow--after {
  position: relative;
  background-color: rgba(27, 172, 74, 0.1);
  padding: 1rem !important;
  margin: 0 1.5rem 0 0 !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 736px) {
  .fm-sus--arrow--after {
    margin: 0 0 2.5rem 0 !important;
  }
}
.fm-sus--arrow--after:after {
  left: calc(100% + 0.5rem);
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(27, 172, 74, 0);
  border-left-color: #1bac4a;
  border-width: 20px;
  margin-top: -20px;
}
@media only screen and (max-width: 736px) {
  .fm-sus--arrow--after:after {
    top: calc(100% + 2rem);
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(27, 172, 74, 0);
    border-top-color: #1bac4a;
    border-width: 20px;
    margin-left: -20px;
  }
}
.fm-sus--flex--column .fm-sus--arrow--after:after {
  top: calc(100% + 2rem);
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(27, 172, 74, 0);
  border-top-color: #1bac4a;
  border-width: 20px;
  margin-left: -20px;
}

.fm-sus--arrow--after:last-child {
  margin: 0 !important;
}
.fm-sus--arrow--after:last-child::after {
  content: none;
}

@media only screen and (max-width: 736px) {
  .ly-wrp-nav-side .ly-list-first > li .ly-list-lower > li:not(:nth-child(1)):not(:nth-child(2)) {
    border-top: 1px solid #dcdcdc;
    border-bottom: 0;
  }
  .ly-list-mostlower {
    background-color: #eee;
  }
  .ly-list-mostlower li {
    width: 100% !important;
  }
}


#contents + .ly-btn-pagetop {
  margin-top: 2em;
}

@media only screen and (max-width: 736px) {
  .anchor_element {
    margin-top: -54px;
    /*padding-top: 54px;*/
    height: 54px;
  }
}
@media only screen and (min-width: 737px) {
  .anchor_element {
    margin-top: -95px;
    /*padding-top: 95px;*/
    height: 95px;
  }
}

/*todoこれ必要かどうか*/
.text_element:not(:nth-last-of-type(2)) > div,
.image_element:not(:nth-last-of-type(2)) > div {
  /*margin-bottom: 1rem;*/
}

.ly-mod-icn006:before {
  content: "\e905";
  font-size: 17px;
  font-weight: bold;
  margin-left: 0.5em;
}

/*todoこれ必要かどうか*/
/*
@media only screen and (max-width: 736px) {
  .ly-mod-layout-1clmspl .ly-sp-1line .ly-mod-layout-clm,
.ly-mod-layout-2clmspl .ly-sp-1line .ly-mod-layout-clm,
.ly-mod-layout-3clmspl .ly-sp-1line .ly-mod-layout-clm,
.ly-mod-layout-4clmspl .ly-sp-1line .ly-mod-layout-clm,
.ly-mod-layout-5clmspl .ly-sp-1line .ly-mod-layout-clm,
.ly-mod-layout-6clmspl .ly-sp-1line .ly-mod-layout-clm,
.ly-mod-layout-7clmspl .ly-sp-1line .ly-mod-layout-clm,
.ly-mod-layout-8clmspl .ly-sp-1line .ly-mod-layout-clm {
    margin: 10px 0;
  }
}
*/

.split_layout_column + .parsys.section {
  /*margin-top: 2rem;*/
}

.ly-ta-c {
  /*
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  */
}

.fm-sus--secondborder-none [class*=fm-sus--border]:nth-child(2) {
  border: none;
  padding: 0 !important;
}
.fm-sus--secondborder-none [class*=fm-sus--border]:nth-child(2) .ly-mod-layout-clm {
  width: 100%;
}
.fm-sus--secondborder-none [class*=fm-sus--border]:nth-child(2) .split_layout_column:not(:first-child) {
  /*margin-top: 2rem;*/
}
.fm-sus--border-radius {
  border-radius: 2em;
}
.fm-sus--img-border-radius img {
  border-radius: 7px;
}
.fm-sus--mission {
  border-radius: 2rem;
}
.fm-sus--mission .fm-sus--sdgs-icons {
  padding: 0.5rem;
}
.fm-sus--mission .fm-sus--sdgs-icons span {
  width: calc(10% - 5px) !important;
}
.fm-sus--mission .fm-sus--sdgs-icons span:first-child {
  margin: 0 2px;
}
.fm-sus--mission .h2,
.fm-sus--mission .h3,
.fm-sus--mission .h4 {
  margin-top: 1rem !important;
}
.fm-sus--mission .h2 {
  font-size: 20px;
}
.fm-sus--mission .h4 {
  background-color: #1bac4a;
  margin-bottom: 0 !important;
  color: #fff;
  font-size: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.2em;
  text-align: center;
}
.fm-sus--mission .text_link_unit a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333 !important;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  padding: 1rem 0 1rem 0.5rem;
}
.fm-sus--mission .text_link_unit a::before {
  display: inline-block;
  margin-right: 0.8rem;
  color: #1bac4a !important;
  content: "" !important;
  font-size: 10px;
  left: auto !important;
  line-height: inherit !important;
  position: relative !important;
  right: auto !important;
  top: auto !important;
  border-left: 0.8em solid;
  border-top: 0.5em solid transparent;
  border-right: 0px;
  border-bottom: 0.5em solid transparent;
}
.fm-sus--mission .text_link_unit a:hover {
  background-color: rgba(27, 172, 74, 0.2);
  text-decoration: none;
}
.fm-sus--mission .text_link_unit:not(:last-of-type) a {
  border-bottom: 3px solid #1bac4a;
}
.fm-sus--last-no-border [class*=fm-sus--border-]:last-child {
  border: none;
}
.fm-sus--mainimage img {
  border: 5px solid #eee;
  border-radius: 2em;
}
.fm-sus--column-two {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}



.fm-sus--list-issue--box .ly-sp-1line,
.fm-sus--list-issue--box .ly-sp-2line,
.fm-sus--list-issue--box .ly-sp-3line {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 736px) {
  .fm-sus--list-issue--box .ly-sp-1line,
.fm-sus--list-issue--box .ly-sp-2line,
.fm-sus--list-issue--box .ly-sp-3line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fm-sus--b-font-size2 b {
  font-size: 38px;
  line-height: 1.5em;
  color: #1bac4a;
}
.fm-sus--b-font-size1 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fm-sus--b-font-size1 b {
  font-size: 30px;
  line-height: 1.5em;
  color: #1bac4a;
  width: 100%;
}
.fm-sus--b-color-blue b {
  color: #008cd7;
}
.fm-sus--b-color-green b {
  color: #1bac4a;
}
@media only screen and (max-width: 800px) {
  .fm-sus--past h2 {
    font-size: 18px;
  }
  .fm-sus--past .fm-sus--btn--square .fm-sus--btn--green a {
    height: auto;
  }
}
.fm-sus--image-blind {
  position: relative;
}
.fm-sus--image-blind::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 736px) {
  .fm-sus--pc {
    display: none !important;
  }
}
@media only screen and (min-width: 737px) {
  .fm-sus--sp {
    display: none !important;
  }
}

@media only screen and (max-width: 736px) {
.fm-sus--sp-no-br br {
  display: none;
}
}