@charset "UTF-8";
.col--2 > * + *,
.col--3 > * + *,
.col--right-s > * + *,
.col--left-s > * + * {
  margin-top: 2em;
}

.d__font-size--l {
  font-size: 120%;
}

.d__font-size--s {
  font-size: 80%;
}

.d__input--text > .wrap {
  display: flex;
  height: 40px;
  width: 100%;
}
.d__input--text > .wrap input {
  width: 100%;
  border: #f2f2f2 1px solid;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #222;
  padding: 0 0.5em;
  line-height: 1;
  transition: box-shadow 300ms;
  flex-grow: 1;
  background: #fff;
  appearance: none;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  outline: none;
}
.d__input--text > .wrap input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.1rem #bfbfbf;
  transition: box-shadow 300ms;
}
.d__input--text > .error {
  line-height: 1.6;
  font-size: 16px;
  color: #de3a00;
  margin-top: 0.3em;
}
.d__input--text > .error:empty {
  display: none;
}

.d__input--textarea > textarea {
  border: #f2f2f2 1px solid;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #222;
  border-radius: 5px;
  padding: 0.5em;
  width: 100%;
  height: 100%;
  appearance: none;
  background: #fff;
  outline: none;
  transition: box-shadow 300ms;
  display: block;
}
.d__input--textarea > textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 0.1rem #bfbfbf;
  transition: box-shadow 300ms;
}
.d__input--textarea > .error {
  line-height: 1.6;
  font-size: 16px;
  color: #de3a00;
  margin-top: 0.3em;
}
.d__input--textarea > .error:empty {
  display: none;
}

.d__input--button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.d__input--button > input[type=submit], .d__input--button > input[type=button] {
  cursor: pointer;
  display: inline-block;
  padding: 1em 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #de3a00;
  border: none;
  border-radius: 5px;
  border-bottom: 3px #922600 solid;
  width: 100%;
}
.d__input--button > input[type=submit]:hover, .d__input--button > input[type=button]:hover {
  margin-top: 3px;
  border-bottom: 0;
}

.d__input--select {
  width: 100%;
}
.d__input--select > .wrap {
  width: auto;
  height: 40px;
  display: flex;
}
.d__input--select > .wrap > div {
  border: #f2f2f2 1px solid;
  border-radius: 5px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  width: auto;
  height: 100%;
  overflow: hidden;
  background: #fff;
}
.d__input--select > .wrap > div select {
  width: 100%;
  height: 100%;
  line-height: 40px;
  color: #222;
  padding: 0 35px 0 0.5em;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  background: none;
  border-style: none;
  outline: none;
  line-height: 38px;
}
.d__input--select > .wrap > div select::-ms-expand {
  display: none;
}
.d__input--select > .wrap > div > i {
  position: absolute;
  width: 25px;
  height: 100%;
  top: 0;
  right: 0;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
}
.d__input--select > .wrap > div > i:after {
  position: absolute;
  width: 1em;
  display: block;
  word-wrap: break-word;
  top: 50%;
  margin-top: -1em;
  margin-left: -0.5em;
  left: 50%;
  content: "▲▼";
}

.d__input--checkbox {
  width: 1.5em;
  height: 1.5em;
  position: relative;
}
.d__input--checkbox:before {
  content: "";
  border-radius: 5px;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid #b3b3b3;
  display: block;
  position: absolute;
  z-index: 1;
}
.d__input--checkbox input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 1.5em;
  height: 1.5em;
  display: block;
  position: absolute;
  opacity: 0;
  z-index: 3;
  outline: none;
  border: none;
  cursor: pointer;
}
.d__input--checkbox input + i {
  display: block;
  position: absolute;
  opacity: 0;
  width: 1.5em;
  height: 1.5em;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
  transform: translateY(-0.4em);
  overflow: visible;
}
.d__input--checkbox input + i:after {
  content: "✔︎";
  font-size: 150%;
  position: relative;
  line-height: 0;
  left: 0.2em;
}
.d__input--checkbox input:checked + i {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}

