@charset "UTF-8";
:root {
  --vw: 1vw;
}

/*
------------------------
用途：個別にhover要素付けたい時用
------------------------
例）
div {
    width:100px;
    height:100px;
    @include hover;
}
*/
/*
------------------------
用途：良く使うflexを1行に短縮
------------------------
例）
div {
    @include flex(b,w);
}
↑これは↓これを一行で書いた例
div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
*/
.SECOND .main-v {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  background: #ccc;
  width: 100%;
  height: calc(25 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .SECOND .main-v {
    height: calc(46.6666666667 * var(--vw));
  }
}
.SECOND .main-v > * {
  grid-area: 1/-1;
  height: 100%;
}
.SECOND .main-v__img {
  overflow: hidden;
}
.SECOND .main-v__img img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}
.SECOND .main-v__in {
  display: grid;
  justify-content: center;
  align-items: center;
}
.SECOND .main-v .page-ttl {
  display: grid;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
  line-height: 1;
  text-shadow: 0 calc(0.3333333333 * var(--vw)) calc(0.6666666667 * var(--vw)) rgba(0, 0, 0, 0.25);
  padding: calc(2.9166666667 * var(--vw)) calc(1 * var(--vw)) calc(1.0833333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .SECOND .main-v .page-ttl {
    text-shadow: 0 calc(0.5333333333 * var(--vw)) calc(1.0666666667 * var(--vw)) rgba(0, 0, 0, 0.25);
    padding: calc(4.8 * var(--vw)) calc(3.2 * var(--vw)) calc(3.2 * var(--vw));
  }
}
.SECOND .main-v .page-ttl .main {
  font-size: calc(3.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .SECOND .main-v .page-ttl .main {
    font-size: 4.8rem;
  }
}
.SECOND .main-v .page-ttl .sub {
  font-size: calc(2.3333333333 * var(--vw));
  margin: 0.2em 0 0;
}
@media only screen and (max-width: 767px) {
  .SECOND .main-v .page-ttl .sub {
    font-size: 3.2rem;
    margin: 0.5em 0 0;
  }
}
.SECOND .contents_cobox11 {
  top: 0;
  right: 0;
  left: 0;
  color: #433013;
  margin: 0 auto;
}
.SECOND .sec {
  position: relative;
  width: 100%;
}
.SECOND .sec_in {
  position: relative;
}
.SECOND .sec b {
  color: #A7906D;
  font-weight: normal;
}
.SECOND .table {
  border: 1px solid #433013;
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .SECOND .table {
    width: 200%;
  }
}
.SECOND .table th, .SECOND .table td {
  color: #433013;
  font-size: calc(1.3333333333 * var(--vw) * 1000 / 1200);
  line-height: 1.2;
  text-align: left;
  border: 1px solid #433013;
  padding: calc(2 * var(--vw) * 1000 / 1200) calc(1.6666666667 * var(--vw) * 1000 / 1200);
}
@media only screen and (max-width: 767px) {
  .SECOND .table th, .SECOND .table td {
    font-size: 2.8rem;
    padding: calc(3.2 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
.SECOND .table th {
  background: #A0DF82;
  font-weight: 700;
}
.SECOND .table td {
  background: #fff;
}

#PLAN .sec-teaching-materials {
  padding: calc(4.3333333333 * var(--vw)) 0 0;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-teaching-materials {
    padding: calc(13.3333333333 * var(--vw)) 0 0;
  }
}
#PLAN .sec-teaching-materials .teaching-materials-box {
  padding: calc(20.3333333333 * var(--vw)) 0 0;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-teaching-materials .teaching-materials-box {
    padding: calc(32.5333333333 * var(--vw)) 0 0;
  }
}
#PLAN .sec-teaching-materials .teaching-materials-list {
  display: grid;
  gap: calc(4.1666666667 * var(--vw) * 1000 / 1200);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-teaching-materials .teaching-materials-list {
    gap: calc(10.6666666667 * var(--vw));
  }
}
#PLAN .sec-teaching-materials .teaching-materials-list__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  color: #433013;
  width: calc(100 * var(--vw) * 1000 / 1200);
  min-height: calc(50 * var(--vw) * 1000 / 1200);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-teaching-materials .teaching-materials-list__item {
    width: 100%;
    min-height: calc(80 * var(--vw));
  }
}
#PLAN .sec-teaching-materials .teaching-materials-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-teaching-materials .teaching-materials-list__item::before {
    top: calc(23.3333333333 * var(--vw));
    height: calc(100% - 23.3333333333 * var(--vw));
  }
}
#PLAN .sec-teaching-materials .teaching-materials-list__item:nth-of-type(odd)::before {
  background: #D1F4D6;
}
@media only screen and (min-width: 768px) {
  #PLAN .sec-teaching-materials .teaching-materials-list__item:nth-of-type(odd)::before {
    right: calc(29.1666666667 * var(--vw) * 1000 / 1200);
  }
}
@media only screen and (min-width: 768px) {
  #PLAN .sec-teaching-materials .teaching-materials-list__item:nth-of-type(odd) .text-box {
    background: #D1F4D6;
    padding: calc(5 * var(--vw) * 1000 / 1200) calc(20.8333333333 * var(--vw) * 1000 / 1200) calc(5 * var(--vw) * 1000 / 1200) calc(8.3333333333 * var(--vw) * 1000 / 1200);
  }
}
@media only screen and (min-width: 768px) {
  #PLAN .sec-teaching-materials .teaching-materials-list__item:nth-of-type(odd) .teaching-materials-img {
    right: calc(14.5833333333 * var(--vw) * 1000 / 1200);
  }
}
#PLAN .sec-teaching-materials .teaching-materials-list__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
#PLAN .sec-teaching-materials .teaching-materials-list__item:nth-of-type(even)::before {
  background: #EBF5EC;
}
@media only screen and (min-width: 768px) {
  #PLAN .sec-teaching-materials .teaching-materials-list__item:nth-of-type(even)::before {
    left: calc(29.1666666667 * var(--vw) * 1000 / 1200);
  }
}
@media only screen and (min-width: 768px) {
  #PLAN .sec-teaching-materials .teaching-materials-list__item:nth-of-type(even) .text-box {
    background: #EBF5EC;
    padding: calc(5 * var(--vw) * 1000 / 1200) calc(8.3333333333 * var(--vw) * 1000 / 1200) calc(5 * var(--vw) * 1000 / 1200) calc(20.8333333333 * var(--vw) * 1000 / 1200);
  }
}
@media only screen and (min-width: 768px) {
  #PLAN .sec-teaching-materials .teaching-materials-list__item:nth-of-type(even) .teaching-materials-img {
    left: calc(14.5833333333 * var(--vw) * 1000 / 1200);
  }
}
#PLAN .sec-teaching-materials .text-box {
  width: calc(70.8333333333 * var(--vw) * 1000 / 1200);
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-teaching-materials .text-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 calc(5.3333333333 * var(--vw)) calc(10.6666666667 * var(--vw));
  }
}
#PLAN .sec-teaching-materials .teaching-materials-name {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: calc(2.3333333333 * var(--vw) * 1000 / 1200);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-teaching-materials .teaching-materials-name {
    order: 2;
    font-size: 3.6rem;
    text-align: center;
    margin: calc(4 * var(--vw)) auto 0;
  }
}
#PLAN .sec-teaching-materials .teaching-materials-summary {
  font-size: calc(1.3333333333 * var(--vw) * 1000 / 1200);
  line-height: 1.875;
  margin: calc(4.1666666667 * var(--vw) * 1000 / 1200) 0 0;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-teaching-materials .teaching-materials-summary {
    order: 3;
    font-size: 2.8rem;
    margin: calc(1.3333333333 * var(--vw)) 0 0;
  }
}
#PLAN .sec-teaching-materials .teaching-materials-summary > * + * {
  margin-top: 1.875em;
}
#PLAN .sec-teaching-materials .teaching-materials-img {
  position: absolute;
  top: calc(12.5 * var(--vw) * 1000 / 1200);
  filter: drop-shadow(0 calc(0.3333333333 * var(--vw) * 1000 / 1200) calc(0.6666666667 * var(--vw) * 1000 / 1200) rgba(0, 0, 0, 0.25));
  overflow: hidden;
  border-radius: calc(4.1666666667 * var(--vw) * 1000 / 1200);
  aspect-ratio: 1;
  width: calc(29.1666666667 * var(--vw) * 1000 / 1200);
  height: calc(29.1666666667 * var(--vw) * 1000 / 1200);
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-teaching-materials .teaching-materials-img {
    order: 1;
    position: static;
    filter: drop-shadow(0 calc(0.5333333333 * var(--vw)) calc(1.0666666667 * var(--vw)) rgba(0, 0, 0, 0.25));
    border-radius: calc(3.3333333333 * var(--vw));
    width: calc(46.6666666667 * var(--vw));
    height: auto;
    margin: 0 auto;
  }
}
#PLAN .sec-course-list {
  padding: calc(8.5 * var(--vw)) 0 0;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-course-list {
    padding: calc(13.6 * var(--vw)) 0 0;
  }
}
#PLAN .sec-course-list .course-list-box {
  padding: calc(20.25 * var(--vw)) 0 0;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-course-list .course-list-box {
    padding: calc(32.4 * var(--vw)) 0 0;
  }
}
#PLAN .sec-course-list .course-list {
  display: grid;
  gap: calc(4.1666666667 * var(--vw) * 1000 / 1200);
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-course-list .course-list {
    gap: calc(6.6666666667 * var(--vw));
  }
}
#PLAN .sec-course-list .course-list__item {
  color: #433013;
  border-radius: calc(0.8333333333 * var(--vw) * 1000 / 1200);
  box-shadow: 0 0 calc(0.8333333333 * var(--vw) * 1000 / 1200) rgba(0, 0, 0, 0.25);
  width: calc(83.3333333333 * var(--vw) * 1000 / 1200);
  margin: 0 auto;
  padding: calc(2.9166666667 * var(--vw) * 1000 / 1200) calc(4.1666666667 * var(--vw) * 1000 / 1200) calc(4.1666666667 * var(--vw) * 1000 / 1200);
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-course-list .course-list__item {
    border-radius: calc(1.3333333333 * var(--vw));
    box-shadow: 0 0 calc(1.3333333333 * var(--vw)) rgba(0, 0, 0, 0.25);
    width: 100%;
    padding: calc(4.6666666667 * var(--vw)) calc(5.3333333333 * var(--vw)) calc(6.6666666667 * var(--vw));
  }
}
#PLAN .sec-course-list .course-name {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: calc(2.8333333333 * var(--vw) * 1000 / 1200);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-course-list .course-name {
    font-size: 3.6rem;
  }
}
#PLAN .sec-course-list .tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: calc(2.0833333333 * var(--vw) * 1000 / 1200);
  margin: calc(0.8333333333 * var(--vw) * 1000 / 1200) auto 0;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-course-list .tag-list {
    gap: calc(2 * var(--vw)) calc(2 * var(--vw));
    margin: calc(1.3333333333 * var(--vw)) auto 0;
  }
}
#PLAN .sec-course-list .tag-list__item {
  display: flex;
  align-items: center;
  font-size: calc(1.5 * var(--vw) * 1000 / 1200);
  line-height: 1;
  border: calc(0.1666666667 * var(--vw) * 1000 / 1200) solid #00360C;
  border-radius: calc(1.6666666667 * var(--vw) * 1000 / 1200);
  height: calc(2.5 * var(--vw) * 1000 / 1200);
  padding: 0 calc(0.8333333333 * var(--vw) * 1000 / 1200);
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-course-list .tag-list__item {
    font-size: 2.4rem;
    border-width: calc(0.2666666667 * var(--vw));
    border-radius: calc(2.4 * var(--vw));
    height: calc(4.8 * var(--vw));
    padding: 0 calc(2 * var(--vw));
  }
}
#PLAN .sec-course-list .course-summary {
  font-size: calc(1.5 * var(--vw) * 1000 / 1200);
  line-height: 1.2;
  margin: calc(1.5 * var(--vw) * 1000 / 1200) 0 0;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-course-list .course-summary {
    font-size: 2.8rem;
    line-height: 1.5;
    margin: calc(4 * var(--vw)) 0 0;
  }
}
#PLAN .sec-course-list .table {
  margin: calc(1.6666666667 * var(--vw) * 1000 / 1200) 0 0;
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-course-list .table {
    margin: calc(4 * var(--vw)) 0 0;
  }
}
#PLAN .sec-course-list .table colgroup col:nth-of-type(1) {
  width: 18%;
}
#PLAN .sec-course-list .table colgroup col:nth-of-type(2) {
  width: 27%;
}
#PLAN .sec-course-list .table colgroup col:nth-of-type(3) {
  width: 18%;
}
#PLAN .sec-course-list .table colgroup col:nth-of-type(4) {
  width: 27%;
}
#PLAN .sec-course-list .table th,
#PLAN .sec-course-list .table td {
  vertical-align: middle;
  line-height: 1.875;
  padding: calc(0.8333333333 * var(--vw) * 1000 / 1200);
}
@media only screen and (max-width: 767px) {
  #PLAN .sec-course-list .table th,
  #PLAN .sec-course-list .table td {
    padding: calc(3.2 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#PLAN .sec-course-list .table th {
  text-align: center;
}/*# sourceMappingURL=plan.css.map */