.sp-hidden {
  display: none;
}
@media screen and (min-width: 1200px) {
  .sp-hidden {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  .pc-hidden {
    display: none;
  }
}

body {
  font-family: "Kiwi Maru", sans-serif;
  line-height: 1.7;
  background-color: rgba(240, 250, 240, 0.8);
}

.title__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 1200px) {
  .title__box {
    margin-bottom: 80px;
  }
}
.title__box::after {
  position: absolute;
  bottom: 0px;
  left: calc(50% - 40px);
  width: 70px;
  height: 1px;
  content: "";
  background-color: #006036;
}
@media screen and (min-width: 1200px) {
  .title__box::after {
    width: 150px;
    left: calc(50% - 80px);
  }
}

.title__img-ball {
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 1200px) {
  .title__img-ball {
    width: 40px;
    height: 40px;
  }
}

.tittle__name {
  font-size: 24px;
  font-family: "Russo One", sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .tittle__name {
    font-size: 40px;
  }
}

.title__img-spike {
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 1200px) {
  .title__img-spike {
    width: 50px;
    height: 50px;
  }
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding-top: 12px;
  padding-bottom: 12px;
  background: #FFF;
}

.header__inner {
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1398px;
    margin: 0 auto;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__container-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
}
@media screen and (min-width: 1200px) {
  .header__container-left {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__container-left:hover {
    opacity: 0.7;
  }
}
.header__container-left img {
  width: 40px;
  height: 40px;
}

.header__logo-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.logo-ja {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
}

.logo-en {
  font-size: 12px;
  font-family: "Russo One", sans-serif;
  line-height: 1.2;
}

@media screen and (min-width: 1200px) {
  .header__container-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 90px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .header__link {
    position: relative;
    font-family: "Russo One", sans-serif;
    font-weight: bold;
    -webkit-transition: color 0.3s, opacity 0.3s;
    transition: color 0.3s, opacity 0.3s;
  }
  .header__link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #006036;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  .header__link:hover {
    color: #006036;
    opacity: 0.7;
  }
  .header__link:hover::after {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}

.drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer__mail-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: auto;
  -webkit-transition: color 0.5s, opacity 0.5s;
  transition: color 0.5s, opacity 0.5s;
}
.drawer__mail-container:hover {
  color: #006036;
  opacity: 0.7;
}

.fa-envelope {
  font-size: 30px;
}

.drawer__contact {
  font-size: 8px;
}

.drawer-icon {
  position: relative;
  right: 10px;
  width: 40px;
  height: 32px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 14px;
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 14px;
  -webkit-transform: rotate(-330deg);
          transform: rotate(-330deg);
}

.drawer-icon__bar {
  position: absolute;
  left: -1px;
  width: 40px;
  height: 3px;
  background: #000;
  content: "";
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s;
  transition: top 0.3s linear, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.3s linear;
  transition: transform 0.3s, top 0.3s linear, -webkit-transform 0.3s;
}

.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}

.drawer-icon__bar:nth-of-type(2) {
  top: 14px;
}

.drawer-icon__bar:nth-of-type(3) {
  bottom: 0;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 64px;
  right: 0;
  background: #006036;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.drawer-content__link {
  color: #FFF;
  font-weight: bold;
  font-family: "Russo One", sans-serif;
  font-size: 20px;
}

.fv {
  margin-bottom: 160px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .fv {
    margin-bottom: 200px;
  }
}

#js-pc-gallery-swiper {
  display: none;
}
@media screen and (min-width: 1200px) {
  #js-pc-gallery-swiper {
    display: block;
    width: 100%;
    height: 100%;
  }
}

#js-sp-gallery-swiper {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  #js-sp-gallery-swiper {
    display: none;
  }
}

.sp-fv__slide {
  width: 100%;
  height: 500px;
}
.sp-fv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__sns {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}
@media screen and (min-width: 1200px) {
  .header__sns {
    gap: 50px;
    bottom: -80px;
  }
}

@media screen and (min-width: 1200px) {
  #about {
    max-width: 1024px;
    margin: 0 auto;
  }
}

.about {
  padding-bottom: 160px;
}
@media screen and (min-width: 1200px) {
  .about {
    padding-bottom: 200px;
  }
}

