@charset "UTF-8";
/*共通設定
==============================================*/
.main {
  overflow: hidden;
}

.lead {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  margin-bottom: 60px;
}
.lead::after {
  animation: scrollAnimationBar 2s ease-out infinite;
}
@keyframes scrollAnimationBar {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@media screen and (min-width: 768px) {
  .lead {
    font-size: 20px;
    margin-bottom: 80px;
  }
}

.select-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 470px;
  gap: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .select-list {
    max-width: none;
  }
}
.select-list__item {
  width: calc((100% - 10px) / 2);
  max-width: 235px;
  text-align: center;
  background-color: #fff;
  border: 1px solid;
  padding: 1.5em;
  cursor: pointer;
  transition: background-color ease-in 0.4s;
}
@media screen and (min-width: 768px) {
  .select-list__item {
    width: calc((100% - 30px) / 4);
  }
}
.select-list__item.active {
  color: #fff;
  background: #473430 url(../images/select-btn_bg.png) no-repeat center/cover;
  transition: background-color ease-in 0.4s;
  border: none;
}

.wrap {
  padding: 0 10px;
  margin-bottom: 50px;
}

.coursePage__br {
  display: none;
}
@media screen and (min-width: 1020px) {
  .coursePage__br {
    display: block;
  }
}
.coursePage__inner {
  padding: 0 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.coursePage__lead {
  text-align: center;
  padding: 0 10px;
  margin-bottom: 50px;
  line-height: 2;
}
.coursePage__select-list {
  display: flex;
  justify-content: center;
  position: relative;
  gap: 50px;
  margin-bottom: 80px;
  padding: 2em;
  background-color: #F8F8F8;
}
.coursePage__select-list-item {
  animation: sway-down 2s infinite;
}
@keyframes sway-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}
.coursePage__select-list-link {
  padding-right: 25px;
}
@media screen and (min-width: 1020px) {
  .coursePage__flex-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1020px) {
  .coursePage__flex-right {
    width: 200px;
    writing-mode: vertical-rl;
    letter-spacing: 0.15em;
  }
}
@media screen and (min-width: 1020px) {
  .coursePage__flex-left {
    width: calc(100% - 200px);
  }
}
.coursePage__sec {
  padding: 50px 10px 80px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .coursePage__sec {
    padding: 50px 50px 80px;
  }
}
@media screen and (min-width: 1020px) {
  .coursePage__sec {
    padding: 60px 100px;
  }
}
.coursePage__sec::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/sec-title.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -30px;
  animation: rotate 2s ease-out 0s infinite;
}
@keyframes rotate {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(90deg);
  }
}
@media screen and (min-width: 1020px) {
  .coursePage__sec::before {
    left: auto;
    right: 37px;
    width: 78px;
    height: 78px;
    top: -40px;
  }
}
.coursePage__sec-title {
  font-size: 26px;
  color: #833333;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .coursePage__sec-title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1020px) {
  .coursePage__sec-title {
    text-align: left;
    margin-left: 30px;
  }
}
.coursePage__sec-lead {
  line-height: 2.5;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 1020px) {
  .coursePage__sec-lead {
    text-align: left;
    margin-bottom: 0;
  }
}
.coursePage__sec-second {
  background-color: #fff;
  padding: 30px 15px 80px;
  border-top: 10px solid #833333;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .coursePage__sec-second {
    padding: 30px 50px 80px;
  }
}
.coursePage__sec-second-title-box {
  padding-bottom: 10px;
  border-bottom: 2px dotted #833333;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (min-width: 560px) {
  .coursePage__sec-second-title-box {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
}
.coursePage__sec-second-title {
  font-weight: bold;
  position: relative;
  padding-left: 15px;
}
.coursePage__sec-second-title::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #833333;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  left: 0;
  top: 50%;
}
.coursePage__sec-notes {
  font-size: 14px;
}
.coursePage__sec-second-title {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .coursePage__sec-second-title {
    font-size: 24px;
  }
}
.coursePage__lesson-desc {
  background-color: #F5F6F7;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.coursePage__lesson-desc-text {
  line-height: 2;
}
.coursePage__lesson-desc-text-flex-container {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.coursePage__lesson-desc-text-flex-container:not(:last-child) {
  border-bottom: 1px dashed #888;
}
.coursePage__lesson-desc-text-flex-left {
  width: 85px;
  font-weight: bold;
}
.coursePage__lesson-desc-text-flex-right {
  width: calc(100% - 85px);
}
.coursePage__lesson-img-area {
  margin: 0 auto 30px;
  max-width: 400px;
}
@media screen and (min-width: 1020px) {
  .coursePage__lesson-img-area {
    position: absolute;
    right: 0;
    bottom: 100px;
    transform: rotate(7deg);
    width: 325px;
    max-width: none;
  }
}
.coursePage__lesson-detail {
  margin-bottom: 50px;
}
.coursePage__lesson-detail-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  line-height: 2;
}
.coursePage__lesson-detail-title {
  width: 20%;
  position: relative;
}
.coursePage__lesson-detail-title::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.5em;
  position: absolute;
  right: 0;
  top: 5px;
  background-color: #833333;
}
.coursePage__lesson-detail-desc {
  width: 80%;
  padding-left: 1em;
}
.coursePage__lesson-detail-list-link {
  color: #3c3074;
  font-weight: bold;
  border-bottom: 1px solid;
}
.coursePage__entry-btn {
  display: block;
  margin: 0 auto;
}
.coursePage__entry-btn-link {
  display: inline-block;
  min-width: 235px;
  background-color: #833333;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

.experience__sec {
  background: url(../images/experience_bg.jpg) no-repeat center/cover;
}
.experience__lesson-title {
  color: #833333;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .experience__lesson-title {
    font-size: 24px;
  }
}

.short-term__sec {
  background: url(../images/short-term_bg.jpg) no-repeat center/cover;
}
.short-term__title-side-bar {
  position: relative;
  padding-right: 40px;
}
.short-term__title-side-bar::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #473430;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.short-term__sec-second {
  border-top: 10px solid #9F8401;
}
.short-term__sec-second-title-box {
  border-bottom: 2px dotted #9F8401;
}
.short-term__sec-second-title::after {
  background-color: #9F8401;
}
.short-term__entry-btn-link {
  background-color: #9F8401;
}

/*　アニメーション
==============================================*/
.scale-up {
  animation: scale-up 2.5s linear infinite;
}

@keyframes scale-up {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}/*# sourceMappingURL=style.css.map */