@charset "UTF-8";
/* 調整用スタイル */
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

a {
  transition: 0.5s;
}

ul,
li {
  list-style: none;
}

h1 {
  font-weight: bold;
}

p {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 0.86rem;
  }
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-size-s {
  font-size: 0.8em;
}

section {
  min-height: 100vh;
  padding-top: 100px;
}
section h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 60px;
  color: #009c86;
}
@media screen and (max-width: 768px) {
  section h2 {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
section h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  section h3 {
    font-size: 1rem;
  }
}
section h3 span {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  section h3 span {
    font-size: 1.2rem;
  }
}

.home section h2 {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 10px;
  margin-bottom: 60px;
  background: url(../images/h2title-deco.svg) center top no-repeat;
  background-size: 100px;
  padding-top: 40px;
  color: #009c86;
}
@media screen and (max-width: 768px) {
  .home section h2 {
    letter-spacing: 8px;
    font-size: 1rem;
    margin-bottom: 30px;
    padding-top: 28px;
    background: url(../images/h2title-deco.svg) center top no-repeat;
    background-size: 70px;
  }
}
.home section h2 span {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .home section h2 span {
    font-size: 1.2rem;
    font-weight: bold;
  }
}
.home section h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .home section h3 {
    font-size: 1rem;
  }
}
.home section h3 span {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .home section h3 span {
    font-size: 1.2rem;
  }
}

.page section {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .page section {
    padding-top: 25px;
  }
}
.page section h2 {
  margin-bottom: 30px;
  color: #0d7a6c;
  font-weight: bold;
}
.page section figure img {
  border-radius: 15px;
}
.page section h3 {
  padding: 10px 0;
  border: 1px solid;
  border-color: #009c86 transparent #009c86 transparent;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page section h3 {
    text-align: left;
  }
}
.page section h4 {
  color: #0d7a6c;
  background: url(../images/concept-icon.svg) left top no-repeat;
  background-size: 26px;
  padding-left: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}
.page section p {
  margin-bottom: 40px;
}

