@charset "UTF-8";
/*メインビジュアルここから*/
.main-visual {
    position: relative;
}

/*.main-visual img {*/
/*    width: 100svw;*/
/*    height: 100svh;*/
/*    object-fit: cover;*/
/*    transition: 8s ease-out;*/
/*}*/

.main-visual img {
    transition: none;
    width: 100svw;
    height: 100svh;
    object-fit: cover;
}

/*MV Splideここから*/

.mv-splide .splide__slide img {
    transition: transform 8s ease-out; /* transform だけを対象にする */
}

.mv-splide .splide__slide.is-active img {
    transform: scale(1.15);
    transition-delay: 0s;
}

/* MVページネーション */
.mv-splide .splide__pagination {
    display: flex;
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    left: auto;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    width: fit-content;
    @media (max-width: 1024px) {
        right: 2rem;
        bottom: 2rem;
    }
    @media (max-width: 767.98px) {
        display: none;
    }
}

.mv-splide .splide__pagination button {
    transform: none;
    mask-image: url(/assets/home/icon_pagination_mv.svg);
    margin: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    width: 0.5rem;
    height: 1.75rem;
}

.mv-splide .splide__pagination__page {
    opacity: 1 !important;
}

.mv-splide .splide__pagination__page.is-active::after {
    transform: scale(1);
    background: #fff;
    height: var(--playing-rate);
}

.mv-splide .splide__pagination__page::after {
    display: block;
    position: absolute;
    top: 0;
    will-change: height;
    width: 100%;
    height: 100%;
    content: "";
}

/*MV Splideここまで*/

.main-visual-text {
    position: absolute;
    color: var(--c-white);
    text-align: center;
}

.main-visual-text-top {
    position: absolute;
    top: 1.3%;
    left: 0;
    width: 100%;
    overflow: hidden;
    font-style: normal;
    font-weight: 100;
    font-size: clamp(5.25rem, 10vw, 8.25rem);
    white-space: nowrap;
}

.main-visual-text-top .scrolling-text {
    display: inline-block;
    position: relative;
    mix-blend-mode: overlay;
    animation: scroll-left 120s linear infinite;
}

.main-visual-text-top::before {
    position: absolute;
    mix-blend-mode: overlay;
    inset: 0;
    pointer-events: none;
    content: "";
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.main-visual-text-left {
    position: absolute;
    top: 60%;
    left: 1%;
    transform: rotate(-90deg);
    transform-origin: left top;
    font-size: 0.625rem;
    white-space: nowrap;
}

.main-visual-text-bottom {
    bottom: 1.5rem;
    left: 2.5%;
    text-align: left;
    padding-inline-end: 6rem;
}

.main-visual-text-bottom h1 {
    font-style: normal;
    font-weight: 500;
    font-size: clamp(3.375rem, 5.5vw, 4rem);
    line-height: 125%;
    letter-spacing: 0.12rem;
}

.main-visual-text-bottom h2 {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    line-height: 175%;
    letter-spacing: 0.0275rem;
}

/*デスクトップサイズ以下ここから*/
@media only screen and (max-width: 991.98px) {
    .main-visual-text-top {
        top: 1.2rem;
    }
}

/*タブレットサイズ以下ここから*/
@media only screen and (max-width: 767.98px) {
    .main-visual-text-top {
        top: 1.5rem;
        font-size: clamp(4rem, 15vw, 5.25rem);
    }

    .main-visual-text-bottom {
        padding-inline-end: 3rem;
    }

    .main-visual-text-bottom h1 {
        font-size: clamp(2rem, 8vw, 3.375rem);
    }

    .main-visual-text-bottom h2 {
        font-size: clamp(0.875rem, 2.5vw, 1.125rem);
    }
}

/*スマホサイズ以下ここから*/
@media only screen and (max-width: 575.98px) {
    .main-visual-text-top {
        top: 2rem;
    }
}
/*メインビジュアルここまで*/

/*ニュースここから*/

.news.nojp .title{
    text-align: center;
}

.news-wrapper {
    border: 1px solid var(--c-blue);
    border-radius: 0.125rem;
    padding: 1.5rem;
}

.news-item {
    position: relative;
}

.news-item:not(:last-child)::after {
    display: block;
    background-color: rgba(0, 126, 214, 0.5);
    width: 100%;
    height: 1px;
    content: "";
}

.news-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 1rem;
    color: var(--c-blue);
    text-decoration: none;
}

