@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

html {
  font-size: 10px;
}

body {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.8rem;
  line-height: 1.75;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  max-width: 100%;
  line-height: 1;
}

footer {
  background: #312926;
  text-align: center;
  color: #fff;
  font-size: 11px;
  padding: 20px;
}

.btn {
  text-align: center;
}
.btn a {
  background: #AACF52;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 9999px;
  padding: 10px 30px;
  text-decoration: none;
  display: block;
  max-width: 400px;
  margin: 0 auto 30px;
  font-size: 25px;
  font-weight: 700;
}
.btn a:hover {
  background: #E55D69;
}

.zoom {
  opacity: 0;
  -webkit-transform: translateY(50px) scale(0.5);
          transform: translateY(50px) scale(0.5);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  will-change: transform, opacity;
}
.zoom.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.zoom.is-visible.text {
  font-size: 35px;
  line-height: 1.3;
}

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

.wrapper .loading__wrapper {
  display: none;
}
.wrapper .loading__wrapper.is-active {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  width: 100%;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #AACF52;
  z-index: 300;
  overflow: hidden;
}
.wrapper .loading__wrapper .loading__contents {
  text-align: center;
}
.wrapper .loading__wrapper .loading__contents .loading__list {
  width: 768px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .wrapper .loading__wrapper .loading__contents .loading__list {
    width: 60%;
    margin: 0 auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.wrapper .loading__wrapper .loading__contents .loading__list .loading__item {
  width: 210px;
  height: 310px;
  background: url(../img/neko.png) no-repeat;
  -webkit-animation: loading 2s infinite;
          animation: loading 2s infinite;
}
@media screen and (max-width: 768px) {
  .wrapper .loading__wrapper .loading__contents .loading__list .loading__item {
    width: 33%;
    background-size: 90%;
    display: inline-block;
    background-position: center;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .loading__wrapper .loading__contents .loading__list .loading__item {
    height: 150px;
  }
}
@media screen and (max-width: 350px) {
  .wrapper .loading__wrapper .loading__contents .loading__list .loading__item {
    height: 100px;
  }
}
.wrapper .loading__wrapper .loading__contents .loading__list .loading__item:nth-child(2) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.wrapper .loading__wrapper .loading__contents .loading__list .loading__item:nth-child(3) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
.wrapper .loading__wrapper .loading__contents .load__logo {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .wrapper .loading__wrapper .loading__contents .load__logo {
    margin: 10px auto 0;
    width: 60%;
  }
  .wrapper .loading__wrapper .loading__contents .load__logo img {
    width: 100%;
    height: auto;
  }
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  48% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  55% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  48% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  55% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.wrapper {
  position: relative;
  overflow: hidden;
}
.wrapper .header__wrapper {
  background: #FFF;
  width: 100%;
  height: 160px;
  z-index: 100;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  .wrapper .header__wrapper {
    height: 130px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper .header__wrapper {
    height: 120px;
  }
}
.wrapper .header__wrapper .header__inner {
  width: 1080px;
  margin: 0 auto 20px;
  padding-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .wrapper .header__wrapper .header__inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper .header__wrapper .header__inner {
    padding-top: 10px;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .header__wrapper .header__inner {
    width: 90%;
  }
}
@media screen and (max-width: 960px) {
  .wrapper .header__wrapper .header__inner h1 {
    width: 17%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper .header__wrapper .header__inner h1 {
    width: auto;
  }
}
.wrapper .header__wrapper .header__inner h1 img.normal {
  display: block;
}
.wrapper .header__wrapper .header__inner h1 img.shrink {
  display: none;
}
@media screen and (max-width: 960px) {
  .wrapper .header__wrapper .header__inner h1 img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .wrapper .header__wrapper .header__inner h1 img {
    width: 80%;
  }
}
.wrapper .header__wrapper .header__inner #nav__toggle {
  display: none;
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  bottom: 0;
  right: 0px;
  margin: auto;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .wrapper .header__wrapper .header__inner #nav__toggle {
    display: block;
  }
}
.wrapper .header__wrapper .header__inner #nav__toggle div {
  position: relative;
}
.wrapper .header__wrapper .header__inner #nav__toggle span {
  display: block;
  height: 2px;
  background: #fff;
  position: absolute;
  width: 30px;
  left: 15px;
  border-radius: 1px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.wrapper .header__wrapper .header__inner #nav__toggle span:nth-child(1) {
  top: 20px;
}
.wrapper .header__wrapper .header__inner #nav__toggle span:nth-child(2) {
  top: 30px;
}
.wrapper .header__wrapper .header__inner #nav__toggle span:nth-child(3) {
  top: 40px;
  width: 18px;
}
.wrapper .header__wrapper .header__inner .nav__wrapper {
  position: relative;
  width: 75%;
}
@media screen and (max-width: 1080px) {
  .wrapper .header__wrapper .header__inner .nav__wrapper {
    width: 79%;
  }
}
@media screen and (max-width: 960px) {
  .wrapper .header__wrapper .header__inner .nav__wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper .header__wrapper .header__inner .nav__wrapper {
    display: none;
  }
}
.wrapper .header__wrapper .header__inner .nav__wrapper .nav__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 35px;
}
@media screen and (max-width: 960px) {
  .wrapper .header__wrapper .header__inner .nav__wrapper .nav__contents {
    padding-top: 50px;
  }
}
.wrapper .header__wrapper .header__inner .nav__wrapper .nav__contents .nav__list::before {
  content: "";
  background: url(../img/nekomimi.png) no-repeat 10px bottom;
  display: inline-block;
  width: 100%;
  height: 20px;
  position: relative;
  z-index: -1;
}
.wrapper .header__wrapper .header__inner .nav__wrapper .nav__contents .nav__list .nav__link {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background: #F6F2A4;
  border-radius: 60px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  text-decoration: none;
  padding: 15px 20px;
  display: inline-block;
  margin-top: -20px;
}
@media screen and (max-width: 1080px) {
  .wrapper .header__wrapper .header__inner .nav__wrapper .nav__contents .nav__list .nav__link {
    padding: 15px 12px;
  }
}
@media screen and (max-width: 960px) {
  .wrapper .header__wrapper .header__inner .nav__wrapper .nav__contents .nav__list .nav__link {
    font-size: 14px;
    padding: 12px 11px;
  }
}
.wrapper .header__wrapper .header__inner .nav__wrapper .nav__contents .nav__list .nav__link.qa__link {
  padding: 15px 30px;
}
@media screen and (max-width: 960px) {
  .wrapper .header__wrapper .header__inner .nav__wrapper .nav__contents .nav__list .nav__link.qa__link {
    padding: 12px 15px;
  }
}
.wrapper .header__wrapper .header__inner .nav__wrapper .nav__contents .donate::before {
  background: url(../img/nekomimi02.png) no-repeat 10px bottom;
}
.wrapper .header__wrapper .header__inner .nav__wrapper .nav__contents .donate .nav__link {
  background: #AACF52;
}
.wrapper .header__wrapper .header__inner .nav__wrapper .sns__contents {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.wrapper .header__wrapper .header__inner .nav__wrapper .sns__contents .sns__list {
  margin-left: 10px;
}
.wrapper .header__wrapper .header__inner .nav__wrapper .sns__contents .lang a {
  background: #000;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  padding: 10px;
}
.wrapper .header__wrapper .header__inner .nav__wrapper .sns__contents .lang a::before {
  content: "▶︎";
  margin-right: 5px;
  font-size: 11px;
}
.wrapper .header__wrapper.shrink {
  background: rgba(240, 246, 225, 0.9);
  height: 100px;
  position: fixed;
}
@media screen and (max-width: 768px) {
  .wrapper .header__wrapper.shrink {
    height: 90px;
    padding-top: 10px;
  }
}
.wrapper .header__wrapper.shrink .header__inner {
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .wrapper .header__wrapper.shrink .header__inner {
    padding-top: 0;
  }
}
.wrapper .header__wrapper.shrink .header__inner h1 img.normal {
  display: none;
}
.wrapper .header__wrapper.shrink .header__inner h1 img.shrink {
  display: block;
}
.wrapper .header__wrapper.shrink .header__inner .nav__wrapper .nav__contents {
  padding-top: 45px;
}
.wrapper .header__wrapper.shrink .header__inner .nav__wrapper .nav__contents .nav__list::before {
  content: none;
}
.wrapper .header__wrapper.shrink .header__inner .nav__wrapper .nav__contents .nav__list .nav__link {
  background: none;
  padding-bottom: 20px;
}
.wrapper .header__wrapper.open {
  background: #AACF52;
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100% !important;
  height: 100vh !important;
}
.wrapper .header__wrapper.open .header__inner {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  padding-top: 10px;
}
.wrapper .header__wrapper.open .header__inner #nav__toggle {
  top: 20px;
  bottom: auto;
}
.wrapper .header__wrapper.open .header__inner #nav__toggle span {
  left: 11px;
}
.wrapper .header__wrapper.open .header__inner #nav__toggle span:nth-child(1) {
  top: 30px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 40px;
}
.wrapper .header__wrapper.open .header__inner #nav__toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.wrapper .header__wrapper.open .header__inner #nav__toggle span:nth-child(3) {
  top: 30px;
  width: 40px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.wrapper .header__wrapper.open .header__inner .nav__wrapper {
  display: block;
  width: 100%;
}
.wrapper .header__wrapper.open .header__inner .nav__wrapper .nav__contents {
  display: block;
  padding: 30px 0;
}
.wrapper .header__wrapper.open .header__inner .nav__wrapper .nav__contents .nav__list {
  text-align: center;
  margin-bottom: 10px;
}
.wrapper .header__wrapper.open .header__inner .nav__wrapper .nav__contents .nav__list .nav__link, .wrapper .header__wrapper.open .header__inner .nav__wrapper .nav__contents .nav__list .nav__link.qa__link {
  background: none;
  font-size: 18px;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  padding: 0 0 10px;
  display: block;
  width: 100%;
  margin: 0;
}
.wrapper .header__wrapper.open .header__inner .nav__wrapper .sns__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: static;
}
.wrapper .header__wrapper.open .header__inner .nav__wrapper .sns__contents li {
  margin: 0 10px;
}
.wrapper .header__wrapper.open .header__inner .nav__wrapper .sns__contents li img {
  width: 45px;
  height: 45px;
}
.wrapper .hero__wrapper {
  text-align: center;
  width: 100%;
  height: 100vh;
  position: relative;
  padding-top: 160px;
  background: url(../img/hero-PC.png) no-repeat bottom #AACF52;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .wrapper .hero__wrapper {
    padding-top: 130px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper .hero__wrapper {
    padding-top: 120px;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .hero__wrapper {
    background: url(../img/hero-SP.png) no-repeat bottom #AACF52;
    background-size: contain;
  }
}
.wrapper .hero__wrapper .hero__copy {
  position: absolute;
  left: 0;
  right: 0;
  top: 32%;
}
.wrapper .hero__wrapper .hero__copy img {
  display: inline;
  height: 50vh;
}
.wrapper .hero__wrapper .scroll {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  padding-bottom: 10px;
}
.wrapper .hero__wrapper .scroll .js-scroll {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .main__contents .section__wrapper {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents .section__wrapper {
    margin-bottom: 20px;
  }
}
.wrapper .main__contents .section__wrapper h2 {
  background: url(../img/h2_bg.png) repeat-x;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 55px;
  line-height: 1.3;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents .section__wrapper h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents .section__wrapper h2 {
    background: #AACF52;
  }
}
.wrapper .main__contents .section__wrapper .inner {
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .wrapper .main__contents .section__wrapper .inner {
    width: 90%;
  }
}
.wrapper .main__contents .section__wrapper .inner strong {
  font-weight: 700;
}
.wrapper .main__contents .section__wrapper .inner p {
  margin-bottom: 25px;
}
.wrapper .main__contents .section__wrapper .inner p:last-child {
  margin-bottom: 0;
}
.wrapper .main__contents .section__wrapper .inner__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents .section__wrapper .inner__flex {
    display: block;
  }
}
.wrapper .main__contents .section__wrapper .inner__flex .l__contents,
.wrapper .main__contents .section__wrapper .inner__flex .r__contents {
  width: 48%;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents .section__wrapper .inner__flex .l__contents,
  .wrapper .main__contents .section__wrapper .inner__flex .r__contents {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents .section__wrapper .inner__flex .l__contents {
    margin-bottom: 30px;
  }
}
.wrapper .main__contents .section__wrapper .inner__center {
  text-align: center;
}
.wrapper .main__contents #npo {
  padding-top: 60px;
  margin-bottom: 0;
}
.wrapper .main__contents #npo .inner {
  background: rgba(235, 224, 46, 0.6);
  padding: 3%;
}
.wrapper .main__contents #npo h2.ttl {
  padding: 0;
  background: none;
  margin-bottom: 5%;
}
.wrapper .main__contents #npo h2.ttl img {
  width: 100%;
  height: auto;
}
.wrapper .main__contents #npo h2.taking {
  font-size: 45px;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo h2.taking {
    font-size: 30px;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #npo h2.taking {
    font-size: 25px;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #npo h2.taking {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.wrapper .main__contents #npo h2.taking::before, .wrapper .main__contents #npo h2.taking::after {
  content: "";
  margin: 0 0.3em;
  display: inline-block;
  width: 20px;
  height: 55px;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #npo h2.taking::before, .wrapper .main__contents #npo h2.taking::after {
    width: 10px;
  }
}
.wrapper .main__contents #npo h2.taking::before {
  border-left: 10px #E55D69 double;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo h2.taking::before {
    margin-right: 15px;
  }
}
.wrapper .main__contents #npo h2.taking::after {
  border-left: 10px #E55D69 double;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo h2.taking::after {
    margin-left: 15px;
  }
}
.wrapper .main__contents #npo h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 20px;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #npo h3 {
    font-size: 20px;
  }
}
.wrapper .main__contents #npo .flex__donation {
  margin-bottom: 60px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo .flex__donation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .main__contents #npo .flex__donation .l__contents {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo .flex__donation .l__contents {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.wrapper .main__contents #npo .flex__donation .r__contents {
  width: calc(100% - 300px);
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo .flex__donation .r__contents {
    width: 100%;
  }
}
.wrapper .main__contents #npo .flex__support {
  gap: 60px;
  margin-bottom: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo .flex__support {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .main__contents #npo .flex__support .l__contents {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo .flex__support .l__contents {
    width: 100%;
  }
}
.wrapper .main__contents #npo .flex__support .l__contents figure {
  text-align: center;
}
.wrapper .main__contents #npo .flex__support .l__contents figure img {
  display: inline-block;
}
.wrapper .main__contents #npo .flex__support .l__contents .pannel {
  background: #fff;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo .flex__support .r__contents {
    width: 100%;
  }
}
.wrapper .main__contents #npo .flex__support .r__contents ul {
  margin-bottom: 30px;
}
.wrapper .main__contents #npo .flex__support .r__contents ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper .main__contents #npo .flex__support .r__contents ul li::before {
  content: "";
  background: url(../img/arrow.svg) no-repeat center left;
  background-size: contain;
  margin-right: 10px;
  width: 28px;
  height: 16px;
}
.wrapper .main__contents #npo .flex__support .r__contents .pannel {
  background: #fff;
  padding: 20px;
  border-top: 10px solid #E55D69;
  border-bottom: 10px solid #E55D69;
}
.wrapper .main__contents #npo .flex__ccc {
  gap: 30px;
  width: 90%;
  margin: 0 auto;
  border-top: 3px solid #fff;
  padding-top: 50px;
  margin-top: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo .flex__ccc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.wrapper .main__contents #npo .flex__ccc .l__contents {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo .flex__ccc .l__contents {
    width: 100%;
    text-align: center;
  }
}
.wrapper .main__contents #npo .flex__ccc .l__contents img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo .flex__ccc .l__contents img {
    width: 50%;
  }
}
.wrapper .main__contents #npo .flex__ccc .l__contents figcaption {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding-top: 10px;
}
.wrapper .main__contents #npo .flex__ccc .r__contents {
  width: calc(100% - 230px);
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #npo .flex__ccc .r__contents {
    width: 100%;
  }
}
.wrapper .main__contents #about .l__contents {
  width: 52%;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #about .l__contents {
    width: 100%;
  }
}
.wrapper .main__contents #about .l__contents p {
  border-left: 10px solid #AACF52;
  padding-left: 20px;
}
.wrapper .main__contents #about .l__contents p span {
  font-size: 22px;
}
.wrapper .main__contents #about .r__contents {
  width: 45%;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #about .r__contents {
    width: 100%;
  }
}
.wrapper .main__contents #about .r__contents .activities__contents {
  background: #EFF4DA;
  padding: 25px 15px 10px;
  -webkit-box-shadow: 4px 4px 0px 0px #D8D8D8;
          box-shadow: 4px 4px 0px 0px #D8D8D8;
  border-radius: 10px;
  text-align: center;
}
.wrapper .main__contents #about .r__contents .activities__contents h3 {
  font-size: 26px;
  font-weight: 700;
  border-bottom: 5px solid #fff;
  padding-bottom: 15px;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.2;
}
.wrapper .main__contents #about .r__contents .activities__contents .action__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  margin-bottom: 20px;
}
.wrapper .main__contents #about .r__contents .activities__contents .action__list .action__item {
  margin: 0 10px 10px;
}
.wrapper .main__contents #tnr h3 {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #tnr h3 {
    font-size: 30px;
  }
}
.wrapper .main__contents #tnr h3 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #EFF4DA));
  background: -webkit-linear-gradient(transparent 50%, #EFF4DA 50%);
  background: linear-gradient(transparent 50%, #EFF4DA 50%);
  padding: 0 15px 10px;
}
.wrapper .main__contents #tnr .inner__flex {
  margin-bottom: 70px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #tnr .inner__flex {
    display: block;
  }
}
.wrapper .main__contents #tnr .inner__flex .l__contents {
  width: 43%;
}
@media screen and (max-width: 960px) {
  .wrapper .main__contents #tnr .inner__flex .l__contents {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #tnr .inner__flex .l__contents {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}
.wrapper .main__contents #tnr .inner__flex .l__contents p strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #EFF4DA));
  background: -webkit-linear-gradient(transparent 50%, #EFF4DA 50%);
  background: linear-gradient(transparent 50%, #EFF4DA 50%);
  padding: 0 2px 5px;
}
.wrapper .main__contents #tnr .inner__flex .r__contents {
  width: 55%;
}
@media screen and (max-width: 960px) {
  .wrapper .main__contents #tnr .inner__flex .r__contents {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #tnr .inner__flex .r__contents {
    width: 100%;
    text-align: center;
  }
}
.wrapper .main__contents #tnr .inner__flex .r__contents img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #tnr .inner__flex .r__contents img {
    width: 70%;
    display: inline;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #tnr .inner__flex .r__contents img {
    width: 100%;
  }
}
.wrapper .main__contents #tnr .inner__center img {
  display: inline-block;
}
@media screen and (max-width: 1080px) {
  .wrapper .main__contents #tnr .inner__center img {
    width: 100%;
    height: auto;
  }
}
.wrapper .main__contents #increase {
  padding: 0;
  margin-bottom: 0;
}
.wrapper .main__contents #increase .increase__block {
  background: rgba(235, 224, 46, 0.6);
  padding: 30px;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #increase .increase__block {
    padding: 15px;
  }
}
.wrapper .main__contents #increase .increase__block ol {
  margin-bottom: 30px;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #increase .increase__block ol {
    margin-bottom: 20px;
  }
}
.wrapper .main__contents #increase .increase__block ol li {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #increase .increase__block ol li {
    margin-bottom: 0;
  }
}
.wrapper .main__contents #increase .increase__block ol li ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 30px;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #increase .increase__block ol li ul {
    gap: 10px;
  }
}
.wrapper .main__contents #qa .qa__contents dl {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #qa .qa__contents dl {
    font-size: 18px;
  }
}
.wrapper .main__contents #qa .qa__contents dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  font-weight: 700;
  background: rgba(235, 224, 46, 0.6);
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #qa .qa__contents dl dt {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 15px;
  }
}
.wrapper .main__contents #qa .qa__contents dl dt::before {
  content: "";
  background: url(../img/icon_q.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 12%;
  width: 60px;
  height: 60px;
  background-size: 100%;
  margin-right: 20px;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #qa .qa__contents dl dt::before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
.wrapper .main__contents #qa .qa__contents dl dt div {
  width: 85%;
}
.wrapper .main__contents #qa .qa__contents dl dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  margin-bottom: 20px;
  background: rgba(235, 224, 46, 0.25);
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #qa .qa__contents dl dd {
    padding: 15px;
  }
}
.wrapper .main__contents #qa .qa__contents dl dd::before {
  content: "";
  background: url(../img/icon_a.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 12%;
  width: 60px;
  height: 60px;
  background-size: 100%;
  margin-right: 20px;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #qa .qa__contents dl dd::before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
.wrapper .main__contents #qa .qa__contents dl dd div {
  width: 85%;
}
.wrapper .main__contents #future .wrap__net {
  background: url(../img/bg_net.png) repeat;
  padding-bottom: 50px;
}
.wrapper .main__contents #future h2 span {
  font-size: 25px;
}
.wrapper .main__contents #future .inner {
  text-align: center;
}
.wrapper .main__contents #future .inner .hardship {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
  margin-bottom: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #future .inner .hardship {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .main__contents #future .inner .hardship li {
  width: calc((100% - 40px) / 3);
  background: #D1E2AA;
  padding: 10px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #future .inner .hardship li {
    width: 100%;
  }
}
.wrapper .main__contents #future .inner .caution {
  font-weight: 700;
  font-size: 30px;
}
.wrapper .main__contents #future .inner .caution::after {
  content: "";
  background: url(../img/caution_arrow.png) no-repeat;
  background-size: contain;
  display: block;
  height: 92px;
  max-width: 530px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #future .inner .caution::after {
    content: none;
  }
}
.wrapper .main__contents #future .inner .future__after {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #future .inner .future__after {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .main__contents #future .inner .future__after .after {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #future .inner .future__after .after {
    width: 100%;
  }
}
.wrapper .main__contents #future .inner .future__after .after h3 {
  background: #E9AC2C;
  border-radius: 10px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  padding: 5px 10px;
  color: #fff;
}
.wrapper .main__contents #future .inner .future__after .after .future__cont {
  max-width: 390px;
  margin: 0 auto;
}
.wrapper .main__contents #future .inner .future__after .after h4 {
  margin-top: -10px;
}
.wrapper .main__contents #future .inner .future__after .after p {
  border: 2px solid #AACF52;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  text-align: left;
}
.wrapper .main__contents #future .inner .future__after .after figure {
  margin-bottom: 20px;
}
.wrapper .main__contents #future .inner .future__after .after figure figcaption {
  font-size: 18px;
  font-weight: 700;
  background: #D1E2AA;
  padding: 10px;
  line-height: 1.3;
}
.wrapper .main__contents #future .inner .future__after .after .action {
  background: #AACF52;
  border-radius: 0 0 20px 20px;
  padding: 40px 20px 10px;
  margin-top: -35px;
  text-align: left;
}
.wrapper .main__contents #future .inner .future__after .after .arrow::after {
  content: "";
  background: url(../img/future_arrow.png) no-repeat;
  background-size: contain;
  width: 75px;
  height: 97px;
  display: block;
  margin: 0 auto;
}
.wrapper .main__contents #future .inner .future__after .after .line::after {
  content: "";
  background: rgba(235, 224, 46, 0.6);
  width: 25px;
  height: 15px;
  display: block;
  margin: 0 auto;
}
.wrapper .main__contents #future .inner .future__after .after .line.long::after {
  height: 25px;
}
.wrapper .main__contents #cost {
  position: relative;
}
.wrapper .main__contents #cost .fukidasi {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}
.wrapper .main__contents #cost .fukidasi::after {
  content: "";
  background: url(../img/fukidasi.png) no-repeat;
  background-size: contain;
  height: 52px;
  width: 270px;
  display: block;
  margin: -30px auto 0;
}
.wrapper .main__contents #cost .inner h3 {
  background: #fff;
  border: 8px solid #AACF52;
  border-radius: 10px;
  padding: 20px 80px;
  font-size: 25px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #cost .inner h3 {
    padding: 20px 50px;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #cost .inner h3 {
    padding: 20px;
    font-size: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #cost .inner__flex {
    display: block;
  }
}
.wrapper .main__contents #cost .inner__flex .need {
  border: 2px solid #AACF52;
  border-radius: 20px 20px 0 0;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.wrapper .main__contents #cost .inner__flex .need .txt__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .main__contents #cost .inner__flex .need .txt__block::before {
  content: "";
  background: url(../img/icon__need.png) no-repeat;
  width: 50px;
  height: 115px;
  background-size: contain;
  display: block;
}
.wrapper .main__contents #cost .inner__flex .need .txt__block .txt {
  width: calc(100% - 65px);
}
.wrapper .main__contents #cost .inner__flex .need .txt__block .txt span {
  font-weight: 700;
  font-size: 20px;
}
.wrapper .main__contents #cost .inner__flex .need .txt__block .txt .txt-r {
  text-align: right;
}
.wrapper .main__contents #cost .inner__flex .need02 {
  background: #FCFCE5;
  display: block;
  border-top: 0;
  border-radius: 0 0 20px 20px;
  padding: 20px 30px;
}
.wrapper .main__contents #cost .inner__flex .need02 p:last-child {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #cost .inner__flex .r__contents {
    padding-top: 30px;
  }
}
.wrapper .main__contents #cost .inner__flex .r__contents .task__list::before {
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg) skew(-20deg, -20deg);
          transform: translateY(-50%) rotate(45deg) skew(-20deg, -20deg);
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #cost .inner__flex .l__contents, .wrapper .main__contents #cost .inner__flex .r__contents {
    width: 100%;
  }
}
.wrapper .main__contents #donate h3 {
  background: #E5E647;
  font-size: 30px;
  font-weight: 700;
}
.wrapper .main__contents #donate .donete__cont {
  background: #FCFCE5;
  padding: 20px;
  margin-bottom: 30px;
  text-align: left;
}
.wrapper .main__contents #donate .donete__cont .info {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.wrapper .main__contents #donate dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .main__contents #donate dl dd::before {
  content: "：";
  margin: 0 5px;
}
.wrapper .main__contents #donate dl dd {
  margin-left: 20px;
}
.wrapper .main__contents #donate .kouza {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #donate .kouza {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .main__contents #donate .kouza .bank__list {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #donate .kouza .bank__list {
    width: 100%;
  }
}
.wrapper .main__contents #donate .kouza .bank__list p {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.wrapper .main__contents #donate .kouza .bank__list p::before {
  content: url(../img/line_double_bank-l.png);
  padding-right: 10px;
}
.wrapper .main__contents #donate .kouza .bank__list p::after {
  content: url(../img/line_double_bank-r.png);
  padding-left: 10px;
}
.wrapper .main__contents #donate .kouza .bank {
  background: #fff;
  padding: 10px 20px;
}
.wrapper .main__contents #donate .kouza .bank h4 {
  font-size: 20px;
  border-bottom: 2px solid #BD1A21;
  padding-bottom: 5px;
  margin-bottom: 5px;
  text-align: center;
  font-weight: 700;
}
.wrapper .main__contents #donate .kouza .bank dl {
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.wrapper .main__contents #donate .kouza .bank dl dd {
  margin-left: 0;
}
.wrapper .main__contents #donate .donate__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #donate .donate__list {
    display: block;
  }
}
.wrapper .main__contents #donate .donate__list figure img {
  width: 100%;
  height: auto;
}
.wrapper .main__contents #donate .donate__list figure.qr {
  text-align: center;
}
.wrapper .main__contents #donate .donate__list figure.qr img {
  max-width: 270px;
  margin: 0 auto;
}
.wrapper .main__contents #donate .donate__list figure.qr figcaption {
  font-size: 13px;
}
.wrapper .main__contents #donate .donate__item {
  width: 49%;
  border: 5px solid #E5E647;
  padding: 15px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #donate .donate__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.wrapper .main__contents #donate .donate__item .ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.wrapper .main__contents #donate .donate__item .ttl img {
  display: inline-block;
  margin-right: 10px;
}
.wrapper .main__contents #contact {
  text-align: center;
}
.wrapper .main__contents #contact .contact {
  background: #AACF52;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
