/* Container */
.container {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  max-width: 1080px;
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 375px;
  }
}
/* Hero */
.hero img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
.hero .moble-img {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero .pc-img {
    display: none;
  }
  .hero .moble-img {
    display: block;
  }
}

/* Nav */
.nav nav {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  justify-content: space-between;
}
.nav nav .nav-button {
  margin: 0;
  padding: 0;
  width: 300px;
  height: 100px;
  border-radius: 32px;
  color: #fff;
  border: 8px solid #388024;
}
.nav nav .nav-button a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
}
.nav nav .nav-button a h2 {
  margin: 0;
  padding: 0;
  padding-top: 32px;
  font-size: 20px;
  color: #000;
}
.nav nav .nav-button a .plus-icon {
  display: none;
}
.nav nav .nav-button:hover {
  background-color: #FF914D;
}
.nav nav .nav-button:hover a {
  align-items: center;
}
.nav nav .nav-button:hover a h2 {
  display: none;
}
.nav nav .nav-button:hover a .plus-icon {
  display: block;
  width: 64%;
  height: 64%;
}
@media screen and (max-width: 822px) {
  .nav nav {
    max-width: 375px;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    justify-content: space-between;
    row-gap: 20px;
  }
  .nav nav .nav-button {
    width: 170px;
    height: 100px;
    border: 4px solid #388024;
    border-radius: 15px;
  }
}

/* Goal */
.goal {
  margin: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 50px;
  border: 7px double #FF914D;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 330px;
  margin-bottom: 30px;
}
.goal h2 {
  text-decoration: underline;
}
.goal p {
  padding: 15px;
  text-align: left;
  font-size: 20px;
  font-weight: 20px;
}
@media screen and (max-width: 768px) {
  .goal {
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    height: 400px;
  }
}

/* Activity */
.activity {
  margin: 0;
  padding-top: 47px;
}
.activity .headline {
  width: 100%;
  height: 100px;
  border: 5px solid #388024;
  display: grid;
  grid-template-columns: 100px 1fr;
}
.activity .headline .number {
  margin: 0;
  padding: 0;
  background-color: #388024;
  display: flex;
  justify-content: center;
  align-items: center;
}
.activity .headline .number h2 {
  font-size: 64px;
  font-weight: bold;
  color: white;
}
.activity .headline .letter {
  margin: 0;
  padding: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.activity .headline .letter h2 {
  margin-left: 30px;
  font-size: 64px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .activity .headline .letter h2 {
    font-size: 28px;
  }
}
.activity .content {
  min-height: 500px;
}

.activity.even-num {
  background-color: #D7E6D3;
  padding-top: 47px;
}

/* Activity-01 */
#activity-01 .content {
  padding: 10px;
  text-align: center;
}
#activity-01 .content .tab .tab-head {
  display: flex;
  gap: 5%;
}
#activity-01 .content .tab .tab-head button {
  width: 30%;
  height: 50px;
  color: #000;
  border: 1px solid #388024;
  background-color: #fff;
  font-size: 20px;
  font-weight: bold;
}
#activity-01 .content .tab .tab-head button:hover {
  background-color: #FF914D;
}
#activity-01 .content .tab .tab-head button.selected {
  color: #fff;
  background-color: #388024;
}
#activity-01 .content .tab .tab-body {
  width: 100%;
  min-height: 400px;
  border: 1px solid #388024;
  background-color: #fff;
}
#activity-01 .content .tab .tab-body .tab-body-content {
  display: none;
}
#activity-01 .content .tab .tab-body .selected {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  text-align: left;
}
#activity-01 .content .tab .tab-body .selected h1 {
  font-weight: bold;
  text-decoration: underline;
}
#activity-01 .content .tab .tab-body .selected ul {
  list-style-position: inside;
}
#activity-01 .content .tab .tab-body .selected h2 {
  padding-left: 15px;
}
#activity-01 .content .tab .tab-body .selected ul,
#activity-01 .content .tab .tab-body .selected li,
#activity-01 .content .tab .tab-body .selected p {
  padding-left: 20px;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  #activity-01 .content {
    display: block;
  }
  #activity-01 .content .tab .tab-head button {
    font-size: 15px;
  }
  #activity-01 .content .tab .tab-body .selected {
    display: flex;
    flex-direction: column;
  }
  #activity-01 .content .tab .tab-body .selected .description {
    order: 1;
  }
  #activity-01 .content .tab .tab-body .selected img {
    order: 2;
  }
}

/* Activity-02 */
#activity-02 .content {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#activity-02 .content .content-left {
  padding: 20px;
}
#activity-02 .content .content-right {
  padding: 15px;
}
#activity-02 .content .content-right h2 {
  font-weight: bold;
}
#activity-02 .content .content-right p {
  font-size: 17px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #activity-02 {
    padding: 5px;
  }
  #activity-02 .content {
    display: block;
  }
  #activity-02 .content .content-left {
    width: 300px;
  }
  #activity-02 .content .content-left img {
    width: 300px;
    height: auto;
  }
  #activity-02 .content .content-right {
    width: 300px;
  }
  #activity-02 .content .content-right p {
    line-height: 1;
  }
}

/* Activity-03 */
#activity-03 .content {
  padding-left: 30px;
}
#activity-03 .content .card {
  background: rgba(255, 255, 255, 0);
  border: none;
  position: relative;
}
#activity-03 .content .card img {
  width: 500px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#activity-03 .content .card .text-box {
  position: absolute;
  width: 500px;
  height: 350px;
  top: 90px;
  left: 90px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #000;
  border-radius: 10px;
  padding: 10px;
}
#activity-03 .content .card .text-box h2 {
  padding: 15px;
}
#activity-03 .content .card .text-box p {
  padding: 15px;
  font-size: 17px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #activity-03 .content {
    height: 550px;
    padding: 5px;
  }
  #activity-03 .content .card {
    width: 300px;
  }
  #activity-03 .content .card img {
    -o-object-fit: initial;
       object-fit: initial;
    width: 280px;
    height: auto;
  }
  #activity-03 .content .card .text-box {
    width: 280px;
    height: auto;
    top: 65px;
    left: 65px;
  }
}

/* Footer */
footer {
  margin: 0;
  padding: 0;
  background-color: #388024;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer p {
  color: #fff;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */