@charset "UTF-8";
/* CSS Document */
/* ---------- main ---------- */
.main {
  position: relative;
  width: 100%;
  height: auto;
  margin: 80px auto 0;
  background-color: #F5A800;
}
.main-top {
  width: 78%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media(min-width:960px){
  .main {
    margin: 100px auto 0;
  }
  .main-top {
    width: 73%;
  }
}

/* top text */
.main-top-text {
  text-align: left;
  width: 100%;
}
.main-top-text h2 {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.17;
  letter-spacing: -0.5px;
  font-weight: 600;
  text-shadow: 1px 2px 2px #d5d5d5;
}
.main-top-text h2::before {
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #ececec;
  font-size: 30px;
  line-height: 30px;
  content: attr(data-word);
  pointer-events: none;
  font-weight: 600;
  text-shadow: none;
  opacity: 0.4;
}
.main-top-img {
  width: 50%;
}
.main-top-img img {
  width: 100%;
  object-fit: cover;
  max-width: 300px;
}

/* ------------------------
タブレット（例: 768px〜959px）
------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  /* top text */
  .main-top-text h2 {
    font-size: 24px;
  }
  .main-top-text h2::before {
    font-size: 50px;
    bottom: 20px;
  }
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  /* top text */
  .main-top-text h2 {
    font-size: 30px;
  }
  .main-top-text h2::before {
    font-size: 70px;
    bottom: 40px;
  }
}

/* ---------- content ---------- */
.content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
  background-color: #F5A800;
}
.content-back {
  background-color: #FFFFFF;
  box-shadow: 0 0 6px gray;
  width: 73%;
  margin: 0 auto;
  padding: 40px 24px;
  border-radius: 20px;
}
/* ------------------------
タブレット（例: 768px〜959px）
------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .content-back {
    padding: 60px 40px;
  }
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .content {
    padding-bottom: 100px;
    text-align: left;
  }
  .content-back {
    width: 73%;
    padding: 60px;
  }
}

/* title */
.content-title {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.content-h2 {
  position: relative;
  padding-bottom: 5px;
  padding-right: 10px;
  border-bottom: 3px solid #333333;
  color: #333333;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 20px;
}
.content-h2::before,
.content-h2::after {
  position: absolute;
  left: 30px;
  bottom: -15px;
  width: 30px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
}
.content-h2::before {
  background-color: #333333;
}
.content-h2::after {
  bottom: -11px;
  background-color: #fff;
}

.content-img {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.content-img img {
  width: 45%;
  object-fit: cover;
  max-width: 300px;
}

.content-text {
  width: 89%;
  margin: 20px auto 0;
  text-align: left;
}
.content-text p {
  font-size: 3.2vw;
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .content-h2 {
    padding-bottom: 10px;
    padding-right: 40px;
    border-bottom: 5px solid #333333;
    font-size: 24px;
    margin-bottom: 40px;
  }
  .content-img {
    justify-content: space-evenly;
  }
  .content-img img {
    width: 13.541666666666666vw;
    max-width: 400px;
  }
  .content-text p {
    font-size: 16px;
    margin: 40px auto;
  }
}
/* ---------- line ---------- */
.red-line {
  background-color: #F5A800;
  width: 100%;
  margin: 0 auto;
}
.red-line hr {
  height: 5px;
  background-color: #EB2C31;
  width: 50%;
  margin: 0 auto;
  border: none;
}
/* ---------- challenge ---------- */
.challenge {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #F5A800;
}
.challenge-back {
  background-color: #FFFFFF;
  box-shadow: 0 0 6px gray;
  width: 73%;
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 20px;
}
/* ------------------------
タブレット（例: 768px〜959px）
------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .challenge-back {
    padding: 60px 40px;
  }
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .challenge {
    padding-bottom: 100px;
    text-align: left;
  }
  .challenge-back {
    width: 73%;
    padding: 60px;
  }
}


/* title */
.challenge-title {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.challenge-h2 {
  position: relative;
  padding-bottom: 5px;
  padding-right: 10px;
  border-bottom: 3px solid #333333;
  color: #333333;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 20px;
}
.challenge-h2::before,
.challenge-h2::after {
  position: absolute;
  left: 30px;
  bottom: -15px;
  width: 30px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
}
.challenge-h2::before {
  background-color: #333333;
}
.challenge-h2::after {
  bottom: -11px;
  background-color: #fff;
}

/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .challenge-h2 {
    padding-bottom: 10px;
    padding-right: 40px;
    border-bottom: 5px solid #333333;
    font-size: 24px;
    margin-bottom: 40px;
  }
}

/* tape */
.challenge-tape {
  width: 100%;
  margin: 0 auto;
}
/* ------------------------
タブレット（例: 768px〜959px）
------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .challenge-tape {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .challenge-tape {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}
/* box1 */
.challenge-tape-box1 {
  width: 100%;
  margin: 40px auto;
  padding-top: 15px;
  background: #F75B99;
  color: #fff;
  box-shadow: 0 0 4px gray;
  transform:rotate(2deg);
  word-break: break-all;
}
.challenge-tape-box1_tape {
  width: 50%;
  height: 35px;
  margin: -30px auto 0;
  background: #F5A800;
  transform: rotate(-3deg);
  opacity: 0.6;
}
.challenge-tape-box1_title {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  color: #4EBEA9;
  font-weight: bold;
  text-shadow: 1px 1px 2px #FFFFFF;
}
.challenge-tape-box1_subtitle {
  text-align: center;
  font-size: 20px;
  color: #687BE1;
  font-weight: bold;
  text-shadow: 1px 1px 2px #FFFFFF;
}
.challenge-tape-box1_text {
  padding: 20px;
  font-size: 10px;
  text-align: left;
  display: inline-block;
}
/* ------------------------
タブレット（例: 768px〜959px）
------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .challenge-tape-box1 {
    width: 45%;
  }
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .challenge-tape-box1 {
    width: 45%;
  }
  .challenge-tape-box1_text {
    padding: 20px 60px 40px;
    font-size: 16px;
  }
  .challenge-tape-box1_title {
    margin-top: 20px;
    font-size: 18px;
  }
  .challenge-tape-box1_subtitle {
    font-size: 24px;
  }
}

/* box2 */
.challenge-tape-box2 {
  width: 100%;
  padding-top: 15px;
  margin: 40px auto;
  background: #687BE1;
  color: #fff;
  box-shadow: 0 0 4px gray;
  transform:rotate(-2deg);
  word-break: break-all;
}
.challenge-tape-box2_tape {
  width: 50%;
  height: 35px;
  margin: -30px auto 0;
  background: #EB2C31;
  transform: rotate(3deg);
  opacity: 0.6;
}
.challenge-tape-box2_title {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  color: #F75B99;
  font-weight: bold;
  text-shadow: 1px 1px 2px #FFFFFF;
}
.challenge-tape-box2_subtitle {
  text-align: center;
  font-size: 20px;
  color: #F5A800;
  font-weight: bold;
  text-shadow: 1px 1px 2px #FFFFFF;
}
.challenge-tape-box2_text {
  padding: 20px;
  font-size: 10px;
  text-align: left;
  display: inline-block;
}
/* ------------------------
タブレット（例: 768px〜959px）
------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .challenge-tape-box2 {
    width: 45%;
  }
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .challenge-tape-box2 {
    width: 45%;
  }
  .challenge-tape-box2_text {
    padding: 20px 60px 40px;
    font-size: 16px;
  }
  .challenge-tape-box2_title {
    margin-top: 20px;
    font-size: 18px;
  }
  .challenge-tape-box2_subtitle {
    font-size: 24px;
  }
}
