@charset "UTF-8";
.fc-red {
  color: rgba(209, 31, 31, 0.947);
}

.second-head {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second-head .h1-wrap {
  z-index: 1000;
}
.second-head .h1-wrap h1 {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2901960784);
  display: flex;
  flex-direction: column;
  padding: 0 30px 10px;
  border-bottom: solid 1px #fff;
  margin-top: -30px;
  text-align: center;
}
.second-head .h1-wrap h1 span {
  font-size: 16px;
  font-weight: normal;
}
.second-head .h1-wrap .pankuzu {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2901960784);
}
.second-head .h1-wrap .pankuzu li {
  color: #fff;
}
.second-head .h1-wrap .pankuzu li:not(:last-of-type) {
  margin-right: 15px;
}
.second-head .h1-wrap .pankuzu li:not(:last-of-type):after {
  content: "";
  width: 7px;
  height: 7px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #fff;
  display: inline-block;
  transform: rotate(45deg) translateY(-3px);
}
.second-head .h1-wrap .pankuzu a {
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
}
.second-head .h1-wrap .pankuzu a:hover {
  text-decoration: underline;
}
.second-head .second-image {
  position: fixed;
  top: 0;
  left: 0;
  filter: blur(10px);
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.second-head .second-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media print, screen and (min-width: 880px) {
  .second-head {
    height: 500px;
  }
  .second-head .h1-wrap h1 {
    font-size: 4rem;
  }
  .second-head .h1-wrap h1 span {
    font-size: 16px;
  }
}
.wide-content {
  background-color: #fff;
}
.wide-content.round {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.wide-content.round > .inner {
  padding-top: 60px;
  padding-bottom: 100px;
}
.wide-content.green {
  background-color: #E4FCD3;
}
.wide-content > svg {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  min-width: 600px;
  transform: translateX(-50%);
}
.wide-content .shadow {
  width: 100%;
  filter: drop-shadow(0 -10px 0 #E4FCD3);
}
.wide-content .inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 15px;
}
.wide-content .inner p {
  margin-bottom: 20px;
}

@media print, screen and (min-width: 880px) {
  .wide-content .inner {
    padding: 30px;
  }
}
.h2-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
.h2-main::before {
  content: "";
  width: 45px;
  height: 2px;
  background: rgb(83, 167, 22);
  background: linear-gradient(90deg, rgb(83, 167, 22) 0%, rgb(83, 167, 22) 33%, rgb(110, 194, 81) 33%, rgb(110, 194, 81) 67%, rgb(67, 130, 21) 67%, rgb(67, 130, 21) 100%);
  position: absolute;
  bottom: -10px;
  pointer-events: none;
}
.h2-main span:nth-child(1) {
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 26px;
}
.h2-main span:nth-child(2) {
  font-size: 12px;
  color: #999;
}

@media print, screen and (min-width: 880px) {
  .h2-main {
    margin-bottom: 50px;
  }
  .h2-main span:nth-child(1) {
    font-size: 50px;
  }
  .h2-main span:nth-child(2) {
    font-size: 14px;
  }
}
.h3-main {
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--mc);
}
.h3-main::before {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #fff;
  border-color: var(--sc1) var(--mc);
  border-style: solid;
  border-width: 8px;
}
.h3-main::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  min-width: 1em;
  background-color: var(--sc1);
}