@media (hover: hover) {
    .news-link {
        transition: background-color 0.2s ease-out;
    }

    .news-link:hover{
        background-color: rgba(0, 126, 214, 0.1);
    }
}

.news-date {
    flex-shrink: 0;
    font-weight: 300;
    font-size: 0.75rem;
    white-space: nowrap;
}

.news-line {
    display: inline-block;
    flex-shrink: 0;
    background-color: var(--c-blue);
    width: 6.25rem;
    height: 1px;
}

.news-link div {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
}

.news-title {
    display: -webkit-box;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 行数を指定（ここでは2行まで表示） */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.news-icon {
    flex-shrink: 0;
    margin: 0 0 0 2rem;
}

.sns-link-wrapper {
    padding-top: 0;
    padding-bottom: 0;
}

.sns-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.25rem;
    background-color: var(--c-gray-5);
    padding: 2rem 4rem;
}


.sns-link p {
    margin-right: 1rem;
}

.sns-icon {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid var(--c-gray-20);
    border-radius: 50%;
    background-color: var(--c-white);
    width: 2.5rem;
    height: 2.5rem;
}

@media (hover:hover) {

    .sns-icon {
        transition: background-color 0.2s ease-out;
    }

    .sns-icon:hover {
        background-color: var(--c-gray-20);
    }
}


.sns-icon img {
    width: 1.25rem;
    height: auto;
}

.news-splide {
    overflow: hidden;
    position: relative;
    margin-inline: calc(50% - 50vw);
    margin-block: 3rem 0.75rem;
    width: 100vw;
    letter-spacing: 0;
    @media (max-width: 1024px) {
        margin-block: 3rem 0.6875rem;
    }
}

.news-splide::before,
.news-splide::after {
    display: block;
    position: absolute;
    left: -6.6%;
    background-color: var(--c-gray-20);
    width: calc(100% + 6.6%);
    height: 0.0625rem;
    content: "";
    @media (max-width: 1024px) {
        /*left: -8.2%;*/
        left: calc(-1 * var(--s-container-inline));
        /*width: calc(100% + 8.2%);*/
        width: calc(100% + var(--s-container-inline));
    }
    /*@media (max-width: 767px) {*/
    /*    left: -6.2%;*/
    /*    width: calc(100% + 6.2%);*/
    /*}*/
}

.news-splide::before {
    top: 0;
}

.news-splide::after {
    bottom: 4rem;
}

.news-splide .splide__track {
    overflow: visible;
    margin-inline: clamp(6rem, -39rem + 50vw, 21rem);
    @media (max-width: 1024px) {
        margin-inline: var(--s-container-inline);
    }

    @media (min-width: 1025px) {
        margin-inline: var(--s-container-inline);
    }

}

.news-splide .splide__slide {
    border-left: 1px solid var(--c-gray-20);
}

.news-splide .splide__slide:last-child {
    border-right: 1px solid var(--c-gray-20);
}

.news-splide .splide__slide a {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-width: 17.75rem;
    max-width: 24.5625rem;
    transition: .2s;
    padding: 3rem;
    @media only screen and (max-width: 991.98px) {
        padding: 2rem;
        min-width: 13.75rem;
        max-width: 17.75rem;
    }
}

.news-splide .thumbnail {
    aspect-ratio: 297/198;
    width: 100%;
    height: auto;
    background-color: var(--c-gray-10);
    position: relative;
    overflow: hidden;
}

.news-splide .thumbnail img {
    transition: .2s;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


.news-splide .splide__slide time {
    display: block;
    margin-top: 1.4375rem;
    font-weight: 300;
    font-size: 0.75rem;
    line-height: 1;
    font-family: var(--f-en);
}

.news-splide .splide__slide a > p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    margin-block: 0.5625rem 1rem;
    font-size: 1rem;
    @media only screen and (max-width: 991.98px) {
        -webkit-line-clamp: 3;
    }
}

.news-splide .splide__slide .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--c-gray-60);
    font-size: 0.75rem;
    width: calc(100% - 1.5rem);
    margin-top: auto;
}

.news-splide .splide__slide .tags span {
    display: flex;
    align-items: center;
    gap: 0.0625rem;
    line-height: 1;
}

.news-splide .splide__slide .tags span::before {
    margin-top: 0.0625rem;
    content: "#";
    font-weight: 200;
    font-size: 1rem;
    font-family: var(--f-en);
}

