@charset "utf-8";

/* ーーーーーーーーーーーーーーーーーーーーー
全体の設定
ーーーーーーーーーーーーーーーーーーーーー */
* {
    box-sizing: border-box;
}

/* html{
    scroll-behavior: smooth;
  } */
#loader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: #fff;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95vw;
    height: 95vh;
    margin: auto;
    animation-name: fadein;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes fadein {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (min-width:751px) {
    .loader-logo {
        top: -20vh;
        width: 70vw;
        height: 70vh;
    }
}

.loader-logo img {
    width: 100%;
    height: auto;
}

.wrap {
    overflow: hidden;
}

main {
    margin-left: 5.3333vw;
    margin-right: 5.3333vw;
}

.top {
    position: fixed;
    width: 20vw;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: 999;
}

@media screen and (min-width:751px) {
    .top {
        right: 0;
        transform: translateX(0);
    }
}

.info a {
    color: #fff;
}

img {
    max-width: 100%;
}

h2 {
    text-align: center;
    position: relative;
    z-index: 10;
    text-decoration: underline;
    margin-bottom: 40px;
}

h2::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: red;
    left: 50%;
    margin-left: -25px;
    margin-top: -10px;
    transform: rotate(45deg);
    z-index: -10;
    position: absolute;
}

h3 {
    text-align: center;
    margin: 5px 0;
}

h3::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    padding-right: 5px;
    background-image: url(../picture/header/header-logo.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.section {
    margin-top: 60px;
}

.info li {
    border: 1px solid #000;
    margin-bottom: 5.3333vw;
}

.red-btn {
    background: red;
    text-align: center;
    padding: 5px 0;
    border-top: 1px solid #000;
}

.red-btn span,
#black-btn span {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    margin-left: 9px;
    display: inline-block;
    transform: rotate(45deg);
}

@media screen and (min-width:751px) {
    main {
        margin-left: 3.2258vw;
        margin-right: 3.2258vw;
    }

    .top {
        width: 10vw;
        bottom: 3.2258vw;
        margin-right: 3.2258vw;
    }

    .section {
        margin-top: 120px;
    }

    h2 {
        margin-bottom: 60px;
    }

    h3 {
        margin: 10px 0;
    }
}

/* ーーーーーーーーーーーーーーーーーーーーー
header
ーーーーーーーーーーーーーーーーーーーーー */
#main_header {
    position: fixed;
    width: 100%;
    z-index: 200;
}

.search-btn {
    cursor: pointer;
}

.front-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 0;
    top: 0;
    padding: 0 5.3333vw;
    width: 100%;
    height: 60px;
    background: #fff;
    border: 7px solid red;
}

.header-nav {
    background: #000;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    position: fixed;
    z-index: 999;
    transform: translateX(-100%);
    transition: .3s ease;
}

body.open .header-nav {
    transform: translateX(0);
}

.header-nav ul {
    padding: 60px 5.3333vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

}

.header-nav ul li {
    margin-bottom: 5.3333vw;
    padding-bottom: 2vw;
    border-bottom: 2px solid #fff;
    text-align: center;
}

.header-nav ul li:last-child {
    margin-bottom: 0;
}

.header-nav ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    font-weight: bold;
    font-size: 5vw;
}


.header-nav ul li span {
    color: #fff;
    font-size: 5vw;
    display: inline-block;
    transform: rotate(45deg);
    padding: 0 3px;
}

#logo {
    max-width: 45px;
    margin-top: 7px;
}

form dl {
    display: flex;
}

#sp-form dl {
    margin: 0 5.3333vw;
    border: 1px solid #000;
    max-width: 100%;
}

input {
    height: 40px;
}

input[type="submit"] {
    background: #000;
    color: #fff;
}

#header-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    max-width: 50px;
    border: none;
    background-color: transparent;
}

#header-btn span {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    position: relative;
    background-color: red;
    transition: .3s ease;
}

body.open #header-btn span {
    background-color: transparent;
}

#header-btn span::after,
#header-btn span::before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    position: absolute;
    background-color: red;
    transition: .3s ease;
}

#header-btn span::after {
    top: -9px;
}

body.open #header-btn span::after {
    transform: rotate(-45deg);
    top: 0;
}

#header-btn span::before {
    top: 9px;
}

body.open #header-btn span::before {
    transform: rotate(45deg);
    top: 0;
}

.sp-only img {
    max-width: 45px;
    margin-top: 5px;
}

.pc-only {
    display: none;
}

