@charset "UTF-8";
:root {
  --page-color1: #008555;
  --page-color2: rgba(0, 133, 85, 0.8);
  --color-green1: #E4F3EE;
}

/* 機械システム工学プログラム */
.fc-mech {
  color: #E50150!important;
}
.bg-mech {
  background-color: #E50150!important;
}
/* 社会基盤工学プログラム */
.fc-infra {
  color: #EC6C00!important;
}
.bg-infra {
  background-color: #EC6C00!important;
}
/* 電子情報通信プログラム */
.fc-ele {
  color: #FEA900!important;
}
.bg-ele {
  background-color: #FEA900!important;
}
/* 知能情報システムプログラム */
.fc-inte {
  color: #6CB132!important;
}
.bg-inte {
  background-color: #6CB132!important;
}
/* 化学システム工学プログラム */
.fc-che {
  color: #109150!important;
}
.bg-che {
  background-color: #109150!important;
}
/* 材料科学プログラム */
.fc-mat {
  color: #09968E!important;
}
.bg-mat {
  background-color: #09968E!important;
}
/* 建築学プログラム */
.fc-arch {
  color: #014B96!important;
}
.bg-arch {
  background-color: #014B96!important;
}
/* 人間支援感性科学プログラム */
.fc-human {
  color: #631D7D!important;
}
.bg-human {
  background-color: #631D7D!important;
}
/* 協創経営プログラム */
.fc-emgt {
  color: #B70171!important;
}
.bg-emgt {
  background-color: #B70171!important;
}

/* 各ページ共通 */
main {
  margin-top: 50px;
  margin-bottom: 100px;
}
main a:not([class]) {
  display: inline-block;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
}
section {
  margin: 100px 0;
}
.inner > section:first-child {
  margin-top: 0;
}
section > c-title1:first-child {
  margin-top: 0;
}
article {
  margin: 50px 0;
}
article.entryBody {
  margin: 0;
}

/* モーダル */
a[data-modal] {
  cursor: pointer;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  background-color: rgba(0, 0, 0, 0.5);
}
.c-modal {
  display: none;
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  width: 700px;
  max-width: 80vw;
  max-height: 80vh;
  z-index: 20001;
}
.c-modal .modalClose {
  display: block;
  margin-left: auto;
}

/* 共通パーツ */
.c-title1 {
  font-weight: bold;
  background-image: url(../img/img-title.png);
  background-position: top center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  margin: 100px 0 50px;
  padding: 28px 0 16px;
}
main > .c-title1:first-child,
main > .inner:first-child > .c-title1:first-child,
main > .inner:first-child > section:first-child > .c-title1:first-child {
  margin-top: 0;
}

