@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ------------------------------------------------------------ Generic ----- */
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
    padding: 1em 0;
}
ul li {
    list-style: none;
}
.hl {
    color: var(--highlight-color) !important;
    letter-spacing: .3em;
    font-weight: 600 !important;
    font-family: 'Poppins';
}
.td-none {
    text-decoration: none;
}
/* --------------------------------------------------------------- Font ----- */
.fwp-40 {
    font-size: 40px;
}
@media screen and (max-width: 991px) {
    .fwp-40 {
        font-size: 30px;
    }
}
.fss-100 {
    font-size: 1em;
}
.fss-80 {
    font-size: .8em;
}

/* -------------------------------------------------------------- Color ----- */
:root {
    --text-color: #1c1c1c;
    --highlight-color: #8a2921;
}

/* ---------------------------------------------------------- Container ----- */
.container-w100 {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}
.content-header {
    height: 200px;
    background-image: url(../img/content-header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.content-header h1 {
    display: inline-block;
    color: #ffffff;
    font-size: 24pt;
    letter-spacing: 4px;
    text-shadow: 
         2px  2px 1px rgba(0, 0, 0, .4),
        -2px  2px 1px rgba(0, 0, 0, .4),
         2px -2px 1px rgba(0, 0, 0, .4),
        -2px -2px 1px rgba(0, 0, 0, .4),
         2px  0px 1px rgba(0, 0, 0, .4),
         0px  2px 1px rgba(0, 0, 0, .4),
        -2px  0px 1px rgba(0, 0, 0, .4),
         0px -2px 1px rgba(0, 0, 0, .4);
}

/* ------------------------------------------------------------- Header ----- */
header .menu {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}
header a {
    text-decoration: none;
    color: var(--text-color);
}
header a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 991px) {
    header .menu {
        display: block;
    }
    header nav {
        position: fixed;
        width: 300px;
        top: 0;
        right: -300px;
        background-color: rgba(33,33,33,.9);
        height: 100%;
        padding-top: 60px;
    }
    header nav ul li {
        width: 100%;
    }
    header nav ul li a {
        color: #ffffff;
        padding: .5rem 0;
        display: inline-block;
    }
    header .btn-gnavi {
        position: fixed;
        top: calc(1rem + 20px);
        right: 20px;
        width: 30px;
        height: 24px;
        z-index: 3;
        cursor: pointer;
        transition: all 400ms;
        -webkit-transition:all 400ms;
    }
    header .btn-gnavi span {
        position: absolute;
        width: 30px;
        height: 4px;
        background: #666;
        border-radius: 10px;
        -webkit-transition: all 400ms;
        transition: all 400ms
    }
    header .btn-gnavi span:nth-child(1) {
        top: 0;
    }
    header .btn-gnavi span:nth-child(2) {
        top: 10px;
    }
    header .btn-gnavi span:nth-child(3) {
        top: 20px;
    }
    header .btn-gnavi.hb-open {
        transform: rotate(180deg);
        -webkit-transform:rotate(180deg);
    }
    header .btn-gnavi.hb-open span {
        background: #fff;
    }
    header .btn-gnavi.hb-open span:nth-child(1) {
        width: 24px;
        transform: translate(-7px,17px) rotate(45deg);
        -webkit-transform: translate(-7px,17px) rotate(45deg);
    }
    header .btn-gnavi.hb-open span:nth-child(3) {
        width: 24px;
        transform: translate(-7px,-17px) rotate(-45deg);
        -webkit-transform: translate(-7px,-17px) rotate(-45deg);
    }
}

/* ------------------------------------------------------------- Footer ----- */
footer {
    background-color: #8a2921;
    color: #fff;
}

/* --------------------------------------------------------------- Card ----- */
.card {
    border-radius: 0;
    border-width: 0;
    text-decoration: none;
    transition: all .2s;
}
a.card:hover {
    opacity: .8;
}
.card .card-body {
    padding: 0;
}
.card .card-img-top {
    border-radius: 0;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}
.card .card-title {
    padding: 0;
    font-size: 1.2rem;
}

/* --------------------------------------------------------------- Blog ----- */
.blog-single-container ul li {
    list-style: disc;
}
.blog-single-container img {
    width: 100%;
}