.page-title {
  padding: 110px 0 50px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-title {
    padding: 80px 0 60px;
  }
}
.page-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: brightness(0.3);
}
.page-title h1 {
  padding: 24px 0 0;
  text-align: center;
  color: #fff;
  font-size: 2em;
  background: url(../images/h2title-deco.svg) center top no-repeat;
  background-size: 80px;
}
@media screen and (max-width: 768px) {
  .page-title h1 {
    background: url(../images/h2title-deco.svg) center top no-repeat;
    background-size: 70px;
    font-size: 1.6em;
  }
}
.page-title h1 span {
  font-size: 1rem;
  letter-spacing: 10px;
  color: #009c86;
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb200 {
  margin-bottom: 200px;
}

.ind1 {
  text-indent: -1em;
  padding-left: 1em;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
@media print, screen and (min-width: 1281px) {
  .is-sp {
    display: none;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-ws {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-ws {
    display: none;
  }
}
@media print, screen and (min-width: 1281px) {
  .is-ws {
    display: block;
  }
}

.container {
  display: none;
}
.container.displayed {
  display: block;
}

.wrapper {
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 30px;
  }
}

/* FLEX BOX */
.flex-2c,
.flex-3c,
.flex-4c {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.flex-2c,
.flex-4c {
  gap: 40px;
}

.flex-3c {
  gap: 39px;
}

.flex-2c > p,
.flex-2c > div,
.flex-2c > img,
.flex-2c > li,
.flex-2c > figure {
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  .flex-2c > p,
  .flex-2c > div,
  .flex-2c > img,
  .flex-2c > li,
  .flex-2c > figure {
    width: 100%;
  }
}

.flex-2c > figure img {
  width: 100%;
}
.flex-2c > figure figcaption {
  font-size: 0.8em;
}

.flex-3c > p,
.flex-3c > div,
.flex-3c > img,
.flex-3c > li {
  width: calc(33.3% - 26px);
}
@media screen and (max-width: 768px) {
  .flex-3c > p,
  .flex-3c > div,
  .flex-3c > img,
  .flex-3c > li {
    width: 100%;
  }
}

.flex-4c > p,
.flex-4c > div,
.flex-4c > img,
.flex-4c > li {
  width: calc(25% - 30px);
}
@media screen and (max-width: 768px) {
  .flex-4c > p,
  .flex-4c > div,
  .flex-4c > img,
  .flex-4c > li {
    width: 100%;
  }
}

a.btn-blk {
  display: inline-block;
  padding: 10px 60px 10px 30px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  position: relative;
}
a.btn-blk:hover {
  background-color: #000;
  color: #fff;
}
a.btn-blk img {
  width: 14px;
  position: absolute;
  right: 15px;
  top: 15px;
}
@media screen and (max-width: 768px) {
  a.btn-blk {
    display: block;
  }
}

a.blank img {
  margin-left: 0.5em;
}

.btn-wrap {
  text-align: center;
}

a.btn-std {
  display: inline-block;
  padding: 15px 30px;
  color: #333;
  font-weight: bold;
  background-color: #009c86;
  border-radius: 30px;
}
@media print, screen and (min-width: 769px) {
  a.btn-std:hover {
    color: #fff;
    background-color: #009ea7;
  }
}

a.btn-sub {
  display: inline-block;
  padding: 5px 30px;
  color: #009c86;
  background-color: #fff;
  border-radius: 30px;
  font-size: 0.8em;
  border: 1px solid #009c86;
}
@media print, screen and (min-width: 769px) {
  a.btn-sub:hover {
    color: #fff;
    background-color: #009c86;
  }
}

.annotation {
  font-size: 0.8em;
  text-align: right;
}

/*-----------------------------------------------------------
 Breadcrumbs
-----------------------------------------------------------*/
.breadcrumbs {
  width: 100%;
  padding: 30px 30px 0;
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs ol {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: table;
}
.breadcrumbs ol li {
  list-style: none;
  margin: 0 10px 0 0;
  font-size: 0.8em;
  float: left;
  color: #666;
}
.breadcrumbs ol li::after {
  padding: 0 0 0 10px;
  content: "＞";
}
.breadcrumbs ol li:last-child:after {
  content: "";
}
.breadcrumbs ol li a {
  display: inline-block;
  color: #666;
}
.breadcrumbs ol li a::after {
  content: "";
  display: block;
  width: 0;
  transition: width 0.3s;
  border-bottom: 1px solid #666;
}
.breadcrumbs ol li a:hover {
  color: #666;
  opacity: 1;
}
.breadcrumbs ol li a:hover:after {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .breadcrumbs {
    width: 100%;
    padding: 30px 15px 0;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin: 0;
    width: 100%;
    padding: 10px;
    overflow: hidden;
  }
  .breadcrumbs ol {
    display: flex;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
    padding: 0 0 5px;
  }
  .breadcrumbs ol li {
    float: none;
  }
}
@media print {
  .breadcrumbs {
    margin: 0 auto 30px;
  }
}

.pager {
  text-align: center;
  letter-spacing: 5px;
}
.pager a {
  color: #333;
}
.pager .current_page {
  color: #999;
}

main.sustainability {
  width: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 80px;
}
main.sustainability figure {
  margin: 0;
}
main.sustainability h1 {
  font-size: 2em;
}
@media screen and (max-width: 768px) {
  main.sustainability h1 {
    font-size: 1.4em;
  }
}
main.sustainability h2 {
  font-size: 1.6em;
  color: #000;
}
@media screen and (max-width: 768px) {
  main.sustainability h2 {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  main.sustainability h2 span {
    font-size: 0.82em;
  }
}
main.sustainability h3 {
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  main.sustainability h3 {
    font-size: 1.1em;
  }
}
main.sustainability h4 {
  font-size: 1.3em;
}
@media screen and (max-width: 768px) {
  main.sustainability h4 {
    font-size: 0.95em;
  }
}
main.sustainability section {
  padding: 80px 0;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media screen and (max-width: 768px) {
  main.sustainability section {
    padding: 50px 0;
  }
}
main.sustainability section h2 {
  margin-bottom: 20px;
}
main.sustainability #regional {
  padding: 0;
}
main.sustainability .top-wrap {
  position: relative;
}
main.sustainability .wrapper {
  width: calc(100% - 50px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 25px;
}
main.sustainability .bc-design {
  background-color: inherit;
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  main.sustainability .bc-design {
    padding: 20px 0;
  }
}
main.sustainability .bc-design li {
  display: flex;
}
main.sustainability .bc-design li a {
  text-decoration: none !important;
}
main.sustainability div.btn-wrap a.btn-gre {
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px 12px;
  color: #333;
  background-color: #E6F1BF;
  border-radius: 30px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media print, screen and (min-width: 769px) {
  main.sustainability div.btn-wrap a.btn-gre:hover {
    color: #fff;
    background-color: #009c86;
  }
}
@media screen and (max-width: 768px) {
  main.sustainability div.btn-wrap a.btn-gre {
    padding: 10px 20px;
    font-size: 0.9em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1607843137);
  }
}
main.sustainability nav {
  width: calc(100% - 50px);
  max-width: 980px;
  background-color: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  main.sustainability nav {
    margin: 0 auto 15px;
    max-width: calc(100% - 35px);
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  }
}
main.sustainability nav ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /*gap: 30px;*/
}
main.sustainability nav ul li:first-child {
  border-radius: 50px 0 0 50px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  main.sustainability nav ul li:first-child {
    padding-left: 10px;
  }
}
main.sustainability nav ul li:last-child {
  border-radius: 0 50px 50px 0;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  main.sustainability nav ul li:last-child {
    padding-right: 10px;
  }
}
main.sustainability nav ul li {
  width: 25%;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.sustainability nav ul li {
    line-height: 0.68;
    min-width: -moz-fit-content;
    min-width: fit-content;
    max-width: 25%;
  }
}
main.sustainability nav ul li:hover {
  background: #EDF7CE;
  transition: all 0.5s;
}
main.sustainability nav ul li a {
  display: flex;
  width: 100%;
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 1em;
  padding: 15px 15px 10px 15px;
  position: relative;
  line-height: 1.2;
  /*&::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 3px;
    background-color:$c-primary;
    transition: all .3s;
  }
  &:hover::after{
    width: 100%;
    left: 0;
  }*/
}
@media screen and (max-width: 768px) {
  main.sustainability nav ul li a {
    font-size: 0.6em;
    padding: 10px 5px 8px 5px;
  }
}
main.sustainability nav li.active {
  background: #EDF7CE;
}

.bg-leaf {
  background: url(/sustainability/assets/images/bg-main-left.png) no-repeat left top;
  background-size: cover;
  width: 570px;
  height: 888px;
  position: absolute;
  z-index: -2;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .bg-leaf {
    background-size: 50%;
  }
}
@media screen and (max-width: 768px) {
  .bg-leaf {
    background-size: 35%;
    width: 100%;
  }
}

.main-title {
  padding: 30px 0 0;
  width: auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .main-title {
    padding: 15px 0 0;
  }
}
.main-title .wrapper {
  max-width: 980px !important;
  width: auto;
  position: relative;
}
.main-title .title-wrapper {
  width: 50%;
  padding-left: 50px;
  padding-bottom: 100px;
  /*background: #FFFFFFB8;*/
}
@media screen and (max-width: 768px) {
  .main-title .title-wrapper {
    width: 100%;
    padding: 30px 0px 100px 0;
  }
}
.main-title h1 {
  margin-bottom: 30px;
  color: #47863D;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .main-title h1 {
    margin-bottom: 10px;
    text-align: center;
  }
}
.main-title p {
  text-align: left;
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  .main-title p {
    font-size: 0.86em;
  }
}

.top-wave,
.top-wave img {
  width: 100%;
}

.bg-earth {
  overflow: hidden;
  position: absolute;
  z-index: -1;
  right: calc(50% - 700px);
  width: 600px;
  max-width: 600px;
  height: 600px;
  background-image: url("/sustainability/assets/images/bg-main-right.png");
  background-size: cover;
  animation: rotate 100s infinite linear;
}
@media screen and (max-width: 1280px) {
  .bg-earth {
    /*right: calc(50% - 400px);*/
    left: 60%;
    max-width: 450px;
    max-height: 450px;
  }
}
@media screen and (max-width: 768px) {
  .bg-earth {
    left: 50%;
    bottom: calc(50% - 280px);
    width: 220px;
    height: 220px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
#environment {
  background: linear-gradient(180deg, #d1e4a6 0%, #FBFFE6 20%);
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media print, screen and (min-width: 769px) {
  #environment {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  #environment p {
    text-align: left;
  }
}

#regional {
  background-color: #FBFFE6;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media screen and (max-width: 768px) {
  #regional p {
    text-align: left;
  }
}

#nurturing {
  background-color: #FBFFE6;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media print, screen and (min-width: 769px) {
  #nurturing {
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  #nurturing p {
    text-align: left;
  }
}

#sub-box {
  background-color: #d3ecf8;
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  #sub-box {
    padding: 50px 0 0;
  }
}
#sub-box figure {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  max-width: 800px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  #sub-box figure {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
}
#sub-box h3 {
  margin-bottom: 50px;
}

