﻿@charset "UTF-8";

/* //////////////////////////////////////////////////////////////////////////////// */
/* リセット */

*,
*::before,
*::after {
    box-sizing: border-box;
    font-size: clamp(14px, 3vw, 16px);
    font-family: 'Noto Sans JP', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p {
    margin: 0;
    font-weight: normal;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#a_1,
#a_2,
#a_3 {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

#a_3{
    margin-bottom: 40px;
}

@media screen and (max-width: 1000px) {

    #a_1,
    #a_2,
    #a_3 {
        display: block;
        padding-top: 50px;
        margin-top: -50px;
    }
}

/* //////////////////////////////////////////////////////////////////////////////// */
/* Google fonts */

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 200,
        'GRAD' 0,
        'opsz' 48
}

/* //////////////////////////////////////////////////////////////////////////////// */
/* header */

header {
    min-height: 70px;
    padding: 10px;
    background-color: #FFF;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

#header_container {
    width: min(95%, 1000px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#header_container h1 img {
    height: 50px;
}

#header_container ul {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 40px;
}

#header_container li {
    font-weight: bold;
}

@media screen and (max-width: 1000px) {

    header {
        min-height: 60px;
    }

    #header_container h1 img {
        height: 40px;
    }

}

/* //////////////////////////////////////////////////////////////////////////////// */
/* ハンバーガーメニュー */

.header-logo-menu {
    display: none;
}

@media screen and (max-width: 1000px) {

    nav {
        display: none;
    }

    #nav-drawer {
        position: relative;
    }

    .nav-unshown {
        display: none;
    }

    #nav-open {
        display: inline-block;
        width: 30px;
        height: 22px;
        vertical-align: middle;
    }

    #nav-open span,
    #nav-open span:before,
    #nav-open span:after {
        position: absolute;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background: #000;
        display: block;
        content: '';
        cursor: pointer;
    }

    #nav-open span:before {
        bottom: -8px;
    }

    #nav-open span:after {
        bottom: -16px;
    }

    #nav-close {
        display: none;
        position: fixed;
        z-index: 99;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        transition: .3s ease-in-out;
    }

    #nav-content {
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: #fff;
        transition: .3s ease-in-out;
        -webkit-transform: translateX(105%);
        transform: translateX(105%);
    }

    .nav-close-btn {
        padding: 0 10px;
    }

    .nav-close-btn label {
        height: 60px;
        display: flex;
        justify-content: right;
        align-items: center;
    }

    .nav-close-btn img {
        max-height: 40px;
    }

    .nav_area1 {
        display: flex;
        flex-direction: column;
        padding: 0 10px;
        margin-bottom: 40px;
    }

    .nav_area1 li {
        padding: 20px 0;
        border-top: 1px solid #dcdcdc;
    }

    .nav_area1 li:last-child {
        border-bottom: 1px solid #dcdcdc;
    }

    .nav_area1 li a {
        font-size: 1.2rem;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
    }

    .nav_area2{
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        row-gap: 30px;
        margin-bottom: 20px;
    }

    .nav_area2 li{
        width: 50%;
        margin: 0 auto;
    }

    #nav-input:checked~#nav-close {
        display: block;
        opacity: .5;
    }

    #nav-input:checked~#nav-content {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
    }

    .header-logo-menu {
        display: flex;
        display: -moz-flex;
        display: -o-flex;
        display: -webkit-flex;
        display: -ms-flex;
        flex-direction: row;
        -moz-flex-direction: row;
        -o-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
    }

    .logo-area {
        text-align: center;
        margin: auto;
    }
}

/* //////////////////////////////////////////////////////////////////////////////// */
/* メインビジュアル */

#section_top {
    width: min(95%, 1000px);
    margin: 0 auto;
}

#section_top2 {
    display: none;
}

@media screen and (max-width: 1000px) {

    #section_top {
        display: none;
    }

    #section_top2 {
        margin: 0 auto;
        display: block;
    }

}

/* //////////////////////////////////////////////////////////////////////////////// */
/* タイトル */

h2 {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: bold;
    background-image: linear-gradient(0deg, rgba(202, 209, 255, 1), rgba(255, 255, 255, 1));
    margin-bottom: 40px;
    padding: 0px 16px;
    border-left: 20px solid #211984;
}

h3 {
    color: #FFF;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: bold;
    background-image: linear-gradient(90deg, rgba(255, 11, 11, 1), rgba(154, 11, 11, 1));
    margin-bottom: 10px;
    padding: 0px 16px;
}

@media screen and (max-width: 1000px) {

    h2 {
        margin-bottom: 20px;
        padding: 16px;
    }

    h3 {

        font-size: clamp(16px, 3vw, 24px);
        margin-bottom: 20px;
        padding: 12px;
    }

}

