@charset "UTF-8";

/*==================
画面設計
768px をブレイクポイントとし
それ以上はPCレイアウト
768px以下はスマホレイアウトととする
@media screen and ( max-width:48rem) { }
@media screen and ( max-width:768px) {  }
==================*/

html {
    font-size: 10px;
    height: 100%;
    color: #000;
    /* padding-top: 73px; */
}
body {
    /* height: 100%; */
    /* font-family: 'Noto Sans JP', sans-serif; */
/*     font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; */
	font-family: 'Sawarabi Gothic', sans-serif;
    font-weight: 400;
    font-style: normal;
}
section, div, ul, li, dl, dt, dd {
    box-sizing: border-box;
}
.spDispOnly {
    display: none;
}
.pcDispOnly {
    display: block;
}
@media screen and (max-width:767px) {
    .spDispOnly {
        display: block;
    }
    .pcDispOnly {
        display: none;
    }
    img {
        max-width: 100%;
    }
}
a:hover img {
    opacity: 0.6;
}
a.pagetopBtn {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 20px;
    padding: 5px;
    background-color: #333;
    color: #FFFFFF;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    transform: scale(0.8);
    opacity: 0.8;
    border-radius: 100%;
    z-index: 999;
    text-decoration: none;
    cursor: pointer;
}

.headerArea {
    width: 100%;
    height: 100px;
    background-color: #EEEEEF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.headerArea .inner{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.headerArea .logo {
    margin: 0 !important;
}
.headerArea .logo img{
    width: 350px;
}
.headerArea nav ul {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}
.headerArea nav ul li a{
    text-decoration: none;
    display: block;
    font-size: 1.3rem;
    color: inherit;
}

.spMenuBtn{
    display: none;
    cursor: pointer;
    user-select: none;
    z-index: 9999;
}
#spMenuOpen{
    display: none;
    width: 20px;
    height: 20px;
    text-align: center;

    position: fixed;
    top: 30px;
    right: 20px;
}
#spMenuClose{
    display: none;
    width: 20px;
    height: 20px;
    text-align: center;

    position: absolute;
    top: 30px;
    right: 20px;
}
@media screen and (max-width:767px) {
    .headerArea {
        height: 80px;
    }
    .headerArea .inner{
        padding: 0 20px;
    }
    .headerArea .logo img{
        width: 350px;
        max-width: 70vw;
    }
    #headNavi{
        display: none;
        position: fixed;
        top: 0;
        /* left: 0; */
        right: 0;
        bottom: auto;
        width: 100vw;
        min-height: 100vh;
        background-color: rgba(255, 255, 255, 1);
        box-sizing: border-box;
        z-index: 9999;
        padding-top: 60px;
        padding-bottom: 20px;
        overflow: hidden scroll;
          overflow-y: auto;
    }
    #headNavi ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 30px;
        gap: 0;
    }
    #headNavi ul li{
    }
    #headNavi ul li a{
        display: block;
        font-weight: 700;
        padding: 20px;
    }
    #spMenuOpen{
        display: block;
    }
    #spMenuClose{
        display: block;
    }
}


.footerArea {
    width: 100%;
    height: 100px;
    background-color: #EEEEEF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerArea .inner{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footerArea .logo {
}
.footerArea .logo img{
    width: 350px;
}
.footerArea nav ul {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}
.footerArea nav ul li a{
    text-decoration: none;
    display: block;
    font-size: 1.2rem;
    color: inherit;
}
@media screen and (max-width:767px) {
    .footerArea nav{
        display: none;
    }
    .footerArea .logo{
        text-align: center;
        margin: 0 auto;
    }
    .footerArea .logo img{
        width: 200px;
    }
}


/* 共通 */
.mvArea{
    width: 100%;
    overflow: hidden;
    max-width: 1320px;
    text-align: center;
    margin: 0 auto 40px;
}
.mvArea img{
    max-width: 100%;
}
.mvArea .sp{
    display: none;
}
@media screen and (max-width:767px) {
    .mvArea .pc{
        display: none;
    }
    .mvArea .sp{
        display: block;
    }
}
.topMainNaviArea{
}
.topMainNaviArea ul{
    display: flex;
    justify-content: center;
    margin: 60px auto 30px;
}
.topMainNaviArea ul li{
}
.topMainNaviArea ul li a{
    display: block;
    width: 190px;
    text-align: center;
    padding: 5px 0px;
    border-right: #ddd 1px solid;
}
.topMainNaviArea ul li:first-child a{
    border-left: #ddd 1px solid;
}
.topMainNaviArea ul li a img{
    height: 30px;
}
@media screen and (max-width:767px) {
    .topMainNaviArea ul{
        width: 300px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 60px auto 30px;
    }
    .topMainNaviArea ul li a{
        display: block;
        width: 190px;
        text-align: center;
        padding: 20px 0px;
        /* border-top: #ddd 1px solid; */
        border-right: none;
        border-bottom: #ddd 1px solid;
    }
    .topMainNaviArea ul li:first-child a{
        border-left: none;
    }
}

