@charset "UTF-8";
/* ページ共通の指定 */
html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: normal;
    color: #554D4A;
}

/* Apply Shippori Mincho B1 to Japanese text */
body:lang(ja), .jp-text {
    font-family: 'Shippori Mincho', serif;
    font-weight: 400;
    font-style: normal;
    color: #554D4A;
}

.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}


.manrope {
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.manrope-m {
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.header {
    display: flex;
    width: 100%;
    height: 600px;
    padding: 27px 9.6% 44px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    background-image: url(img/sp-main.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 31px;
    align-self: stretch;
    cursor: pointer;
}

.subttl {
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 1.5rem;
    font-weight: 500;
}

.mainttl {
    color: #FFF;
    font-size: 2.8rem;
    letter-spacing: 1.15px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.menu {
    position: fixed;
    width: 100%;
    display: flex;
    right: 9.6%;
    flex-direction: column;
    align-items: flex-end;
}

.menu:hover {
    cursor: pointer;
}

@media screen and (min-width:769px) {
    .header {
        display: flex;
        height: 900px;
        padding: 80px 10.4% 220px;
        align-items: center;
        gap: 370px;
        flex-shrink: 0;
        background-image: url(img/pc-main.jpg);
    }

    .menu {
        display: none;
    }

    .title {
        justify-content: center;
        align-items: flex-start;
        gap: 53px;
    }

    .subttl {
        font-size: 2rem;
    }
    
    .mainttl {
        font-size: 4.5rem;
        letter-spacing: 2.25px;
    }
}

/* .nav初期表示 */
.nav {
    background: rgba(138, 166, 255, 0.80);
    width: 100%;
    height: 100vh;
    padding: 30px 9.6% 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__close {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.closeButton {
    width: 30px;
    height: 30px;
    background-image: url(img/close.png);
    background-size: contain;
}

.closeButton:hover {
    background-image:url(img/h-close.png);
    background-size: cover !important;
    transition: transform 0.4s;
}

.nav__list {
    display: flex;
    width: 100%;
    padding-top: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    flex-shrink: 0;
}

.nav__list li{
    text-decoration: none;
    cursor: pointer;
    color: #FFF;
    font-family: 'Manrope', serif;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.32px;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.copy {
    color: #FFF;
    font-size: 4rem;
    font-family: 'Manrope', serif;
    line-height: normal;
    letter-spacing: 9.2px;
}

.pcCopy {
    display: none;
}

@media screen and (min-width:769px) {
    .nav {
        background: transparent;
        width: 100%;
        height: 22px;
        padding: 0;
        position: fixed;
        top: 80px;
        z-index: 100;
        transform: translate(0);
    }

    .nav__close {
        display: none;
    }

    .nav__list {
        display: flex;
        align-items: center;
        justify-content: right;
        gap: 78px;
        padding-top: 0;
        padding-right: 10.4%;
        flex-direction: row;
    }
    
    .nav__list li{
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    }

    .copy {
        display: none;
    }

    .pcCopy {
        display: flex;
        font-size: 6rem;
        font-weight: 500;
        letter-spacing: 13.8px;
        color: #FFF;
        font-family: 'Manrope', serif;
        line-height: normal;
    }
}

.topCategory, .category, .pcCategory {
    position: relative;
    display: flex;
    width: 100%;
    padding: 80px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.topCategory::before {
    position: absolute;
    top: -20px;
    content: "";
    display: inline-block;
    width: 100%;
    height: 28px;
    background-image: url(img/bg-arc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pcCategory::before {
    position: absolute;
    top: -20px;
    content: "";
    display: inline-block;
    width: 100%;
    height: 28px;
    background-image: url(img/bg-arc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.categoryF {
    width: 100%;
    background-image: url(img/bg.jpg);
    background-size: cover;
}

.opa {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.1);
}

@media screen and (min-width:769px) {
    .topCategory, .category {
        padding: 100px 10.4% 150px;
        gap: 73px;
    }
    
    .topCategory::before {
        height: 93px;
        top: -90px;
        left: 0;
    }

    .pcCategory {
        padding: 100px 10.4% 150px;
        flex-direction: row;
        gap: 73px;
    }

    .pcCategory::before {
        height: 93px;
        top: -90px;
        left: 0;
    }

    .opa {
        gap: 73px;
        padding: 100px 10.4% 150px;
    }
}

.pcArc {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    position: relative;
}

.catTop {
    display: flex;
    width: 100%;
    padding: 0px 9.6%;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    align-self: stretch;
}

.cat__header {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 9px;
}

.cat__header--ttl {
    color: #333;
    font-family: 'Manrope', serif;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.64px;  
}

.cat__header--sub {
    color: #333;
    letter-spacing: 2.08px;
}

.cat__desc {
    font-weight: 500;
    line-height: 35px; /* 218.75% */
    letter-spacing: 1.28px;
}

@media screen and (min-width:769px) {
    .pcArc {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 100px;
        flex: 1 0 0;
    }
    
    .catTop {
        padding: 0;
    }

    .cat__header {
        width: 100%;
        flex-direction: row;
        justify-content: left;
        gap: 30px;
        align-items: center;
    }
    
    .cat__header--ttl {
        font-size: 4.3rem;
        letter-spacing: 5.59px;
    }
    
    .cat__desc {
        line-height: 37px; /* 231.25% */
    }
}

.catCont, .catContF {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    padding: 0 9.6%;
    align-self: stretch;
}

.catCont__photo, .catCont__photoF {
    width: 100%;
    text-align: center;
    opacity: 0.9;
}

.catCont__photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.catCont__photoF img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.catCont__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
}

.arcCatCont__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
}

.article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    align-self: stretch; 
}

.item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
    border-bottom: solid 1px #ddd;
    padding-bottom: 30px;
}

.item__ttl {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.item__ttl--cat {
    font-size: 1.4rem;
}

.item__ttl--cat h3 {
    display: inline-block;
}

.item__ttl--cat li {
    display: inline-block;
    float: left;
}

.item__txt {
    flex: 1 0 0;
    font-size: 1.8rem;
    line-height: 25px; /* 156.25% */ 
}

.navBottom {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    align-self: stretch;
}

.navButton {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    gap: 2px 14px;
    flex-direction: row;
    cursor: pointer;
}

.navButton a {
    display: inline-flex;
    gap: 14px;
}

.navButton__txt {
    font-size: 1.4rem;
    border-bottom: solid 1px #ddd;
    padding-bottom: 7px;
}

.navButton__arrow {
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 10;
    background-image:url(img/arrow.png);
}

.navButton__arrow:hover {
    background-image:url(img/h-arrow.png);
}

@media screen and (min-width:769px) {
    .catCont {
        flex-direction: row;
        padding: 0px;
        justify-content: space-between;
    }

    .catContF {
        flex-direction: row-reverse;
        padding: 0px;
        justify-content: space-between;
    }
    
    .catCont__photo {
        text-align: left;
    }

    .catCont__photoF {
        text-align: right;
    }

    .catCont__photo img {
        max-width: 600px;
    }

    .catCont__photoF img {
        max-width: 600px;
    }

    .catCont__list {
        padding: 0;
        gap: 70px;
        align-self: stretch;
        width: 100%;
    }
    
    .item {
        gap: 35px;
        padding-bottom: 46px;
    }

    .item__ttl--cat {
        font-size: 1.6rem;
    }
    
    .navButton__txt {
        font-size: 1.6rem;
    }
}

.footer {
    display: flex;
    width: 100%;
    padding: 100px 0 0 9.6%;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(0deg, rgba(255, 228, 231, 0.70) 0%, rgba(231, 237, 255, 0.70) 100%);
}

.info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 90px;
}

.info__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    cursor: pointer;
}

.info__main--ttl {
    font-size: 2.3rem;
    font-style: normal;
    letter-spacing: 1.4px;
}

.info__main--copy {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2.52px;
}

.info__menu {
    width: 100%;
}

.fNav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;   
}

.fNav li {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: normal; 
}

.goTop {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 18.7%;
    border-left: solid 1px #aaa;
}

@media screen and (min-width:769px) {
    .footer {
        display: flex;
        width: 100%;
        padding: 100px 0 80px 10.4%;
        justify-content: space-between;
    }

    .info__main--ttl {
        font-size: 4.5rem;
        letter-spacing: 2.25px;
    }

    .goTop {
        width: 7%;
    }
}

.fBar {
    display: flex;
    padding-bottom: 39px;
    flex-direction: column;
    align-items: center;
    gap: 253px;
}

.copyright {
    transform: rotate(90deg);
}

.fBar p {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    writing-mode: vertical-rl;
}

.fBar__arrow {
    width: 41px;
    height: 45px;
    border-top: solid 1px #aaa;
    text-align: center;
}

.fBar__arrow img {
    padding-top: 35px;
}

.sArticle {
    display: flex;
    flex-direction: column;
    padding: 0px 9.6% 30px;
    align-items: flex-start;
    gap: 50px;
    align-self: stretch;
}

.sArtCont {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;    
}

.sac__top {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.sac__ttl {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    gap: 15px;
}

.sac__ttl--name {
    color: #333;
    font-size: 2.8rem;
    line-height: normal;
    letter-spacing: 3.64px;
}

.sac__ttl--date {
    display: flex;
    padding-bottom: 8px;
    letter-spacing: 2.08px;
}

.sac__sub {
    display: flex;
    width: 100%;
    font-size: 1.4rem;
    line-height: normal;
}

.sac__sub li {
    display: inline;
}

.sac__txt, .sac__txtSP {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 37px; /* 231.25% */
    letter-spacing: 1.28px;
}

.sac__txtNOP {
    display: none;
}

@media screen and (min-width:769px) {
    .sac__txtSP {
        display:none;
    }

    .sac__txtNOP {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        line-height: 37px; /* 231.25% */
        letter-spacing: 1.28px;
        padding: 0;
        justify-content: left;
        align-items: left;     
    }
}

.wp-block-image {
    width: 100vw;
    display: inline-block;
    text-align: center;
    padding: 20px 0;
}    

.arcList {
    display: flex;
    width: 100%;
    padding: 0px 9.6%;
    flex-direction: column;
    align-items: flex-start;
}

@media screen and (min-width:769px) {
    .sac__ttl {
        flex-direction: row;
        height: 41px;
        align-items: center;
        gap: 77px;
    }

    .sac__ttl--date {
        display: flex;
        padding-bottom: 8px;
        justify-content: center;
        align-items: flex-end;
        gap: 10px;
        line-height: normal;
        letter-spacing: 2.08px;
    }

    .pcCategory {
        padding: 100px 2.6% 200px 10.4%;
        flex-direction: row;
        gap: 250px;
    }

    .sArticle {
        padding: 0;
        gap: 100px;
        flex: 1 0 0;
    }

    .sac__txt {
        padding: 0;
        justify-content: left;
        align-items: left;
    }

    .wp-block-image {
        text-align: left;
    }

    .arcList {
        width: 200px;
        padding: 0;
        gap: 100px;
    }

    .arcCatCont__list {
        padding: 0;
        gap: 70px;
        align-self: stretch;
        width: 100%;
    }
}

.sideMenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 30px;
}

.sMenu__ttl {
    color: #333;
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    line-height: normal;
    letter-spacing: 3.38px;  
}

.sMenu__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
}

@media screen and (min-width:769px) {
    .sideMenu {
        padding-bottom: 50px;
    }

    .sMenu__list {
        padding-bottom: 50px;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

.sMenu__list li {
    line-height: 25px; /* 156.25% */
}

.arcNavBottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch; 
}

.arcNavButton {
    display: flex;
    width: 117px;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: right;
    gap: 2px 14px;
    flex-wrap: wrap;
    cursor: pointer;
    padding-bottom: 50px;
}

.navButtonR__arrow {
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 10;
    background-image:url(img/arrowR.png);
}

.navButtonR__arrow:hover {
    background-image:url(img/h-arrowR.png);
}
