/*----------------------------------------------------
 すごろく紹介
----------------------------------------------------*/
.sugoroku,
.sugoroku-test {
    padding-bottom: 0;
}

.sugoroku-cont {
    background-color: #e8f1cf;
    padding-top: 30px;
    padding-bottom: 10px;
}
.sugoroku-cont h2 {
    width: 90%;
    max-width: 550px;
    margin: auto;
}
.sugoroku-cont .lead {
    padding: 1em 2em 0;
}
.sugoroku-cont .lead .txt {
    display: inline;
    font-size: 1.7rem;
    line-height: 2;
}

/* 盤面・カード */
.sugoroku-cont section {
    background-color: #fff;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 0;
    padding-bottom: 30px;
}
.sugoroku-cont section h3 {
    background-color: #8bbf3f;
    color: #fff;
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
    padding: .5em 1em;
}
.sugoroku-cont section .image {
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
}
.sugoroku-cont section .image a {
    transition: .3;
}
.sugoroku-cont section .image a:hover {
    opacity: .8;
}
.sugoroku-cont section .suisho {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #8bbf3f;
    width: fit-content;
    padding: 0 .5em .2em;
    border-bottom: 3px dotted #8bbf3f;
    margin: 0 auto .5em;
}
.sugoroku-cont section .yoryo {
    text-align: center;
}
.sugoroku-cont section .suisho strong,
.sugoroku-cont section .yoryo strong {
    font-size: 1.3em;
}
/* ボタン */
.sugoroku-cont section .btn {
    text-align: center;
    margin: 1em auto;
}
.sugoroku-cont section .btn a {
    display: block;
    margin: auto;
    text-decoration: none;
    background-color: #ef6937;
    color: #fff;
    font-weight: bold;
    font-size: 1.6rem;
    text-align: center;
    width: fit-content;
    border-radius: 999px;
    padding: .5em 1.5em;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
}
.sugoroku-cont section .btn a:hover {
    background-color: #ef8237;
}
.sugoroku-cont section .att {
    text-align: center;
    font-size: 0.85em;
}


/* 
----------------------------------------------------*/
@media (min-width: 600px) {}

@media (min-width: 1025px) {
    .sugoroku-cont {
    padding-top: 40px;
}
    .sugoroku-cont .lead {
    padding: 1em 0 0;
}
    .sugoroku-cont .lead .txt {
    display: block;
    text-align: center;
    font-size: 1.8rem;
}
/* 盤面・カード */
    .sugoroku-cont section {
    border-radius: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
}
    .sugoroku-cont section h3 {
    font-size: 2.8rem;
    text-align: center;
    border-radius: 30px 30px 0 0;
    padding: .75em 1em;
}
    .sugoroku-cont section .image {
    margin: 40px auto;
}
/* ボタン */
    .sugoroku-cont section .btn {
    text-align: center;
    margin: 1.5em auto;
}
    .sugoroku-cont section .btn a {
    font-size: 2.0rem;
    padding: .75em 2em;
    transition: all .3s ease-out;
}
    .sugoroku-cont section .btn a:hover {
    background-color: #efa137;
    box-shadow: 0 3px 15px rgba(0,0,0,.2);
}
}

.zoom-bounce {
    animation: zoom-bounce 1.0s ease forwards;
}
@keyframes zoom-bounce {
    0% {
    transform: scale(0);
    }
    50% {
    transform: scale(1.05);
    }
    100% {
    transform: scale(1);
    }
}