@media print, screen and (min-width: 880px) {
  .h3-main {
    font-size: 30px;
  }
}
.h4-main {
  margin-bottom: 15px;
  text-align: center;
  font-size: 18px;
  color: var(--mc-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.h4-main::before {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  border-color: var(--sc1) var(--mc);
  border-style: solid;
  border-width: 6px;
  border-radius: 3px;
}
.h4-main::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  min-width: 1em;
  border-bottom: dotted 1px var(--sc1);
}

.roots {
  display: block;
  position: relative;
  padding: 30px 0;
  margin-bottom: 40px;
}
.roots p {
  margin: 0 !important;
}
.roots::before {
  content: "";
  width: 2px;
  height: 100%;
  background: rgb(236, 216, 181);
  background: linear-gradient(0deg, rgba(236, 216, 181, 0) 0%, rgb(236, 216, 181) 1%, rgb(236, 216, 181) 99%, rgba(236, 216, 181, 0) 100%);
  position: absolute;
  top: 0;
  left: -5px;
}
.roots .block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  margin-bottom: 20px;
}
.roots .block .img {
  order: 2;
}
.roots .block .desc {
  order: 1;
}
.roots .block.rev .img {
  order: 2;
}
.roots .block.rev .desc {
  order: 1;
}
.roots .img {
  position: relative;
  padding: 10px 10px 10px 20px;
  height: 200px;
}
.roots .img.rev::after {
  top: calc(50% - 10px);
  left: -5px;
  border-width: 0 0 2px 2px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
  z-index: -1;
}
.roots .img::after {
  content: "";
  width: 61px;
  height: 40px;
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: rgb(236, 216, 181);
  display: inline-block;
  border-bottom-left-radius: 20px;
  position: absolute;
  top: calc(50% - 10px);
  left: -5px;
  transform: translateY(-50%);
  z-index: -1;
}
.roots .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.roots .desc {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.roots .desc.rev {
  position: relative;
}
.roots .desc.rev::before {
  content: "";
  width: calc(100% + 26px);
  height: 20px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: rgb(236, 216, 181);
  border-bottom-right-radius: 20px;
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  display: none;
}
.roots .desc.rev p::after {
  border-width: 0 0 2px 2px;
  border-top-left-radius: 20px;
}
.roots .desc p {
  display: inline-block;
  line-height: 1.8;
  font-size: 14px;
  padding: 10px 10px 10px 20px;
  position: relative;
}
.roots .desc p::before {
  content: "";
  width: 13px;
  height: 13px;
  background-color: #BED547;
  border-radius: 20px;
  display: inline-block;
  position: absolute;
  top: 15px;
  left: -10px;
  z-index: 2;
}
.roots .desc p::after {
  content: "";
  width: 41px;
  height: 40px;
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: rgb(236, 216, 181);
  display: none;
  border-bottom-left-radius: 20px;
  position: absolute;
  top: -2px;
  left: -41px;
}

@media print, screen and (min-width: 880px) {
  .roots::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .roots .block {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }
  .roots .block .img {
    order: 1;
    height: 400px;
  }
  .roots .block .desc {
    order: 2;
  }
  .roots .block.rev .img {
    order: 2;
  }
  .roots .block.rev .desc {
    order: 1;
  }
  .roots .img {
    padding: 20px;
  }
  .roots .img.rev::after {
    top: calc(50% - 10px);
    left: auto;
    right: calc(100% - 20px);
    border-width: 0 0 2px 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 20px;
    z-index: -1;
  }
  .roots .img::after {
    content: "";
    width: 46px;
    height: 40px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: rgb(236, 216, 181);
    display: inline-block;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0;
    position: absolute;
    top: 50%;
    right: -26px;
    left: auto;
    transform: translateY(-50%);
  }
  .roots .desc.rev::before {
    width: calc(100% + 26px);
    display: block;
  }
  .roots .desc.rev p::after {
    border-width: 2px 0 2px 2px;
  }
  .roots .desc p {
    padding: 20px;
    font-size: 16px;
    line-height: 2.2;
  }
  .roots .desc p::before {
    top: 30px;
    left: 2px;
  }
  .roots .desc p::after {
    display: block;
    left: -26px;
  }
}
@media print, screen and (min-width: 1180px) {
  .roots .block {
    gap: 80px;
  }
  .roots .img::after {
    width: 61px;
    right: -41px;
    left: auto;
  }
  .roots .desc.rev::before {
    width: calc(100% + 41px);
  }
  .roots .desc p {
    font-size: 18px;
  }
  .roots .desc p::before {
    left: 0;
  }
  .roots .desc p::after {
    left: -41px;
  }
}
.goals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  counter-reset: count;
  margin-bottom: 80px;
}
.goals li {
  background-color: #449564;
  padding: 20px;
  border-radius: 20px;
  counter-increment: count;
  color: #fff;
  font-weight: bold;
  position: relative;
  font-size: 18px;
  text-align: center;
}
.goals li::before {
  content: "0" counter(count);
  position: absolute;
  bottom: -15px;
  right: 10px;
  font-size: 80px;
  opacity: 0.3;
  line-height: 1;
}

@media print, screen and (min-width: 880px) {
  .goals {
    grid-template-columns: repeat(2, 1fr);
  }
  .goals li {
    font-size: 30px;
  }
}
.h3-goal {
  display: flex;
  align-items: center;
  color: #2e774d;
  position: relative;
  padding-top: 30px;
  margin-bottom: 20px;
}
.h3-goal::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #449564;
}
.h3-goal span:nth-child(1) {
  position: absolute;
  bottom: 100%;
  color: #FF9900;
  font-size: 30px;
  line-height: 1;
  transform: translateY(30px);
}
.h3-goal span:nth-child(2) {
  padding-right: 20px;
}

.col2-19 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.col2-19 > .left, .col2-19 > .right {
  min-height: 50px;
  position: relative;
}