.d__input--radio {
  width: 1.5em;
  height: 1.5em;
  position: relative;
}
.d__input--radio:before {
  content: "";
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  background: #fff;
  border: #b3b3b3 1px solid;
  display: block;
  border-radius: 50px;
  position: absolute;
  z-index: 1;
}
.d__input--radio input {
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  z-index: 2;
  outline: none;
  border: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.d__input--radio input + i {
  transform: scale(0);
  height: 1.5em;
  width: 1.5em;
  background: #303030;
  position: absolute;
  border-radius: 100px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  transition: transform 0.3s;
}
.d__input--radio input:checked + i {
  transform: scale(0.4);
  transition: transform 0.3s;
}

.d__input--file input + canvas {
  display: none;
}

.m__article-footer {
  z-index: 0;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  background: center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 4em 20px;
}
.m__article-footer::before {
  content: "";
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.m__article-footer h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0.75em;
}
.m__article-footer h2 > span {
  display: block;
  padding-bottom: 0.5em;
  font-size: 24px;
}
.m__article-footer h2 > span::after {
  content: "";
  display: block;
  width: 50px;
  padding-bottom: 0.5em;
  margin: 0 auto;
  border-bottom: 1px #fff solid;
}
.m__article-footer h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.m__article-footer p {
  line-height: 2;
  font-size: 16px;
  text-align: center;
  margin-bottom: 1em;
}
.m__article-footer .btn {
  text-align: center;
}
.m__article-footer .btn > a {
  cursor: pointer;
  display: inline-block;
  padding: 1em 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #de3a00;
  border: none;
  border-radius: 5px;
  border-bottom: 3px #922600 solid;
}
.m__article-footer .btn > a:hover {
  margin-top: 3px;
  border-bottom: 0;
}

.m__article-header > div {
  z-index: 0;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  background: center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.m__article-header > div::before {
  content: "";
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.m__article-header > div > figure {
  width: 100%;
  margin: 0 auto;
}
.m__article-header > h1 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  box-sizing: border-box;
  width: 100%;
  padding: 1em 20px;
  margin: 0 auto;
}
.m__article-header > time {
  display: block;
  padding: 0 20px;
  text-align: right;
  font-size: 12px;
  margin: 0 auto;
}
.m__article-header > p {
  line-height: 2;
  font-size: 16px;
  text-align: left;
  box-sizing: border-box;
  width: 100%;
  padding: 1.5em 20px;
  margin: 0 auto;
  font-size: 12px;
}
.m__article-header > .logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  padding: 1em 10px;
  background: #fff;
}
.m__article-header > .logo > li + li {
  padding-left: 20px;
  margin-left: 20px;
  border-left: rgba(34, 34, 34, 0.25) 1px solid;
}
.m__article-header > .logo > li.pmark img {
  width: 60px;
}
.m__article-header > .logo > li.sdgs img {
  width: 180px;
}
.m__article-header > .logo > li.sdgs span {
  display: block;
  margin-top: 0.75em;
  text-align: left;
  font-size: 10px;
}

.m__cnt-set {
  box-sizing: border-box;
  width: 100%;
  padding: 3em 20px;
}
.m__cnt-set a {
  word-wrap: break-word;
  text-decoration: underline;
  color: #de3a00;
}
.m__cnt-set a:hover {
  text-decoration: none;
}
.m__cnt-set .heading--lv1 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}
.m__cnt-set .heading--lv1 > span {
  display: block;
  padding-bottom: 0.5em;
  font-size: 24px;
}
.m__cnt-set .heading--lv1 > span::after {
  content: "";
  display: block;
  width: 50px;
  padding-bottom: 0.5em;
  margin: 0 auto;
  border-bottom: 1px #fff solid;
}
.m__cnt-set .heading--lv1--left {
  text-align: left;
  font-size: 28px;
  font-weight: 700;
}
.m__cnt-set .heading--lv1--left > span {
  display: block;
  padding-bottom: 0.5em;
  font-size: 24px;
}
.m__cnt-set .heading--lv1--left > span::after {
  content: "";
  display: block;
  width: 50px;
  padding-bottom: 0.5em;
  margin: 0 auto;
  border-bottom: 1px #fff solid;
}
.m__cnt-set .heading--lv2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.m__cnt-set .heading--lv2--left {
  text-align: left;
  font-size: 24px;
  font-weight: 700;
}
.m__cnt-set .heading--lv3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.m__cnt-set .heading--lv3--left {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
}
.m__cnt-set .text--center {
  line-height: 2;
  font-size: 16px;
  text-align: center;
}
.m__cnt-set .text--left {
  line-height: 2;
  font-size: 16px;
  text-align: left;
}
.m__cnt-set .text--right {
  line-height: 2;
  font-size: 16px;
  text-align: right;
}
.m__cnt-set .text--summary {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 1em;
  border: 2px #f2f2f2 solid;
}
.m__cnt-set .btn,
.m__cnt-set .btn--s {
  text-align: center;
}
.m__cnt-set .btn > a,
.m__cnt-set .btn--s > a {
  cursor: pointer;
  display: inline-block;
  padding: 1em 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #de3a00;
  border: none;
  border-radius: 5px;
  border-bottom: 3px #922600 solid;
  text-decoration: none;
}
.m__cnt-set .btn > a:hover,
.m__cnt-set .btn--s > a:hover {
  margin-top: 3px;
  border-bottom: 0;
}
.m__cnt-set .btn--s > a {
  font-size: 12px;
}
.m__cnt-set .arrow {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.m__cnt-set .arrow > span {
  position: relative;
  display: block;
  padding-bottom: 50px;
  font-size: 18px;
}
.m__cnt-set .arrow > span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: #f2f2f2 20px solid;
  border-bottom: transparent 20px solid;
  border-left: transparent 30px solid;
  border-right: transparent 30px solid;
}
.m__cnt-set .list,
.m__cnt-set .list--order {
  padding-left: 2em;
}
.m__cnt-set .list li + li,
.m__cnt-set .list--order li + li {
  margin-top: 0.5em;
}
.m__cnt-set .list ul,
.m__cnt-set .list ol,
.m__cnt-set .list--order ul,
.m__cnt-set .list--order ol {
  margin-top: 1em;
}
.m__cnt-set .list li {
  list-style: disc;
}
.m__cnt-set .list--order li {
  list-style: decimal;
}
.m__cnt-set .list--kome li {
  margin-left: 1.5em;
  text-indent: -1.5em;
  font-size: 14px;
  color: #626262;
}
.m__cnt-set .list--kome li::before {
  content: "※";
  margin-right: 0.5em;
}
.m__cnt-set .list--kome li + li {
  margin-top: 0.5em;
}
.m__cnt-set .table {
  width: 100%;
  border: #222 1px solid;
}
.m__cnt-set .table th, .m__cnt-set .table td {
  display: block;
  box-sizing: border-box;
  width: 100%;
  line-height: 1.6;
  font-size: 14px;
}
.m__cnt-set .table > thead {
  display: none;
}
.m__cnt-set .table > tbody > tr > th,
.m__cnt-set .table > tbody > tr > td {
  line-height: 1.6;
}
.m__cnt-set .table > tbody > tr > th a,
.m__cnt-set .table > tbody > tr > td a {
  word-wrap: break-word;
  text-decoration: underline;
  color: #de3a00;
}
.m__cnt-set .table > tbody > tr > th a:hover,
.m__cnt-set .table > tbody > tr > td a:hover {
  text-decoration: none;
}
.m__cnt-set .table > tbody > tr > th {
  padding: 0.5em 1em;
  text-align: left;
  font-weight: bold;
  color: #f2f2f2;
  background: #222;
  border-top: #a2a2a2 1px solid;
}
.m__cnt-set .table > tbody > tr > td {
  padding: 1em;
}
.m__cnt-set .table > tbody > tr > td + td {
  border-top: #e1e1e1 1px solid;
}
.m__cnt-set .table > tbody > tr > th[data-title],
.m__cnt-set .table > tbody > tr > td[data-title], .m__cnt-set .table > tbody > tr::before {
  content: attr(data-title);
  padding: 0.25em 0.5em;
  margin-right: 0.5em;
  font-size: 12px;
  font-weight: bold;
}
.m__cnt-set .table > tbody > tr > th[data-title]::before {
  background: #626262;
}
.m__cnt-set .table > tbody > tr > td[data-title]::before {
  background: #f2f2f2;
}
.m__cnt-set .table > tbody > tr:first-of-type > th {
  border-top: none;
}
.m__cnt-set .scroll-table {
  position: relative;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  border: #222 1px solid;
}
.m__cnt-set .scroll-table::after {
  content: "";
  position: absolute;
  top: -2em;
  right: 0;
  width: 1em;
  height: 1em;
  background: #222;
}
.m__cnt-set .scroll-table > table {
  table-layout: fixed;
  width: 100%;
  font-size: 14px;
  border: none;
  width: 190%;
}
.m__cnt-set .scroll-table > table th, .m__cnt-set .scroll-table > table td {
  display: table-cell;
  padding: 0.75em;
  line-height: 1.6;
  border-left: #a2a2a2 1px solid;
}
.m__cnt-set .scroll-table > table th:first-child, .m__cnt-set .scroll-table > table td:first-child {
  border-left: none;
}
.m__cnt-set .scroll-table > table > thead > tr > th,
.m__cnt-set .scroll-table > table > thead > tr > td {
  text-align: center;
  font-weight: bold;
  color: #f2f2f2;
  background: #222;
}
.m__cnt-set .scroll-table > table > tbody > tr > th,
.m__cnt-set .scroll-table > table > tbody > tr > td {
  padding: 1em;
  line-height: 1.6;
  border-top: #a2a2a2 1px solid;
}
.m__cnt-set .scroll-table > table > tbody > tr > th a,
.m__cnt-set .scroll-table > table > tbody > tr > td a {
  word-wrap: break-word;
  text-decoration: underline;
  color: #de3a00;
}
.m__cnt-set .scroll-table > table > tbody > tr > th a:hover,
.m__cnt-set .scroll-table > table > tbody > tr > td a:hover {
  text-decoration: none;
}
.m__cnt-set .scroll-table > table > tbody > tr > th {
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
  color: #222;
  background: #f2f2f2;
}
.m__cnt-set .scroll-table > table > tbody > tr:first-of-type > th,
.m__cnt-set .scroll-table > table > tbody > tr:first-of-type > td {
  border-top: none;
}
.m__cnt-set .post dd {
  margin-top: 0.25em;
  line-height: 1.6;
  font-size: 14px;
}
.m__cnt-set .post + .post {
  padding-top: 1em;
  border-top: #cccccc 1px solid;
}
.m__cnt-set figure {
  text-align: center;
}
.m__cnt-set figure figcaption {
  margin-top: 1em;
  font-size: 12px;
}
.m__cnt-set figure a {
  display: block;
  transition: opacity 0.5s;
}
.m__cnt-set figure a:hover {
  opacity: 0.75;
}
.m__cnt-set .talk {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.m__cnt-set .talk > figure {
  width: 50px;
  margin-right: 20px;
}
.m__cnt-set .talk > p {
  position: relative;
  flex: 1;
  box-sizing: border-box;
  padding: 1em 1.25em;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  background: #fff;
}
.m__cnt-set .talk > p::before {
  content: "";
  position: absolute;
  top: 1em;
  left: -20px;
  width: 0;
  height: 0;
  border-top: transparent 10px solid;
  border-bottom: transparent 10px solid;
  border-left: transparent 10px solid;
  border-right: #fff 10px solid;
}
.m__cnt-set .talk > p > b {
  color: #de3a00;
}
.m__cnt-set .flow {
  counter-reset: my-counter;
}
.m__cnt-set .flow > li {
  display: flex;
  align-items: center;
}
.m__cnt-set .flow > li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  margin-right: 0.5em;
  line-height: 1;
  font-size: 3em;
  font-style: italic;
  color: #f2f2f2;
}
.m__cnt-set .flow > li + li {
  padding-top: 0.75em;
  margin-top: 0.75em;
  border-top: 1px #f2f2f2 solid;
}
.m__cnt-set .flow > li > dl {
  flex: 1;
}
.m__cnt-set .flow > li > dl > dt {
  font-size: 20px;
}
.m__cnt-set .flow > li > dl > dd {
  margin-top: 0.25em;
  font-size: 14px;
}