.c-title1:after {
  content: "";
  display: block;
  width: 40px;
  height: 6px;
  background-color: var(--page-color1);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-title2 {
  color: var(--page-color1);
  font-weight: bold;
  text-align: center;
  margin: 40px 0;
}
.c-title3 {
  font-weight: bold;
  border-bottom: 2px solid var(--page-color1);
  margin-bottom: 30px;
}
.c-title4 {
  color: var(--page-color1);
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 50px;
}
.c-title5 {
  font-weight: bold;
  background-color: var(--color-green1);
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}
.c-title5:before {
  background-color: var(--main-green1);
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-title6 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--main-green1);
}
.c-title7 {
  font-weight: bold;
  border-bottom: 2px solid var(--page-color1);
  margin-bottom: 30px;
}
.c-accTitle2 {
  cursor: pointer;
  margin-top: 1px;
  margin-bottom: 1px;
}
.c-accTitle2,
.c-accTitle3 {
  background-color: var(--main-green4);
  font-weight: bold;
  position: relative;
}
.c-accTitle2:before,
.c-accTitle3:before {
  background-color: var(--main-green1);
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-accTitle2 .icon span,
.c-accTitle3 .icon span {
  background-color: #333;
  position: absolute;
  top: 50%;
  right: 10px;
  transition: 0.3s;
  height: 1px;
}
.c-accTitle2 .icon span:first-child,
.c-accTitle3 .icon span:first-child {
  transform: rotate(-90deg);
}
.c-accTitle2.active .icon span:first-child,
.c-accTitle3.active .icon span:first-child {
  transform: rotate(0);
}
.c-accTitle2 + .accContents {
  display: none;
}
.c-accTitle2 + .accContents > *:first-child,
.c-accTitle3 + .accContents > *:first-child {
  margin-top: 0!important;
}
.c-accTitle2 + .accContents > *:last-child,
.c-accTitle3 + .accContents > *:last-child {
  margin-bottom: 0!important;
}
.c-accTitle4 + .accContents .c-title2:not(:first-child),
.c-accTitle4 + .accContents > article:not(:first-child) > .c-title2 {
  margin-top: 90px;
}
.c-text1 {
  font-weight: bold;
  text-align: center;
}
.c-title1 + .c-text1 {
  margin-top: -5px;
}
.c-table1 {
  table-layout: fixed;
}
.c-table2 tr:first-child th,
.c-table3 tr:first-child th,
.c-table4 tr:first-child th {
  text-align: center;
}
.c-table3,
.c-table4 {
  margin: 30px 0;
}
.c-table3 + .tableCaption,
.c-table4 + .tableCaption {
  margin-top: -25px;
}
.c-table5 tr *:first-child {
  width: 30%;
}
.c-link1 {
  display: block;
  color: #fff;
  background-color: var(--main-green1);
  text-align: center;
  font-weight: bold;
  margin: 30px auto;
}
.c-link1 + .c-link1 {
  margin-top: -20px;
}
.c-link2 {
  display: block;
  color: #fff;
  background-color: var(--main-green1);
  text-align: center;
  font-weight: bold;
  margin: 20px auto;
}
.c-link2 + .c-link2 {
  margin-top: -10px;
}
.c-linkBtn {
  display: inline-block;
  border: 1px solid #008555;
  border-radius: 10px;
  width: 60px;
  height: 20px;
  position: relative;
  margin-left: 8px;
  vertical-align: middle;
}
.c-linkBtn span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 8px;
}
.c-linkBtn span:first-child {
  left: 13px;
  border-color: transparent transparent transparent #B2DACC;
}
.c-linkBtn span:nth-child(2) {
  left: 26px;
  border-color: transparent transparent transparent #66B699;
}
.c-linkBtn span:last-child {
  left: 39px;
  border-color: transparent transparent transparent #008555;
}
.c-linkArea {
  margin-top: 50px;
  margin-bottom: 45px;
}
main .c-linkArea a {
  display: block;
  background-color: var(--main-green1);
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
main .c-linkList > li {
  max-width: 450px;
}
main .c-linkList a {
  background-color: var(--main-green1);
  color: #fff;
  display: block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.c-pageLink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.c-sxs1 figure,
.programSxs figure {
  margin: 0;
}
p + .c-sxs1 {
  margin-top: 25px;
}
.c-sxs1 .text p:last-child,
.c-sxs3 .text p:last-child,
.programSxs .text p:last-child {
  margin-bottom: 0;
}
.c-sxs2 {
  display: flex;
}
.c-sxs2:not(:last-child) {
  margin-bottom: 20px;
}
.c-sxs3 > * > .c-title3:first-child {
  margin-top: 0;
}
.c-sxs4 {
  display: flex;
}
.c-figure1 {
  background-color: #f2f2f2;
}
.c-figure1 img {
  padding: 20px;
  margin: 0 auto;
}
.c-figure1 figcaption {
  background-color: #333;
  color: #fff;
  font-weight: bold;
}
.c-mapArea .googlemap .iframe {
  position: relative;
}
.c-mapArea .googlemap .iframe:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.c-mapArea .googlemap .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
ol[class^="c-block"] {
  counter-reset: block;
  padding: 0;
}
ol[class^="c-block"] li {
  background-color: #EDF5E2;
  line-height: 1.25;
  list-style: none;
}
ol[class^="c-block"] li:before {
  color: var(--main-green1);
  counter-increment: block;
  content: '0'counter(block);
  display: block;
  font-weight: normal;
}
ol[class^="c-block"] li:nth-child(n+10):before {
  content: counter(block);
}
ol[class^="c-block"].yellow li {
  background-color: #FFFCDE;
}
ol[class^="c-block"].yellow li:before {
  color: #754C24;
}
ol[class^="c-block"].blue li {
  background-color: #E2F2FD;
  color: #333;
}
ol[class^="c-block"].blue li:before {
  color: #1B1464;
}
ol[class^="c-block"] li,
ol[class^="c-block"] li * {
  font-weight: bold;
  text-align: center;
}
ol[class^="c-block"] li span {
  font-weight: normal;
  display: block;
}
ol[class^="c-block"] li p {
  font-weight: normal;
  text-align: left;
}
ol[class^="c-block"] li > *:last-child {
  margin-bottom: 0;
}
main ul.c-list,
main ol.c-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.c-list > li {
  border-bottom: 1px solid #ccc;
  padding-top: 16px;
  padding-bottom: 16px;
}
.c-list > li:first-child {
  border-top: 1px solid #ccc;
}
ol.c-list {
  counter-reset: list;
}
ol.c-list > li {
  position: relative;
}
ol.c-list > li:before {
  position: absolute;
}
ol.c-list > li:before {
  counter-increment: list;
  content: counter(list)'.';
  color: var(--main-green1);
}
.c-list2 {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-list2 > li {
  position: relative;
  padding-left: 14px;
}
.c-list2 > li:before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #b3b3b3;
  top: 7px;
  left: 0;
}

/* ページタイトル */
.pageTitle {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/img-main_lower.jpg);
}
.pageTitle h1 {
  color: #fff;
  font-weight: bold;
  margin: 0;
  text-align: center;
  align-self: center;
}
/* お知らせ 受賞一覧 */
#news .postDate {
  text-align: right;
  margin-right: 5px;
}