.gap-1 {
  gap: 5px !important;
}

.col2-28 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.col2-28 > .left, .col2-28 > .right {
  min-height: 50px;
  position: relative;
}

.gap-2 {
  gap: 10px !important;
}

.col2-37 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.col2-37 > .left, .col2-37 > .right {
  min-height: 50px;
  position: relative;
}

.gap-3 {
  gap: 15px !important;
}

.col2-46 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.col2-46 > .left, .col2-46 > .right {
  min-height: 50px;
  position: relative;
}

.gap-4 {
  gap: 20px !important;
}

.col2-55 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.col2-55 > .left, .col2-55 > .right {
  min-height: 50px;
  position: relative;
}

.gap-5 {
  gap: 25px !important;
}

.col2-64 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.col2-64 > .left, .col2-64 > .right {
  min-height: 50px;
  position: relative;
}

.gap-6 {
  gap: 30px !important;
}

.col2-73 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.col2-73 > .left, .col2-73 > .right {
  min-height: 50px;
  position: relative;
}

.gap-7 {
  gap: 35px !important;
}

.col2-82 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.col2-82 > .left, .col2-82 > .right {
  min-height: 50px;
  position: relative;
}

.gap-8 {
  gap: 40px !important;
}

.col2-91 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.col2-91 > .left, .col2-91 > .right {
  min-height: 50px;
  position: relative;
}

.gap-9 {
  gap: 45px !important;
}

.col2-100 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.col2-100 > .left, .col2-100 > .right {
  min-height: 50px;
  position: relative;
}

.gap-10 {
  gap: 50px !important;
}

@media print, screen and (min-width: 880px) {
  .col2-19 {
    grid-template-columns: 1fr 9fr;
  }
  .gap-1 {
    gap: 10px !important;
  }
  .col2-28 {
    grid-template-columns: 2fr 8fr;
  }
  .gap-2 {
    gap: 20px !important;
  }
  .col2-37 {
    grid-template-columns: 3fr 7fr;
  }
  .gap-3 {
    gap: 30px !important;
  }
  .col2-46 {
    grid-template-columns: 4fr 6fr;
  }
  .gap-4 {
    gap: 40px !important;
  }
  .col2-55 {
    grid-template-columns: 5fr 5fr;
  }
  .gap-5 {
    gap: 50px !important;
  }
  .col2-64 {
    grid-template-columns: 6fr 4fr;
  }
  .gap-6 {
    gap: 60px !important;
  }
  .col2-73 {
    grid-template-columns: 7fr 3fr;
  }
  .gap-7 {
    gap: 70px !important;
  }
  .col2-82 {
    grid-template-columns: 8fr 2fr;
  }
  .gap-8 {
    gap: 80px !important;
  }
  .col2-91 {
    grid-template-columns: 9fr 1fr;
  }
  .gap-9 {
    gap: 90px !important;
  }
  .col2-100 {
    grid-template-columns: 10fr 0fr;
  }
  .gap-10 {
    gap: 100px !important;
  }
}
.img-col1 {
  display: grid;
  place-items: start center;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
}
.img-col1.align-left li,
.img-col1.align-left div {
  align-items: flex-start;
}
.img-col1.align-center li,
.img-col1.align-center div {
  align-items: center;
}
.img-col1.align-right li,
.img-col1.align-right div {
  align-items: flex-end;
}
.img-col1 li,
.img-col1 div {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  gap: 5px;
  position: relative;
  place-items: center center;
}
.img-col1 li img,
.img-col1 div img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  grid-row: 1;
}
.img-col1 li .img-text,
.img-col1 div .img-text {
  width: 100%;
  font-size: 1rem;
  grid-row: 2;
  margin: 0;
  text-align: center;
}
.img-col1 li .img-text.align-left,
.img-col1 div .img-text.align-left {
  text-align: left !important;
}
.img-col1 li .img-text.align-center,
.img-col1 div .img-text.align-center {
  text-align: center !important;
}
.img-col1 li .img-text.align-right,
.img-col1 div .img-text.align-right {
  text-align: right !important;
}
.img-col1 li .no-image,
.img-col1 div .no-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-color: #f6f6f6;
  border-radius: 6px;
  grid-row: 1;
  position: relative;
}
.img-col1 li .no-image::before,
.img-col1 div .no-image::before {
  content: "NO IMAGE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #666;
}

