@charset 'UTF-8';
/* common */
html,body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100vh;
}

:root {
    --primary-black: #3A3A3A;
    --primary-violet-1: #573D7A;
    --primary-violet-2: #694A94;
    --primary-blue: #3B5BE9;
    --primary-background: #EDEFF2;
}

html {
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 
    "Noto Sans JP",
    Arial, 
    sans-serif;
    font-style: normal;
    color: var(--primary-black);
    background-color: white;
    line-height: 1.5;
    font-weight: lighter;
}

img {
    max-width: 100%;
    height: auto;
}

.nav__btn {
    color: white;
    background-color: var(--primary-violet-2);
}

.MV__btn {
    color: white;
}

.arrow__sp  {
    /* border-radius: 50%;
    border: 0.5px solid #000; */
    width: 14px;
    height: 8px;
    margin: 10px 5px;
    transform: translateY(-125%);
}

.btn {
    display: flex;
    align-items: center;
}

.btn:hover,
.nav__btn:hover {
    opacity: 0.8;
}

.MV__btn:hover {
    opacity: 0.9;
}

.header__logo__pc ,
.mainImg__pc ,
.pc__line,
.arrow__pc ,
.pc__footer__logo ,
.pagetop__pc ,
.menuGroup,
.pcMV__sub {
    display: none;
}

.header__logo__btn {
    display: flex;
    align-items: center;
    gap: 0 9px;
}

.header__logo__sp,
.header__logo__pc,
.sp__footer__logo,
.pc__footer__logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.header {
    display: flex;
    align-items: center;
    padding: 0 3.7% 0 3.7%;
    justify-content: space-between;
    position: absolute;
    width: 100%;
}

.header__name {
    font-size: 1.4rem;
    font-weight: 500;
}

.nav__btn {
    color: #FFF;
    display: flex;
    font-size: 1.2rem;
    font-weight: 400;
    height: 22px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    width: 104px;
    padding: 3.5px 10px;
}

.footer {
    background-color: var(--primary-background);
}

.footer__group {
    padding-top: 40px;
    padding-bottom: 90px;
    /* padding-left: 9.3%; */
}

.footer__menu__txt {
    font-size: 1.6rem;
    font-weight: 400;
}

.footer__menu__list {
    display: flex;
    gap: 0 17.3%;
    justify-content: center;
}

.footer__menu__list:last-of-type {
    margin-top: 18px;
}

.sp__footer__logo {
    margin-top: 43px;
}

.footer__list {
    padding-left: 9.3%;
}

.footer__txt {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.1;
    margin-top: 27px;
}

.footer__span {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2.1; /* 29.4px */
}

