@charset "UTF-8";

header{
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 70px;
    }

.twrr_logo{
    height: auto;
    width: 10%;
    color: #fff;
}
.twrr_logo img{
    vertical-align: middle;
}
.twrr_logo:hover {
    animation: windmill 0.5s 1 ease-out;
}

::-webkit-full-page-media, :future, :root .twrr_logo{
    height: auto;
    width: 10%;
    color: #fff;
}
::-webkit-full-page-media, :future, :root .twrr_logo img{
    vertical-align: middle;
}
::-webkit-full-page-media, :future, :root .twrr_logo:hover {
    animation: windmill 0.5s 1 ease-out;
}

.pc_nav{
    display: inline-block;
    font-size: 20px;
    position: relative;
    left: auto;
    height: 100%;
    font-size: 12px;
}

.pc_nav ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3%;
    height: 100%;
}

.primary_content{
    padding: 0;
}

.category{
    height: fit-content;
    text-align: left;
    margin-left: 70px;
    margin-bottom: 10px;
}

.category h2{
    display: inline-block;
}

.swiper {
width: calc(100% - 70px);
margin-left: 70px;
height: auto;
--add-bottom: 50px;
padding-bottom: var(--add-bottom);
overflow: hidden;
}

.swiper [class^="swiper-button-"]{
top: calc(50% - var(--add-bottom) / 2);
}

.swiper-wrapper{
right: 0px;
}

.swiper-slide{
object-fit: cover;
display: flex;
align-items: center;
}

.swiper-wrapper .swiper-slide .item a{
width: 100%;
height: auto;
}

.swiper-wrapper .swiper-slide .item a img{
width: 100%;
height: auto;
border-radius: 0px;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
    visibility: visible !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 追加 */
    width: 100px;
    height: 100px;
    transition: .3s;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
    content: "";
    display: block;
    position: relative;
    width: 20px;
    height: 20px; 
    border-top: solid 2px #fff;
    border-right: solid 2px #fff; 
    transform: rotate(225deg);
    transition: .5s;
    padding-left: 20px;
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
    content: "";
    display: block;
    position: relative;
    width: 20px;
    height: 20px; 
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff; 
    transform: rotate(225deg);
    transition: .5s;
}