.about__inner {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1200px) {
  .about__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .about__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .about__image {
    width: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.about__big-text {
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .about__big-text {
    font-size: 28px;
  }
}

.about__sub-text {
  display: block;
  font-weight: bold;
  text-align: right;
}

.about__bold-text {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .about__bold-text {
    font-size: 25px;
  }
}

.about__text {
  display: block;
}

.contact-voice {
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 1200px) {
  .contact-voice:hover {
    color: #006036;
    border-bottom: 1px solid #006036;
  }
}

.about-left-img {
  position: absolute;
  top: -6%;
  left: calc(50% - 60px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  z-index: -1;
  width: 60px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .about-left-img {
    width: 200px;
    top: -10%;
    left: 10%;
  }
}

.about-right-img {
  position: absolute;
  top: -6%;
  right: calc(50% - 60px);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  z-index: -1;
  width: 60px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .about-right-img {
    width: 200px;
    top: -10%;
    right: 10%;
  }
}

@media screen and (min-width: 1200px) {
  #news {
    max-width: 1024px;
    margin: 0 auto;
  }
}

.news {
  padding-bottom: 160px;
}
@media screen and (min-width: 1200px) {
  .news {
    padding-bottom: 200px;
  }
}

.news__inner {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1200px) {
  .news__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.news__date {
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .news__date {
    font-size: 20px;
  }
}

.news__title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .news__title {
    font-size: 30px;
    padding-bottom: 80px;
  }
}

.news__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1200px) {
  .news__contents {
    gap: 60px;
  }
}

.news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news__logo {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 1200px) {
  .news__logo {
    width: 200px;
    height: 200px;
  }
}

.news__result-number {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .news__result-number {
    font-size: 60px;
  }
}

.news__battle {
  font-size: 40px;
  font-weight: bold;
  line-height: 168px;
}
@media screen and (min-width: 1200px) {
  .news__battle {
    font-size: 60px;
    line-height: 268px;
  }
}

.battle-logo {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 1200px) {
  .battle-logo {
    width: 200px;
    height: 200px;
  }
}

.news__text {
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .news__text {
    max-width: 630px;
    margin: 60px auto 0 auto;
  }
}

.battle-team-link {
  color: #006036;
  border-bottom: 1px solid #006036;
}
@media screen and (min-width: 1200px) {
  .battle-team-link:hover {
    opacity: 0.7;
  }
}

.news-left-img {
  position: absolute;
  top: -6%;
  left: calc(50% - 90px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  z-index: -1;
  width: 90px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .news-left-img {
    width: 300px;
    top: -6%;
    left: 6%;
  }
}

.news-right-img {
  position: absolute;
  top: -6%;
  right: calc(50% - 90px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  z-index: -1;
  width: 90px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .news-right-img {
    width: 300px;
    top: -6%;
    right: 6%;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

#ranking {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  #ranking {
    max-width: 800px;
    margin: 0 auto;
    text-align: right;
  }
}

.ranking {
  padding-bottom: 160px;
}
@media screen and (min-width: 1200px) {
  .ranking {
    padding-bottom: 200px;
  }
}

.ranking__inner {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1200px) {
  .ranking__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.ranking-date {
  font-size: 10px;
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .ranking-date {
    font-size: 16px;
  }
}

.table {
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 10px;
}
@media screen and (min-width: 1200px) {
  .table {
    max-width: 800px;
    font-size: 16px;
  }
}

th, td {
  text-align: center;
  border: 2px groove #006036;
  padding: 5px 10px;
}
@media screen and (min-width: 1200px) {
  th, td {
    border: 4px groove #006036;
    padding: 10px 50px;
  }
}

.my-team {
  color: red;
  font-weight: bold;
  background: #b4f6d9;
}

.osaka-football-association {
  display: inline-block;
  border-bottom: 1px solid #006036;
  color: #006036;
  padding-top: 10px;
  font-size: 10px;
}
@media screen and (min-width: 1200px) {
  .osaka-football-association {
    font-size: 16px;
  }
  .osaka-football-association:hover {
    opacity: 0.7;
  }
}

.ranking__left-img {
  position: absolute;
  top: -11%;
  left: calc(50% - 60px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  z-index: -1;
  width: 60px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .ranking__left-img {
    width: 200px;
    top: -9%;
    left: 4%;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

.ranking__right-img {
  position: absolute;
  top: -11%;
  right: calc(50% - 60px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  z-index: -1;
  width: 60px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .ranking__right-img {
    width: 200px;
    top: -9%;
    right: 4%;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

@media screen and (min-width: 1200px) {
  #sponsor {
    max-width: 1024px;
    margin: 0 auto;
  }
}

.sponsor {
  padding-bottom: 160px;
}
@media screen and (min-width: 1200px) {
  .sponsor {
    padding-bottom: 200px;
  }
}

.sponsor__inner {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1200px) {
  .sponsor__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.sponsor__image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.sponsor__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1200px) {
  .sponsor__images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .sponsor__image {
    max-width: 470px;
    height: auto;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, transform 2s;
  transition: opacity 2s, transform 2s, -webkit-transform 2s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sponsor__left-img {
  position: absolute;
  top: -8%;
  left: calc(50% - 70px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  z-index: -1;
  width: 70px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .sponsor__left-img {
    width: 220px;
    top: -60px;
    left: 10%;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

.sponsor__right-img {
  position: absolute;
  top: -8%;
  right: calc(50% - 70px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  z-index: -1;
  width: 70px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .sponsor__right-img {
    width: 220px;
    top: -60px;
    right: 10%;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

@media screen and (min-width: 1200px) {
  #qa {
    max-width: 1024px;
    margin: 0 auto;
  }
}

.qa {
  padding-bottom: 90px;
}
@media screen and (min-width: 1200px) {
  .qa {
    padding-bottom: 200px;
  }
}

.qa__inner {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1200px) {
  .qa__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.qa__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .qa__boxes {
    padding-top: 55px;
    max-width: 800px;
    margin: 0 auto;
  }
}

.qa__box {
  border: 2px solid #006036;
  border-radius: 12px;
}
.qa__box.is-open .qa-box__head {
  border-radius: 12px 12px 0 0;
}
.qa__box.is-open .qa-box__bottom-icon-bar:nth-of-type(2) {
  position: absolute;
  top: 44%;
  left: 27%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  content: "";
  width: 10px;
  height: 2px;
  background: #FFF;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}

.qa-box__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 8px;
  background-color: rgb(241, 244, 240);
  border-radius: 12px;
  -webkit-transition: border-radius 0.5s;
  transition: border-radius 0.5s;
}
@media screen and (min-width: 1200px) {
  .qa-box__head {
    padding: 14px 20px;
  }
}

.qa__sub-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.qa-box__head-icon {
  color: #006036;
  font-weight: bold;
}

.qa-box__head-text {
  color: #000;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.qa-box__bottom-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #006036;
}

.qa-box__bottom-icon-bar:nth-of-type(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 10px;
  height: 2px;
  background: #FFF;
}
.qa-box__bottom-icon-bar:nth-of-type(2) {
  position: absolute;
  top: 45%;
  left: 25%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  content: "";
  width: 10px;
  height: 2px;
  background: #FFF;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.qa-box__body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 8px;
  display: none;
}
@media screen and (min-width: 1200px) {
  .qa-box__body {
    padding: 14px 20px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.qa-box__a-icon {
  color: #006036;
  font-weight: bold;
}

.qa__left-img {
  position: absolute;
  top: -60px;
  left: calc(50% - 60px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  z-index: -1;
  width: 60px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .qa__left-img {
    width: 200px;
    top: -85px;
    left: 10%;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

.qa__right-img {
  position: absolute;
  top: -60px;
  right: calc(50% - 60px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  z-index: -1;
  width: 60px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .qa__right-img {
    width: 200px;
    top: -85px;
    right: 10%;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1200px) {
  .footer__sns {
    gap: 50px;
  }
}

.fa-twitter {
  font-size: 30px;
  color: rgb(29, 161, 242);
}

.fa-instagram {
  font-size: 30px;
  text-align: center;
  border-radius: 10px;
  color: #FFF;
  width: 30px;
  height: 30px;
  background: radial-gradient(at 20% 120%, orange, #f15a4d 25%, #f13f79 55%, #9933ff 100%) no-repeat;
}

.fa-facebook {
  font-size: 30px;
  color: rgb(24, 119, 242);
}

.fa-youtube {
  font-size: 30px;
  color: rgb(255, 0, 0);
  width: 30px;
  height: 30px;
}

.footer__copy {
  display: block;
  font-size: 10px;
  height: 50px;
  font-size: "Russo One", sans-serif;
  color: #FFF;
  text-align: center;
  margin-top: 90px;
  background: #006036;
  line-height: 50px;
}

@media screen and (min-width: 1200px) {
  .top {
    display: block;
    width: 100px;
    height: 100px;
    position: fixed;
    bottom: 60px;
    right: 50px;
    z-index: 10;
    opacity: 0;
    -webkit-transition: opacity 1s, visibility 1s;
    transition: opacity 1s, visibility 1s;
  }
  .top.is-show {
    opacity: 1;
    visibility: visible;
  }
}