main.sustainability .sub-bg-w {
  background-color: #fff;
  background-image: url(/sustainability/assets/images/bg-town.png), url(/sustainability/assets/images/bg-cloud.png);
  background-repeat: repeat-x;
  background-position: bottom, top;
  padding: 130px 0 250px;
}
@media screen and (max-width: 768px) {
  main.sustainability .sub-bg-w {
    background-size: 130%;
    padding: 60px 0 100px;
  }
}
main.sustainability .sub-bg-w .wrapper {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  main.sustainability .sub-bg-w .wrapper {
    margin-top: 20px;
  }
}
main.sustainability .sub-bg-w .tori-wrap {
  width: 100vw;
  height: 50px;
  overflow: hidden;
}
main.sustainability .sub-bg-w .tori {
  width: 100%;
  animation: loop-x 80s linear infinite;
}
@media screen and (max-width: 768px) {
  main.sustainability .sub-bg-w .tori {
    animation: loop-x 40s linear infinite;
  }
}
main.sustainability .sub-bg-w .tori img {
  width: auto;
  height: 25px;
  animation: loop-y 4s linear infinite;
}
@media screen and (max-width: 768px) {
  main.sustainability .sub-bg-w .tori img {
    height: 20px;
    animation: loop-y 8s linear infinite;
  }
}
@keyframes loop-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
@keyframes loop-x {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sus-table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .sus-table {
    font-size: 0.8em;
  }
}
.sus-table th, .sus-table td {
  padding: 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.sus-table th {
  text-align: center;
  vertical-align: center;
  color: #fff;
}
.sus-table td {
  text-align: left;
}
.sus-table thead th {
  background-color: #114683;
}
.sus-table tbody th {
  background-color: #428bad;
  width: 20%;
  padding: 10px 5px;
}
@media screen and (max-width: 768px) {
  .sus-table tbody th {
    width: 10%;
  }
}
@media screen and (max-width: 768px) {
  .sus-table tbody th span {
    display: inline-block;
    white-space: pre;
    -moz-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
}
.sus-table tbody td:nth-child(2) {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .sus-table tbody td:nth-child(2) {
    width: 30%;
  }
}

.icon {
  border-radius: 50%;
  padding: 20px;
  background: #fff;
  width: 100px;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .icon {
    width: 70px;
  }
}

main.sustainability .links-li-center {
  justify-content: center;
}

main.sustainability .links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1280px) {
  main.sustainability .links {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  main.sustainability .links {
    gap: 20px;
    margin-bottom: 50px;
  }
}
main.sustainability .links li {
  width: calc(25% - 18px);
  position: relative;
}
@media screen and (max-width: 1280px) {
  main.sustainability .links li {
    width: calc(25% - 12px);
  }
}
@media screen and (max-width: 768px) {
  main.sustainability .links li {
    width: calc(50% - 10px);
  }
}
main.sustainability .links li a {
  display: block;
  height: 100%;
  background-color: #fff;
  border-radius: 15px;
  padding: 0;
  text-decoration: none;
  color: #000;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  main.sustainability .links li a {
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.sustainability .links li a {
    border-radius: 8px;
  }
}
main.sustainability .links li a figure {
  width: 100%;
  margin: 0;
  aspect-ratio: 4/2.9;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
@media screen and (max-width: 768px) {
  main.sustainability .links li a figure {
    border-radius: 8px 8px 0 0;
  }
}
main.sustainability .links li a img {
  width: inherit;
  height: 100%;
  transition: all 0.3s;
}
main.sustainability .links li a:hover img {
  transform: scale(1.05);
}
main.sustainability .links li a h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3em;
  min-height: 2.6em;
  font-size: 0.9em;
  padding: 10px 15px 8px;
}
@media screen and (max-width: 768px) {
  main.sustainability .links li a h3 {
    font-size: 0.8em;
    padding: 10px 10px 7px;
    height: 3.9em;
  }
}
main.sustainability .links li a h3 img {
  margin: 0 0 0.2em 0.5em;
  width: 0.95em !important;
}

#environment-list {
  background: linear-gradient(180deg, #d1e4a6 0%, #FBFFE6 20%);
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  #environment-list {
    padding: 25px 0 40px 0;
  }
}
#environment-list .links {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #environment-list .links {
    padding: 10px 0;
  }
}