.wrapper .main__contents #contact .contact_memo {
  font-size: 16px;
  border-top: 1px solid #E77C4D;
  border-bottom: 1px solid #E77C4D;
  padding: 10px 20px;
  margin: 0 auto 30px;
  display: inline-block;
}
.wrapper .main__contents #contact .t-cnt {
  font-size: 16px;
  text-align: center;
}
.wrapper .main__contents #contact .contact__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 1080px) {
  .wrapper .main__contents #contact .contact__contents {
    display: block;
  }
}
.wrapper .main__contents #contact .contact__contents .contact__list {
  background: #EFF4DA;
  padding: 20px;
  width: 49%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .wrapper .main__contents #contact .contact__contents .contact__list {
    width: 100%;
  }
}
.wrapper .main__contents #contact .contact__contents .contact__list .tit {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
.wrapper .main__contents #contact .contact__contents .contact__list p {
  font-size: 13px;
  text-align: left;
}
.wrapper .main__contents #contact .contact__contents .contact__list.line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .wrapper .main__contents #contact .contact__contents .contact__list.line {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #contact .contact__contents .contact__list.line {
    display: block;
  }
}
.wrapper .main__contents #contact .contact__contents .contact__list.line .tit-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper .main__contents #contact .contact__contents .contact__list.line .tit-line::before {
  content: url(../img/line__img.png);
  width: 50px;
  height: 50px;
  display: inline-block;
  margin-right: 10px;
}
@media screen and (max-width: 1080px) {
  .wrapper .main__contents #contact .contact__contents .contact__list.line .tit-line {
    margin-right: 20px;
  }
}
.wrapper .main__contents #contact .contact__contents .contact__list.line .qr {
  margin-left: 20px;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #contact .contact__contents .contact__list.line .qr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 10px 0 0;
  }
}
.wrapper .main__contents #contact .contact__contents .contact__list.mail .tit-mail a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #AACF52;
  background: #fff;
  text-decoration: none;
  color: #000;
  padding: 0 15px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .wrapper .main__contents #contact .contact__contents .contact__list.mail .tit-mail a {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #contact .contact__contents .contact__list.mail .tit-mail a {
    font-size: 16px;
  }
}
.wrapper .main__contents #contact .contact__contents .contact__list.mail .tit-mail a::before {
  content: "";
  background: url(../img/mail__img.png) no-repeat;
  width: 39px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  background-size: 100%;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #contact .contact__contents .contact__list.mail .tit-mail a::before {
    content: none;
  }
}
.wrapper .main__contents #contact .contact__contents .contact__list.mail .tit-mail a::after {
  content: "";
  background: url(../img/arrow_mail.png) no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  display: inline-block;
}
@media screen and (max-width: 1080px) {
  .wrapper .main__contents #contact .contact__contents .contact__list.mail .tit-mail a::after {
    position: absolute;
    right: 10px;
  }
}
.wrapper .main__contents #contact .contact__contents .form__item .tit-tel a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #AACF52;
  background: #fff;
  text-decoration: none;
  color: #000;
  padding: 0 15px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .wrapper .main__contents #contact .contact__contents .form__item .tit-tel a {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #contact .contact__contents .form__item .tit-tel a {
    font-size: 16px;
  }
}
.wrapper .main__contents #contact .contact__contents .form__item .tit-tel a::before {
  content: "";
  background: url(../img/form__img.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 28px;
  display: inline-block;
  margin-right: 10px;
  background-size: 100%;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #contact .contact__contents .form__item .tit-tel a::before {
    content: none;
  }
}
.wrapper .main__contents #contact .contact__contents .form__item .tit-tel a::after {
  content: "";
  background: url(../img/arrow_mail.png) no-repeat;
  width: 22px;
  height: 22px;
  display: inline-block;
}
@media screen and (max-width: 1080px) {
  .wrapper .main__contents #contact .contact__contents .form__item .tit-tel a::after {
    position: absolute;
    right: 10px;
  }
}
.wrapper .main__contents #office {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .wrapper .main__contents #office {
    margin-bottom: 50px;
  }
}
.wrapper .main__contents #office h2 {
  padding: 10px;
  font-size: 18px;
  margin-bottom: 20px;
}
.wrapper .main__contents #office table {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 50px;
}
.wrapper .main__contents #office table th, .wrapper .main__contents #office table td {
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #office table th, .wrapper .main__contents #office table td {
    display: block;
  }
}
.wrapper .main__contents #office table th {
  width: 30%;
  background: #EFF4DA;
}
@media screen and (max-width: 560px) {
  .wrapper .main__contents #office table th {
    width: 100%;
  }
}
.wrapper .main__contents #office .report__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.wrapper .main__contents #office .report__block li {
  margin: 0 10px 10px;
  font-size: 16px;
}
.wrapper .main__contents #office .report__block li::before {
  content: "・";
  margin-right: 5px;
}
@media screen and (max-width: 560px) {
  .wrapper .img__PC, .wrapper .on__PC {
    display: none;
  }
}
.wrapper .img__SP, .wrapper br.sp, .wrapper .on__SP {
  display: none;
}
@media screen and (max-width: 560px) {
  .wrapper .img__SP, .wrapper br.sp, .wrapper .on__SP {
    display: inline-block;
  }
}/*# sourceMappingURL=style.css.map */