#back-header {
    border-left: 7px solid red;
    border-bottom: 7px solid red;
    border-right: 7px solid red;
    background: #fff;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5.3333vw;
    transform: translateX(100%);
    transition: .3s ease;
}

header.open #back-header {
    transform: translateX(0);
    transition: .3s ease;
}

#back-header form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#back-header input[type="text"] {
    width: 100%;
}

#back-header input[type="submit"] {
    cursor: pointer;
}

#cross-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    max-width: 50px;
    border: none;
    background-color: transparent;
}

.cross span {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    margin-left: 2px;

}

.cross span::after,
.cross span::before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    position: absolute;
    background: #000;
}

.cross span::after {
    transform: rotate(45deg);
}

.cross span::before {
    transform: rotate(-45deg);
}

@media screen and (min-width:751px) {

    .pc-only {
        display: block;
    }

    .pc-only img {
        max-width: 60px;
        margin-top: 5px;
    }

    #logo {
        display: none;
    }

    .header-nav {
        position: static;
        width: 100%;
        background-color: transparent;
        transform: none;
        margin: 0 auto;
    }

    .header-nav ul {
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-nav ul li {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }

    .header-nav ul li a {
        color: #000;
        font-size: medium;
    }

    .header-nav ul li span {
        display: none;
    }

    .front-header {
        padding: 0 3.2258vw;
        height: 80px;
    }

    .sp-only {
        display: none;
    }

    #header-btn {
        display: none;
    }

    #back-header {
        height: 80px;
        padding: 0 3.2258vw;
    }

    #back-header input {
        height: 60px;
    }

    #back-header input[type="text"] {
        width: 450px;
    }

    #back-header input[type="submit"] {
        width: 200%;
    }

    #cross-btn {
        width: 70px;
        height: 70px;
        max-width: 70px;
    }

    .cross span {
        width: 50px;
    }

    .cross span::after,
    .cross span::before {
        width: 50px;
    }
}

/* ーーーーーーーーーーーーーーーーーーーーー
MV
ーーーーーーーーーーーーーーーーーーーーー */
#mv {
    margin-top: 60px;

}

#slide {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#slide li img {
    margin: 0 auto;
}

@media screen and (min-width:751px) {
    #mv {
        margin-top: 80px;
    }

    #slide li a img {
        height: 100%;
        height: calc(100vh - 160px);
    }
}

/* ーーーーーーーーーーーーーーーーーーーーー
展示会・イベント情報
ーーーーーーーーーーーーーーーーーーーーー */
#ivent {
    padding-top: 16vw;
}

#black-btn {
    background: #000;
    color: #fff;
    margin: 0 auto;
    padding: 5px 0;
    text-align: center;
}

@media screen and (max-width:350px) {
    #black-btn a {
        font-size: 4vw;
    }
}

.ivent-txt {
    padding: 10px;
}

@media screen and (min-width:751px) {
    #ivent {
        padding-top: 9.6774vw;
    }

    #black-btn {
        width: calc(50% - 3.2258% / 2);
    }

    #black-btn a {
        display: block;
    }

    #ivent-info {
        display: flex;
        flex-wrap: wrap;
    }

    #ivent-info li {
        flex: calc(50% - 3.2258% / 2);
        margin-bottom: 3.2258%;
    }

    #ivent-info li:nth-of-type(odd) {
        margin-right: 3.2258%;
    }
}

/* ーーーーーーーーーーーーーーーーーーーーー
商品一覧
ーーーーーーーーーーーーーーーーーーーーー */
#products-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 5.3333vw;
    background: red;
    margin: 0 -5.3333vw;
    padding: 5.3333vw;
    white-space: nowrap;
}

@media screen and (max-width:750px) {
    .products-item dd {
        font-size: 5vw;
    }
}

.products-item {
    background: #fff;
}

.products-item:hover {
    background: yellow;
    cursor: pointer;
}

.products-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border: 1px solid #000;
}

.products-item dt {
    flex: 1;
    margin-right: 5px;
}

.products-item dd {
    flex: 1;
    text-align: center;
}

.products-item dd div:first-child {
    margin-bottom: 3vw;
}

.products-item dd div:nth-child(3) {
    margin-top: 3vw;
}

@media screen and (min-width:751px) {
    #products-info {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
        grid-gap: 3.2258vw;
        margin: 0 -3.2258vw;
        padding: 3.2258vw;
    }

    .products-item {
        padding: 20px;
    }

    .products-item dt {
        margin-right: 20px;
    }

    .products-item dd div:first-child {
        margin-bottom: 20px;
    }

    .products-item dd div:nth-child(3) {
        margin-top: 20px;
    }
}

/* ーーーーーーーーーーーーーーーーーーーーー
会社・店舗情報
ーーーーーーーーーーーーーーーーーーーーー */
#company-info li:last-child h3 {
    margin-bottom: -6px
}

@media screen and (min-width:751px) {
    #company-info {
        display: flex;
        flex-wrap: wrap;
    }

    #company-info li {
        flex: calc(50% - 3.2258% / 2);
        margin-bottom: 3.2258%;
    }

    #company-info li:nth-child(n+3) {
        margin-bottom: 0;
    }

    #company-info li:nth-child(odd) {
        margin-right: 3.2258%;
    }
}

/* ーーーーーーーーーーーーーーーーーーーーー
お知らせ
ーーーーーーーーーーーーーーーーーーーーー */
#news-info {
    background: red;
    margin: 0 -5.3333vw;
    padding-top: 5.3333vw;
}

#news-info li {
    border: none;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    text-align: center;
}

#news-info li:last-of-type {
    border: none;
}

#news-info li ul li {
    border: none;
}

#news-info li time {
    background: #000;
    color: #fff;
    margin: 0 auto;
    padding: 0 5px;
}

#news-info li a {
    display: block;
    margin-top: 10px;
    padding: 10px;
}

#news-info li a:hover {
    color: yellow;
}

#news-info li a:active {
    color: blue;
}

/* #news-info li a:visited{
    color: green;
} */
.page-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 5.3333vw;
}

.page-links li a {
    background: #000;
}

@media screen and (max-width:750px) {
    #news-info li ul li {
        margin-bottom: 0;
    }

    #news-info li ul li a {
        margin-top: 0;
    }
}

@media screen and (min-width:751px) {
    #news-info {
        margin: 0 -3.2258vw;
        padding-top: 0;
    }

    #news-info li {
        margin: 0;
        padding-bottom: 10px;
        text-align: start;
    }

    .news-first-info {
        padding-top: 10px;
    }

    #news-info li time {
        margin: 0 3.2258vw;
    }

    #news-info li a {
        display: inline-block;
    }

    .page-links {
        width: 50%;
        margin: 10px auto 0;
        padding: 0;
    }

    .page-links li:nth-child(6) {
        padding-top: 10px;
    }
}

/* ーーーーーーーーーーーーーーーーーーーーー
お問い合わせ
ーーーーーーーーーーーーーーーーーーーーー */


@media screen and (min-width:751px) {
    #contact-info {
        display: flex;
    }

    #contact-info li {
        flex: 1;
    }

    #contact-info li:nth-of-type(2) {
        margin-left: 3.2258vw;
        margin-right: 3.2258vw;
    }
}

/* ーーーーーーーーーーーーーーーーーーーーー
フッター
ーーーーーーーーーーーーーーーーーーーーー */
#main_footer {
    background: #000;
    padding: 5.3333vw;
    margin-top: 60px;
}

#main_footer a {
    display: block;
}

.footer-info dt {
    text-align: center;
}

.footer-info dt {
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

.footer-info dd {
    margin-bottom: 60px;
}

.footer-info dd li {
    border-bottom: 1px solid #fff;
    text-align: center;
    padding-bottom: 5px;
}

.footer-info li a {
    color: #fff;
    text-decoration: none;
    padding-top: 5.3333vw;
}

.sns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5.3333vw;
}

.sns li {
    flex: 1;
}

.sns li:nth-child(even) {
    margin: 0 5.3333vw;
}

.foot-area_copy {
    color: #fff;
    display: block;
    text-align: center;
}

.footer-logo {
    margin: 0 -5.3333vw 5.3333vw;
    padding: 0 5.3333vw;
    background: #fff;
    z-index: 1;
}

@media screen and (min-width:751px) {
    #main_footer {
        padding: 3.2258vw;
        margin-top: 120px;
        font-size: 1.2vw;
    }

    .footer-info {
        display: flex;
    }

    .footer-info li a {
        padding-top: 3.2258vw;
    }

    .footer-info div {
        flex: 1;
    }

    .footer-info div:nth-child(even) {
        margin-left: 3.2258vw;
        margin-right: 3.2258vw;
    }

    .footer-info li:last-child {
        margin-bottom: 0;
    }

    .sns {
        margin-bottom: 3.2258vw;
    }

    .sns li:nth-child(even) {
        margin: 0 3.2258vw;
    }

    .footer-logo {
        margin: 0 -3.2258vw 3.2258vw;
        padding: 0 3.2258vw;
    }
}