.topListArea .inner{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.categorySwitcher{
    padding: 20px 0;
    font-size: 1.3rem;
}
.categorySwitcher a{
    text-decoration: none;
    color: inherit;
}
.categorySwitcher dl{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.categorySwitcher dl dt{
    padding: 4px 10px 2px;
    display: block;
    color: #FFF;
    background-color: #999;
    border-radius: 100px;
	font-weight: 400;
}
.categorySwitcher dl dd::before{
    display: inline-block;
    content: "|";
    margin-right: 20px;
}
.categorySwitcher dl::after{
    display: inline-block;
    content: "|";
    margin-right: 20px;
}
@media screen and (max-width:767px) {
    .categorySwitcher dl{
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 8px;
    }
    .categorySwitcher dl dt{
        width: 100%;
    }
    .categorySwitcher dl dd::before{
        margin-right: 8px;
    }
    .categorySwitcher dl::after{
        margin-right: 8px;
    }
}
.listWrapper{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    flex-wrap: wrap;
    gap: 60px;

    margin: 40px 0 100px;
}
.listWrapper .articleUnit{
    width: 100%;
    max-width: 320px;
}
.articleUnit .imgWrapper img{
    width: 320px;
    height: 200px;
    object-fit: cover;
}
.articleUnit .articleTitle{
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 20px 0;
}
.articleUnit .articleMain{
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.articleUnit .articleDate{
    text-align: right;
}
.articleUnit .articleCategory{
    font-size: 1.3rem;
}
.articleUnit .articleCategory a{
    color: inherit;
    color: #FFF;
    text-decoration: none;

    background-color: #999;
    padding: 6px 10px;
    border-radius: 100px;
    display: block;
    width: 8em;
    text-align: center;
}
.articleUnit .articleCategory a.cat-studentlife{
    background-color: #076BB0;
}
.articleUnit .articleCategory a.cat-news{
    background-color: #D6151D;
}
.articleUnit .articleCategory a.cat-research{
    background-color: #16933D;
}

.pageNation{
    font-size: 1.3rem;
    margin:  80px auto;
}
.pageNation a{
    color: inherit;
    text-decoration: none;
    padding: 10px;
}
.pageNation ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}



@media screen and (max-width:900px) {
    .listWrapper{
        padding:  0 20px;
        justify-content: space-between;
        gap: 40px 0px;
    }
    .listWrapper .articleUnit{
        width: 48%;
        max-width: none;
    }
    .articleUnit .imgWrapper img{
        width: 320px;
        height: 30vw;
        object-fit: cover;
    }
}


.pageTobiraImg{
    width: 100%;
    min-height: 300px;
    text-align: center;
}
.pageTobiraImg img{
    width: 100%;
    max-width: 1320px;
    height: 300px;
    object-fit: cover;
    margin:  0 auto;
}
.pageMainArea{
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 60px;
    font-size: 1.4rem;
}

@media screen and (max-width:1100px) {
    .pageMainArea{
        padding: 0 20px;
        box-sizing: border-box;
    }
}


.singleMain .articleTitle{
	font-weight:600;
	margin: 20px 0;
	font-size: 1.6rem;
}
.singleMain .articleDate{
	margin-bottom: 30px;
}




/* カリキュラムテーブルスタイル */
.curriculumTable{
  width: 100%;
  border-collapse: collapse;
}
.curriculumTable th{
  padding: 8px 5px;
  font-size: 1.1rem !important;
  border: #ccc 1px solid;
  line-height: 1.5;
  text-align: left;
}
.curriculumTable td{
  padding: 8px 5px;
  font-size: 1.1rem !important;
  border: #ccc 1px solid;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width:767px) {
	.curriculumTable th,
	.curriculumTable td{
		font-size: 1rem !important;
	}
}
.curriculumTable th{
  vertical-align: middle;
  background-color: #eee;
}
.curriculumTable td.rKamoku,
.curriculumTable td.rKaisetsu{
  text-align: center;
	white-space: nowrap;
}
.curriculumTable td.rGakunen{
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.curriculumTable td.rGakunen .min{
  font-size: 1.4rem;
  display: inline-block;
  margin-left: .4em;
}
.curriculumTable td.rKamoku.g1{
  background-color: #d2eaf6;
}
.curriculumTable td.rKamoku.g2s,
.curriculumTable td.rKamoku.g3{
  background-color:#e7f2d4;
}
.curriculumTable td.rKamoku.gs1{
  background-color: #fefad4;
}





/* 進路テーブルスタイル */
.jobTable{
  width: 100%;
  border-collapse: collapse;
}
.jobTable th,
.jobTable td{
  padding: 8px 5px;
  font-size: 0.9rem;
  border: #ccc 1px solid;
  line-height: 1.5;
  text-align: left;
}
.jobTable th{
	width: 32%;
}
.jobTable td.primary{
	color: #1eaa39;
}
@media screen and (max-width:767px) {
	.jobTable th,
	.jobTable td{
		font-size: 1rem !important;
/* 		font-size: 1rem ; */
	}
}


.jobTable2{
  width: 100%;
  border-collapse: collapse;
}
.jobTable2 th,
.jobTable2 td{
  padding: 8px 5px;
  font-size: 0.9rem;
  border: #ccc 1px solid;
  line-height: 1.5;
  text-align: left;
}
.jobTable2 th{
	vertical-align: middle;
	width: 28%;
}
@media screen and (max-width:767px) {
	.jobTable2 th,
	.jobTable2 td{
		font-size: 1.1rem !important;
	}
}




/*  */
.staffPageLink a{
	text-decoration: none;
	color: inherit;
}
.staffPageLink a:link{
	color: inherit;
}
.staffPageLink a:visited{
	color: inherit;
}
.staffPageLink a:action{
	color: inherit;
}
.staffPageLink a:hover{
	color: inherit;
	text-decoration: underline;
}













