#environment-title {
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  #environment-title {
    padding: 0;
  }
}
#environment-title h1 {
  color: #4A7F3F;
}
#environment-title .relatedSDGs {
  background: #EEF8CF;
}

#environment-details {
  text-align: left;
}
#environment-details .wrapper {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #environment-details .wrapper {
    padding: 50px 0;
  }
}
#environment-details h4 {
  border-left: 4px solid #1B973B;
  text-indent: -1rem;
  padding-left: 1rem;
  margin-bottom: 10px;
}
#environment-details h4 span {
  padding-left: 1rem;
}
#environment-details .txt-1em {
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  #environment-details .txt-1em {
    font-size: 1em;
  }
}

.mybag {
  justify-content: flex-start;
  align-content: center;
}
@media screen and (max-width: 768px) {
  .mybag {
    align-content: center;
  }
}
.mybag figure {
  width: 40%;
  padding: 0 30px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .mybag figure {
    width: 100%;
  }
}

.attention-box {
  background: #FADCEA;
  padding: 30px 50px;
  border-radius: 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .attention-box {
    padding: 20px;
    border-radius: 0;
    margin: 0 -25px 50px;
  }
}
.attention-box h4 {
  border-left: 4px solid #E62F3C !important;
}

.attention-box-mybag {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .attention-box-mybag {
    margin: 0 -25px;
  }
}

