@charset "utf-8";

/* Reset */
* {
    box-sizing: border-box;
    word-wrap: break-word;
}
html, body, p, h1, h2, h3, h4, h5, h6, ul, hr, a {
    margin: 0;
    padding: 0;
    line-height: 1.0;
    list-style-type: none;
    text-decoration: none;
}
body {
    background: #e6e6e6;
    color: #4c4c4c;
    font-family: "Hiragino Kaku Gothic ProN","メイリオ", Meiryo, Verdana, sans-serif;
}
main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* App.css */
.index {width: 100%;}

.container {
    margin: 0 auto;
    max-width: 64em;
    background: #fff;
    padding-bottom: 2rem;
    box-shadow: 0px 0px 6px 1px #d7d7d7;
}

.center {
    padding: 0 1rem;
}

.subtitle {
    margin: 0 auto;
    width: 100%;
    background-color: #0098cb;
    color: #fff;
    line-height: 1.5;
    font-size: 1.2rem;
    font-weight: normal;
    padding: 0.5rem 1rem;
}

.hide {display: none;}

.wrap {
    width: 100%;
}

/* Detail.css */
.article {
    width: 100%;
}
.single {
    padding: 1rem 1.5rem;
}

.breadcrumb {
    color: #666;
    font-size: 0.8rem;
    margin-top: 1rem;
}
.breadcrumb a{
    color: #666;
}
.breadcrumb a:hover {
    background-color: #eee;
}
.detailLine {
    margin: 0.7rem 0;
    border-top: 1px solid #0098cb;
}

/* Header.css */
header {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0 0.6rem;
    max-width: 64em;
}

header .headerWrap {
    display: flex;
    justify-content: space-between;
}

header .headerWrap h1 .logo{
    width: 20rem;
}
header .headerWrap h1:hover {
    opacity: 0.5;
}

header nav {
    min-width: 14rem;
}
header nav .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
header nav .button {
    cursor: pointer;
}
header nav .button a {
    color: #0098cb;
    padding: 0.5rem;
    display: flex;
}
header nav .button a:hover {
    background: #d9d9d9;
}
header nav .button .navIcon {
    width: 0.9rem;
    align-self: center;
}
header nav .button .text {
    font-size: 0.8rem;
    margin-top: 0.1rem;
    margin-left: 0.5rem;
    align-self: center;
}

header nav .buttonAbout {
    margin: 0.5rem 0 0 auto;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0098cb;
    border-radius: 0.4rem;
    border: none;
    outline: none;
}
header nav .buttonAbout .text {
    font-size: 0.8rem;
    color: #fff;
    align-self: center;
}
header nav .buttonAbout:hover {
    background-color: #0980af;
}

header .links {
    display: none;
}
header .toggleMenu {
    display: none;
}

.hInfoWrap {
    margin: 1rem auto 2rem;
    max-width: 64em;
    padding: 0 1rem;
}
.hInfo {
    padding: 24px 40px;
    background: #fff;
    border: 4px solid #0098cb;
}
.hInfo__title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0098cb;
    display: flex;
    align-items: center;
    column-gap: 0.8em;
}
.hInfo__text {
    margin-top: 16px;
    line-height: 1.7;
}