/* ここから1261以上
--------------------------------------- */
@media all and (min-width: 1261px) {

  /* ページタイトル */
  .pageTitle {
    background-size: cover;
    min-height: 160px;
  }
  .pageTitle h1 {
    font-size: 4rem;
  }
  /* 各ページ共通 */
  main p {
    line-height: 1.625;
  }
  /* 共通パーツ */
  .c-title1 {
    background-size: 60px auto;
    font-size: 4rem;
  }
  .c-title2 {
    font-size: 3.6rem;
  }
  .c-title3{
    font-size:3rem;
    padding-bottom: 2px;
  }
  .c-title3 + p {
    margin-top: -10px;
  }
  .c-title4{
    font-size: 3rem;
    text-align: center;
  }
  .c-title5 {
    font-size: 2.4rem;
    padding: 9.5px 10px 9.5px 45px;
  }
  .c-title5:before {
    width: 30px;
  }
  .c-title6 {
    margin: 20px 0 15px;
  }
  .c-title7{
    font-size:2.4rem;
    padding-bottom: 2px;
  }
  .c-title7 + p {
    margin-top: -10px;
  }
  .c-accTitle1{
    font-size: 3.6rem;
    text-align: center;
    color: var(--page-color1);
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .c-accTitle2 {
    font-size: 2.4rem;
    padding: 9.5px 45px;
  }
  .c-accTitle2:before,
  .c-accTitle3:before {
    width: 30px;
  }
  .c-accTitle2 .icon span {
    width: 24px;
  }
  .c-accTitle2 + .accContents {
    padding: 30px 0;
  }
  .c-accTitle3 {
    font-size: 2.4rem;
    padding: 9.5px 10px 9.5px 45px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .c-accTitle4 {
    font-size: 4rem;
    font-weight: bold;
    background-image: url(../img/img-title.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 60px auto;
    text-align: center;
    position: relative;
    margin: 100px 0 50px;
    padding: 28px 0 16px;
  }
  .c-accTitle4:after {
    content: "";
    display: block;
    width: 40px;
    height: 6px;
    background-color: var(--page-color1);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .c-accTitle1 + .accContents,
  .c-accTitle3 + .accContents,
  .c-accTitle4 + .accContents {
    display: block!important;
  }
  .c-text1 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .c-table2 tr > *:not(:last-child) {
    width: 25%;
  }
  .c-table2 tr > *:last-child {
    width: 50%;
  }
  .c-table3 tr > * {
    width: calc(13 / 60 * 100%);
  }
  .c-table3 tr > *:last-child {
    width: calc(21 / 60 * 100%);
  }
  .c-table4 tr > * {
    width: calc(1 / 6 * 100%);
  }
  .c-table4 tr > *:last-child {
    width: calc(1 / 3 * 100%);
  }
  .c-link1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    padding: 5px 10px;
    border-radius: 45px;
    max-width: 600px;
    width: 100%;
    min-height: 90px;
  }
  .c-link2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 30px;
    max-width: 300px;
    width: 100%;
    min-height: 60px;
  }
  .c-linkArea {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.5px;
    margin-right: -1.5px;
    align-items: flex-start;
  }
  .c-linkArea a {
    padding: 8px 10px;
    width: calc(100% / 3 - 3px);
    margin-left: 1.5px;
    margin-right: 1.5px;
  }
  .c-linkArea a:nth-child(n+4) {
    margin-top: 6px;
  }
  .c-linkArea.col4 a {
    width: calc(100% / 4 - 3px);
    margin-left: 1.5px;
    margin-right: 1.5px;
  }
  .c-linkArea.col4 a:nth-child(n+4) {
    margin-top: 0;
  }
  .c-linkArea.col4 a:nth-child(n+5) {
    margin-top: 6px;
  }
  .c-linkList > li {
    margin: 10px auto;
  }
  .c-linkList > li > a {
    border-radius: 20px;
    padding: 8px 5px;
  }
  .c-pageLink {
    margin: 0 -10px -20px;
  }
  .c-pageLink a {
    width: 240px;
    margin: 0 10px 20px;
  }
  .c-pageLink a img {
    display: block;
  }
  .c-sxs1 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .c-sxs1 > * {
    width: calc(50% - 24px);
  }
  .c-sxs1 > *:nth-child(even) {
    margin-left: 48px;
  }
  .c-sxs1 > *:nth-child(n+3) {
    margin-top: 30px;
  }
  .c-sxs2 {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .c-sxs2 > * {
    width: calc(50% - 25px);
  }
  li > .c-sxs2:only-child {
    margin-top: 0;
    margin-bottom: 0;
  }
  .c-sxs3 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .c-sxs3 > * {
    width: calc(100% / 3 - 16px);
  }
  .c-sxs3 > *:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .c-sxs3 > *:nth-child(n+4) {
    margin-top: 30px;
  }
  .c-sxs4 {
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .c-sxs4 > img {
    width: 180px;
  }
  .c-sxs4 p {
    margin-bottom: 0;
  }
  .c-sxs4 > p,
  .c-sxs4 .text {
    width: calc(100% - 200px);
  }
  *[class^="c-sxs"] > * > *:first-child {
    margin-top: 0;
  }
  *[class^="c-sxs"] > * > *:last-child {
    margin-bottom: 0;
  }
  .c-figure1 figcaption {
    padding: 8px 10px;
  }
  .c-mapArea {
    display: flex;
    justify-content: space-between;
  }
  .c-mapArea img {
    width: 58%;
  }
  .c-mapArea .googlemap {
    width: 41.66%;
  }
  ol[class^="c-block"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  ol[class^="c-block"] li {
    font-size: 2.4rem;
    padding: 10px 20px 15px;
  }
  ol[class^="c-block"] li:before {
    font-size: 5rem;
  }
  ol[class^="c-block"] li p {
    font-size: 1.6rem;
  }
  ol[class^="c-block"] li h4 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .c-block1 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .c-block1 li {
    width: calc(100% / 3 - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  .c-block1 li:nth-child(n+4) {
    margin-top: 30px;
  }
  .c-block2 {
    margin-left: -12px;
    margin-right: -12px;
  }
  .c-block2 li {
    width: calc(25% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }
  .c-block2 li:nth-child(n+5) {
    margin-top: 24px;
  }
  .c-block3 {
    margin-left: -24px;
    margin-right: -24px;
  }
  .c-block3 li {
    width: calc(50% - 48px);
    margin-left: 24px;
    margin-right: 24px;
  }
  .c-block3 li:nth-child(n+3) {
    margin-top: 48px;
  }

  ol.c-list > li:nth-child(-n+9) {
    padding-left: 20px;
  }
  ol.c-list > li:nth-child(n+10) {
    padding-left: 30px;
  }
  ol.c-list > li:nth-child(n+100) {
    padding-left: 40px;
  }
  ol.c-list > li:before {
    left: 0;
  }
  ol.c-list > li:before {
    top: 16px;
  }
  .c-title3 + .c-list {
    margin-top: -5px;
  }
  .c-title3 + .c-list > li:first-child {
    padding-top: 0;
    border-top: none;
  }
  .c-title3 + ol.c-list > li:first-child:before {
    top: 0;
  }

  /* お知らせ 受賞一覧 */
  #news .c-title3 + .postDate {
    margin-top: -25px;
  }

}

/* ここまで1261以上
--------------------------------------- */
/* ここから1260以下
--------------------------------------- */
@media screen and (max-width: 1260px) {

  /* ページタイトル */
  .pageTitle {
    background-size: cover;
    min-height: 80px;
  }
  .pageTitle h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  /* 各ページ共通 */
  main p {
    line-height: 1.715;
  }
  section.hasAcc {
    margin: 0;
  }
  .inner {
    max-width: 670px;
  }
  /* 共通パーツ */
  .c-title1 {
    background-size: 50px auto;
    font-size: 3.5rem;
  }
  .c-title2 {
    font-size: 3.2rem;
  }
  .c-title3{
    font-size:2.7rem;
    padding-bottom: 5px;
    margin: 25px 0;
  }
  .c-title4 {
    font-size: 3rem;
  }
  .c-title5 {
    font-size: 2.3rem;
    padding: 9.5px 10px 9.5px 30px;
  }
  .c-title5:before {
    width: 20px;
  }
  .c-title6 {
    margin: 10px 0;
  }
  .c-title7{
    font-size:2.3rem;
    padding-bottom: 5px;
    margin: 25px 0;
  }
  .c-accTitle1,
  .c-accTitle4 {
    position: relative;
    background-color: var(--main-green1);
    color: #fff;
    font-size: 2.4rem;
    padding: 18px 40px 18px 10px;
    cursor: pointer;
    margin: 0 0 1px;
  }
  .c-accTitle1:before,
  .c-accTitle1:after,
  .c-accTitle4:before,
  .c-accTitle4:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    right: 10px;
    background-color: #fff;
    height: 2px;
    width: 20px;
    transition: 0.3s;
  }
  .c-accTitle1:before,
  .c-accTitle4:before {
    transform: rotate(-90deg);
  }
  .c-accTitle1.active:before,
  .c-accTitle4.active:before {
    transform: rotate(0);
  }
  .c-accTitle1 + .accContents {
    display: none;
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .c-accTitle1 + .accContents > *:first-child {
    margin-top: 0;
  }
  .c-accTitle1 + .accContents > *:last-child {
    margin-bottom: 0;
  }
  .c-accTitle2,
  .c-accTitle3 {
    font-size: 2.3rem;
    padding: 9.5px 40px 9.5px 30px;
  }
  .c-accTitle2:before,
  .c-accTitle3:before {
    width: 20px;
  }
  .c-accTitle2 .icon span,
  .c-accTitle3 .icon span {
    width: 20px;
  }
  .c-accTitle2 + .accContents {
    padding: 20px 0;
  }
  .c-accTitle3 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
  .c-accTitle3 + .accContents {
    display: none;
    padding: 30px 0;
  }
  .c-accTitle4 + .accContents {
    display: none;
    padding: 50px 0 100px;
  }
  section:last-child > .c-accTitle4 + .accContents {
    padding-bottom: 0;
  }
  .c-accTitle4 + .accContents > *:first-child,
  .c-accTitle4 + .accContents > *:first-child > *:first-child {
    margin-top: 0;
  }
  .c-accTitle4 + .accContents > *:last-child,
  .c-accTitle4 + .accContents > *:last-child > *:last-child {
    margin-bottom: 0;
  }
  .c-text1 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .c-table2 th,
  .c-table2 td {
    display: block;
    border-bottom: none;
  }
  .c-table2 th {
    text-align: center;
  }
  .c-table2 tr:last-child td:last-child {
    border-bottom: 1px solid #ccc;
  }
  .c-table3 tr > * {
    width: 25%;
  }
  .c-table4 tr > * {
    width: 20%;
  }
  .c-sxs1 + .c-title3 {
    margin-top: 40px;
  }
  .c-link1 {
    padding: 14px 10px;
    border-radius: 45px;
    max-width: 400px;
    width: calc(100% - 35px);
  }
  .c-link2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 22.5px;
    max-width: 300px;
    width: 100%;
    min-height: 45px;
  }
  .c-linkArea a {
    padding: 8px 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .c-linkArea a:not(first-child) {
    margin-top: 5px;
  }
  .c-pageLink {
    margin: 0 -2.5px -5px;
  }
  .c-pageLink a {
    width: 165px;
    margin: 0 2.5px 5px;
  }
  .c-pageLink a img {
    display: block;
  }
  .c-linkList > li {
    margin: 3.5px auto;
  }
  .c-linkList > li a {
    border-radius: 20px;
    padding: 8px 5px;
  }
  .c-linkList a:first-child {
    margin-top: 0;
  }
  .c-sxs1 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .c-sxs1.spReverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .c-sxs1 > *:not(:first-child) {
    margin-top: 20px;
  }
  .c-sxs1 figure:not(:first-child):not([class]) {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .c-sxs1 .text + img,
  .c-sxs1 .text + figure {
    margin-top: 25px;
  }
  .c-sxs2 {
    flex-direction: column-reverse;
  }
  .c-sxs2 > *:not(:first-child) {
    margin-bottom: 15px;
  }
  .c-sxs2 > .text > p:last-child {
    margin-bottom: 0;
  }
  .c-sxs2 + .c-list {
    margin-top: -15px;
  }
  .c-sxs3 > * {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .c-sxs3 > *:first-child {
    margin-top: 0;
  }
  .accContents .c-sxs3 > div:not(:first-child) {
    margin-top: 40px;
  }
  .c-sxs4 {
    flex-direction: column-reverse;
  }
  .c-sxs4 > p,
  .c-sxs4 .text {
    margin-bottom: 5px;
  }
  .c-sxs4 img {
    display: block;
    margin: 0 auto;
  }
  figure.c-figure1 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .c-figure1 figcaption {
    padding: 8px 10px;
  }
  .c-mapArea {
    margin-top: 50px;
  }
  .c-mapArea .googlemap {
    margin-top: 20px;
  }
  ol[class^="c-block"] li {
    font-size: 1.8rem;
    padding: 15px 20px 15px;
    margin: 20px 0;
  }
  ol[class^="c-block"] li:before {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  ol[class^="c-block"] li p {
    font-size: 1.4rem;
  }
  ol[class^="c-block"] li h4 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  ol.c-list > li:nth-child(-n+9) {
    padding-left: 15px;
  }
  ol.c-list > li:nth-child(n+10) {
    padding-left: 25px;
  }
  ol.c-list > li:nth-child(n+100) {
    padding-left: 35px;
  }
  ol.c-list > li:before {
    left: 0;
  }
  ol.c-list > li:before {
    top: 16px;
  }
  .c-list2 > li:before {
    top: 6px;
  }
  .c-title3 + ol.c-list > li:first-child {
    padding-top: 0;
    border-top: none;
  }
  .c-title3 + ol.c-list > li:first-child:before {
    top: 0;
  }

  /* お知らせ 受賞一覧 */
  #news .c-title3 + .postDate {
    margin-top: -20px;
  }

}


/* お知らせ一覧ページ */
.p-newsList #news .catSelect {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
  border-bottom: 4px solid #008555;
}
.p-newsList #news .catSelect li {
  border-top: 1px solid #676767;
  border-left: 1px solid #676767;
  flex: 1;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}
.p-newsList #news .catSelect li:hover,
.p-newsList #news .catSelect li.active {
  border-color: #008555;
  background-color: #008555;
  color: #fff;
}
.p-newsList #news .catSelect li:last-child {
  border-right: 1px solid #676767;
}
.p-newsList #news .newsList li {
  display: none;
  border-bottom: 1px solid #666;
}
.p-newsList #news .newsList li a {
  text-decoration: none;
}
.p-newsList #news .newsList li a .category {
  background-color: var(--main-green1);
  color: #fff;
  text-align: center;
}

/* 入学を希望される方へページ */
.p-guide .calendar_wrap iframe {
  width: 100%;
}


/* ここから1261以上
--------------------------------------- */
@media all and (min-width: 1261px) {
  .p-newsList #news .catSelect li {
    padding: 13px 5px;
  }
  .p-newsList #news .newsList li {
    padding: 20px 0;
  }
  .p-newsList #news .newsList li a {
    display: flex;
  }
  .p-newsList #news .newsList li a .date {
    flex-shrink: 0;
    margin-right: 30px;
  }
  .p-newsList #news .newsList li a .category {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 13px;
    padding: 2.5px 8px;
    min-width: 80px;
    align-self: flex-start;
  }
}
/* ここまで1261以上
--------------------------------------- */
/* ここから1260以下
--------------------------------------- */
@media screen and (max-width: 1260px) {
  .p-newsList #news .catSelect li {
    font-size: 1.2rem;
    padding: 5.5px 0;
  }
  .p-newsList #news .newsList li {
    padding: 8px 0 6px;
  }
  .p-newsList #news .newsList li a .date {
    margin-right: 14px;
  }
  .p-newsList #news .newsList li a .category {
    display: inline-block;
    font-size: 1.2rem;
    border-radius: 10px;
    padding: 1px 8px;
    min-width: 80px;
  }
  .p-newsList #news .newsList li a .text {
    display: block;
    margin-top: 6px;
  }
}