main.sustainability a.btn-amazon {
  text-decoration: none;
  display: inline-block;
  padding: 15px 60px 12px;
  color: #fff;
  font-weight: bold;
  background-color: #00AFEC;
  border-radius: 100px;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  main.sustainability a.btn-amazon:hover {
    color: #00AFEC;
    background-color: #fff;
    border: #00AFEC solid 2px;
  }
}
@media screen and (max-width: 768px) {
  main.sustainability a.btn-amazon {
    font-size: 0.9rem;
  }
}
main.sustainability a.btn-amazon img:nth-of-type(2) {
  opacity: 0;
}
main.sustainability a.btn-amazon:hover img:nth-of-type(2) {
  opacity: 100;
}
main.sustainability a.btn-amazon .btn-icon {
  position: absolute;
  top: 50%;
  width: 20px;
  right: 20px; /*右からの距離*/
  transform: translateY(-50%); /*この指定で上下中央に*/
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 768px) {
  main.sustainability a.btn-amazon .btn-icon {
    width: 15px;
  }
}

#regional-list {
  background: linear-gradient(180deg, #d1e4a6 0%, #FBFFE6 20%);
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  #regional-list {
    padding: 25px 0 40px 0;
  }
}
#regional-list .links {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #regional-list .links {
    padding: 10px 0;
  }
}

#regional-title {
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  #regional-title {
    padding: 0;
  }
}
#regional-title h1 {
  color: #CF544D;
}
#regional-title .relatedSDGs {
  background: #FFF3F2;
}

#regional-details {
  text-align: left;
}
#regional-details .wrapper {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #regional-details .wrapper {
    padding: 50px 0;
  }
}
#regional-details h4 {
  margin-bottom: 20px;
  text-indent: -1rem;
  padding-left: 1rem;
  border-left: 4px solid #CF544D;
}
@media screen and (max-width: 768px) {
  #regional-details h4 {
    margin-bottom: 10px;
  }
}
#regional-details h4 span {
  padding-left: 1rem;
}
#regional-details .txt-1em {
  font-size: 1.2em;
}
#regional-details .dotline-wrap::after {
  background: radial-gradient(circle farthest-side, #CF544D, #CF544D 30%, transparent 30%, transparent);
  background-size: 11px;
  content: "";
  display: inline-block;
  height: 11px;
  width: 100%;
}

main.sustainability .agreement-box {
  border: #CF544D solid 1px;
  border-radius: 10px;
  box-shadow: 3px 3px 0px #CF544D;
  padding: 30px 50px;
}
@media screen and (max-width: 768px) {
  main.sustainability .agreement-box {
    padding: 25px;
  }
}
main.sustainability .agreement-box .flex-2c {
  border-bottom: #CF544D 1px solid;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  main.sustainability .agreement-box .flex-2c {
    gap: 20px;
  }
}
main.sustainability .agreement-box .flex-2c:last-child {
  border-bottom: none;
  padding: 20px 0 0;
}
main.sustainability .agreement-box .flex-2c > figure {
  width: 35%;
}
@media screen and (max-width: 768px) {
  main.sustainability .agreement-box .flex-2c > figure {
    width: 100%;
  }
}
main.sustainability .agreement-box dt {
  margin-bottom: 5px;
}
main.sustainability .agreement-box dt span {
  background: #CF544D;
  padding: 0.1em 1em;
  font-size: 0.9rem;
  color: #fff;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  main.sustainability .agreement-box dt span {
    font-size: 0.86rem;
  }
}
main.sustainability .agreement-box dd {
  padding-left: 0.5em;
}
@media screen and (max-width: 768px) {
  main.sustainability .agreement-box dd {
    font-size: 0.86rem;
  }
}