/* Modal.css */
.modalWrap {
    align-items: center;
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100000;
    overscroll-behavior: none;
    overflow-y: scroll;
    -ms-overflow-style: none;
    background-color: rgba(0, 0, 0, 0.5);
}
.modalWrap::-webkit-scrollbar{
    display: none;
}
.modalWrap.opened {
    display: flex;
}
.modalWrap::before,
.modalWrap::after {
  content: "";
  width: 1px;
  height: calc(100vh + 1px);
  display: flex;
}
.modal {
    width: 80vw;
    max-width: 64em;
    margin: 0 auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0.4rem;
}
.modal .head {
    width: 100%;
    padding: 0.5rem 1.5rem;
    background-color: #0098cb;
    border-top-left-radius: 0.4rem;
    border-top-right-radius: 0.4rem;
    text-align: right;
}
.modal .head .buttons {
    width: 3rem;
    display: flex;
}
.modal .buttonClose {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    position: relative;
    background-color: transparent;
    border: none;
    outline: none;
    align-self: center;
}
.modal .buttonClose .line {
    width: 1.8rem;
    height: 3px;
    margin: 0;
    position: absolute;
    top: 0.6rem;
    left: 0;
    background-color: #fff;
}
.modal .buttonClose .line:first-child {
    transform: rotate(45deg);
}
.modal .buttonClose .line:last-child {
    transform: rotate(-45deg);
}
.description {
    max-height: 50vw;
    overflow-y: scroll;
    -ms-overflow-style: none;
    background: #fff;
    padding: 2.4rem 1rem;
}
.description::-webkit-scrollbar{
    display: none;
}
.description_body {
    width: 90%;
    margin: 4rem auto 0;
    padding: 40px;
    border-radius: 8px;
    border: solid 2px #0098cb;
}
.description_body > *:last-child {
    margin-bottom: 0;
}
.description__h1 {
    margin: 0 0 1rem;
    position: relative;
    letter-spacing: 0.05em;
    font-size: 1.2rem;
    font-weight: 600;
}
.description__h1::before {
    content: url('./img/icon_primColors.svg');
    padding-right: 1em;
    vertical-align: middle;
}
.description__h2 {
    margin-bottom: 0.5rem;
    padding-left: 2em;
    position: relative;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.description__h2::before {
    content: url('./img/icon_check.svg');
    position: absolute;
    left: 0em;
}
.description__text {
    margin-bottom: 40px;
    line-height: 1.7;
}
.description__text p {
    line-height: 1.7;
}
.description__list {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.description__list {
    padding-left: 2.4em;
}
.description__list li {
    padding-left: 1.4em;
    position: relative;
}
.description__list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 0.55em;
    left: 0;
    background: #0098cb;
    border-radius: 50%;
    border: solid 1px transparent;
}
.description .accent {
    display: block;
    font-weight: 600;
    color: #0098cb;
}
.description a {
    color: #0098cb;
}
.description a:hover {
    background-color: #e6e6e6;
}

/* SearchArea.css */
.searchBase {
    background: #fff;
    margin: 0 auto;
    padding: 4rem 1rem 0;
}
.searchArea {
    display: block;
}
.searchBase .methodBox {
    display: flex;
    border-top: 1px solid #0098cb;
    padding: 1rem 0;
}
.searchBase .topMethodBox {
    border-top: 0;
}

.searchBase .left {
    display: flex;
    align-items: flex-start;
    padding-left: 0.6rem;
    white-space: nowrap;
}
.searchBase .leftWrap {
    display: flex;
    align-items: center;
}
.searchBase .leftWrap .methodIcon {
    width: 2rem;
    height: 2rem;
}
.searchBase .leftWrap .large {
    font-size: 1.2rem;
    font-weight: normal;
    display: inline-block;
    color: #0098cb;
    padding-left: 0.8rem;
}
.searchBase .leftWrap .sub {
    display: inline-block;
    color: #0098cb;
    font-size: 0.8rem;
    padding: 0.2rem 0 0 0.6rem;
}

    /* MapView.css */
    .areaBox {
        position: relative;
    }
    
    .searchMap {
        display: block;
        width: 70%;
        margin: 3rem auto;
    }
    
    .area {
        opacity: 0.9;
        border-radius: 0.7rem;
        padding: 0.7rem;
    }
    .areaLength {
        width: 8.5rem;
    }
    .areaLine {
        width: 11rem;
    }
    
    .hokkaido {
        background: #00479c;
        position: absolute;
        top: 15%;
        right: 15%;
    }
    .hokkaido::before {
        content: "";
        position: absolute;
        top: 40%;
        right: 90%;
        border: 7px solid transparent;
        border-right: 50px solid #00479c;
        transform: rotate(25deg);
    }
    .tohoku {
        background: #0085d0;
        position: absolute;
        top: 30%;
        right: 15%;
    }
    .tohoku::before {
        content: "";
        position: absolute;
        top: 30%;
        right: 95%;
        border: 6px solid transparent;
        border-right: 70px solid #0085d0;
        transform: rotate(-10deg);
    }
    .chubu {
        background: #337539;
        position: absolute;
        top: 13%;
        left: 33%;
    }
    .chubu::before {
        content: "";
        position: absolute;
        top: 90%;
        right: 20%;
        border: 7px solid transparent;
        border-top: 60px solid #337539;
        transform: rotate(-45deg);
    }
    .kanto {
        background: #bb641d;
        position: absolute;
        top: 60%;
        right: 15%;
    }
    .kanto::before {
        content: "";
        position: absolute;
        bottom: 90%;
        right: 90%;
        border: 8px solid transparent;
        border-right: 120px solid #bb641d;
        transform: rotate(30deg);
    }
    .kinki {
        background: #f5aa00;
        position: absolute;
        bottom: 0%;
        right: 40%;
    }
    .kinki::before {
        content: "";
        position: absolute;
        bottom: 90%;
        right: 70%;
        border: 8px solid transparent;
        border-bottom: 90px solid #f5aa00;
        transform: rotate(-30deg);
    }
    .chugoku {
        background: #dc5112;
        position: absolute;
        top: 13%;
        left: 17%;
    }
    .chugoku::before {
        content: "";
        position: absolute;
        display: inline-block;
        top: 75%;
        right: -10%;
        border: 5px solid transparent;
        border-top: 120px solid #dc5112;
        transform: rotate(-60deg);
    }
    .shikoku {
        background: #bd0080;
        position: absolute;
        bottom: 0%;
        left: 25%;
    }
    .shikoku:before {
        content: "";
        position: absolute;
        bottom: 90%;
        right: 20%;
        border: 8px solid transparent;
        border-bottom: 60px solid #bd0080;
        transform: rotate(20deg);
    }
    .kyushu {
        background: #41b15f;
        position: absolute;
        bottom: 0%;
        left: 8%;
    }
    .kyushu:before {
        content: "";
        position: absolute;
        top: 25%;
        left: 90%;
        border: 10px solid transparent;
        border-left: 100px solid #41b15f;
        transform: rotate(-10deg);
    }
    .overseas {
        background: #bfbfbf;
        position: absolute;
        top: -15%;
        right: 0%;
    }
    
    .mapBaseWrap{
        color: #fff;
    }
    .mapBaseWrap label {
        display: flex;
        line-height: 1.8;
        user-select: none;
    }
    .mapBaseWrap label:hover {
        cursor: pointer;
        opacity: 0.8rem;
    }
    .mapBaseWrap label input {
        cursor: pointer;
        display: block;
        align-self: center;
        width: 1rem;
        height: 1rem;
        margin-right: 0.2rem;
    }
    .mapBaseWrap .hrLine {
        border-width: 2px 0 0 0;
        border-style: solid;
        border-color: #fff;
        padding-top: 0.2rem;
    }
    
    .pref {
        font-size: 0.9rem;
    }
    .prefLine {
        display: flex;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }
    .prefLine label:nth-of-type(odd) {
        margin-right: 0.8rem;
    }
    
    .areaBoxRwd {
        display: none;
    }
    /* ここまでMapView.css */

.searchArea .left i {
    display: none;
}

.searchBase .methodBox label {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    line-height: 2rem;
    font-size: 0.9rem;
    padding: 0.3rem;
    width: 24%;
    user-select: none;
}
.searchBase .methodBox label input {
    min-width: 1rem;
    min-height: 1rem;
    margin-right: 0.6rem;
}
.searchBase .methodBox label:hover {
    background: #e6e6e6;
}

.searchBase .methodBox .right {
    align-items: center;
    font-size: 1rem;
}
.searchBase .methodBox .pulldown {
    width: 50%;
    height: 2rem;
    border: solid 1px #ccc;
    border-radius: 0.3rem;
    outline: none;
}
.searchBase .methodBox .pulldown option[value="サイト管理者(私大連事務局)"],
.searchBase .methodBox .pulldown option[value="サイト管理者(想隆社)"] {
    display: none;
}
.searchBase .methodBox .searchWords {
    display: block;
    width: 50%;
    height: 2rem;
    border-radius: 0.3rem;
    border:0;
    padding: 0 0.2rem;
    border: solid 1px #cccccc;
    outline: none;
}
/* .label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    line-height: 2rem;
    font-size: 0.9rem;
    padding: 0.3rem;
} */
/* .label:hover {
    background: #e6e6e6;
} */
/* .label input {
    margin-right: 0.6rem;
    min-width: 1rem;
    min-height: 1rem
} */
/* .label span {
    user-select: none;
} */

.bottomMethodBox {
    border-bottom: 1px solid #0098cb;
}

.searchButton {
    display: block;
    cursor: pointer;
    outline: none;
    border-style: none;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 3px;
    padding: 10px 0;
    margin: 1.5rem auto 4rem;
    width: 12rem;
    border-radius: 0.6rem;
    background-color: #00BFF1;
    background-image: linear-gradient(to bottom, #00BFF1, #00708B);
    box-sizing: border-box;
}
.searchButton:hover {
    background-image: linear-gradient(to bottom, #00ACF1, #00438B);
}
.searchBtnWrap {
    display: flex;
    justify-content: center;
}
.iconSearch {
    width: 2rem;
    height: 2rem;
    padding-right: 0.4rem;
}
.searchText {
    align-self: center;
}
.none {
    display: none !important;
}

/* MapView レスポンシブ */
.areaBoxRwd {
    display: none;
}

/* PageView.css */
.pageView {
    display: flex;
    padding-top: 2rem;
}

.pageView .leftBox {
    width: 25%;
    padding-right: 1.5rem;
}

.pageView .thumbnailBox {
    width: 100%;
}
.pageView .thumbnail {
    width: 100%;
}

.pageView .methodBox {
    border-top: 1px solid;
    padding-top: 0.7rem;
    margin-bottom: 0.7rem;
    display: flex;
}
.pageView .methodBox img {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: 0.4rem;
}
.pageView .methodBox div {
    width: calc(100% - 1.5rem);
    padding-left: 0.5rem;
}
.pageView .methodBox h3 {
    display: inline-block;
    color: #0098cb;
    line-height: 1.7;
    font-size: 0.9rem;
    font-weight: normal;
}
.pageView .methodBox p {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0.5rem;
}
.pageView .methodBox span {
    color: #666;
    margin-right: 1rem;
    line-height: 1.5;
    font-size: 0.8rem;
}
.pageView .methodBox span a,
.pageView .methodBox span a:visited {
    color: #0098cb;
}
.pageView .methodBox span a:hover {
    background: #e6e6e6;
}

.pageView .rightBox {
    width: 75%;
    color: #666;
}
.pageView .rightBox .univName {
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}
.pageView .rightBox .title {
    color: #007acd;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.5;
    border-bottom: 3px solid #007acd;
    margin-bottom: 1.5rem;
    /* background-color: #0098cb;
    color: #fff;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 1px;
    border-radius: 10px;
    padding: 0.8rem;
    margin-bottom: 2rem; */
}
.pageView .rightBox .univDate {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    /* margin: 0 0 1rem 0.6rem; */
}

.pageView .content {
    margin-bottom: 3rem;
    /* text-align: justify; */
}
.pageView .content h3 {
    margin: 1rem 0 0.6rem;
    padding-left: 0.6rem;
    border-left: 15px solid #007acd;
    /* 以下は詳細画面のスタイルを変更しようとした時のもの */
    /*margin-bottom: 0.6rem;
    margin: 2rem 0 1.2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;*/
}
/* 以下は詳細画面のスタイルを変更しようとした時のもの */
/* .pageView .content h3::before,
.pageView .content h3::after {
    content: "";
    display: block;
    height: 2px;
    flex: 1;
}
.pageView .content h3::before {
    margin-right: 1rem;
    background: linear-gradient(-90deg, #0098cb, transparent);
}
.pageView .content h3::after {
    margin-left: 1rem;
    background: linear-gradient(90deg, #0098cb, transparent);
} */
.pageView .content>p {
    line-height: 1.7;
    padding: 0 1rem;
}
.pageView .url {
    color: #0098cb;
    cursor: pointer;
    padding: 0 1rem;

}
.pageView .url:hover{
    background: #e6e6e6;
}

.pageView .shareBox {
    display: flex;
    column-gap: 0.5rem;
}
.pageView .shareBox .share {
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    background-color: #000;
    border-radius: 0.2rem;
}
.pageView .shareBox .share:hover {
    background-color: #313131;
}
.pageView .shareBox .share.facebook {
    background-color: #1877f2;
}
.pageView .shareBox .share.facebook:hover {
    background-color: #135bb9;
}
.pageView .shareBox .share .icon {
    width: 1rem;
    margin-right: 0.5rem;
}
.pageView .shareBox .share .icon > img {
    max-width: 100%;
}
.pageView .shareBox .share .label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
}

/* PostList.css */
.postList {
    width: 100%;
}
.postList .line {
    margin: 0;
    border-top: 5px solid #0098cb;
    height: 0;
}

.postList .resultBox {
    flex-grow: 1;
    height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.postList .resultBox p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.postList .resultBox h3 {
    color: #0098cb;
    margin-bottom: 0.2rem;
}

/* Post.css */
.post {
    border-bottom: 1px solid lightgray;
    padding: 1.5rem 0;
}

.tag {
    margin-right: 0.5rem;
    color: #0098cb;
    cursor: pointer;
}
.post .thumbNail {
    width: 100%;
}

.post .info {
    padding-left: 1.5rem;
}
.post .info p {
    line-height: 1.7;
    font-size: 0.9rem;
}

.post .item {
    margin-bottom: 1rem;
}
.post .imgIcon {
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 0.6rem;
    vertical-align: -0.2rem;
}
.post .item p {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}
.post .item p a,
.post .item p a:visited
{
    color: #0098cb;
}
.post .item p a:hover {
    background: #e6e6e6;
}

.post .univGuid a {
    text-shadow: 3px 3px 3px #fff;
}
.post .univGuid a:hover {
    text-shadow: 3px 3px 3px #aaa;
}
.post .univGuid .univName {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}
.post .univGuid .postTitle {
    color: #007acd;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: justify;
}

.post .univGuid .content {
    margin: 1rem 0;
}
.post .univGuid .content h3 {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Pager.css */
.pager {
    display: flex;
    justify-content: space-around;
    margin: 2rem auto;
    max-width: 25rem;
    color: #0098cb;
    font-size: 0.8rem;
}

.pager > a,
.pager > a:visited {
    color: #0098cb;
}

.pager .button,
.pager > a,
.pager > span {
    display: inline-flex;
    width: 2rem;
    height: 1.8rem;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.selectable {
    cursor: pointer;
}
.selectable:hover,
.pager > a:hover {
    background-color: #e2e2e2;
}
.selected,
.pager .current {
    background: #d5d5d5;
}

.pager .prev {
    padding-right: 1rem;
    display: inline-flex;
    height: 1.8rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: auto;
}
.pager .next {
    padding-left: 1rem;
    display: inline-flex;
    height: 1.8rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: auto;
}
.pager .icon {
    width: 1rem;
    margin: -0.2rem 0.4rem;
}

/* Sidebar.css */
.sidebar {
    margin: 5rem auto 2rem auto;
    width: 80%;
    padding: 1rem;
    display: flex;
    justify-content: center;
    column-gap: 1.2rem;
}

.sidebar .banner {
    width: calc(100% / 3);
}
.sidebar .bannerLink {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #333;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}
.sidebar .bannerLink:hover .arrowBox {
    text-decoration: underline;
}
.sidebar .bannerImgWrap {
    width: 8rem;
    margin-top: 1.6rem;
    flex: 1;
}
.sidebar .bannerImgWrap.twitter {
    width: 5rem;
    margin-top: 2rem;
}
.sidebar .bannerLink img {
    max-width: 100%;
}

.sidebar .arrowBox {
    width: 100%;
    padding: 1rem;
    position:relative;
    background:#fff;
    border-radius: 0.6rem;
    border: 2px solid #0098cb;
    text-align: center;
}
.sidebar .arrowBox:after,
.sidebar .arrowBox:before {
    content: '';
    width: 0;
    height: 0;
    border: solid transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    pointer-events: none;
}
.sidebar .arrowBox:before {
    border-color: transparent;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 12px;
    border-right-width:12px;
    margin-left: -12px;
    margin-top: 2px;
    border-top-color: #0098cb;
}
.sidebar .arrowBox:after {
    border-color: transparent;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 11px;
    border-right-width: 11px;
    margin-left: -11px;
    border-top-color: #fff;
    transition: all 0.3s ease;
}

/* AboutTopics.css */
.aboutWrap {
    padding: 3rem 2rem;
}

.aboutText {
    margin-bottom: 2.5rem;
}
.aboutText h2 {
    background-color: #0098cb;
    color: #fff;
    margin-bottom: 1rem;
    padding: 1rem;
}
.aboutText h3 {
    color: #0098cb;
}
.aboutText .aboutLine {
    margin: 0.7rem 0;
    border-top: 3px solid #0098cb;
}
.aboutText p {
    line-height: 1.5;
    padding: 0 0.5rem;
    word-break: break-all;
}
.aboutText p a {
    text-decoration: underline;
    color: #00f;
}
.about {
    width: 100%;
}
.about .listWrap {
    list-style: inside;
}
.about .listWrap .listInner {
    list-style: inside;
    border: 2px solid #e6e6e6;
    margin: 1rem;
    padding: 1rem;
}
.about .listWrap li {
    line-height: 1.5;
    padding: 0 0.5rem;
}

.about .listVersion {
    list-style: inside;
    word-break: break-all;
    border: 2px solid #e6e6e6;
    margin: 1rem;
    padding: 0.6rem;
}
.about .listVersion li {
    line-height: 1.5;
    padding: 0 0.5rem;
}

/* NotFound.css */
.notFound {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.notFound .container {
    flex-grow: 1;
    width: 100%;
    margin: 0 auto;
    max-width: 64em;
    background: white;
    padding: 3rem 2rem;
    box-shadow: 0px 0px 6px 1px #d7d7d7;
}

.notFound .notPage {
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
}

.notFound .apology {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

/* Footer */
footer {
    width: 100%;
    margin: 0 auto;
    max-width: 64em;
    padding: 0.4rem;
}

footer .topArea {
    display: flex;
    justify-content: space-between;
}

footer .linkbox {
    min-width: 14rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
footer .linkbox .button {
    cursor: pointer;
}
footer .linkbox .button a {
    color: #0098cb;
    padding: 0.5rem;
    display: flex;
}
footer .linkbox .button a:hover {
    background: #d9d9d9;
}
footer .navIcon {
    width: 0.9rem;
    height: 0.9rem;
    align-self: center;
}
footer .text {
    font-size: 0.8rem;
    margin-top: 0.1rem;
    margin-left: 0.5rem;
    align-self: center;
}

footer .topButton {
    font-size: 0.7rem;
    cursor: pointer;
    padding: 0.5rem;
    text-align: right;
    display: flex;
    align-items: center;
    user-select: none;
}
footer .topButton:hover {
    background: #d9d9d9;
}
footer .topArrow {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.2rem;
}
footer .arrowWords {
    display: inline-table;
    font-size: 0.8rem;
}

footer .logobox {
    display: flex;
    padding: 1rem 0;
    justify-content: space-between;
}

footer .logo {
    display: block;
    height: 3rem;
    margin-bottom: 0.6rem;
}

footer .address {
    color: #888;
    line-height: 1.5;
}

footer .line {
    border-color: #888;
    border-width: 2px 0 0 0;
    border-style: solid;
    margin: 0;
}

footer .copyrights {
    display: block;
    color: #888;
    font-size: 0.6rem;
    line-height: 1.5;
    margin: 0.6rem 0 1.4rem;
}

/* 追記：member_login */
.member_login {
    min-height: 0;
}
.member_login .container {
    padding-top: 2rem;
}
.member_login .login_wrap {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}
.member_login .login_wrap h2 {
    color: #fff;
    letter-spacing: 3px;
    padding: 10px 0;
    margin: 0 auto 2rem;
    border-radius: 0.6rem;
    background-color: #39AFD8;
}
.member_login .loginForm {
    margin-bottom: 1rem;
}
.member_login .loginForm label,
.member_login .lostpasswordForm label {
    font-weight: bold;
    color: #666;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.member_login .loginForm input {
    width: 90%;
    margin: 0 auto 1.5rem;
}
.member_login button {
    border-radius: 5px;
    color: #fff;
    background-color: #3bb7e2;
    margin-bottom: 2rem;
}
.member_login .lostpasswordForm #user_login {
    width: 80%;
    margin: 0 auto 1.5rem;
}
.member_login .passwordFormText {
    width: 100%;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    text-align: left;
    border-radius: 10px;
    border: 2px solid #0098cb;
}
.member_login .passwordFormText p {
    line-height: 1.5;
}

/* 追記：20211026 */
.searchArea .line {
    margin: 0;
    border-top: 5px solid #0098cb;
    height: 0;
}
.searchArea h3 {
    margin-bottom: 0.2rem;
    color: #0098cb;
}
.btn_area {
    text-align: center;
}

/* SwiperSlide.css */
.swiper {
    width: 100%;
    height: 100%;
    padding: 0.5rem 0 0 1.1rem !important;
}

.swiper-slide {
    height: auto !important;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.swiper-nav {
    width: 16rem;
    margin: 2rem 0 0 auto;
    display: flex;
    justify-content: space-between;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto !important;
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    display: flex !important;
    align-items: center !important;
}
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
}
.swiper-pagination-bullet-active {
    background-color: #0098cb;
 }

.swiper-button-prev,
.swiper-button-next {
    height: 1.8rem !important;
    margin: 0 !important;
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    background-color: #0098cb;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1rem !important;
    color: #fff;
}

.swiperWrap {
    padding: 2rem 2rem 0;
}

.swiperItem {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #333;
}
.swiperItem .imgWrap {
    overflow: hidden;
}
.swiperItem .imgWrap > img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    opacity: 0;
}
.swiper-initialized .swiperItem .imgWrap > img {
    opacity: 1;
}
.swiperItem .imgWrap > img:hover {
    transform: scale(1.05, 1.05);
    transition: 1s all;
}
.swiperItem .date,
.swiperItem .name {
    display: inline-block;
    font-size: 0.9rem;
    color: #4c4c4c;
}
.swiperItem .date {
    margin-top: 0.7rem;
    display: flex;
    align-items: flex-end;
}
.swiperItem .title {
    margin-top: 0.7rem;
    font-size: 1rem;
    line-height: 1.5;
    word-break: break-all;
    color: #007acd;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.swiperItem:hover .title {
    text-shadow: 3px 3px 3px #ccc;
}
.swiperItem .name {
    padding: 0.2rem 0.7rem 0.2rem 0.6rem;
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    background-color: #fff;
    border-radius: 0.1rem;
    border: 1px solid #0d8ebd;
    font-size: 0.8rem !important;
    font-weight: 700;
}
.swiperItem .date .imgIcon,
.swiperItem .name .imgIcon {
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 0.6rem;
}
.swiperItem .name .imgIcon {
    margin-right: 0.3rem;
    vertical-align: -0.25rem;
}

/* WhatsNew.css */
.whatsNewMenu {
    display: none;
}
.whatsNewWrap {
    padding: 1.6rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.whatsNewBlock {
    width: calc(100% / 3 - 1rem);
}
.whatsNewBlock .info {
    font-size: 0.9rem;
}
.whatsNewBlock .catName {
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    position: relative;
}
.whatsNewBlock .catName::after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background-color: #0098cb;
    position: absolute;
    bottom: 0;
    left: 0;
}
.whatsNewBlock .catName > a {
    margin-right: 0.4rem;
    font-weight: 600;
    color: #4c4c4c;
}
.whatsNewBlock .catName > a:hover {
    text-decoration: underline;
}
.whatsNewBlock .whatsNewList .postListTitle {
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 600;
    word-break: break-all;
    color: #007acd;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.whatsNewBlock .whatsNewList .postListThumbnail {
    margin-right: 1rem;
}
.whatsNewBlock .whatsNewList .postListThumbnail > img {
    width: 72px;
    height: 72px;
}
.whatsNewBlock .whatsNewList .postListDate,
.whatsNewBlock .whatsNewList .postListUniv {
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #4c4c4c;
}
.whatsNewBlock .whatsNewList .imgIcon {
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 0.6rem;
}
.whatsNewBlock .whatsNewList li {
    margin-bottom: 1rem;
}
.whatsNewBlock .whatsNewList li a {
    display: flex;
}
.whatsNewBlock .whatsNewList li a:hover .postListTitle {
    text-shadow: 3px 3px 3px #ccc;
}

/* レスポンシブ　タブレット */
@media screen and (max-width:900px){
    /* MapView.css */
    .area {
        font-size: 0.8rem;
    }
    .areaLength {
        width: 7rem;
    }
    .areaLine {
        width: 10.5rem;
    }

    .hokkaido {
        top: 12%;
        right: 8%;
    }
    .tohoku {
        top: 30%;
        right: 8%;
    }
    .chubu {
        top: 5%;
        left: 30%;
    }
    .kanto {
        bottom: 5%;
        right: 8%;
    }
    .kinki {
        bottom: -5%;
        right: 35%;
    }
    .chugoku {
        top: 5%;
        left: 13%;
    }
    .shikoku {
        bottom: -5%;
        left: 25%;
    }
    .kyushu {
        bottom: 0%;
        left: 5%;
    }
    .pref {
        font-size: 0.8rem;
    }
    .prefLine {
        font-size: 0.8rem;
    }
    /* SearchArea.css */
    .searchBase .left {
        padding-left: 0;
        justify-content: space-between;
        align-items: center;
    }
    .searchBase .leftWrap .methodIcon {
        width: 1.5rem;
        height: 1.5rem;
    }
    .searchBase .leftWrap .large {
        padding-left: 0.2rem;
    }
    .searchBase .leftWrap .sub {
        padding: 0.2rem 0 0 0;
    }
}

/* レスポンシブ　タブレット*/
@media screen and (max-width:767px){
    /* App.css */
    .center {
        display: block;
    }

    .line {
        margin: 0.7rem 0 0;
    }

    /* Header.css */
    header {
        margin: 0;
        padding: 1rem 0.4rem;
        position: relative;
    }

    header .headerWrap h1 {
        width: 20rem;
    }

    header .toggleMenu {
        width: 2rem;
        height: 1.5rem;
        padding: 0;
        display: block;
        position: fixed;
        top: 2.6rem;
        right: 1.2rem;
        z-index: 100000;
        background-color: transparent;
        border: none;
        outline: none;
    }
    header .toggleMenu .line {
        width: 2rem;
        height: 3px;
        margin: 0;
        position: absolute;
        left: 0;
        background-color: #0098cb;
    }
    header .toggleMenu .line:first-child {
        top: 0;
    }
    header .toggleMenu .line:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    header .toggleMenu .line:last-child {
        bottom: 0;
    }
    header .toggleMenu.opened {
        width: 1.5rem;
    }
    header .toggleMenu.opened .line:first-child {
        transform-origin: top left;
        transform: rotate(45deg);
    }
    header .toggleMenu.opened .line:nth-child(2) {
        display: none;
    }
    header .toggleMenu.opened .line:last-child {
        transform-origin: bottom left;
        transform: rotate(-45deg);
    }

    header .block {
        display: none;
        width: 100%;
        height: 100vh;
        padding: 1rem 1.5rem;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 99999;
        overscroll-behavior: contain;
        overflow-y: scroll;
        background-color: aliceblue;
    }
    header .headerWrap.opened .block {
        display: flex;
    }
    header .block::before,
    header .block::after {
      content: "";
      width: 1px;
      height: calc(100vh + 1px);
      display: flex;
    }
    header .block .blockNonScroll {
        width: 100%;
    }

    header nav {
        margin-top: 5rem;
    }
    header nav .buttons {
        flex-direction: column;
        row-gap: 0.6rem;
    }
    header nav .button .text {
        font-size: 1rem;
    }
    header nav .button a {
        padding: 0.2rem 0.5rem;
    }
    header nav .button a:hover {
        background: #d9d9d9;
    }
    header nav .button .navIcon {
        height: 1.2rem;
    }

    header nav .buttonAbout {
        width: 100%;
        max-width: 14rem;
        margin: 2rem auto 0 auto;
        padding: 1rem 1.5rem;
    }
    header nav .buttonAbout .text {
        font-size: 1rem;
    }

    header .links {
        margin-top: 3rem;
        padding: 3rem 0 8rem;
        display: block;
        border-top: 1px solid #0098cb;
    }
    header .links .sns {
        display: flex;
        align-items: center;
        column-gap: 1rem;
    }
    header .links .sns > .facebook {
        width: 1.8rem;
        height: 1.8rem;
        display: block;
    }
    header .links .sns > .twitter {
        width: 1.5rem;
        height: 1.5rem;
        display: block;
    }
    header .links .sns > a > img {
        max-width: 100%;
    }

    header .links .other {
        margin-top: 1rem;
    }
    header .links .other > a {
        width: 40%;
        aspect-ratio: 1;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    header .links .other > a > img {
        max-width: 100%;
    }

    .hInfo {
    padding: 24px;
    }
    .hInfo__title {
        font-size: 1rem;
    }
     .hInfo__text {
        font-size: 0.9rem;
     }

    /* SearchArea.css */
    .methodBox {
        position: relative;
        cursor: pointer;
    }
    .leftWrap .methodIcon {
        margin-left: 1rem;
        width: 2rem;
        height: 2rem;
    }
    .leftWrap .large {
        padding-left: 0.8rem;
    }
    .leftWrap .sub {
        padding: 0.2rem 0 0 0.6rem;
    }
    /* .searchArea .left i {
        display: block;
        margin-right: 1rem;
        color: #333;
        font-size: 1.5rem;
        font-weight: bold;
    } */
    .toggle_item + * {
        display: none;
    }
    .searchBase .methodBox .searchWords {
        display: none;
    }

        /* MapView.css */
        .areaBox {
            display: none;
        }
        .areaBoxRwd {
            /*display: block;*/
            display: none;
            padding: 0 0.5rem;
        }
    
        .area {
            opacity: 1;
            border-radius: 0;
            padding: 0.7rem;
            font-size: 1rem;
            font-weight: bold;
        }
        .areaLength {
            width: auto;
        }
        .areaLine {
            width: auto;
        }
        
        .hokkaido {
            background: #fff;
            position: static;
        }
        .hokkaido::before {
            display: none;
        }
        .tohoku {
            background: #fff;
            position: static;
        }
        .tohoku::before {
            display: none;
        }
        .chubu {
            background: #fff;
            position: static;
        }
        .chubu::before {
            display: none;
        }
        .kanto {
            background: #fff;
            position: static;
        }
        .kanto::before {
            display: none;
        }
        .kinki {
            background: #fff;
            position: static;
        }
        .kinki::before {
            display: none;
        }
        .chugoku {
            background: #fff;
            position: static;
        }
        .chugoku::before {
            display: none;
        }
        .shikoku {
            background: #fff;
            position: static;
        }
        .shikoku::before {
            display: none;
        }
        .kyushu {
            background: #fff;
            position: static;
        }
        .kyushu::before {
            display: none;
        }
        .overseas {
            background: #fff;
            position: static;
        }
    
        .mapBaseWrap {
            color: #000;
        }
        .areaNameRwd {
            display: inline-block;
        }
    
        .pref {
            font-size: 1rem;
            font-weight: normal;
        }
        .prefLine {
            font-size: 1rem;
            font-weight: normal;
        }
        .prefLine label {
            margin-right: 1rem;
            margin-bottom: 0.3rem;
        }
        /* ここまで MapView.css */


    .searchBase .methodBox .right {
        margin-top: 0.5rem;
        padding: 0 1rem;
    }
    .searchBase .methodBox .pulldown {
        width: 100%;
        margin: 1rem 1rem 0 1rem;
    }
    .searchBase .methodBox .searchWords {
        width: 100%;
        margin: 1rem 1rem 0 1rem;
    }
    .searchButton {
        margin: 1.5rem auto 2rem;
    }

    .searchArea .left i {
        display: inherit;
        margin-right: 20px;
    }

    /* PageView.css */
    .pageView {
        flex-direction: column-reverse;
        padding: 1rem 0;
    }

    .pageView .leftBox {
        width: 100%;
        display: flex;
        border-top: 1px solid #aaa;
        margin-top: 1rem;
        padding: 1rem 0 0;
    }

    .pageView .thumbnailBox {
        width: 50%;
        margin-right: 1rem;
    }

    .pageView .methodBoxInner {
        width: 100%;
    }
    .pageView .methodBox:nth-of-type(1) {
        border-top: 0;
    }
    .pageView .methodBox div {
        width: 100%;
    }

    .pageView .rightBox {
        width: 100%;
    }
    .pageView .rightBox .univName {
        font-size: 1.2rem;
    }
    .pageView .rightBox .title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    .pageView .content {
        line-height: 1.5;
    }
    .pageView .content p {
        line-height: 1.5;
    }

    /* PostList.css */
    .postList .resultBox {
        height: 3.2rem;
    }
    .postList .resultBox p {
        font-size: 1rem;
    }
    .postList.new {
        padding-top: 4rem;
    }

    /* Post.css */
    .post {
        padding: 1rem 0.6rem;
    }

    .post .info {
        padding-left: 0;
    }
    .post .info p {
        line-height: 1.5;
    }

    .post .item {
        margin-top: 0.4rem;
        margin-bottom: 0;
    }
    .post .univGuid .postTitle {
        font-size: 1.1rem;
        margin-top: 0.4rem;
    }
    .post .imgIcon {
        width: 1rem;
        height: 1rem;
    }
    .post .item p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    /* Pager.css */
    .pager {
        width: 100%;
    }

    /* .pager .button {
        width: 1.5rem;
        height: 1.5rem;
    } */

    /* Sidebar.css */
    .sidebar {
        width: 100%;
        margin-top: 4rem;
        flex-wrap: wrap;
        row-gap: 3rem;
    }
    .sidebar .banner {
        width: 100%;
    }
    .sidebar .arrowBox {
        max-width: 20rem;
    }

    /* Footer.css */
    footer {
        padding: 1rem;
    }
    footer .navIcon {
        width: 0.9rem;
        height: 0.9rem;
    }
    footer .topButton {
        position: fixed;
        bottom: 2rem;
        right: 0.2rem;
        z-index: 888888;
    }
    footer .topButton:hover {
        background: transparent;
    }
    footer .topArrow {
        width: 3rem;
        height: 3rem;
        border: 2px solid #666;
        border-radius: 10px;
        padding: 0.2rem;
        opacity: 0.9;
    }
    footer .arrowWords {
        display: none;
    }

/* 追記 */

    .headerWrap h1 img {
        max-width: 18rem;
        height: auto;
        margin-left: 0.4rem;
    }
    .subtitle{
        font-size: 1rem;

    }
    .searchBase .leftWrap .methodIcon {
        margin-left: 1rem;
        width: 2rem;
        height: 2rem;
    }
    .searchBase .leftWrap .large {
        padding-left: 0.8rem;
    }
    .searchBase .leftWrap .sub{
    padding: 0.2rem 0 0 0.6rem;
    }


    .post .univGuid{
        margin-top: -3rem;
        width: 58%;
    }

    .searchBase .methodBox label{
        width: 48%;
    }

    .modal {
        width: 100%;
        max-width: 95%;
    }
    .description {
        max-height: 80vh;
    }

/* 追記：20211026 */
    .description_body {
        width: auto;
        margin-top: 3rem;
        padding: 22px;
    }
    .description__h2 {
        line-height: 1.2;
    }
    .description__text,
    .description__text p,
    .description__list {
        line-height: 1.5;
    }
    .description__list {
        padding-left: 2em;
    }

    /* WhatsNew.css */
    .whatsNewBlock {
        width: calc(100% / 2 - 1rem);
    }
    /* WhatsNew.css */
    .whatsNewMenu {
        padding-top: 0.6rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem 0.5rem;
    }
    .whatsNewMenu > a {
        padding: 0.3rem 0.6rem;
        border-radius: 0.1rem;
        background-color: #0098cb;
        font-size: 0.8rem;
        color: #fff;
    }
}

@media screen and (min-width: 35.5em){
.searchBase .methodBox label {
    width: 32% !important;
	margin: 0 !important;
}
}
@media screen and (min-width: 48em){
.searchBase .methodBox label {
	width: 24% !important;
}	
}



/* レスポンシブ　モバイル*/
@media screen and (max-width:468px){
h1 {
    font-size: 2em;
}
h1 img {
    max-width: 18rem;
    height: auto;
    margin-left: 0.4rem;
}

h2.subtitle {
    font-size: 1rem;
}

/* MapView.css */
.area {
    font-size: 0.8rem;
}
.prefLine label {
    font-size: 0.8rem;
}

/* SearchArea.css */
    .searchBase .methodBox label {
        line-height: 1.5;
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    .searchBase .methodBox label input {
        margin-right: 0.6rem;
        width: 1rem;
        height: 1rem;
    }

    .searchBase .methodBox {
        padding: 1rem 0;
            width: 100%;
    }
    .searchBase .methodBox label {
        width: 49%;
    }

    .methodIcon {
        margin-left: 1rem;
        width: 2rem !important;
        height: 2rem !important;
    }
    .searchBase .leftWrap .large {
        padding-left: 0.8rem !important;
    }
    .searchBase .leftWrap .sub {
        padding: 0.2rem 0 0 0.6rem !important;
    }

    .post .item{
        width: 40%;
        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
        display: inline-block;
        zoom: 1;
    }

    .post .univGuid{
        margin-top: -3rem;
        width: 55%;

        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
        display: inline-block;
        zoom: 1;
    }

    /* SwiperSlide.css */
    .swiper {
        margin-left: -0.5rem !important;
    }
    .swiper-nav {
        margin-left: auto;
        margin-right: auto;
    }

    /* WhatsNew.css */
    .whatsNewBlock {
        width: 100%;
    }
}
