@charset "UTF-8";
#mainContent {
  overflow-x: hidden;
}

body * {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.33vw, 16px);
  letter-spacing: 0;
  color: #002841;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.mincho {
  font-family: "Zen Old Mincho", serif;
}

.zen {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/*---------------------------------------------
共通部分
---------------------------------------------*/
body {
  overflow-x: hidden;
}

.footerWidth {
  margin: 0 auto;
}

.commonWidth {
  margin: 0 auto;
  max-width: 1080px;
  width: 90%;
}

.smWidth {
  margin: 0 auto;
  max-width: 800px;
  width: 90%;
}

.largeWidth {
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
}

.commonTopTitleArea {
  padding: 200px 0 80px;
}

@media screen and (max-width: 767px) {
  .commonTopTitleArea {
    padding: 130px 0 40px;
  }
  .commonTopTitleArea .comTitle {
    margin: 0 auto;
  }
}
.comTitle {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.comTitle * {
  text-align: center;
}
.comTitle .line {
  width: 50px;
  height: 5px;
  border-radius: 2px;
  background: #002841;
  margin: 0 auto 10px;
}
.comTitle .title {
  font-size: clamp(28px, 2.5vw, 30px);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .comTitle {
    margin-bottom: 40px;
  }
  .comTitle .title {
    font-size: clamp(14px, 6.15vw, 24px);
  }
  .comTitle .line {
    width: 30px;
    margin: 0 auto 5px;
  }
}
.secHeader {
  width: 100%;
  position: fixed;
  z-index: 50;
  transition: opacity 0.3s;
  top: 0px;
  right: 0;
}
.secHeader .headerWidth {
  max-width: 1330px;
  width: 90%;
  margin: auto;
}
.secHeader .headerWidth .secHeaderIn {
  background: #F5F2E8;
  border-radius: 0 0px 15px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 2%;
  gap: 10px;
  margin-top: 30px;
}
.secHeader .headerWidth .secHeaderIn .secHeaderInCenter .centerInner {
  display: flex;
  align-items: center;
  gap: clamp(0.938rem, -0.483rem + 2.27vw, 1.563rem);
}
.secHeader .headerWidth .secHeaderIn .secHeaderInCenter .centerInner a span {
  font-size: clamp(0px, 1.25vw, 18px);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .secHeader {
    top: 0;
  }
  .secHeader .headerWidth {
    width: 100%;
  }
  .secHeader .headerWidth .secHeaderIn {
    margin-top: 0;
    padding: 12px 15px;
  }
}
.applyBtn {
  position: relative;
  top: -2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 32px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0 0 15px 15px;
  background-color: #002841;
  border: none;
  height: 44px;
  box-shadow: 6px 6px 0px #5CCFCB;
  transition: all 0.3s ease;
}

.applyBtn:hover {
  background-color: #5CCFCB;
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0px #002841;
}

.hoverArrow {
  position: relative;
}

.hoverArrow::after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: -2px;
  width: 46px;
  height: 44px;
  background-image: url("../../shared/images/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hoverArrow:hover::after {
  opacity: 1;
}

/* --- TOPに戻るボタン --- */
.comBtnArea {
  display: flex;
  justify-content: center;
}
.comBtnArea .topBtn {
  margin: 0 0 100px;
}
.comBtnArea a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 360px;
  width: 90%;
  color: #002841;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  background-color: #5CCFCB;
  border-radius: 10px;
  border: none;
  box-shadow: 6px 6px 0px #002841;
  transition: all 0.3s ease;
}
.comBtnArea a.bl {
  border: 3px solid #fff;
  background-color: #002841;
  box-shadow: 6px 6px 0px #5CCFCB;
  color: #fff;
}
.comBtnArea a.footerBtn {
  box-shadow: 6px 6px 0px #fff;
}
.comBtnArea a.wh {
  border: initial;
  background-color: #5CCFCB;
  box-shadow: 6px 6px 0px #fff;
  color: #002841;
}
.comBtnArea a:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0px #002841;
}
.comBtnArea .bl:hover {
  background-color: #fff;
  color: #002841;
  border: 3px solid #002841;
  box-shadow: 4px 4px 0px #5CCFCB;
}
.comBtnArea .footerBtn:hover {
  background-color: #002841;
  border: 3px solid #fff;
  color: #fff;
  box-shadow: 4px 4px 0px #18CECB;
}