main.sustainability .btn-flex {
  display: flex;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 768px) {
  main.sustainability .btn-flex {
    row-gap: 20px;
    -moz-column-gap: 0;
         column-gap: 0;
    flex-direction: column;
  }
}
main.sustainability .btn-flex div.btn-wrap {
  width: inherit;
}
@media screen and (max-width: 768px) {
  main.sustainability .btn-flex div.btn-wrap {
    flex: 1;
  }
}
main.sustainability .btn-flex a.btn-red {
  text-decoration: none;
  display: inline-block;
  padding: 10px 60px 8px 40px;
  color: #fff;
  font-weight: bold;
  color: #CF544D;
  background-color: #fff;
  border: #CF544D solid 2px;
  border-radius: 100px;
  position: relative;
}
main.sustainability .btn-flex a.btn-red:hover {
  color: #fff;
  background-color: #CF544D;
}
@media screen and (max-width: 768px) {
  main.sustainability .btn-flex a.btn-red {
    font-size: 0.9rem;
    display: block;
    width: inherit;
  }
}
main.sustainability .btn-flex a.btn-red img:nth-of-type(2) {
  opacity: 0;
}
main.sustainability .btn-flex a.btn-red:hover img:nth-of-type(2) {
  opacity: 100;
}
main.sustainability .btn-flex a.btn-red .btn-icon {
  position: absolute;
  top: 45%;
  width: 20px;
  right: 20px; /*右からの距離*/
  transform: translateY(-50%); /*この指定で上下中央に*/
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 768px) {
  main.sustainability .btn-flex a.btn-red .btn-icon {
    width: 15px;
  }
}
main.sustainability .supporter {
  align-items: end !important;
  margin-bottom: 50px;
}
main.sustainability .supporter div {
  width: 70%;
}
@media screen and (max-width: 768px) {
  main.sustainability .supporter div {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  main.sustainability .supporter {
    justify-content: flex-end !important;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  main.sustainability .supporter figure {
    max-width: 200px;
  }
}

.bg-cloud {
  background: #d3ecf8 url(/sustainability/assets/images/bg-cloud_02.png) repeat-x bottom;
}
@media screen and (max-width: 768px) {
  .bg-cloud {
    background-size: 130%;
  }
}

.bg-town {
  background: #d3ecf8 url(/sustainability/assets/images/bg-category.png) repeat-x bottom;
}
@media screen and (max-width: 768px) {
  .bg-town {
    background-size: 130%;
  }
}

.category-wrap {
  width: calc(100% - 50px);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 25px 100px;
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .category-wrap {
    width: calc(100% - 40px);
    padding: 0 20px 70px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.category-wrap h2 {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .category-wrap h2 {
    text-align: center;
    font-size: 0.95em !important;
    margin-bottom: 10px;
  }
}
.category-wrap p {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .category-wrap p {
    font-size: 0.8em;
  }
}
.category-wrap .category-title {
  max-width: 700px;
}
.category-wrap .category-icon {
  background-color: #fff;
  min-width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  justify-content: center; /* 垂直方向の中央揃え */
  align-items: center; /* 水平方向の中央揃え */
  overflow: hidden; /* 円外に要素がはみ出ないように */
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .category-wrap .category-icon {
    background-color: #fff;
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    min-height: 80px;
    row-gap: 2px;
  }
}
.category-wrap .category-icon p {
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .category-wrap .category-icon p {
    font-size: 0.6em;
  }
}
.category-wrap .category-icon img {
  width: 60%; /* 画像を円のサイズに合わせる */
  height: auto; /* 画像の縦横比を維持 */
  -o-object-fit: cover;
     object-fit: cover; /* 画像が円に完全に収まるように調整 */
}
@media screen and (max-width: 768px) {
  .category-wrap .category-icon img {
    max-width: 40%;
  }
}

#item-details {
  padding-bottom: 150px;
  background: url(/sustainability/assets/images/bg-town.png) repeat-x bottom;
  /*h3{
    @include media-sp{
      text-align: center;
    }
  }*/
}
@media screen and (max-width: 768px) {
  #item-details {
    background-size: 130%;
    padding-bottom: 100px;
  }
}
#item-details > .wrapper {
  max-width: 1180px !important;
}
@media screen and (max-width: 768px) {
  #item-details .bc-design {
    padding: 0;
  }
}
#item-details .wrapper {
  max-width: 980px;
}
#item-details h1 {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #item-details h1 {
    margin-top: 50px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 768px) {
  #item-details .sub-title {
    line-height: 1.3;
    margin-top: 5px;
    text-align: center;
  }
}
#item-details .h3-center {
  margin-bottom: 50px;
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  #item-details .h3-center {
    margin-bottom: 80px;
  }
}