@media print, screen and (min-width: 880px) {
  .img-col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .img-col1 li:nth-of-type(1n),
.img-col1 div:nth-of-type(1n) {
    margin-right: 0;
  }
}
.img-col2 {
  display: grid;
  place-items: start center;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
}
.img-col2.align-left li,
.img-col2.align-left div {
  align-items: flex-start;
}
.img-col2.align-center li,
.img-col2.align-center div {
  align-items: center;
}
.img-col2.align-right li,
.img-col2.align-right div {
  align-items: flex-end;
}
.img-col2 li,
.img-col2 div {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  gap: 5px;
  position: relative;
  place-items: center center;
}
.img-col2 li img,
.img-col2 div img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  grid-row: 1;
}
.img-col2 li .img-text,
.img-col2 div .img-text {
  width: 100%;
  font-size: 1rem;
  grid-row: 2;
  margin: 0;
  text-align: center;
}
.img-col2 li .img-text.align-left,
.img-col2 div .img-text.align-left {
  text-align: left !important;
}
.img-col2 li .img-text.align-center,
.img-col2 div .img-text.align-center {
  text-align: center !important;
}
.img-col2 li .img-text.align-right,
.img-col2 div .img-text.align-right {
  text-align: right !important;
}
.img-col2 li .no-image,
.img-col2 div .no-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-color: #f6f6f6;
  border-radius: 6px;
  grid-row: 1;
  position: relative;
}
.img-col2 li .no-image::before,
.img-col2 div .no-image::before {
  content: "NO IMAGE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #666;
}

@media print, screen and (min-width: 880px) {
  .img-col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .img-col2 li:nth-of-type(2n),
.img-col2 div:nth-of-type(2n) {
    margin-right: 0;
  }
}
.img-col3 {
  display: grid;
  place-items: start center;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
}
.img-col3.align-left li,
.img-col3.align-left div {
  align-items: flex-start;
}
.img-col3.align-center li,
.img-col3.align-center div {
  align-items: center;
}
.img-col3.align-right li,
.img-col3.align-right div {
  align-items: flex-end;
}
.img-col3 li,
.img-col3 div {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  gap: 5px;
  position: relative;
  place-items: center center;
}
.img-col3 li img,
.img-col3 div img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  grid-row: 1;
}
.img-col3 li .img-text,
.img-col3 div .img-text {
  width: 100%;
  font-size: 1rem;
  grid-row: 2;
  margin: 0;
  text-align: center;
}
.img-col3 li .img-text.align-left,
.img-col3 div .img-text.align-left {
  text-align: left !important;
}
.img-col3 li .img-text.align-center,
.img-col3 div .img-text.align-center {
  text-align: center !important;
}
.img-col3 li .img-text.align-right,
.img-col3 div .img-text.align-right {
  text-align: right !important;
}
.img-col3 li .no-image,
.img-col3 div .no-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-color: #f6f6f6;
  border-radius: 6px;
  grid-row: 1;
  position: relative;
}
.img-col3 li .no-image::before,
.img-col3 div .no-image::before {
  content: "NO IMAGE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #666;
}

@media print, screen and (min-width: 880px) {
  .img-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .img-col3 li:nth-of-type(3n),
.img-col3 div:nth-of-type(3n) {
    margin-right: 0;
  }
}
.img-col4 {
  display: grid;
  place-items: start center;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
}
.img-col4.align-left li,
.img-col4.align-left div {
  align-items: flex-start;
}
.img-col4.align-center li,
.img-col4.align-center div {
  align-items: center;
}
.img-col4.align-right li,
.img-col4.align-right div {
  align-items: flex-end;
}
.img-col4 li,
.img-col4 div {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  gap: 5px;
  position: relative;
  place-items: center center;
}
.img-col4 li img,
.img-col4 div img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  grid-row: 1;
}
.img-col4 li .img-text,
.img-col4 div .img-text {
  width: 100%;
  font-size: 1rem;
  grid-row: 2;
  margin: 0;
  text-align: center;
}
.img-col4 li .img-text.align-left,
.img-col4 div .img-text.align-left {
  text-align: left !important;
}
.img-col4 li .img-text.align-center,
.img-col4 div .img-text.align-center {
  text-align: center !important;
}
.img-col4 li .img-text.align-right,
.img-col4 div .img-text.align-right {
  text-align: right !important;
}
.img-col4 li .no-image,
.img-col4 div .no-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-color: #f6f6f6;
  border-radius: 6px;
  grid-row: 1;
  position: relative;
}
.img-col4 li .no-image::before,
.img-col4 div .no-image::before {
  content: "NO IMAGE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #666;
}

@media print, screen and (min-width: 880px) {
  .img-col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .img-col4 li:nth-of-type(4n),
.img-col4 div:nth-of-type(4n) {
    margin-right: 0;
  }
}
.center {
  display: grid;
  place-items: center;
}