.m__cv-set {
  box-sizing: border-box;
  width: 100%;
  padding: 2.5em 20px;
}
.m__cv-set .btn {
  text-align: center;
}
.m__cv-set .btn > a {
  cursor: pointer;
  display: inline-block;
  padding: 1em 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #de3a00;
  border: none;
  border-radius: 5px;
  border-bottom: 3px #922600 solid;
}
.m__cv-set .btn > a:hover {
  margin-top: 3px;
  border-bottom: 0;
}

.m__service-list > h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0.75em;
}
.m__service-list > h2 > span {
  display: block;
  padding-bottom: 0.5em;
  font-size: 24px;
}
.m__service-list > h2 > span::after {
  content: "";
  display: block;
  width: 50px;
  padding-bottom: 0.5em;
  margin: 0 auto;
  border-bottom: 1px #fff solid;
}
.m__service-list > ul > li + li {
  margin-top: 1em;
}
.m__service-list > ul > li > a {
  display: block;
  transition: opacity 0.5s;
}
.m__service-list > ul > li > a > figure {
  background: #fff;
}
.m__service-list > ul > li > a > figure > figcaption {
  padding: 1em 20px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}
.m__service-list > ul > li > a:hover {
  opacity: 0.75;
}
.m__service-list > ul > li > a:hover > figure > figcaption {
  text-decoration: none;
}

