@charset "UTF-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ebebeb; 
    font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.sec-inside img {
  padding-top: 20px;
}

.lp-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff; 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.bg-red {
    background-color: #d12015;
    color: #ffffff;
}
.bg-white {
    background-color: #ffffff;
    color: #333333;
}
.bg-black {
    background-color: #111111;
    color: #ffffff;
}
section {
    padding: 50px 20px;
    text-align: center;
}

.image-placeholder {
    background-color: #cccccc;
    color: #666;
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 5px;
    width: 90%;
}

.white-box {
    background-color: #ffffff;
    color: #333333;
    border-radius: 10px;
    padding: 30px 20px;
    margin: 30px auto;
    width: 95%;
}

.black-header h3 {
    background-color: #111;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    display: inline-block;
    margin-top: -45px;
}

.btn-primary {
    background-color: #d12015;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    display: inline-block;
    margin: 10px;
    font-weight: bold;
}
.btn-outline {
    background-color: #fff;
    color: #333;
    border: 2px solid #333;
    padding: 15px 30px;
    border-radius: 30px;
    display: inline-block;
    margin: 10px;
    font-weight: bold;
}

.sec-footer {
    padding: 20px;
}

@media screen and (max-width: 800px) {
    .lp-wrapper {
        box-shadow: none; 
    }
    section {
        padding: 30px 15px;
    }
}
.sec-hero {
    background-color: #d12015;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="40"><text x="0" y="30" fill="rgba(255,255,255,0.15)" font-family="sans-serif" font-size="20" font-weight="bold">PACHINKO</text></svg>');
    background-repeat: repeat-x;
    animation: moveBg 5s linear infinite;
}
@keyframes moveBg {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -120px 0;
    }
}

.main-title {
    margin: 20px 0; 
    text-align: center;
}

.title-img {
    max-width: 100%;
    height: auto; 
    width: 600px; 
    vertical-align: bottom; 
}

.pickup-area {
    margin: 30px auto;
    width: 95%; 
}

.pickup-text {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pickup-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0; 
}

.pickup-slider {
    width: 100%;
    margin: 0 auto;
}
.pickup-slider .slick-list {
    border-radius: 10px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.pickup-slide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.pickup-slider-wrapper .slick-arrow {
    display: none !important;
}

.pickup-slider .slick-dots {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.pickup-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px;
}

.pickup-slider .slick-dots li button {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    text-indent: -9999px;
}

.pickup-slider .slick-dots li.slick-active button {
    background-color: #fff;
}

.index-box {
    margin-top: 50px; 
}

.index-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: rgba(208, 25, 0, 0.5); 
    margin-bottom: 20px;
}

.index-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: auto auto;
    text-align: left;
    justify-content: center;
    gap: 20px 50px; 
}

.index-links a {
    color: #d01900;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: opacity 0.3s;
}

.index-links a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 767px) {
    .index-links {
        grid-template-columns: 1fr;
        gap: 15px; 
    }
}

h2 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 28px; 
        letter-spacing: 1px;
    }
}

.age-warning-box {
    display: inline-block;
    background-color: #d12015;
    color: #ffda00;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 50px;
    border-radius: 50px;
    margin: 10px auto 30px;
    letter-spacing: 1px;
}

.color-white {
    color: #ffffff;
}

.age-desc {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #111111;
}

.age-note {
    font-size: 13px;
    color: #111111;
}

@media screen and (max-width: 767px) {
    .age-warning-box {
        font-size: 16px;
        padding: 12px 20px;
        width: 90%; 
    }
    
    .age-desc {
        font-size: 16px;
    }
    
    .age-note {
        font-size: 11px;
        text-align: left; 
        width: 90%;
        margin: 0 auto;
    }
}

.accordion-wrapper {
    width: 90%;
    max-width: 700px;
    margin: 40px auto;
}

.accordion-btn {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border: 3px solid #000000;
    border-radius: 25px;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #111111;
    cursor: pointer;
    box-shadow: 0 6px 0 #000000; 
    transition: background-color 0.3s;
}

.accordion-btn.is-open {
    box-shadow: none;
    border-radius: 25px 25px 0 0;
}

.accordion-btn.is-open::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #ffffff;
    z-index: 1;
}

.accordion-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: #c4c4c4;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.accordion-icon::after {
    content: "";
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}
.accordion-btn.is-open .accordion-icon {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
    display: none; 
    background-color: #ffffff;
    border: 3px solid #000000;
    border-top: none;
    border-radius: 0 0 25px 25px;
    padding: 10px 40px 50px;
    margin-top: -3px;
    position: relative;
    box-shadow: 0 6px 0 #000000; 
    box-sizing: border-box; 
}
}

.accordion-image {
    margin-bottom: 40px;
}
.accordion-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.accordion-desc {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
    color: #111111;
    margin-bottom: 25px;
    text-align: center;
}

.accordion-note {
    font-size: 13px;
    font-weight: normal; 
    color: #333333; 
    text-align: center;
margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .accordion-btn {
        font-size: 20px;
        padding: 15px;
    }
    .accordion-content {
        padding: 10px 20px 30px;
    }
    .accordion-desc {
        font-size: 14px;
        text-align: center;
    }
}

.sec-inside {
    text-align: center; 
    color: #ffffff;
    padding: 60px 20px;
}
.sec-inside h2 {
    color: #ffffff; 
    margin-bottom: 40px; 
}
.inside-subhead {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.inside-text {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .sec-inside {
        padding: 40px 15px;
    }
    .inside-subhead {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .inside-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

.sec-play {
    text-align: center;
    padding: 60px 20px;
    color: #ffffff;
}
.sec-play h2 {
    color: #ffffff;
    margin-bottom: 40px;
}
.play-subhead {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.play-image {
    margin-bottom: 10px;
}

.play-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.play-note {
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 767px) {
.sec-play {
        padding: 40px 15px;
    }
.play-subhead {
        font-size: 20px;
        margin-bottom: 15px;
    }
.play-note {
        font-size: 11px;
    }
}

.play-detail-list {
    text-align: left;
    padding: 10px 0;
}
.detail-item {
    margin-bottom: 25px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-title {
    font-size: 16px;
    font-weight: bold;
    color: #111111;
    margin-bottom: 8px;
}
.detail-text {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6;
    color: #111111;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
.detail-item {
        margin-bottom: 20px;
    }
.detail-title {
        font-size: 15px;
    }
.detail-text {
        font-size: 13px;
    }
}

.mt-60 {
    margin-top: 60px;
}

.step-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.step-flow2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.step-item {
    width: 100%;
    max-width: 700px;
}
.step-item img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.step-arrow {
    width: 120px;
}
.step-arrow img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .step-flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-item {
        width: 80%;
        max-width: 320px;
    }
    
    .step-arrow {
        width: 24px;
        transform: rotate(90deg); 
    }
}

.sec-rest {
    text-align: center;
    padding: 60px 20px;
    color: #111111;
}

.sec-rest h2 {
    margin-bottom: 40px;
}

.rest-subhead {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.rest-text {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.rest-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .sec-rest {
        padding: 40px 15px;
    }
    
    .rest-subhead {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .rest-text {
        font-size: 13px;
    }
}

.site-footer {
    padding: 30px 20px;
    text-align: center;
background-color: #111111;
}

.footer-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .site-footer {
        padding: 30px 15px;
    }
}