@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: inherit;
  background-repeat: no-repeat;
}

* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
}

:where(h1,
  h2,
  h3,
  h4,
  h5,
  h6) {
  font: inherit;
}

:where(em) {
  font-style: normal;
}

:where(a:any-link) {
  color: inherit;
  text-decoration: none;
}

:where(a):has(> img) {
  display: block;
}

:where(img) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

:where(ul,
  ol) {
  list-style-type: "";
}

:where(table) {
  width: 100%;
  border-collapse: collapse;
}

:where(button) {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  background: none;
  border: none;
  border-radius: unset;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
}

.inner {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin-inline: auto;
}

.bg-white {
  background-color: #fff;
}

.bg-green {
  background-color: rgba(219, 248, 207, 0.5);
  background-image: url("../img/bg_green.jpg");
  background-size: cover;
}

.box-s {
  max-width: 900px;
  margin-inline: auto;
}

.link-btn {
  width: 100%;
  box-shadow: 0px 2px 3px rgba(7, 84, 35, 0.361);
  border-radius: 50px;
  overflow: hidden;
  isolation: isolate;
}

.link-btn a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  color: var(--link-txt, #fff);
  background-color: var(--link-bg, #07913a);
}

.link-btn.icon_arrow a {
  background-image: url("../img/arrow_right.svg");
  background-position: center left 24px;
  background-size: auto 9px;
}

.link-btn.icon_file a {
  position: relative;
}

.link-btn.icon_file a::after {
  content: '';
  display: block;
  aspect-ratio: 1;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 23px;
  translate: 0 -50%;
}

.link-btn.icon_file:has(a[href$=".pdf"]) a::after {
  width: 22px;
  background-image: url("../img/icon_pdf.svg");
}

.link-btn.icon_file:has(a[href$=".xlsx"]) a::after {
  width: 23px;
  background-image: url("../img/icon_xlsx.svg");
}

div:not(.link-btn) a[href^="mailto:"] {
  color: #07913a;
  text-decoration: underline;
}

/* header */
.header {
  width: 100%;
  padding: 7px 11px 7px 15px;
  background-color: #fff;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.149);
  position: sticky;
  top: 0;
  z-index: 91;
}

.header--top {
  display: grid;
  grid-template-areas: 'logo sdgs btn' 'title sdgs btn';
  grid-template-columns: 1fr repeat(2, max-content);
  align-items: center;
  column-gap: 10px;
}

.header--top .logo {
  grid-area: logo;
  max-width: 94px;
}

.header--top .title {
  grid-area: title;
  font-size: 16px;
  font-weight: 900;
}

.header--top .sdgs {
  grid-area: sdgs;
  max-width: 43px;
}

.header--top .menu--btn {
  grid-area: btn;
}

@media screen and (min-width: 768px) {
  .header--top {
    grid-template-areas: 'logo title sdgs btn';
    grid-template-columns: auto 1fr repeat(2, max-content);
  }
}

@media screen and (min-width: 1024px) {
  .header {
    padding: 19px 0 0;
  }

  .header--inner {
    width: calc(100% - 40px);
    max-width: 1180px;
    margin-inline: auto;
  }

  .header--top {
    grid-template-areas: 'logo title sdgs';
    grid-template-columns: repeat(2, max-content) auto;
    column-gap: 41px;
  }

  .header--top .logo {
    max-width: 193px;
  }

  .header--top .title {
    font-size: 23px;
  }

  .header--top .sdgs {
    justify-self: end;
    max-width: 73px;
  }
}

.gnav {
  margin-top: 27px;
  padding-bottom: 18px;
}

.gnav--list {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
}

.gnav .current {
  color: #07913a;
  position: relative;
}

.gnav .current::after {
  content: '';
  display: block;
  height: 2px;
  background-color: currentcolor;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
}

@media (any-hover: hover) {
  .gnav a:hover {
    color: #07913a;
  }
}

/* menu */
.menu--btn {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 43px;
}

.menu--btn .icon {
  display: block;
  width: 26px;
  height: 18px;
  color: #07913a;
  border-style: solid;
  border-width: 2px 0;
  position: relative;
}

.menu--btn .icon::before,
.menu--btn .icon::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentcolor;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.menu--btn[aria-expanded="true"] .icon {
  border-color: transparent;
}

.menu--btn[aria-expanded="true"] .icon::before {
  rotate: -36deg;
}

.menu--btn[aria-expanded="true"] .icon::after {
  content: '';
  rotate: 36deg;
}

.menu {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
}

.menu[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
}

.menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.menu--content {
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
}

.menu--inner {
  padding-top: 104px;
  padding-bottom: 100px;
}

.menu--list-1,
.menu--list-2 {
  display: grid;
  justify-items: center;
  font-weight: 500;
}

.menu--list-1 a,
.menu--list-2 a {
  display: inline-block;
  padding: 5px;
}

.menu--list-1 {
  row-gap: 28px;
  font-size: 20px;
}

.menu--list-2 {
  row-gap: 23px;
  margin-top: 48px;
  font-size: 18px;
}

.menu--list-2::before {
  content: '';
  display: block;
  width: 276px;
  height: 1px;
  background-color: #c9c9c9;
}

.menu--list-2 a {
  padding-left: 20px;
  background-image: url("../img/link_green.svg");
  background-position: left top 12px;
  background-size: 16px auto;
}

.gnav {
  display: none;
}

@media screen and (min-width: 1024px) {
  .menu--btn {
    display: none;
  }

  .gnav {
    display: revert;
  }
}

/* main */
.heading-lv2 {
  padding-bottom: 12px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.heading-lv2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #07913a;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
}

.heading-lv2 span {
  display: inline-block;
}

@media screen and (min-width: 1024px) {
  .heading-lv2 {
    padding-bottom: 20px;
    font-size: 36px;
  }
}

.sec-contact {
  padding-top: 62px;
  padding-bottom: 70px;
  background-color: #07913a;
}

.sec-contact .sec--heading {
  display: grid;
  row-gap: 10px;
  color: #fff;
  text-align: center;
}

.sec-contact .sec--heading .main {
  font-size: 25px;
  font-weight: bold;
}

.sec-contact .sec--heading .sub {
  font-size: 16px;
  font-weight: 500;
}

.sec-contact .text-1 {
  margin-top: 45px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.sec-contact .list-1 {
  display: grid;
  gap: 30px;
  margin-top: 29px;
  font-weight: 500;
  text-align: center;
}

.sec-contact .list-1 .item {
  display: grid;
  justify-items: center;
  row-gap: 16px;
  padding-bottom: 38px;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.sec-contact .list-1 dt {
  width: 100%;
  padding: 19px 10px 14px;
  color: #07913a;
  background-color: #ebfffc;
}

.sec-contact .list-1 dt span {
  display: inline-block;
}

.sec-contact .list-1 dd {
  margin-inline: 5px;
}

.sec-contact .list-1 .name {
  margin-top: 8px;
  font-size: 20px;
}

.sec-contact .list-1 .name span {
  display: inline-block;
}

.sec-contact .list-1 .tel {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.13;
}

.sec-contact .list-1 .tel a {
  display: block;
  padding-left: 44px;
  background-image: url("../img/contact_tel.svg");
  background-position: center left;
  background-size: contain;
}

.sec-contact .list-1 .time {
  margin-top: 4px;
  line-height: 1.875;
}

@media screen and (min-width: 768px) {
  .sec-contact .list-1 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }

  .sec-contact .list-1 .item {
    grid-template-rows: subgrid;
    grid-row: span 4;
  }

  .sec-contact .list-1 .name {
    align-self: center;
  }

  .sec-contact .text-1 br {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .sec-contact {
    padding-top: 46px;
    padding-bottom: 85px;
  }

  .sec-contact .sec--heading {
    row-gap: 0;
  }

  .sec-contact .sec--heading .main {
    font-size: 50px;
  }

  .sec-contact .list-1 {
    gap: 48px;
    margin-top: 49px;
  }

  .sec-contact .list-1 .item {
    padding-bottom: 52px;
  }

  .sec-contact .list-1 dt {
    padding: 23px 10px;
  }

  .sec-contact .list-1 .name {
    margin-top: 15px;
  }

  .sec-contact .list-1 .tel {
    margin-top: 24px;
    padding-right: 14px;
    font-size: 40px;
    line-height: 1;
  }

  .sec-contact .list-1 .tel a {
    padding-left: 55px;
  }

  .sec-contact .list-1 .time {
    margin-top: 0;
  }
}

.bread--list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 17px 0 13px;
  font-size: 14px;
  font-weight: 500;
}

.bread--list li:not(:last-child)::after {
  content: '';
  display: inline-block;
  aspect-ratio: 1/2;
  height: 8px;
  margin-left: 18px;
  clip-path: polygon(7% 3%, 100% 50%, 7% 97%, 0 93%, 86% 50%, 0 7%);
  background-color: #707070;
}

.bread--list a {
  text-decoration: underline;
}

.page--title {
  display: grid;
  place-items: center;
  min-height: 205px;
  padding: 20px 20px 30px;
}

.page--title .title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.79;
  text-align: center;
}

.page--title .title span {
  display: inline-block;
  text-decoration-line: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 21px;
  text-underline-offset: -12px;
}

@media screen and (min-width: 1024px) {
  .bread--list {
    padding: 20px 0 16px;
  }

  .page--title {
    min-height: 270px;
    padding-bottom: 40px;
  }

  .page--title .title {
    font-size: 50px;
  }

  .page--title .title span {
    text-decoration-thickness: 26px;
    text-underline-offset: -10px;
  }
}

/* footer */
.footer {
  padding-top: 29px;
  padding-bottom: 35px;
}

.footer--nav {
  display: none;
}

.footer--copyright {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer--copyright br {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .footer {
    padding-top: 43px;
    padding-bottom: 18px;
  }

  .footer--nav {
    display: revert;
  }

  .footer--nav .list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    font-size: 18px;
    font-weight: 500;
  }

  .footer--nav a {
    display: inline-block;
    padding-left: 20px;
    background-image: url("../img/link_green.svg");
    background-position: left top 7px;
    background-size: 16px auto;
  }

  .footer--copyright {
    margin-top: 80px;
    font-size: 16px;
    line-height: 1.875;
  }
}

@media (any-hover: hover) {

  .menu--list-1 a,
  .sec-contact .list-1 .tel a,
  .link-btn a,
  .header--top .menu--btn,
  .header--top .logo a {
    transition: opacity .1s;
  }

  .menu--list-1 a:hover,
  .sec-contact .list-1 .tel a:hover,
  .link-btn a:hover,
  .header--top .menu--btn:hover,
  .header--top .logo a:hover {
    opacity: .7;
  }

  .menu--list-2 a:hover,
  .footer--nav a:hover {
    color: #07913a;
    text-decoration: underline;
  }

  div:not(.link-btn) a[href^="mailto:"]:hover {
    color: #FF3B00;
    text-decoration: none;
  }

  .bread--list a:hover {
    text-decoration: none;
  }
}