.m__thumb-nav > ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.m__thumb-nav > ul > li {
  width: 49%;
  background: #fff;
}
.m__thumb-nav > ul > li:nth-of-type(2n) {
  margin-left: 2%;
}
.m__thumb-nav > ul > li:nth-of-type(n+3) {
  margin-top: 1em;
}
.m__thumb-nav > ul > li > a {
  display: block;
  text-align: center;
  transition: opacity 0.5s;
}
.m__thumb-nav > ul > li > a:hover {
  opacity: 0.75;
}
.m__thumb-nav > ul > li > a > figure > figcaption {
  padding: 0.5em;
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}
.m__thumb-nav > ul > li > a:hover {
  opacity: 0.75;
}
.m__thumb-nav > ul > li > a:hover > figure > figcaption {
  text-decoration: none;
}

.m__toc > ul {
  position: relative;
  padding: 2em 20px 1.5em 40px;
  background: #fff;
}
.m__toc > ul::before {
  content: "目次";
  position: absolute;
  top: 0;
  left: 20px;
  padding: 0.5em 0.75em;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #222;
}
.m__toc > ul > li {
  font-size: 16px;
  list-style: disc;
}
.m__toc > ul > li + li {
  margin-top: 0.5em;
}
.m__toc > ul > li > a {
  font-weight: 700;
  text-decoration: underline;
}
.m__toc > ul > li > a:hover {
  text-decoration: none;
}
.m__toc > ul > li ul {
  margin: 0.75em 0 0.75em 2em;
}
.m__toc > ul > li ul li {
  font-size: 12px;
}
.m__toc > ul > li ul li + li {
  margin-top: 0.5em;
}
.m__toc > ul > li ul li a {
  text-decoration: underline;
}
.m__toc > ul > li ul li a:hover {
  text-decoration: none;
}

.m__user-img > figure {
  display: flex;
  flex-wrap: wrap;
}
.m__user-img > figure > img {
  display: block;
  width: 33.3333333333%;
}