.relatedSDGs {
  border-radius: 20px;
  padding: 30px 40px;
  margin: 60px auto 0;
  max-width: 550px;
}
@media screen and (max-width: 768px) {
  .relatedSDGs {
    width: 70%;
    border-radius: 10px;
    padding: 15px 20px 20px;
    margin: 50px auto 0;
  }
}
.relatedSDGs p {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .relatedSDGs p {
    margin-bottom: 10px;
    font-size: 1em;
  }
}
.relatedSDGs img {
  max-width: 110px;
}
@media screen and (max-width: 768px) {
  .relatedSDGs img {
    max-width: calc(25% - 5px);
  }
}

.indent li {
  text-indent: -1em;
  padding-left: 1em;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .indent li {
    font-size: 0.86em;
  }
}

.dotline-wrap {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}
.dotline-wrap::after {
  background: radial-gradient(circle farthest-side, #407936, #407936 30%, transparent 30%, transparent);
  background-size: 11px;
  content: "";
  display: inline-block;
  height: 11px;
  width: 100%;
}

.mb80 {
  margin-bottom: 80px;
}

.details-box {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 769px) {
  .details-box {
    flex-wrap: nowrap;
  }
}

.mb0 {
  margin-bottom: 0;
}

.details-box-smallimg {
  align-items: normal;
  justify-content: space-between;
}
@media print, screen and (min-width: 769px) {
  .details-box-smallimg {
    flex-wrap: nowrap;
  }
}
.details-box-smallimg div {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .details-box-smallimg div {
    margin-top: 0;
  }
}
.details-box-smallimg figure {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .details-box-smallimg figure {
    width: 100%;
  }
}

.details-txt-wrap {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .details-txt-wrap {
    padding: 0;
  }
}

main.sustainability .shoplist-wrap {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  main.sustainability .shoplist-wrap {
    padding: 30px 20px;
    margin: 0 -25px;
    border-radius: 0;
  }
}
main.sustainability .shoplist-wrap h4 {
  text-align: center;
  margin-bottom: 30px !important;
  border-left: none !important;
}
main.sustainability .shoplist-wrap ol {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
main.sustainability .shoplist-wrap ol li {
  font-size: 0.8em;
  width: calc(25% - 2em);
  height: -moz-min-content;
  height: min-content;
  margin-left: 0;
  position: relative;
  padding: 0px 1em;
}
@media screen and (max-width: 768px) {
  main.sustainability .shoplist-wrap ol li {
    padding: 0 0 0 0.5em;
    width: calc(50% - 1em);
  }
}
main.sustainability .shoplist-wrap ol li a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  main.sustainability .shoplist-wrap ol li a {
    font-weight: normal;
    font-size: 0.9em;
  }
}
main.sustainability .shoplist-wrap ol li::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 0.3em solid transparent;
  border-left: 0.4em solid #C6C6C6;
  content: "";
}

figcaption {
  font-size: 0.8em;
  margin-top: 10px;
}

main.sustainability #item-details h4.h4-border-none {
  border-left: none;
  padding-left: 0;
  text-indent: 0;
}

#nurturing-list {
  background: linear-gradient(180deg, #d1e4a6 0%, #FBFFE6 20%);
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  #nurturing-list {
    padding: 25px 0 40px 0;
  }
}
#nurturing-list .links {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #nurturing-list .links {
    padding: 10px 0;
  }
}

#nurturing-title {
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  #nurturing-title {
    padding: 0;
  }
}
#nurturing-title h1 {
  color: #D4600B;
}
#nurturing-title .relatedSDGs {
  background: #FFF7E9;
}

#nurturing-details {
  text-align: left;
}
#nurturing-details .wrapper {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #nurturing-details .wrapper {
    padding: 50px 0;
  }
}
#nurturing-details h4 {
  border-left: 4px solid #D4600B;
  margin-bottom: 20px;
  text-indent: -1rem;
  padding-left: 1rem;
}
#nurturing-details h4 span {
  padding-left: 1em;
}
#nurturing-details .txt-1em {
  font-size: 1.2em;
}
#nurturing-details .dotline-wrap::after {
  background: radial-gradient(circle farthest-side, #D4600B, #D4600B 30%, transparent 30%, transparent);
  background-size: 11px;
  content: "";
  display: inline-block;
  height: 11px;
  width: 100%;
}
#nurturing-details .attention-box {
  background: #FFF7E9;
}
@media screen and (max-width: 768px) {
  #nurturing-details .attention-box {
    margin-bottom: 30px;
  }
}

