@charset "UTF-8";
body {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
li,
a,
figure {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul,
li {
  list-style: none;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  background: url(../img/common/bg-tile.png);
}

.header {
  padding: 70px 10px 25px;
}
.header h1 {
  max-width: 890px;
  margin-inline: auto;
  padding-bottom: 25px;
}
.header .main-image-box {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 30px auto;
  text-align: justify;
}
.header .main-image-box figure {
  width: 30%;
}
.header .main-image-box figure figcaption {
  font-size: 12px;
}
.header .main-image-box p {
  width: 66%;
  margin-inline: auto;
  font-size: 22px;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .header .main-image-box {
    flex-direction: column;
    max-width: 500px;
    gap: 20px;
  }
  .header .main-image-box figure {
    width: 100%;
  }
  .header .main-image-box p {
    width: 100%;
    font-size: 16px;
  }
}

.main-wrapper {
  width: 100%;
}

.content-wrapper {
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  padding: 0 10px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    padding: 0;
  }
}

.start-lead {
  max-width: 400px;
  margin-inline: auto;
  padding: 0 10px 40px;
}

.next-arrow {
  max-width: 110px;
  margin: 0 auto 30px;
}

.finish {
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 0 10px;
}

.course {
  margin-bottom: 30px;
  position: relative;
}
.course h2 {
  margin-bottom: 50px;
  padding: 9px;
  padding-left: 290px;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  border-radius: 15px;
}
.course h2 figure {
  max-width: 280px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .course h2 {
    margin-bottom: 20px;
    flex-direction: column;
    padding: 10px 10px 20px;
    border-radius: 0;
    text-align: center;
    font-size: 16px;
  }
  .course h2 figure {
    position: static;
    top: auto;
    transform: none;
  }
}
.course .toggle-button {
  display: none;
}
@media screen and (max-width: 768px) {
  .course .toggle-button {
    width: 70%;
    margin: 20px auto 10px;
    padding: 15px 0;
    display: block;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
  }
  .course .toggle-button:before {
    content: "ひらく";
  }
  .course .toggle-button.open:before {
    content: "閉じる";
  }
}
.course--heading h2 {
  background: #f5a200;
}
.course--heading .course__contents,
.course--heading .course__impression {
  background: #fffabc;
}
.course--heading .course__impression-reporter {
  background: #f5a200;
  border: solid 2px #f5a200;
}
@media screen and (max-width: 768px) {
  .course--heading h2 {
    border-color: #fffabc;
  }
}
.course--heading .toggle-button {
  background: #f5a200;
  box-shadow: 0 4px 0 #fffabc;
}
.course--robot h2 {
  background: #9dc814;
}
.course--robot .course__contents,
.course--robot .course__impression {
  background: #ecf0a6;
}
.course--robot .course__impression-reporter {
  background: #9dc814;
  border: solid 2px #9dc814;
}
@media screen and (max-width: 768px) {
  .course--robot h2 {
    border-color: #ecf0a6;
  }
}
.course--robot .toggle-button {
  background: #9dc814;
  box-shadow: 0 4px 0 #ecf0a6;
}
.course--painting h2 {
  background: #42bdd8;
}
.course--painting .course__contents,
.course--painting .course__impression {
  background: #dbf0f7;
}
.course--painting .course__impression-reporter {
  background: #42bdd8;
  border: solid 2px #42bdd8;
}
@media screen and (max-width: 768px) {
  .course--painting h2 {
    border-color: #dbf0f7;
  }
}
.course--painting .toggle-button {
  background: #42bdd8;
  box-shadow: 0 4px 0 #dbf0f7;
}
.course--assembly h2 {
  background: #f09192;
}
.course--assembly .course__contents,
.course--assembly .course__impression {
  background: #fce4e3;
}
.course--assembly .course__impression-reporter {
  background: #f09192;
  border: solid 2px #f09192;
}
@media screen and (max-width: 768px) {
  .course--assembly h2 {
    border-color: #fce4e3;
  }
}
.course--assembly .toggle-button {
  background: #f09192;
  box-shadow: 0 4px 0 #fce4e3;
}

.course__contents {
  border-radius: 15px;
}

.course__introduce {
  padding: 50px;
}
.course__introduce-main1-img {
  max-width: 710px;
  display: block;
  display: flex;
  justify-content: center;
  gap: 20px 10px;
  padding-bottom: 20px;
}
.course__introduce-lead {
  display: block;
  max-width: calc(100% - 160px);
  padding-bottom: 20px;
}
.course__introduce-lead-text {
  display: block;
  max-width: calc(100% - 160px);
  font-size: 1.5em;
  font-weight: bold;
}
.course__introduce-text {
  max-width: calc(100% - 160px);
  text-align: justify;
  position: relative;
}
.course__introduce-text .course__introduce-main2-img {
  position: absolute;
  bottom: 0;
  right: calc(clamp(9.375rem, -6.597rem + 33.23vw, 16.25rem) * -1 - 10px);
  max-width: 260px;
  width: clamp(9.375rem, -6.597rem + 33.23vw, 16.25rem);
  display: block;
}
@media screen and (max-width: 768px) {
  .course__introduce {
    padding: 25px 15px 0;
  }
  .course__introduce-main1-img {
    max-width: 100%;
    flex-direction: column;
  }
  .course__introduce-lead {
    max-width: 100%;
  }
  .course__introduce-lead-text {
    max-width: 100%;
  }
  .course__introduce-text {
    max-width: 100%;
  }
  .course__introduce-text .course__introduce-main2-img {
    position: static;
    width: 100%;
    margin: 20px auto 0;
  }
}

.course__impressions {
  padding: 10px;
  position: relative;
}
.course__impressions-lead {
  max-width: 600px;
  width: 100%;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.course__impressions-list {
  background: #fff;
  padding: 40px 10px 30px;
  border-radius: 15px;
}
.course__impressions-list .course__impression-reporter-list {
  display: flex;
  gap: 40px 1.2%;
  justify-content: center;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 768px) {
  .course__impressions-list .course__impression-reporter-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 450px) {
  .course__impressions-list .course__impression-reporter-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.course__impressions-list .course__impression-reporter-list .course__impression-reporter {
  text-align: center;
  border-radius: 15px;
}
.course__impressions-list .course__impression-reporter-list .course__impression-reporter.empty {
  background: none;
  border: none;
}
@media screen and (max-width: 768px) {
  .course__impressions-list .course__impression-reporter-list .course__impression-reporter.empty {
    display: none;
  }
}
.course__impressions-list .course__impression-reporter-list .course__impression-reporter figure img {
  border-radius: 15px 15px 0 0;
  filter: saturate(125%) brightness(110%);
  transform: translateZ(0);
}
.course__impressions-list .course__impression-reporter-list .course__impression-reporter ul {
  padding: 10px 0;
}
.course__impressions-list .course__impression-reporter-list .course__impression-reporter .course__impressions-infomation .school {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .course__impressions {
    padding: 0 10px 10px;
  }
  .course__impressions-lead {
    position: static;
    top: auto;
  }
  .course__impressions-list {
    padding: 20px 10px 20px;
  }
  .course__impressions-list .course__impression-reporter-list {
    padding-top: 20px;
    gap: 20px 4%;
    height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
}

.footer {
  margin-top: 60px;
  position: relative;
}
.footer .footer-img {
  width: 100%;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  text-align: center;
}
.footer .footer-img img {
  width: auto;
  height: 50px;
}
.footer .company {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: #fff67f;
  height: 80px;
  padding: 20px 0 10px;
  flex-wrap: wrap;
  gap: 0 20px;
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */