@charset "utf-8";

@import url(progressbar.css);

html {
    font-size: 100%;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    color: #1F1F1F;
}

a {
    text-decoration: none;
    color: #E60013;
}

a:hover {
    opacity: .5;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
}

.sec-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.sec-contents {
    margin: 30px 0 30px 0;
    height: 500px;
}

/* header */
header {
    z-index: 1;
    top: 0;
    left: 0;
    transition: padding .3s;

    width: 100%;
    position: relative;
}

#header.scroll {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    width: 100%;
    animation-name: anime;
    animation-duration: 0.3s;
}

#header.scroll.wrapper {
    padding-top: 0;
}

#header.scroll .logo img {
    height: 100px;
}

#header.scroll .icon img {
    width: 50%;
}

@keyframes anime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    padding-top: 30px;
}

.header-right {
    display: flex;
}

#header h1 {
    margin: 0;
}

.header_nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.header_nav li {
    font-size: 18px;
}

.icon ul {
    display: flex;
    text-align: center;
    margin-left: 0;
    gap: 10px;
}

.icon img {
    max-width: none;
}

.navi_pc {
    margin: 0 0 0 auto;
}

.navi_pc ul li:not(:last-of-type) {
    margin-right: 10px;
}

/* ハンバーガーメニュー */
.navi_sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .navi_pc {
        display: none;
    }

    .navi_sp {
        display: block;
    }

    /*メニューボタン　展開前*/
    .menu-btn {
        display: block;
        position: fixed;
        z-index: 3;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        text-align: center;
    }

    .menu-btn span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #555;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .menu-btn span:nth-of-type(1) {
        top: 10px;
    }

    .menu-btn span:nth-of-type(2) {
        top: 20px;
    }

    .menu-btn span:nth-of-type(3) {
        top: 30px;
    }

    .scroll .menu-btn{
        top: 16px;
    }

    /*メニューボタン　展開後*/
    .menu-btn.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        background: #fff;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .menu-btn.active span:nth-child(2),
    .menu-btn.active span:nth-child(3) {
        top: 16px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    /*スマホ用のメニュー*/
    .navi_sp {
        position: fixed;
        z-index: 2;
        top: 0;
        right: -900px;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.7);
        text-align: center;
        width: 100%;
        height: 100vh;
        opacity: 0;
        transition: opacity .6s ease, visibility .6s ease;
        display: flex;
        align-items: center;
    }

    .navi_sp ul {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    .navi_sp ul li {
        list-style-type: none;
        padding: 0;
        width: 100%;
        transition: .4s all;
    }

    .navi_sp ul li:last-of-type {
        padding-bottom: 0;
    }

    .navi_sp ul li:hover {
        background: #ddd;
    }

    .navi_sp ul li a {
        display: block;
        color: #fff;
        padding: 1em 0;
        text-decoration: none;
    }

    .navi_sp.active {
        opacity: 1;
        right: 0px;
    }
}

/* mainvisual */
.bx-wrapper {
    /* 枠を消す */
    border: none;
    /* ドロップシャドウを消す */
    box-shadow: none;
}

/* concept */
.content {
    max-width: 940px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.concept-txt {
    max-width: 400px;
    max-height: 350px;
    text-align: start;
    padding-left: .5%;
    font-size: 18px;
}

.txt-green {
    color: #008230;
    font-size: 115%;
    font-weight: bold;
}

/* news */
#news {
    height: auto;
}

.content-txt {
    margin-top: 55px;
}

dl {
    max-width: 600px;
    margin: 0 auto;
    padding: 0.5px 49px;
    margin-bottom: 50px;
}

dt {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

dt span.red {
    color: #E60013;
}

dt:first-child {
    margin-top: 0;
}

dd {
    margin-left: 0;
    margin-top: 20px;
}

/* onlineshop */
#onlineshop {
    height: auto;
    margin-bottom: 45px;
}

.shop-items {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5%;
    font-size: 14px;
}

.shop-item {
    text-align: center;
}

.shop-item p {
    margin: 5px 0;
}

.shoplist-btn {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

.shoplist-btn a {
    display: inline-block;
    border: 2px solid #E60013;
    padding: 25px 68px;
}

/* access */
#access .content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.access-txt {
    padding-right: .5%;
    margin-left: 5px;
    font-size: 18px;
    width: 300px;
}

.access-txt ul {
    padding-left: 0.5%;
}

/* pagetop */
#pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    z-index: 10;
}

#pagetop img {
    width: 100px;
}

/* footer */
#footer {
    background-color: #E60013;
    font-size: 18px;
}

.footer-wrapper {
    max-width: 960px;
    margin: auto;
    padding: 60px 0 55px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer_nav {
    padding-left: .5%;
}

.footer_nav ul {
    padding-left: 0;
    margin: 0;
}

#footer .icon {
    margin-left: -20%;
}

