@charset "utf-8";

html{
  font-size: clamp(0.8rem, 1.25vw, 1rem);
}

body{
    background-color: #fff;
    font-family: 'Kiwi Maru', serif;
    font-weight: 500;
}

.carousel_title{
    font-size: 2.5rem;
    position: relative;
    font-weight: 500;
    color: #93621F;
}

.carousel_title span{
    font-size: 1.8rem;
}

.article_title{
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    font-weight: 500;
    color: #93621F;
}

.article_title span{
    font-size: 1.8rem;
}

.article_title::before{
    content: "……";
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    left: -2.5em;
}

.article_title::after{
    content: "……";
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    right: -2.5em;
}

a{
    transition: .3s ease-in-out;
}

a:hover,
a:focus,
a:active{
    opacity: 0.7;
}

@media(max-width:700px){
    html{
        font-size: clamp(0.7rem, 1.25vw, 1rem);
    }
}

/* ------------------------------------------------------------

header

------------------------------------------------------------*/

header{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3.3rem;
    top: -50px;
    background: #FFF;
    z-index: 999;
    padding-bottom: 1em;
}

/* --- サイトロゴ ---*/

header h1{
    width: fit-content;
    margin-top: 50px;
    max-width:300px;
}

/* --- ナビ ---*/

header nav {
    width: 90%;
    max-width:  1000px;
}

header nav ul{
    display: flex;
    justify-content: center;
    gap: 1em;
    width: 100%;
}

header nav ul li{
    width: 100%;
}

header nav ul li a{
    border-radius:  5px;
    background: #93621F;
    padding: 0.5em ;
    color: #fff;
    text-shadow: 0 0 12px #00000040;
    font-size: 1.5rem;
    text-decoration: none;
    display: block;
}

header nav ul li:first-child a{
    background: #F0D681;
}

header nav ul li:nth-child(2) a{
    background: #84A4CD;
} 

header nav ul li:nth-child(3) a{
    background: #85C287;
}

header nav ul li a span{
    font-size: 1rem;
}

@media(max-width:700px){
    header h1{
        max-width:200px;
    }
    header nav ul{
        flex-wrap: wrap;
    }
    header nav ul li{
        width: calc((100% - 1em)/2);
     }
}


/* ------------------------------------------------------------

各DR毎のページ

------------------------------------------------------------*/

article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 90%;
    max-width: 1000px;
    margin: 5rem auto;
}

/* --- 動画一覧 ---*/

article .movie_list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.1rem;
}

article .movie_list li{
    width: calc((100% - 2.1rem)/2);
    font-weight: bold;
    font-size: 18px;
    color: #444;
}

/* --- ページネーション ---*/

.pagination{
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.pagination li a{
    color: #fff;
    text-decoration: none;
    display: block;
    background-color: #93621F;
    color: #fff;
    padding: 0.3em 0.7em;
    border-radius: 5px;
}

.pagination li span{
    color: #fff;
    text-decoration: none;
    display: block;
    background-color: #D29036;
    color: #fff;
    padding: 0.3em 0.7em;
    border-radius: 5px;
}

@media(max-width:700px){
    article {
        width: 95%;
    }
    article .movie_list{
        gap: 0.5rem;
    }
    article .movie_list li{
        width: calc((100% - 0.5rem)/2);
        margin-bottom: 1em;
    }
}