/* //////////////////////////////////////////////////////////////////////////////// */
/* main */

main {
    display: flex;
    flex-direction: column;
    row-gap: 110px;
    background-color: #000;
    background-image: url(../img/item_backgroundimg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.section_container {
    width: min(100%, 1000px);
    margin: 0 auto;
    padding: 40px;
    background-color: #FFF;
}

@media screen and (max-width: 1000px) {

    main {
        display: flex;
        flex-direction: column;
        background-color: #FFF;
        row-gap: 50px;
    }

    .section_container {
        padding: 10px;
    }

}

/* //////////////////////////////////////////////////////////////////////////////// */
/* section01 */

.s1_area {
    display: flex;
    column-gap: 40px;
}

.area01 {
    width: 35%;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.area02 {
    width: 65%;
}

@media screen and (max-width: 1000px) {
    .s1_area {
        display: flex;
        flex-direction: column;
        column-gap: 40px;
    }

    .area01 {
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        margin-bottom: 40px;
    }

    .area02 {
        width: 100%;
    }

}

/* //////////////////////////////////////////////////////////////////////////////// */
/* スロット */

@media screen and (max-width: 1000px) {

    .area_slot {
        width: 50%;
        margin: 0 auto;
    }

}

/* //////////////////////////////////////////////////////////////////////////////// */
/* タイプ（テーブル） */

.area_type table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #000;
}


.table_item {
    text-align: center;
    padding: 8px;
    color: #FFF;
    background-color: #000;
    border-bottom: 1px solid #FFF;
}

.table_item2 {
    padding: 8px;
    color: #000;
    background-color: #FFF;
    border: 1px solid #000;
}

/* //////////////////////////////////////////////////////////////////////////////// */
/* SNS */

.area_sns ul {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.area_sns li {
    width: 60%;
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    .area_sns {
        display: none;
    }
}

/* //////////////////////////////////////////////////////////////////////////////// */
/* ボーナス */

.area_bonus {
    background-color: #dcdddd;
    padding: 30px 20px 10px;
}

.box_bonus {
    display: flex;
    column-gap: 10px;
    margin: 0 20px 30px;
    align-items: center;
}

.box_bonus2 {
    display: none;
}

.box_bonus li {
    width: 20%;
}

.box_bonus4 {
    flex-grow: 2;
}

.in_box_bonus {
    flex-grow: 3;
    display: flex;
    flex-direction: column;
}

.in_box_bonus li {
    width: 100%;
}

@media screen and (max-width: 1000px) {

    .area_bonus {
        padding: 0 0 20px;
    }

    .box_bonus4 {
        display: none;
    }

    .box_bonus li {
        width: 30%;
    }

    .box_bonus {
        margin: 0 10px 10px;
        justify-content: space-between;
    }

    .box_bonus2 {
        display: flex;
        margin: 0 0px 20px;
    }

    .box_bonus2_p2 {
        width: 50%;
        margin: 0 auto 20px;
    }

}

/* //////////////////////////////////////////////////////////////////////////////// */
/* 新台紹介動画 */

.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}

/* //////////////////////////////////////////////////////////////////////////////// */
/* ラインナップ */


.area_lineup {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
}

.box_lineup {
    width: 18%;
    border: 1px solid #dcdcdc;
    background-color: #f5f5f5;
    padding: 5px;
    margin-bottom: 20px;
}

.box_lineup p {
    font-size: 0.7rem;
    height: 45px;
}

.in_box_lineup {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.in_box_lineup li {
    width: 80%;
}

@media screen and (max-width: 1000px) {

    .box_lineup {
        width: 47%;
    }
}


/* //////////////////////////////////////////////////////////////////////////////// */
/* footer */

footer {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    background-color: #FFF;
}

footer p {
    font-size: 0.8rem;
}

footer div {
    width: 200px;
    margin: 0 auto 20px;
}

footer div p {
    color: #000;
    font-size: 1rem;
    position: relative;
    top: -10px;
    font-weight: bold;
}

footer span {
    font-size: 4rem !important;
    color: #000;
}

footer div img {
    width: 70px;
}

/* //////////////////////////////////////////////////////////////////////////////// */
/* スライダー */

.slide-items {
    width: 100%;
    display: flex;
    max-width: 100%;
    margin: 0 auto;
}

.slide-items li {
    height: auto;
    margin-right: 10px;
    margin-left: 10px;
}

.slide-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}

.slick-dots {
    left: 50%;
    transform: translateX(-50%);
}

.slick-slide img {
    min-height: 210px;
}

@media screen and (max-width: 1000px) {

    .slick-slide img {
        min-height: 160px;
    }

}