@media screen and (max-width: 767px) {
  .comBtnArea a {
    padding: 10px 25px;
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(14px, 5.13vw, 20px);
  }
}
footer {
  background-color: #002841;
}
footer .footerIn {
  padding: 70px 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 54px;
}
footer .footerIn .comBtnArea {
  margin: initial;
  margin-left: auto;
  width: 210px;
}
footer .footerIn .comBtnArea a {
  padding: 10px 30px;
}
footer .footerIn .inner {
  border-top: 1px solid #fff;
}
footer .footerIn .inner .footerNav ul {
  padding: 37px 0 54px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footerIn .inner .footerNav ul li a {
  color: #fff;
  font-size: clamp(14px, 1.25vw, 15px);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  footer .footerIn {
    padding: 40px 0;
    grid-template-columns: 1fr;
    justify-content: center;
  }
  footer .footerIn .logoArea {
    text-align: center;
  }
  footer .footerIn .logoArea img {
    width: 80px;
  }
}
.secNews {
  background-color: #ffffff;
}
.secNews .secNewsIn {
  display: flex;
  flex-direction: column;
}
.secNews .secNewsIn .newsNavArea {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: grid;
  gap: 18px;
}
.secNews .newsHead {
  display: flex;
  align-items: center;
}
.secNews .newsTtl {
  color: #002841;
  font-weight: bold;
  position: relative;
}
.secNews .newsTtl::after {
  content: "";
  display: inline-block;
  background-color: #002841;
  width: 2px;
}
.secNews .catList a {
  border: 3px solid #002841;
}
.secNews .catList a.isImportant {
  background-color: #002841 !important;
  color: #ffffff;
}
.secNews .catList a.select {
  background-color: #E4F6F7;
}
.secNews .catList a.all {
  background-color: #fff !important;
}
.secNews .yearList a {
  background: #E4F6F7;
}
.secNews .yearList a.all {
  border: 3px solid #E4F6F7 !important;
}
.secNews .yearList a.select {
  border: 3px solid #002841;
}
.secNews .catList, .secNews .yearList {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.secNews .catList a, .secNews .yearList a {
  padding: 0 0 1px;
  min-width: 100px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  color: #002841;
  font-weight: bold;
  transition: all 0.3s;
}
.secNews .newsList {
  display: flex;
  flex-direction: column;
}
.secNews .newsItem {
  border-bottom: 2px solid #002841;
}
.secNews .newsLink {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #002841;
}
.secNews .newsLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #002841;
  border-radius: 50px;
  font-weight: bold;
  flex-shrink: 0;
}
.secNews .newsLabel.isImportant {
  background-color: #002841;
  color: #ffffff;
}
.secNews .newsDate {
  font-weight: bold;
}
.secNews .newsItemTtl {
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .secNews {
    padding: 40px 0;
  }
  .secNews .secNewsIn {
    gap: 40px;
  }
  .secNews .newsHead {
    flex-direction: column;
    gap: 15px;
  }
  .secNews .newsTtl {
    font-size: clamp(14px, 4.62vw, 18px);
  }
  .secNews .newsTtl::after {
    display: none;
  }
  .secNews .catList, .secNews .yearList {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .secNews .catItem a {
    font-size: 12px;
    padding: 0 15px;
    height: 32px;
  }
  .secNews .newsLink {
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 5px 15px;
  }
  .secNews .newsLabel {
    font-size: 14px;
    width: 80px;
    height: 28px;
  }
  .secNews .newsDate {
    font-size: 14px;
  }
  .secNews .newsItemTtl {
    font-size: clamp(14px, 4.1vw, 16px);
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .secNews .newsNavArea {
    padding-bottom: 56px;
  }
  .secNews .newsHead {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
  }
  .secNews .newsTtl {
    font-size: clamp(18px, 1.67vw, 20px);
    padding-right: 16px;
  }
  .secNews .newsTtl::after {
    height: 32px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .secNews .catList, .secNews .yearList {
    gap: 12px;
  }
  .secNews .catItem a {
    font-size: clamp(15px, 1.33vw, 16px);
    padding: 0 25px;
    height: 44px;
  }
  .secNews .newsLink {
    padding: 30px 0;
    gap: 40px;
  }
  .secNews .newsLabel {
    font-size: 14px;
    width: 110px;
    height: 36px;
  }
  .secNews .newsDate {
    font-size: clamp(16px, 1.5vw, 18px);
  }
  .secNews .newsItemTtl {
    font-size: clamp(18px, 1.67vw, 20px);
    flex: 1;
  }
}
.secSched .schedHead {
  background-color: #3498db;
  color: #ffffff;
  margin-bottom: 50px;
}
.secSched .schedItem {
  border-top: 2px solid #3498db;
}
.secSched .schedCatTtl, .secSched .schedCatDesc {
  color: #fff;
}
.secSched .schedCatDesc {
  font-weight: bold;
}
.secSched .staffDetail {
  flex: 1;
}
.secSched .triangle {
  display: flex;
  align-items: center;
  height: 8.6602540378px;
  width: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  rotate: 90deg;
}
.secSched .schedNotes {
  border: 2px solid #000;
  padding: 3px 10px;
  font-weight: 900;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 7px;
}
.secSched .schedNum {
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 5px 5px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
}
.secSched .schedNum .day {
  color: #fff;
  font-weight: bold;
}
.secSched .schedDateTime {
  display: flex;
  align-items: center;
  color: #3498db;
  gap: 5px;
  font-weight: bold;
}
.secSched .schedDateTime .schedDay {
  font-size: clamp(18px, 1.67vw, 20px);
  font-weight: 900;
}
.secSched .schedDateTime .schedDate, .secSched .schedDateTime .schedTime {
  font-size: clamp(28px, 2.5vw, 30px);
  font-weight: 900;
}
.secSched .schedDateTime .dayOfWeek {
  margin-left: 0.3em;
}
.secSched .schedTtl {
  font-weight: bold;
}
.secSched .schedTxt {
  line-height: 1.7;
}
.secSched .staffLabel {
  display: block;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
}
.secSched .staffLabel.-blue {
  background-color: #3498db;
  color: #ffffff;
}
.secSched .staffLabel.-white {
  background-color: #ffffff;
  color: #3498db;
}
.secSched .staffInfo {
  display: flex;
}
.secSched .staffName {
  color: #333333;
  font-weight: bold;
}
.secSched .staffName span {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.secSched .staffPost {
  font-weight: bold;
}
.secSched .staffPost span {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.secSched .staffImg img {
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .secSched {
    padding-bottom: 40px;
  }
  .secSched .schedItemBody {
    width: 90%;
    margin: auto;
  }
  .secSched .staffBox.teacherBox .staffImg {
    max-width: 230px;
    width: 50%;
  }
  .secSched .staffBox.teacherBox .staffImg img {
    width: 100%;
  }
  .secSched .staffBox.teacherBox .staffDetail {
    width: 50%;
  }
  .secSched .staffBox.interlocutorBox .staffImg {
    max-width: 150px;
    width: 30%;
  }
  .secSched .staffBox.interlocutorBox .staffImg img {
    width: 100%;
  }
  .secSched .staffBox.interlocutorBox.teacherDetail .staffImg {
    max-width: 230px;
    width: 50%;
  }
  .secSched .staffBox.interlocutorBox.teacherDetail .staffImg img {
    width: 100%;
  }
  .secSched .staffBox.interlocutorBox.teacherDetail .staffDetail {
    width: 50%;
  }
  .secSched .staffBox .staffImg img {
    width: 100%;
  }
  .secSched .schedHead {
    padding: 15px;
    margin-bottom: 30px;
    align-items: start;
  }
  .secSched .schedHead .schedCatDesc {
    font-size: 16px;
  }
  .secSched .schedCatTtl {
    font-size: clamp(14px, 5.64vw, 22px);
    margin-bottom: 5px;
  }
  .secSched .schedCatDesc {
    font-size: 13px;
  }
  .secSched .schedItem {
    padding: 0 0 40px;
  }
  .secSched .schedItemHead {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  .secSched .schedItemHead {
    flex-wrap: wrap;
  }
  .secSched .schedItemHead .schedNum {
    width: -moz-fit-content;
    width: fit-content;
    height: initial;
    padding: 10px 5px;
    margin-right: 10px;
    font-size: clamp(14px, 5.64vw, 22px);
    align-items: baseline;
  }
  .secSched .schedItemHead .schedNum .day {
    margin-right: 2px;
    font-size: clamp(14px, 4.62vw, 18px);
  }
  .secSched .schedDateTime .schedDate, .secSched .schedDateTime .schedTime {
    font-size: clamp(16px, 6.67vw, 26px);
  }
  .secSched .schedTtl {
    font-size: clamp(14px, 5.13vw, 20px);
    margin-bottom: 10px;
  }
  .secSched .schedTxt {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .secSched .staffBox {
    margin-bottom: 20px;
  }
  .secSched .staffBox:last-child {
    margin-bottom: 0;
  }
  .secSched .staffLabel {
    width: 60px;
    padding: 2px 0;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .secSched .staffImg {
    width: 100px;
    margin-right: 15px;
  }
  .secSched .staffName {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .secSched .staffPost {
    font-size: 12px;
    margin-top: 5px;
  }
}
@media print, screen and (min-width: 768px) {
  .secSched .schedCatTtl {
    font-size: clamp(33px, 2.92vw, 35px);
    font-weight: bold;
  }
  .secSched .schedNotes {
    font-size: clamp(23px, 2.08vw, 25px);
  }
  .secSched .schedHead {
    padding: 20px;
  }
  .secSched .schedHead .schedCatDesc {
    font-weight: bold;
    font-size: clamp(23px, 2.08vw, 25px);
  }
  .secSched .schedItem {
    padding: 0px 0px 50px;
    width: 90%;
    margin: auto;
  }
  .secSched .schedItemHead {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
  .secSched .schedNum {
    font-size: 40px;
    font-weight: bold;
    margin-right: 20px;
    min-width: 100px;
    height: 60px;
    display: flex;
    align-items: baseline;
    gap: 2px;
  }
  .secSched .schedNum .day {
    font-size: 30px;
  }
  .secSched .schedDateTime {
    font-size: clamp(22px, 2vw, 24px);
  }
  .secSched .schedTtl {
    font-size: clamp(33px, 2.92vw, 35px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .secSched .schedTtl span {
    font-size: clamp(23px, 2.08vw, 25px);
    font-weight: 900;
    line-height: 1.2;
  }
  .secSched .schedTxt {
    font-size: clamp(16px, 1.5vw, 18px);
    margin-bottom: 30px;
    font-weight: 500;
  }
  .secSched .schedStaffs {
    display: flex;
    justify-content: space-between;
    gap: clamp(1.563rem, -6.25rem + 12.5vw, 3.125rem);
  }
  .secSched .staffBox {
    width: 50%;
  }
  .secSched .staffBox.teacherBox .staffImg {
    width: 230px;
  }
  .secSched .staffBox.teacherBox .staffImg img {
    width: 230px;
  }
  .secSched .staffBox.interlocutorBox .staffImg img {
    width: 150px;
  }
  .secSched .staffBox.interlocutorBox .staffName {
    font-size: clamp(18px, 1.67vw, 20px);
  }
  .secSched .staffBox.interlocutorBox.teacherDetail .staffImg {
    width: 230px;
  }
  .secSched .staffBox.interlocutorBox.teacherDetail .staffImg img {
    width: 230px;
  }
  .secSched .staffBox.interlocutorBox.teacherDetail .staffName {
    font-size: clamp(28px, 2.5vw, 30px);
  }
  .secSched .staffBox .staffImg img {
    width: 100%;
  }
  .secSched .staffLabel {
    width: 100px;
    padding: 8px 0;
    font-size: 15px;
    margin-bottom: 7px;
  }
  .secSched .staffName {
    font-size: clamp(28px, 2.5vw, 30px);
  }
  .secSched .staffPost {
    font-size: clamp(15px, 1.33vw, 16px);
    font-weight: bold;
  }
  .secSched .staffInfo {
    gap: clamp(0.75rem, -6.125rem + 11vw, 2.125rem);
  }
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .secSched .schedStaffs {
    flex-direction: column;
  }
  .secSched .schedStaffs .staffBox {
    width: 100%;
  }
}/*# sourceMappingURL=common.css.map */