.news-splide .icon-blank {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    @media only screen and (max-width: 991.98px) {
        right: 2rem;
        bottom: 2rem;
    }
}

@media print and (hover: hover), screen and (min-width: 992px) and (hover: hover) {
    .news-splide .splide__slide a:hover, .news-splide .splide__slide a:hover .tags{
        transition: 0.2s;
    }
    .news-splide .splide__slide a:hover, .news-splide .splide__slide a:hover .tags{
        color: var(--c-blue);
    }
    .news-splide .splide__slide a:hover .thumbnail img{
        transform: scale(1.047);
    }
}

.news-pagination-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    /*padding-left: clamp(6rem, -39rem + 50vw, 21rem);*/
    padding-left: var(--s-container-inline);
    /*@media (max-width: 1439px) {*/
    /*    padding-left: 8.2%;*/
    /*}*/
    /*@media (max-width: 767px) {*/
        /*padding-left: 6.2%;*/
    /*}*/
}

.news-splide .splide__pagination {
    position: unset;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.news-splide .splide__pagination li {
    flex-shrink: 0;
}

.news-splide .splide__pagination__page {
    position: unset;
    transform: none;
    opacity: 1 !important;
    mask-image: url(/assets/home/icon_pagination.svg);
    margin: 0;
    border-radius: 0;
    background: #9b9b9b;
    width: 1.75rem;
    height: 0.5rem;
}

.news-splide .splide__pagination__page.is-active {
    background: var(--c-gray-120);
}

.news-splide .splide__arrow {
    position: relative;
    transform: none;
    opacity: 1;
    cursor: pointer;
    border: 0;
    border-radius: 0;
    background-color: unset;
    width: 3rem;
    height: 3rem;
    transition: .2s;
    opacity: 1!important;
    overflow: hidden;
}
.news-splide .splide__arrow--prev{
    left: 0;
}
.news-splide .splide__arrow--next{
    right: 0;
}
.news-splide .splide__arrow::before,
.news-splide .splide__arrow::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    height: 0.0625rem;
    width: 100%;
}

.news-splide .splide__arrow::before{
    background-color: var(--c-gray-30);
}
.news-splide .splide__arrow::after{
    background-color: var(--c-gray-120);
    transform: translateX(-100%);
    transition: .2s;
}
.news-splide .splide__arrow--prev::after{
    animation: slide-out-prev .3s forwards;
}
.news-splide .splide__arrow--next::after{
    animation: slide-out .3s forwards;
}

.news-splide .splide__arrow svg {
    display: none;
}
.news-splide .splide__arrow img{
    transition: .2s;
}
.news-splide .splide__arrow--prev img {
    transform: rotate(180deg);
}
@media print and (hover: hover), screen and (min-width: 992px) and (hover: hover) {
    .news-splide .splide__arrow--next:hover img{
        transform: translateX(2px);
    }
    .news-splide .splide__arrow--prev:hover img{
        transform: translateX(-2px) rotate(180deg);
    }
    .news-splide .splide__arrow--prev:hover::after{
        transform: translate(0);
        animation: slide-in-prev .2s forwards;
    }
    .news-splide .splide__arrow--next:hover::after{
        transform: translate(0);
        animation: slide-in .2s forwards;
    }
}

@keyframes slide-in-prev {
    0% {
        transform: translate(100%);
    }
    to {
        transform: translate(0);
    }
}


@keyframes slide-in {
    0% {
        transform: translate(-100%);
    }
    to {
        transform: translate(0);
    }
}

@keyframes slide-out-prev {
    0% {
        transform: translate(0);
    }
    to {
        transform: translate(-100%);
    }
}

@keyframes slide-out {
    0% {
        transform: translate(0);
    }
    to {
        transform: translate(100%);
    }
}

/*タブレットサイズ以下ここから*/
@media screen and (max-width: 767.98px) {
    .news-wrapper {
        padding: 0.5rem 1rem;
    }

    .news-link {
        display: block;
        padding: 1rem 0;
    }

    .news-line {
        display: none;
    }

    .news-link div {
        margin-top: 0;
    }

    .news-icon {
        flex-shrink: 0;
        margin: -2rem 1rem 0 2rem;
    }
}

/*スマホサイズ以下ここから*/
@media only screen and (max-width: 575.98px) {
    .sns-link {
        padding: 1.5rem 1.5rem;
    }

    .sns-link p {
        margin-right: 0;
    }
}