.copy {
    color:  #FFF;
    font-size: 1.2rem;
    font-weight: 400;
    background-color: var(--primary-violet-1);
    padding-top: 5px;
    padding-bottom: 2px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.copy__text {
    margin: 0;
}

.copy__login {
    color: #FFF;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    position: absolute;
    right: 15px;
    padding: 3px 10px;
    border: 1px solid #FFF;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.copy__login:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.pagetop__sp {
    display: inline-block;
    padding: 20px 14px;
    border-radius: 50%;
    background-color: var(--primary-violet-2);
    position: fixed;
    bottom: 4%;
    right: 1.4%;
}

.section__topic {
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 70px;
    text-align: center;
}

.section__topic::after {
    content: '';
    width: 100px;
    height: 2px;
    display: block;
    background-color: var(--primary-violet-2);
    margin: 10px auto;
}

/* お知らせ・報告 */
.section__navigation {
    padding-left: 9.3%;
    padding-right: 9.3%;
}

.report__list {
    margin: 0 auto;
    margin-top: 20px;
    border-bottom: 0.5px solid #D9D9D9;
    list-style: none;
    padding: 0;
}

.report__list li {
    list-style: none;
}

.report__txt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 20px;
    padding: 15px 9.3%;
    border-top: 0.5px solid #D9D9D9;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}

.report__txt:hover {
    background-color: #f5f5f5;
}

.report__date {
    flex-shrink: 0;
    width: 90px;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.report__title {
    flex: 1;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

time {
    width: 77px;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 400;
}

span {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 400;
}

/* PCお知らせ・報告 */
@media screen and  (min-width: 769px){
    .section__navigation {
        padding-left: 12%;
        padding-right: 12%;
    }
    
    .report__list {
        margin-top: 76px;
        border-bottom: 2px solid #D9D9D9;
        margin-bottom: 79px;
    }

    .report__txt {
        gap: 0 40px;
        padding: 28px 12%;
        border-top: 2px solid #D9D9D9;
    }

    .report__date {
        width: 120px;
        font-size: 1.6rem;
        font-weight: 500;
    }

    .report__title {
        font-size: 1.8rem;
        font-weight: 500;
        line-height: 1.8;
    }

    time {
        width: 105px;
        font-size: 1.8rem;
        font-weight: 600;
    }

    span {
        font-size: 2.2rem;
        font-weight: 600;
    }
}

/* PC */
@media screen and (min-width:769px) {
    .header__logo__pc ,
    .mainImg__pc ,
    .pc__line,
    .arrow__pc ,
    .pc__footer__logo ,
    .pagetop__pc ,
    .pcMV__sub {
        display: block;
    }

    .mainImg__pc {
        width: 100%;
    }

    .header__logo__sp,
    .mainImg__sp,
    .spMV__sub,
    .sp__line,
    .sp__footer__logo {
        display: none;
    }

    .section__topic {
        font-size: 3.6rem;
        font-weight: 600;
        margin-top: 110px;
    }

    .section__topic::after {
        margin-top: 46px;
    }

    .header__name {
        font-size: 1.8rem;
    }
}

@media screen and (min-with: 1150px) {
    .menuGroup {
        display: block;
    }

    .header__name {
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 769px) {
    .footer__group {
        padding-bottom: 55px;
        padding-left: 0;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        width: 83%;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
        
    }

    .footer__menu__txt {
        font-size: 1.4rem;
        font-weight: 400;
        white-space: nowrap;
    }

    .footer__menu__list {
        display: inline-flex;
        gap: 20px;
    }

    .footer__menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .footer__menu__list:last-of-type {
        margin-top: 0;
        margin-left: 20px;
    }

    .footer__list {
        padding: 0;
    }
    
    .footer__txt {
        margin-top: 0;
        font-size: 1.8rem;
        font-weight: 500;
        line-height: 2.1;
    }
    
    .footer__span {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 2.1; /* 29.4px */
    }
    
    .copy {
        font-size: 1.6rem;
        font-weight: 600;
        background-color: var(--primary-violet-1);
        padding-top: 3px;
        padding-bottom: 3px;
        text-align: center;
    }

    .copy__login {
        font-size: 1.6rem;
        font-weight: 600;
        right: 30px;
        padding: 5px 15px;
    }
    .pagetop__sp {
        display: none;
    }
    
    .pagetop__pc {
        display: inline-block;
        padding: 17px 9.5px;
        border-radius: 50%;
        background-color: var(--primary-violet-2);
        position: fixed;
        bottom: 5%;
        right: 1.4%;
    }
    
    .report__time {
        width: 115px;
    }

    /* 後追加 */
    .nav__list {
        display: flex;
        gap: 0 24px;
        align-items: center;
        white-space: nowrap;
    }

    .nav__item {
        font-size: 1.6rem;
        font-weight: 400;
    }
}
@media screen and (max-width: 769px)  {
    h3 {
        font-size: 1.5rem;
        font-weight: 500;
    }
    p {
        font-size: 1.5rem;
        font-weight: 500;
    }

    .wp-pagenavi {
        margin-top: 30px;
        margin-bottom: 40px;
    }
    
}

.wp-pagenavi {
    margin-bottom: 70px;
    text-align: center;
}

.page-404-text-box {
    padding: 0 9.3%;
    margin-top: 40px;
    padding-bottom: 40px;
}

.page-404-text-box p {
    font-size: 1.6rem;
    font-weight: 500;
    padding-bottom: 40px;
}

@media screen and (min-width:769px) {
    .box-white {
        display: flex;
        margin-top: 70px;
    }

    .page-404-text-box {
        padding: 0;
        margin: 0 auto;
        justify-content: center;
    }

    .process__span {
        font-size: 1.8rem;
    }

    .member__span {
        font-size: 2.8rem;
    }
}

.pagenation {
    text-align: center;
}