.underline {
  margin-bottom: 50px !important;
  line-height: 1.4;
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .underline {
    font-size: 1em;
  }
}
.underline > span {
  font-size: 1.4rem;
  background: linear-gradient(transparent 60%, rgb(250, 250, 110) 60%);
}
@media screen and (max-width: 768px) {
  .underline > span {
    font-size: 1.07em;
  }
}
.underline small {
  font-size: 1rem;
  font-weight: lighter;
}
@media screen and (max-width: 768px) {
  .underline small {
    font-size: 0.9rem;
  }
}

.ninteisyo {
  text-align: center;
}
.ninteisyo img {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1607843137);
}

.fukidashi {
  padding-left: 1.5em !important;
  padding-right: 1em;
  position: relative;
  border-left: none !important;
}
@media screen and (max-width: 768px) {
  .fukidashi {
    padding-left: 0.7em !important;
    padding-right: 0;
    font-size: 0.95em;
  }
}
.fukidashi span {
  border-left: none !important;
  padding-left: 0 !important;
  color: #EF7F00;
}

.fukidashi::before,
.fukidashi::after {
  position: absolute;
  height: 1.8rem;
  content: "";
}
@media screen and (max-width: 768px) {
  .fukidashi::before,
  .fukidashi::after {
    height: 1.4em;
  }
}

.fukidashi::before {
  border-left: solid 3px;
  left: 0;
  transform: rotate(-30deg);
}
@media screen and (max-width: 768px) {
  .fukidashi::before {
    border-left: solid 2px;
    transform: rotate(-20deg);
  }
}

.fukidashi::after {
  border-right: solid 3px;
  right: 0;
  transform: rotate(30deg);
}
@media screen and (max-width: 768px) {
  .fukidashi::after {
    border-right: solid 2px;
    transform: rotate(20deg);
  }
}

.nur-table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .nur-table {
    font-size: 0.8em;
  }
}
.nur-table tr {
  padding: 0.35em;
  border-bottom: 2px solid #fff;
}
.nur-table th,
.nur-table td {
  padding: 0.5em 10px 0.4em 0.5em;
  border-right: 2px solid #fff;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .nur-table th,
  .nur-table td {
    padding: 0.4em 7px 0.3em 0.4em;
    border-right: 2px solid #fff;
  }
}
.nur-table th {
  text-align: center;
}
.nur-table thead tr {
  color: #fff;
}
.nur-table .txt {
  text-align: left;
}

.nur-table-orange tr {
  background-color: #FFF7E9;
}
.nur-table-orange thead tr {
  background-color: #F08300;
}
.nur-table-orange tbody th {
  background: #FFE7BC;
  color: #EF7F00;
}

.nur-table-gray tr {
  background-color: #F6F6F6;
}
.nur-table-gray thead tr {
  background-color: #616161;
}
.nur-table-gray tbody th {
  background: #D5D5D5;
  color: #616161;
}

.nur-table:last-of-type {
  margin-bottom: 100px;
}

.father-box {
  border: #F08300 solid 1px;
  border-radius: 10px;
  box-shadow: 3px 3px 0px #F08300;
  padding: 30px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .father-box {
    padding: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.father-box figure {
  min-width: 110px;
  max-width: 110px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .father-box figure {
    max-width: 80px;
    min-width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .father-box div {
    width: 100%;
  }
}
.father-box .father-title {
  font-size: 1.1em;
  color: #EF7F00;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .father-box .father-title {
    font-size: 1em;
  }
}

.youmecan-box {
  display: flex;
  gap: 20px;
}
.youmecan-box li {
  /*width: calc(33.3% - 13.3px);*/
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .youmecan-box li {
    width: 100%;
  }
}
.youmecan-box .youmecan-reader {
  width: calc(33.3% - 13.3px);
  background: #ffffea;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .youmecan-box .youmecan-reader {
    width: 100%;
  }
}
.youmecan-box .youmecan-reader figure {
  max-width: 80px;
}
@media screen and (max-width: 768px) {
  .youmecan-box {
    flex-wrap: wrap;
  }
}
.youmecan-box .youmecan-name {
  line-height: 1.4;
  color: #D4600B;
  font-weight: bold;
}
.youmecan-box .youmecan-name span {
  color: #000;
  font-size: 1.2em;
}/*# sourceMappingURL=style.css.map */