.photo-space {
  padding: 80px 0 100px 0;
}
.photo-space .list-photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 10px;
  margin-bottom: 60px;
}
.photo-space .list-photo li {
  padding: 10px;
}
.photo-space .list-photo li:nth-child(3n+2) {
  transform: translateY(60px);
}
.photo-space .list-photo li:nth-child(3n) {
  transform: translateY(90px);
}
.photo-space .list-photo li img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1080px) {
  .photo-space .list-photo {
    grid-template-columns: repeat(9, 1fr);
  }
  .photo-space .list-photo li {
    transform: translateY(0) !important;
  }
  .photo-space .list-photo li:nth-child(even) {
    transform: translateY(60px) !important;
  }
}
.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.mb-7 {
  margin-bottom: 70px !important;
}

.mb-8 {
  margin-bottom: 80px !important;
}

.mb-9 {
  margin-bottom: 90px !important;
}

.mb-10 {
  margin-bottom: 100px !important;
}

.point {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
}
.point.white {
  background-color: #fff;
  border: solid 1px #bff1d3;
  color: #1a6639;
}
.point.green {
  background-color: #effce5;
  border: solid 1px #bff1d3;
  color: #1a6639;
}

.tc {
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.gallery .gallery-item {
  font-size: 0;
  border-radius: 10px;
}
.gallery .gallery-item img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.gallery .gallery-item figcaption {
  font-size: 16px;
  text-align: center;
}

.gallery.col-1 {
  grid-template-columns: repeat(1, 1fr);
}

@media print, screen and (min-width: 880px) {
  .gallery.col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery.col-2 {
  grid-template-columns: repeat(1, 1fr);
}

@media print, screen and (min-width: 880px) {
  .gallery.col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery.col-3 {
  grid-template-columns: repeat(1, 1fr);
}

@media print, screen and (min-width: 880px) {
  .gallery.col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery.col-4 {
  grid-template-columns: repeat(1, 1fr);
}

@media print, screen and (min-width: 880px) {
  .gallery.col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery.col-5 {
  grid-template-columns: repeat(1, 1fr);
}

@media print, screen and (min-width: 880px) {
  .gallery.col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.gallery.col-6 {
  grid-template-columns: repeat(1, 1fr);
}

@media print, screen and (min-width: 880px) {
  .gallery.col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
.gallery.col-7 {
  grid-template-columns: repeat(1, 1fr);
}

@media print, screen and (min-width: 880px) {
  .gallery.col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
.gallery.col-8 {
  grid-template-columns: repeat(1, 1fr);
}

@media print, screen and (min-width: 880px) {
  .gallery.col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}
.gallery.col-9 {
  grid-template-columns: repeat(1, 1fr);
}

@media print, screen and (min-width: 880px) {
  .gallery.col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
}
.medium-zoom-overlay {
  z-index: 10000;
}

.medium-zoom-image {
  z-index: 10001;
}

.medium-zoom-image--opened {
  -o-object-fit: contain;
     object-fit: contain;
}

.list-page {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}
.list-page li a {
  display: inline-block;
  padding: 8px;
  line-height: 1;
  text-decoration: none;
  color: #666;
  border-radius: 6px;
  background-color: #f6f6f6;
  border: solid 1px #ddd;
}
.list-page li a:hover {
  background-color: #cbffee;
}
.list-page li a.active {
  background-color: var(--mc);
  border: solid 1px var(--mc);
  color: #fff;
}

.page-numbers {
  display: flex;
  gap: 3px;
}
.page-numbers .page-numbers-prev {
  margin-right: 10px;
}
.page-numbers .page-numbers-next {
  margin-left: 10px;
}
.page-numbers a, .page-numbers span {
  display: inline-block;
  padding: 8px;
  line-height: 1;
  text-decoration: none;
  color: #666;
  border-radius: 6px;
  background-color: #f6f6f6;
  border: solid 1px #ddd;
}
.page-numbers a:hover, .page-numbers span:hover {
  background-color: #cbffee;
}
.page-numbers a.current, .page-numbers span.current {
  background-color: var(--mc);
  border: solid 1px var(--mc);
  color: #fff;
}

.category-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.category-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px 20px 20px;
  background-color: #f6f6f6;
  box-shadow: 0 0 0 0 #ddd;
  transition: all 0.3s ease;
  font-size: 20px;
  text-decoration: none;
  border: solid 1px transparent;
  border-radius: 10px;
  color: var(--mc);
}
.category-list li a::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--sc1);
  border-radius: 50%;
}
.category-list li a:hover {
  border: solid 1px var(--mc);
  box-shadow: 0 10px 10px 0 #eee;
  transform: translateY(-5px);
}

@media print, screen and (min-width: 880px) {
  .category-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.dl-news-list {
  display: grid;
  grid-template-columns: 120px 1fr;
  margin-bottom: 30px;
}
.dl-news-list dt {
  border-radius: 6px 0 0 6px;
  color: #666;
}
.dl-news-list dd {
  border-radius: 0 6px 6px 0;
}
.dl-news-list dt, .dl-news-list dd {
  padding: 10px;
}
.dl-news-list dt:nth-of-type(even), .dl-news-list dd:nth-of-type(even) {
  background-color: #f6f6f6;
}

.dl-form {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #f4fdf8;
  border: solid 1px #9cc5af;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 20px;
}
.dl-form p {
  margin-bottom: 0 !important;
}
.dl-form dt {
  font-weight: bold;
  color: #23924f;
  padding-bottom: 0 !important;
}
.dl-form dt, .dl-form dd {
  display: grid;
  place-items: center start;
  padding: 10px 10px;
}
.dl-form dt input[type=text], .dl-form dt input[type=email], .dl-form dt input[type=tel], .dl-form dt input[type=number], .dl-form dd input[type=text], .dl-form dd input[type=email], .dl-form dd input[type=tel], .dl-form dd input[type=number] {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
  border: solid 1px #9cc5af;
}
.dl-form dt input[type=text].full, .dl-form dt input[type=email].full, .dl-form dt input[type=tel].full, .dl-form dt input[type=number].full, .dl-form dd input[type=text].full, .dl-form dd input[type=email].full, .dl-form dd input[type=tel].full, .dl-form dd input[type=number].full {
  width: 100%;
}
.dl-form dt input[type=text].mid, .dl-form dt input[type=email].mid, .dl-form dt input[type=tel].mid, .dl-form dt input[type=number].mid, .dl-form dd input[type=text].mid, .dl-form dd input[type=email].mid, .dl-form dd input[type=tel].mid, .dl-form dd input[type=number].mid {
  width: 50%;
}
.dl-form dt input[type=text].short, .dl-form dt input[type=email].short, .dl-form dt input[type=tel].short, .dl-form dt input[type=number].short, .dl-form dd input[type=text].short, .dl-form dd input[type=email].short, .dl-form dd input[type=tel].short, .dl-form dd input[type=number].short {
  width: 20%;
}
.dl-form dt input[type=text].mini, .dl-form dt input[type=email].mini, .dl-form dt input[type=tel].mini, .dl-form dt input[type=number].mini, .dl-form dd input[type=text].mini, .dl-form dd input[type=email].mini, .dl-form dd input[type=tel].mini, .dl-form dd input[type=number].mini {
  width: 5em;
}
.dl-form dd:not(:last-of-type) {
  border-bottom: dotted 1px #d8dad8;
}

@media print, screen and (min-width: 880px) {
  .dl-form {
    grid-template-columns: 200px 1fr;
    padding: 20px;
  }
  .dl-form dt, .dl-form dd {
    padding: 20px 10px;
  }
  .dl-form dt:not(:last-of-type), .dl-form dd:not(:last-of-type) {
    border-bottom: dotted 1px #d8dad8;
  }
}
.list-disc {
  margin-bottom: 30px;
}
.list-disc li {
  text-indent: -20px;
  padding-left: 20px;
}
.list-disc li:not(:last-of-type) {
  margin-bottom: 10px;
}
.list-disc li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #449564;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.list-asta {
  margin-bottom: 30px;
}
.list-asta li {
  position: relative;
  padding-left: 20px;
}
.list-asta li:not(:last-of-type) {
  margin-bottom: 10px;
}
.list-asta li::before {
  content: "※";
  position: absolute;
  left: 0;
}

ol.list-num {
  margin-bottom: 30px;
  padding-left: 1em;
}
ol.list-num li:not(:last-of-type) {
  margin-bottom: 10px;
}

.point-wrap span {
  display: inline-block;
  padding: 2px 10px;
  margin: 1px;
  border-radius: 6px;
  background-color: var(--lc);
  color: var(--mc-dark);
}

.mce-content-body p {
  margin-bottom: 20px;
}

.h2-notice {
  display: block;
  background: var(--grad);
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 10px;
}

.h3-notice {
  display: inline-block;
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 20px;
  margin-bottom: 10px;
}

.password-form {
  display: flex;
  gap: 10px;
}
.password-form input[type=password] {
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
  outline: none;
  border: solid 1px #ccc;
  line-height: 1;
}
.password-form input[type=submit] {
  font-size: 16px;
  padding: 10px 20px;
  line-height: 1;
  border-radius: 6px;
  background-color: #449564;
  border: solid 1px #449564;
  color: #fff;
  cursor: pointer;
}
.password-form input[type=submit]:hover {
  background-color: #2e774d;
}

.list-link {
  display: grid;
  grid-template-columns: 1fr;
}
.list-link li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 6px;
  color: #666;
  text-decoration: none;
  color: var(--mc-dark);
}
.list-link li a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: var(--sc1) var(--sc2) transparent transparent;
  transform: rotate(45deg) translateY(-2px);
}

.dl-list-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: solid 2px var(--mc);
  margin-bottom: 40px;
}
.dl-list-1 dt {
  background-color: var(--lc);
  color: var(--mc-dark);
  font-weight: bold;
}
.dl-list-1 dd {
  background-color: #f6f6f6;
}
.dl-list-1 dt, .dl-list-1 dd {
  padding: 10px 15px;
  box-shadow: 0 0 1px var(--mc);
}

@media print, screen and (min-width: 880px) {
  .dl-list-1 {
    grid-template-columns: 160px 1fr;
  }
  .dl-list-1 dt, .dl-list-1 dd {
    padding: 20px;
  }
}
.dl-list-auto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: solid 2px var(--mc);
  margin-bottom: 40px;
}
.dl-list-auto dt {
  background-color: var(--lc);
  color: var(--mc-dark);
  font-weight: bold;
}
.dl-list-auto dd {
  background-color: #f6f6f6;
}
.dl-list-auto dt, .dl-list-auto dd {
  padding: 10px 15px;
  box-shadow: 0 0 1px var(--mc);
}

@media print, screen and (min-width: 880px) {
  .dl-list-auto {
    grid-template-columns: auto 1fr;
  }
  .dl-list-auto dt, .dl-list-auto dd {
    padding: 20px;
  }
}
.btn-wrap {
  text-align: center;
  margin-bottom: 30px;
}
.btn-wrap .btn {
  display: inline-block;
  padding: 10px 40px;
  text-decoration: none;
  border-radius: 6px;
}
.btn-wrap .btn.link {
  background-color: var(--sc3);
  color: #6c2a00;
  font-weight: bold;
}
.btn-wrap .wpcf7-submit {
  background-color: var(--sc3);
  color: #3f1800;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 80px;
  border-radius: 6px;
  cursor: pointer;
}

.dl-flow {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 60px;
}
.dl-flow dt:nth-of-type(even), .dl-flow dd:nth-of-type(even) {
  background-color: #f8f8f8;
}
.dl-flow dt {
  padding: 10px 20px 0;
  font-weight: bold;
  color: var(--mc-dark);
  position: relative;
  border-left: solid 1px var(--mc);
}
.dl-flow dt::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: solid 3px var(--mc);
  border-radius: 50%;
  position: absolute;
  top: 21px;
  left: 0;
  transform: translate(-50%, -50%);
}
.dl-flow dd {
  padding: 10px 20px;
  border-left: solid 1px var(--mc);
  position: relative;
  border-bottom: solid 1px var(--lc);
}
.dl-flow dd .head {
  font-weight: bold;
  color: var(--mc-dark);
  margin-bottom: 10px;
}