/*ニュースここまで*/
/*Aboutここから*/
.about {
    position: relative;
    z-index: 0;
    background: var(--c-white);
    padding-bottom: 0;
}

.about::after {
    position: absolute;
    top: 65%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--c-gray-5);
    content: "";
}

.about-content {
    border-radius: 0.25rem;
    background: url("/assets/home/photo_about_back.jpg") center no-repeat;
    background-size: cover;
    padding: 5rem 5rem 5.5rem;
    color: var(--c-white);
}

.about-title {
    position: relative;
    margin-bottom: 1.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    font-style: normal;
    font-weight: 200;
    line-height: 70%;
}

.about-title::before {
    display: inline-block;
    margin-right: 0.5rem;
    background-image: url("/assets/home/icon_title_white.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.5rem;
    height: 0.5rem;
    content: "";
    position: relative;
    top:-0.125rem;
}

.about-content h2 {
    margin-bottom: 3rem;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 150%;
    text-align: right;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media only screen and (max-width: 575.98px) {
    .about-content h2 {
        text-align: left;
        margin-bottom: 1.875rem;
    }
}

.about-body {
    margin-left: auto;
    width: 32rem;
    text-align: left;
}

.about-text {
    font-weight: 500;
    line-height: 175%;
    letter-spacing: 0.02rem;
}

.about-button {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.about-button a {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.2);
    padding-inline: 1.5rem;
    width: 100%;
    padding-block:1.25rem;
    text-decoration: none;
    gap:1rem;
}

.about-button a img {
    flex-shrink: 0;
}

@media (hover:hover) {

    .about-button a {
        transition: background-color 0.2s ease-out;
    }

    .about-button a:hover {
        background-color: rgba(255, 255, 255, 0.4);
    }

}

.about-button a span {
    word-break: keep-all;
}

.about-link .underbar-button a {
    border-bottom: 1px solid var(--c-white);
}

.activity-list-text .underbar-button a::after {
    position: absolute;
    inset: 0;
    content: "";
}

@media (hover:hover) {

    .about-link a {
        transition: 0.2s ease-out;
    }

    .about-link a:hover {
        opacity: 0.5;
        border-bottom-color: var(--c-white);
        color:var(--c-white);
    }

}

/*デスクトップサイズ以下ここから*/
@media only screen and (max-width: 991.98px) {
    .about-body {
        width: 65%;
    }
    .about-link {
        display: block;
    }
}

/*タブレットサイズ以下ここから*/
@media screen and (max-width: 767.98px) {
    .about-content {
        padding: 2.75rem 2.75rem 3.5rem;
    }

    .about-content h2 {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .about-body {
        width: 75%;
    }
}

/*スマホサイズ以下ここから*/
@media only screen and (max-width: 575.98px) {
    .about-content {
        padding: 2.5rem 1.5rem 3.5rem;
    }

    .about-body {
        width: 100%;
    }
}
/*Aboutここまで*/

/*研究員・教員ここから*/
.laboratory {
    background-color: var(--c-gray-5);
}

.laboratory-title-content {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
}

.laboratory-title-content.ep{
    flex-flow: column;
    gap: 2rem;
}

.laboratory-title-content .title {
    flex-shrink: 0;
    margin-bottom: 0;
}

.laboratory-text {
    font-style: normal;
    font-weight: 500;
    line-height: 175%;
    word-break: keep-all;
}

.laboratory-play-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-left: auto;
    border-radius: 2.5rem;
    background-color: var(--c-white);
    padding: 0 1rem;
    width: fit-content;
    height: 2.5rem;
    transition: .2s;
}
.laboratory-play-button img{
    transition: .2s;
}

/* splide部分 */
.research-splide {
    margin-top: 1rem;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
}

.research-splide .splide__slide {
    display: flex;
    flex-direction: column;
}

@media print and (hover: hover), screen and (min-width: 992px) and (hover: hover) {
    .research-splide .splide__slide > a:hover {
        color: var(--c-blue);
    }
    .research-splide .splide__slide > a:hover .thumbnail img{
        transform: scale(1.05);
    }
}

.research-splide .splide__slide .educator-box {
    display: block;
    border-top: 1px solid var(--c-gray-40);
    letter-spacing: 0;
    padding: 0;
    margin-bottom: 3rem;
    margin-inline: auto;
    transition: .2s;
    @media only screen and (max-width: 991.98px) {
        margin-bottom: 2rem;
    }
}

.research-item{
    min-width: 16.75rem;
    max-width: 23.75rem;
}

@media only screen and (max-width: 767.98px) {

    .research-item{
        max-width: 17.75rem;
    }
}


/*2人の場合*/
.educator-info-2 {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.educator-info-2 .educator-info p {
    flex-direction: column;
    white-space: nowrap;
}
@media only screen and (max-width: 575.98px) {
    /*.educator-box {*/
    /*    height: 8rem;*/
    /*}*/
    .educator-info-2 {
        flex-direction: column;
        gap: 0.5rem;
    }
    .educator-info-2 .educator-info p {
        flex-direction: row;
    }
}
.research-splide .splide__slide .educator-box:hover .educator-info span img{
    transition: .2s;
}

@media print and (hover: hover), screen and (min-width: 992px) and (hover: hover) {
    .research-splide .splide__slide .educator-box:hover, .educator-box:hover .educator-tag-top{
        color: var(--c-blue);
        border-top-color: var(--c-blue);
    }
    .research-splide .splide__slide .educator-box:hover .educator-info img{
        transform: scale(1.1);
    }
    .research-splide .splide__slide .educator-box:hover .educator-info span img{
        filter: invert(28%) sepia(45%) saturate(5683%) hue-rotate(189deg) brightness(101%) contrast(101%);
    }
}

/*タブレットサイズ以下ここから*/
@media screen and (max-width: 767.98px) {
    .laboratory-title-content .title {
        margin-bottom: 3rem;
    }

    .laboratory-title-content {
        display: block;
    }
}
/*研究員・教員ここまで*/

/*学生の活動ここから*/
.activity {
    background-color: var(--c-gray-10);
}

.activity-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.activity-content li {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 1.25rem;
    position: relative;
}

.activity-content Picture {
    overflow: hidden;
    align-self: flex-start;
    width: 100%;
    height: 100%;
}

.activity-content Picture img {
    height: 100%;
    object-fit: cover;
}

.activity-list-text {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.activity-list-text h3 {
    margin: 0 0 1rem 0;
    font-style: normal;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 100%;
}

.activity-list-text p {
    flex: 1 1 auto;
    margin: 0 0 0.5rem 0;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.875rem;
}

.activity-content.ep li {
display: flex;
    flex-direction: column;
}

.activity-content.ep Picture {
    aspect-ratio: 3/2;
    max-width: 100%;
    height: auto;
}

/*デスクトップサイズ以下ここから*/
@media only screen and (max-width: 991.98px) {
    .activity-content li {
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
    }

    .activity-content Picture {
        max-width: 100%;
    }

    .activity-list-text p {
        flex: 1;
        overflow: hidden;
    }
}

/*スマホサイズ以下ここから*/
@media only screen and (max-width: 575.98px) {
    .activity-content {
        grid-template-columns: repeat(1, 1fr);
    }

    .activity-content-img {
        aspect-ratio: 3/1;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
    }
}

/*学生の活動ここまで*/
/*リンク集ここから*/
.link-content {
    background-color: var(--c-gray-20);
}

.link-content ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    column-gap: 2.5rem;
}

.link-content.ep ul {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.link-content a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-bottom: 1px solid var(--c-gray-30);
    padding: 1rem 0;
}

@media (hover:hover) {

    .link-content a {
        transition: 0.2s ease-out;
    }

    .link-content a:hover {
        color: var(--c-blue);
        border-bottom-color: var(--c-blue);
    }
}

.link-content a svg {
    flex-shrink: 0;
    margin: auto 0 auto auto;
}

.link-content li img {
    flex-shrink: 0;
}

.link-content li .external-link {
   padding-inline-end: 0.25rem;
}

.about-link a img{
    flex-shrink: 0;
}

.external-link img{
    flex-shrink: 0;
}

.link-content Picture {
    flex-shrink: 0;
    align-self: flex-start;
    object-fit: contain;
}

.link-content-text h2 {
    font-style: normal;
    font-weight: 500;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.link-content-text p {
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 500;
    font-size: 0.8125rem;
}

.link-content-icon {
    margin: auto 0 auto auto;
}

/*タブレットサイズ以下ここから*/
@media screen and (max-width: 767.98px) {

    .link-content.ep ul {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .link-content Picture {
        width: 4.875rem;
        height: 3.25rem;
    }
}

/*リンク集ここまで*/

/*トップページタイトルのみ適用*/
.title {
    margin-bottom: 3rem;
}
