/*===============================
	リセット
================================*/
body {
    font-size: 16px;
    color: #343434;
}

h1,
ul,
li {
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}





/*===============================
	共通
================================*/
a {
    color: #343434;
    text-decoration: none;
}

.pc {
    display: block;
}

.sm {
    display: none;
}


/*===============================
	ヘッダーPC
================================*/
@media only screen and (min-width:701px) {
    .header {
        margin-top: 8px;
        margin-inline: auto;
        max-width: 1200px;
        width: 100%;
        height: clamp(4.375rem, 1.667rem + 5.28vw, 5.625rem);
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: url("../images/bg_header.png") no-repeat top left;
        background-size: auto 100%;
    }

    .header h1 {
        margin-top: clamp(0rem, -1.083rem + 2.11vw, 0.5rem);
        padding-left: 45px;
    }

    .header h1 img {
        height: clamp(1.563rem, 0.209rem + 2.64vw, 2.188rem);
    }

    .header ul {
        margin-right: 45px;
        display: flex;
        gap: clamp(1.25rem, -2.812rem + 7.92vw, 3.125rem);
        justify-content: center;
    }

    .header ul li a {
        padding-bottom: 3px;
        display: inline-block;
        text-decoration: none;
        position: relative;
        transition: .3s;
    }

    .header ul li a::after {
        position: absolute;
        bottom: 10px;
        left: 0;
        content: '';
        width: 100%;
        height: 3px;
        border-radius: 10px;
        color: var(--main-color);
        background-color: var(--main-color);
        opacity: 0;
        transition: .3s;
    }

    .header ul li a:hover {
        color: #7562A8;
    }

    .header ul li a:hover::after {
        bottom: 0;
        opacity: 1;
    }
}

.header ul li {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(0.625rem, calc(0.185rem + 1.504vw), 1.125rem); /* min: 10px, max: 18px */;
    white-space: nowrap;
}

/*===============================
	キービジュアル
================================*/
#loopslider01 {
    margin: 0 auto;
    width: 100%;
    height: 666px;
    text-align: left;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

#loopslider01_wrap {
    position: absolute;
    overflow: hidden;
    z-index: 0;
}

#loopslider01 div {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
}

#loopslider01 ul {
    float: left;
    display: inline;
    overflow: hidden;
}

#loopslider01 ul li {
    width: 1960px;
    float: left;
    display: inline;
    overflow: hidden;
}

#loopslider01 ul li img {
    width: auto;
    max-width: none;
}

#loopslider01 ul:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}

#loopslider01 ul {
    display: inline-block;
    overflow: hidden;
}
@media only screen and (max-width:820px){
    #loopslider01 ul li {
        width: auto;
    }
    #loopslider01 ul li img {
        height: 500px;
    }
}


/*===============================
	トップページ
================================*/
.home #container, .page #container, .archive #container,
.single-post #container, body.single-aijinen #container,
body.single-aijinen #container, .single #container, body.error404 #container,
body[class*="tax-cat-"] #container {
    padding-top: 0;
    background:none;
}