@media print, screen and (min-width: 880px) {
  .dl-flow {
    grid-template-columns: auto 1fr;
  }
  .dl-flow dt {
    padding: 20px;
    text-align: right;
    border-left: none;
    border-bottom: solid 1px var(--lc);
  }
  .dl-flow dt::before {
    content: none;
  }
  .dl-flow dd {
    padding: 20px;
  }
  .dl-flow dd::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: solid 3px var(--mc);
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 0;
    transform: translate(-50%, -50%);
  }
  .dl-flow dd .head {
    margin-bottom: 10px;
  }
}
.timeline {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.timeline .block .time-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.timeline .block .time-wrap .clock-8-30 {
  width: 50px;
  height: 50px;
  border: solid 2px #449564;
  border-radius: 50%;
  position: relative;
}
.timeline .block .time-wrap .clock-8-30 span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-8-30 span::before {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 15px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(255deg);
}
.timeline .block .time-wrap .clock-8-30 span::after {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 20px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-9-30 {
  width: 50px;
  height: 50px;
  border: solid 2px #449564;
  border-radius: 50%;
  position: relative;
}
.timeline .block .time-wrap .clock-9-30 span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-9-30 span::before {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 15px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(285deg);
}
.timeline .block .time-wrap .clock-9-30 span::after {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 20px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-11-0 {
  width: 50px;
  height: 50px;
  border: solid 2px #449564;
  border-radius: 50%;
  position: relative;
}
.timeline .block .time-wrap .clock-11-0 span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-11-0 span::before {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 15px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(330deg);
}
.timeline .block .time-wrap .clock-11-0 span::after {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 20px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}
.timeline .block .time-wrap .clock-11-30 {
  width: 50px;
  height: 50px;
  border: solid 2px #449564;
  border-radius: 50%;
  position: relative;
}
.timeline .block .time-wrap .clock-11-30 span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-11-30 span::before {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 15px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(345deg);
}
.timeline .block .time-wrap .clock-11-30 span::after {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 20px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-12-30 {
  width: 50px;
  height: 50px;
  border: solid 2px #449564;
  border-radius: 50%;
  position: relative;
}
.timeline .block .time-wrap .clock-12-30 span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-12-30 span::before {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 15px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(375deg);
}
.timeline .block .time-wrap .clock-12-30 span::after {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 20px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-13-40 {
  width: 50px;
  height: 50px;
  border: solid 2px #449564;
  border-radius: 50%;
  position: relative;
}
.timeline .block .time-wrap .clock-13-40 span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-13-40 span::before {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 15px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(410deg);
}
.timeline .block .time-wrap .clock-13-40 span::after {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 20px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(240deg);
}
.timeline .block .time-wrap .clock-14-0 {
  width: 50px;
  height: 50px;
  border: solid 2px #449564;
  border-radius: 50%;
  position: relative;
}
.timeline .block .time-wrap .clock-14-0 span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-14-0 span::before {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 15px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(420deg);
}
.timeline .block .time-wrap .clock-14-0 span::after {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 20px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}
.timeline .block .time-wrap .clock-18-0 {
  width: 50px;
  height: 50px;
  border: solid 2px #449564;
  border-radius: 50%;
  position: relative;
}
.timeline .block .time-wrap .clock-18-0 span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.timeline .block .time-wrap .clock-18-0 span::before {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 15px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(540deg);
}
.timeline .block .time-wrap .clock-18-0 span::after {
  content: "";
  transform-origin: 1px 1px;
  width: 2px;
  height: 20px;
  background-color: #449564;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}
.timeline .block .time-wrap .time {
  font-size: 30px;
  font-weight: bold;
  color: var(--mc);
}
.timeline .block .img-wrap {
  overflow: hidden;
  border-radius: 20px;
  font-size: 0;
  margin-bottom: 5px;
}
.timeline .block .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.timeline .block p {
  text-align: center;
}

@media print, screen and (min-width: 880px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}
#map {
  position: relative;
  text-align: center;
}
#map svg {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1/2.866;
}
#map svg a {
  cursor: pointer;
}
#map svg a:hover > rect, #map svg a:hover > path, #map svg a:hover > polygon {
  fill: #ffe88c !important;
}

.modal__wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  pointer-events: all;
  z-index: 10000;
}
.modal__wrapper.is-hidden {
  display: block;
  -webkit-animation: fadeOut 0.5s forwards;
          animation: fadeOut 0.5s forwards;
}
.modal__wrapper.is-active {
  display: block;
  -webkit-animation: fadeIn 0.5s forwards;
          animation: fadeIn 0.5s forwards;
}
.modal__wrapper .modal__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.modal__wrapper .modal__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  z-index: 10000;
  min-width: 360px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}
.modal__wrapper .modal__content .modal__header {
  width: 100%;
}
.modal__wrapper .modal__content h2 {
  font-size: 20px;
  margin-right: 40px;
  color: var(--mc);
}
.modal__wrapper .modal__content .modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 26px;
  color: #666;
  width: 30px;
  height: 30px;
  display: grid;
  align-items: center;
  outline: none;
  border: none;
  background-color: #fff;
  border-radius: 6px;
}
.modal__wrapper .modal__content .modal__close:hover {
  background-color: #f6f6f6;
}
.modal__wrapper .modal__content .img__wrapper {
  position: relative;
  overflow: hidden;
}
.modal__wrapper .modal__content .img__wrapper img {
  width: 100%;
  height: auto;
}

@media print, screen and (min-width: 880px) {
  .modal__wrapper .modal__content {
    max-width: 800px;
  }
  .modal__wrapper .modal__content h2 {
    font-size: 24px;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}
svg [data-name] {
  cursor: pointer;
}
svg [data-name]:hover > rect, svg [data-name]:hover > path, svg [data-name]:hover > polygon {
  fill: #ffe88c !important;
}