#footer .icon ul {
    padding-left: 0;
    margin: 0;
}

.footer_nav a {
    color: #ffffff;
}

.small {
    color: #ffffff;
    padding-right: .5%;
}

/* onlineshop.html */
.shop-items.shop {
    padding: 20px 0 60px 0;
}

.shop-items+.shop-items {
    padding-top: 100px;
    padding-bottom: 0;
}

#customar {
    height: auto;
    margin-bottom: 125px;
    margin-top: 100px;
}

.customar-txt dl {
    border: 3px dotted #008230;
    border-radius: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.customar-txt dt {
    color: #E60013;
}

.customar-txt dt:first-child {
    margin-top: 20px;
}

.customar-txt dd:last-child {
    margin-bottom: 20px;
}

/* モバイル対応 */
@media (max-width:767px) {
    img {
        max-width: 50%;
    }

    body {
        font-size: 12px;
    }

    .sec-title {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .sec-contents {
        height: auto;
        margin: 12px 0 12px 0;
    }

    /* header */
    #header {
        flex-direction: column;
        padding: 0 4px;
        padding-top: 4px;
    }

    .logo {
        text-align: center;
    }

    .logo img {
        width: 50%;
    }

    #header.scroll .logo img {
        width: 50%;
        height: auto;
    }

    .header_nav li {
        font-size: 0.8rem;
    }

    /* mainvisual */

    /* concept(about) */
    .content {
        flex-direction: column;
    }

    .concept-img {
        text-align: center;
    }

    .concept-img img {
        max-width: 200px;
    }

    .concept-txt {
        max-width: 200px;
        max-height: auto;
        text-align: start;
        padding-left: 0;
        font-size: 9px;
    }

    .concept-txt p{
        margin: 5px 0;
    }

    .txt-green{
        font-size: 10px;
    }

    p.txt-green{
        margin-bottom: 14px;
    }

    /* news */
    dl {
        max-width: 200px;
        padding: 0.2% 0.2%;
        margin-bottom: 5px;
    }

    dt {
        font-size: 8px;
        margin-top: 10px;
    }

    dd{
        font-size: 7px;
        margin-top: 10px;
    }

    dt:first-child{
        margin-top: 0;
    }

    .content-txt{
        margin-top: 10px;
    }

    /* onlineshop */
    #onlineshop {
        height: auto;
        margin-bottom: 12px;
        padding-bottom: 14px;
    }

    .shop-items {
        display: flex;
        flex-direction: column;
        font-size: 8px;
    }

    .shop-item img {
        width: 150px;
    }

    .shoplist-btn{
        margin-top: 10px;
    }

    .shoplist-btn a {
        border: 1px solid #E60013;
        padding: 6px 3px;
    }

    /* access */
    #access{
        margin-bottom: 34px;
    }

    #access .content {
        flex-direction: column;
        margin-bottom: 0;
        padding-bottom: 13px;
    }

    #access .sec-title{
        margin-bottom: 24px;
    }

    .access-txt {
        padding-right: 0;
        margin-left: 0;
        font-size: 8px;
        width: 130px;
    }

    .access-txt ul{
        padding-left: 0;
        padding: .2%;
        margin: 0;
        margin-bottom: 38px;
    }

    iframe {
        width: 200px;
        height: 175px;
    }

    /* pagetop */
    #pagetop {
        right: -20px;
        bottom: 10px;
        z-index: 10;
        text-align: center;
    }

    #pagetop img{
        width: 100px;
    }

    /* footer */
    #footer {
        font-size: 12px;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .footer_nav ul {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    #footer .icon {
        margin-left: 0;
        margin-top: 0.5%;
    }

    #footer .icon li{
        width: 15px;
    }

    .icon img{
        width: 15px;
    }

    .small {
        margin-top: .5%;
    }

    /* onlineshop.html */
    .shop-items.shop{
        padding: 0;
    }

    .shop-items+.shop-items {
        padding-top: 8px;
        padding-bottom: 0;
    }

    #customar{
        margin-top: 12px;
        margin-bottom: 34px;
        padding-bottom: 12px;
    }

    .customar-txt{
        width: 250px;
        margin: 0 auto;
    }

    .customar-txt dl{
        padding: .5% 2%;
        max-width: 250px;
        margin: 0 auto;
        border: 1px dotted #008230;
        border-radius: 3%;
    }

    .customar-txt dt{
        font-size: 9px;
    }

    .customar-txt dd{
        font-size: 8px;
    }

    .customar-txt dd:last-child{
        margin-bottom: 16px;
    }

    .customar-txt dt:first-child{
        margin-top: 16px;
    }
}