@charset "utf-8";
/*--なんとなくこうだな*/
.umai {
    position: relative;
}

.umai:after {
    content: "";
    z-index: -1;
    display: block;
    position: absolute;
    top: -40%;
    width: 100%;
    height: 50vh;
    background-image: url(../images/sp/kirakira.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}


/*------------------ 明朝体の方が良くないですか ------------------*/
.mincho {
  font-size: 16px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 5px;
}

/*------------------ 赤文字 ------------------*/
.take {
  font-size: 20px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 5px;
  color: #ef4a21;
  line-height: 2;
}

/*------------------ 赤文字 ------------------*/
.otoi {
  font-size: 25px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 5px;
  color: #ef4a21;
}

/*------------------ 台風情報START ------------------*/

#rinji {
    padding: 7% 1%;
    background-color: #eee;
    text-align: center;
}

.rinji-contents {
    width: 90%;
    margin: 0 auto;
    padding: 2%;
    background-color: #ffb7a8;
}

#rinji h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-top: 5%;
    margin-bottom: 3%;
}

#rinji p {
    font-size: 1rem;
    padding-bottom: 10px;
}

@media (min-width: 1024px) {
    #rinji {
        padding: 50px 30px;
    }
    #rinji h2 {
        margin-top: 18px;
    }
}

/*------------------ 台風情報END ------------------*/

/*------------------ 共通 ------------------*/

* {
    margin: 0;
    padding: 0;
}

body {
    color: #262626;
    background-color: #e6e6fa;
    font-size: 1.6rem;
    -webkit-text-size-adjust: 100%;
}

.wrapper {
    width: 100%;
}

@media (min-width: 1024px) {
    .wrapper {
        width: 100%;
        background-image: url(../images/pc/wrapper-bg.png);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
    }
}

.container {
    width: 88.8%;
    margin: 0 auto;
}

img {
    width: 100%;
    display: block;
    vertical-align: bottom;
}

.li-square {
    color: #9563C2;
}

/* ----------- font-family -------- */

.yu-gothic {
    font-family: YuGothicM, YuGothic, Meiryo, sans-serif;
}

/* Windows */

@font-face {
    font-family: YuGothicM;
    font-weight: normal;
    src: local('YuGothic-Medium'), /* Mediumを明示的に指定 */
    local('Yu Gothic Medium'), /* Chrome用 */
    local('YuGothic-Regular');
    /* Windows8.1ではMediumがないのでRegularを指定 */
}

@font-face {
    font-family: YuGothicM;
    font-weight: bold;
    src: local('YoGothic-Bold'), /* Boldはそのまま */
    local('Yu Gothic');
    /* Chrome用 */
}

.yu-mincho {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    /* 追加 */
    transform: rotate(.03deg);
    line-height: 2;
}

/*--------------- menu ---------------------b79f59*/

#toggle {
    display: block;
    color: #e6e6fa;
    text-align: center;
    width: 15%;
    height: 8%;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 10000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 320px) {
    #toggle {
        width: 15%;
        height: 7%;
    }
}

@media (min-width: 375px) {
    #toggle {
        width: 15%;
        height: 8%;
    }
}

@media (min-width: 414px) {
    #toggle {
        width: 15%;
        height: 7.5%;
    }
}

@media (min-width: 768px) {
    #toggle {
        width: 15%;
        height: 9.5%;
    }
}

@media (min-width: 1024px) {
    #toggle {
        display: none;
    }
}

.trigger,
.trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.trigger {
    position: relative;
    width: 28px;
    height: 19px;
}

@media (min-width: 375px) {
    .trigger {
        width: 28px;
        height: 19px;
    }
}

@media (min-width: 414px) {
    .trigger {
        width: 35px;
        height: 22px;
    }
}

@media (min-width: 768px) {
    .trigger {
        width: 35px;
        height: 22px;
    }
}

.trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e6e6fa;
    border-radius: 4px;
}

.trigger span:nth-of-type(1) {
    top: 0px;
}

.trigger span:nth-of-type(2) {
    top: 8px;
}

@media (min-width: 414px) {
    .trigger span:nth-of-type(2) {
        top: 10px;
    }
}

.trigger span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #e6e6fa;
    border-radius: 4px;
    -webkit-transition: all .4s;
    transition: all .4s;
    opacity: 0;
}

.trigger span:nth-of-type(3) {
    bottom: 0px;
}

.trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) scale(0);
    transform: translateY(8px) scale(0);
    opacity: 0;
}

.trigger.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.trigger.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 1;
}

.trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) scale(0);
    transform: translateY(-8px) scale(0);
    opacity: 0;
}

.menu-trigger::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 30px;
    height: 30px;
    margin: -16px 0 0 -16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    transition: all .1s;
    opacity: 0;
}

.menu-trigger.active::after {
    -webkit-animation: circle .5s;
    animation: circle .5s;
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: scale(.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(3.5);
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        transform: scale(.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

/* ------------------- toggleWrap ---------------- */

.toggleWrap {
    background-color: #fff;
    padding: 13.37% 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

@media (min-width: 1024px) {
    .toggleWrap {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        padding: 0;
        z-index: 10001;
        width: 100%;
        max-width: 1100px;
        height: 70px;
        left: inherit;
        right: 0;
        position: relative;
    }
}

.mainNav {
    padding: 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .mainNav {
        display: flex;
        justify-content: space-between;
        width: 670px;
        padding-top: 14px;
    }
}

@media (min-width: 1200px) {
    .mainNav {
        width: 780px;
    }
}

.mainNav {
    list-style-type: none;
}

.navItem {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #463508;
    padding: 10px;
    text-align: center;
    font-size: 1rem;
    font-family: 'EB Garamond', serif;
    letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
    .navItem {
        font-size: 12px;
    }
}

@media (min-width: 1200px) {
    .navItem {
        font-size: 14px;
    }
}

.bg-color {
    background-color: #f7f6f6;
}

@media (min-width: 1024px) {
    .bg-color {
        background: none;
    }
}

.mainNav .navItem:hover {
    opacity: .5;
}

.mainNav2 {
    margin-top: 50px;
}

.mainNav2 li a {
    font-size: 12px;
}

.mainNav3 {
    width: 115px;
    text-align: center;
    display: flex;
    list-style: none;
    margin: 0 auto;
    justify-content: space-around;
}

.mainNav3 li {
    text-align: center;
    width: 20px;
}

.hide {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hide {
        opacity: 1;
        visibility: visible;
        overflow: hidden;
    }
}

.animation {
    -webkit-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

.no-scroll {
    overflow: hidden;
}

/*----------------- smooth-id -----------------*/

.smooth-id {
    margin-top: -40px;
    padding-top: 40px;
}

/*----------------- kirakira -----------------*/

.kirakira {
    position: relative;
}

.kirakira:after {
    content: "";
    z-index: -1;
    display: block;
    position: absolute;
    top: -40%;
    width: 100%;
    height: 50vh;
    background-image: url(../images/sp/kirakira.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

/*----------------- 電話番号 -----------------*/

a[href^="tel:"] {
    cursor: default;
}

/*
a[href^="tel:"]:hover {

}
*/

.banner {
    display: none;
}

@media (min-width: 1024px) {
    .banner {
        display: block;
        width: 70px;
        position: fixed;
        top: 100px;
        right: 9px;
        z-index: 1000;
    }

    .banner a:hover > img {
        opacity: .6;
    }
}

/* ----------- header -------- */

header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #fff;
    z-index: 10000;
}

@media (min-width: 1024px) {
    .header-wrapper {
        width: 100%;
        height: 70px;
        position: fixed;
        top: 0;
        background-color: #fff;
        z-index: 10000;
    }
    .header-wrapper:after {
        content: '';
        display: block;
        width: calc( 100% + 32px);
        height: 4px;
        background: linear-gradient(to right, #A67FF8, #683DC5, #7942F0);
        background-color: #fff;
    }
    .header {
        width: 100%;
        height: 70px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        display: flex;
        justify-content: space-between;
    }
    header {
        position: relative;
        width: 140px;
    }
}

header:before {
    content: "";
    display: block;
    padding-top: 13.33%;
}

@media (min-width: 1024px) {
    header:before {
        padding-top: 0;
    }
}

.grad-2 {
    /*    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.5);*/
}

.grad-2:after {
    content: '';
    display: block;
    width: calc( 100% + 32px);
    height: 1px;
    background: linear-gradient(to right, #e6b964, #d0a052, #e6b964);
}

@media (min-width: 1024px) {
    .grad-2:after {
        display: none;
    }
}

/* ----------- logo -------- */

.logo {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.logo img {
    width: 24.5%;
    margin: 2% 0 2% 2%;
}

@media (min-width: 1024px) {
    .logo {
        width: 100px;
        z-index: 10001;
        right: inherit;
        bottom: inherit;
        position: relative;
    }
    .logo:hover {
        opacity: .5;
    }
    .logo img {
        width: 120px;
        margin: 15px 0 10px 2px;
    }

}

/* ----------- top -------- */

@media (min-width: 1024px) {
    .top {
        margin: 0 auto;
        margin-top: 70px;
        display: flex;
        width: 100%;
        max-width: 1100px;
        height: 100%;
    }
}

.top-img {
    position: relative;
    background-color: #6cb8d8;
    height: auto;
    width:auto;
    /*background-color: #e9be57;*/
}

@media (min-width: 1024px) {
    .top-img {
        height: auto;
        background: none;
    }
}

.DonICE_japan-img {
    margin-top: 13.34%;
}

@media (min-width: 1024px) {
    .DonICE_japan-img {
        margin-top: 0;
    }
}

.top-img.bottom {
    padding-bottom: 8%;
    position: center;
}

@media (min-width: 1024px) {
    .top-img.bottom {
        padding-bottom: 0;
        position: center;
    }
}

.top-img.bottom:before {
    content: "";
    display: block;
    position: absolute;
    top: -8%;
    width: 100%;
    height: 100%;
    background-image: url(../images/sp/header-img.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.top-copy-img-1 {
    width: 84.93%;
    margin: 0 auto;
    padding-top: 10%;
}

.top-copy-img-2 {
    width: 86.93%;
    margin: 0 auto;
    margin-top: 6.5%;
}

@media (min-width: 1024px) {
    .top-img.bottom:before {
        top-margin: 130px;
    }
    .top-copy-img-1 {
        width: 80.93%;
        margin: 0 auto;
        padding-top: 30px;
    }
    .top-copy-img-2 {
        width: 74.93%;
        margin: 0 auto;
        margin-top: 30px;
    }
}

/*----------sale-date-contents ----------*/

.sale-date-contents {
    position: relative;
    width: 100%;
}

.sale-date-contents:before {
    content: "";
    display: block;
    padding-top: 53.33333%;
    background: #fff;
}

@media (min-width: 1024px) {
    .sale-date-contents:before {
        padding-top: 280px;
    }
}

.sale-date-contents.min:before {
    padding-top: 48.33333%;
}

.sale-date-contents.min .sale-date {
    margin-top: 5%;
}

@media (min-width: 1024px) {
    .sale-date-contents.min:before {
        padding-top: 200px;
    }
    .sale-date-contents.min .sale-date {
        margin-top: 35px;
    }
}

.sale-date {
    position: relative;
    width: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@media (min-width: 1024px) {
    .sale-date {
        width: 400px;
        margin: 0 auto;
        max-width: 1200px;
    }
}

.sale-date-img {
    width: 87.6%;
    margin: 0 auto;
    margin-top: 7.34%;
}

@media (min-width: 1024px) {
    .sale-date-img {
        margin-top: 53px;
    }
}

.sale-date-text {
    width: 88.26%;
    margin: 0 auto;
    margin-top: 7.125%;
    font-size: 0.9rem;
    text-align: center;
    color: #463508;
    position: relative;
    font-weight: bold;
    letter-spacing: 0.1em;
}

@media (min-width: 320px) {
    .sale-date-text {
        font-size: 0.8rem;
    }
}

@media (min-width: 425px) {
    .sale-date-text {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .sale-date-text {
        font-size: 1.7rem;
    }
}

@media (min-width: 1024px) {
    .sale-date-text {
        font-size: 1rem;
        margin-top: 33px;
    }
}

.sale-date-text:before {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    top: -11px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #463508;
}

.sale-date-text:after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    bottom: -11px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #463508;
}


/*---------- poppup ----------*/

.popup {
    position: relative;
}

.buy-button {
    width: 88.26%;
    margin: 0 auto;
    margin-top: 4%;
}

@media (min-width: 1024px) {
    .buy-button {
        width: 100%;
        margin-top: 28px;
    }
    .buy-button.min {
        margin-top: 0px;
    }
}

.popup .popup-button {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.1em;
    padding: 6% 2%;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.5);
    background-image: #fc9090;
    background-image: -moz-linear-gradient(left, #fc9090 0%, #ff9f86 100%);
    background-image: -webkit-linear-gradient(left, #fc9090 0%, #ff9f86 100%);
    background-image: linear-gradient(to right, #fc9090 0%, #ff9f86 50%, #fc9090 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fc9090', endColorstr='#ff9f86', GradientType=1);
    transition: 0.5s;
}

.popup .popup-button:before {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 30%;
    background-color: #fff;
    opacity: .1;
    z-index: 1000;
}

.popup .popup-button:after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: -65%;
    bottom: 0;
    width: 15%;
    height: 44%;
    background-image: url(../images/common/left-yajirushi.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    z-index: 1000;
}

.toggleWrap .popup .popup-button {
    box-shadow: none;
    font-size: 1.3rem;
}

.toggleWrap .popup .popup-button.sp {
    display: block;
}

.toggleWrap .popup .popup-button.pc {
    display: none;
}

@media (min-width: 1024px) {
    .toggleWrap .popup .popup-button.sp {
        display: none;
    }

    .toggleWrap .popup .popup-button.pc {
        display: block;
        width: 200px;
        padding: 15px 0px;
        margin-top: 10px;
        margin-left: 10px;
    }
}

.toggleWrap .popup .popup-button:after {
    content: none;
}

.popup .popup-button:hover {
    background-position: right center;
}

.nav-button {
    width: 100%;
    margin: 0;
}

.nav-button .popup-button {
    padding: 25px 0;
    font-size: 1.2rem;
}

.nav-button .popup-button:after {
    right: -80%;
}

.footer-button {
    width: 100%;
    margin: 0;
}

.footer-button .popup-button {
    padding: 25px 0;
    font-size: 1.2rem;
}

.footer-button .popup-button:after {
    right: -80%;
}

/* -------------- kouen ---------------*/

@media (min-width: 1024px) {
    .kouen-contents {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        max-width: 1100px;
        margin: 0 auto;
        margin-top: 60px;
    }
    .kouen-content-pc {
        width: 50%;
        padding-left: 60px;
    }
}

.kouen-gaiyou-img {
    width: 60%;
    margin: 0 auto;
    margin-top: 11%;
}

@media (min-width: 1024px) {
    .kouen-gaiyou-img {
        width: 300px;
        margin-top: 98px;
    }
}

.kaisai-gaiyou-img {
    width: 21.66%;
    margin: 0 auto;
    margin-top: 16%;
}

@media (min-width: 1024px) {
    .kaisai-gaiyou-img {
        width: 98px;
        margin-top: 95px;
    }
}

.kouen-date {
    margin-top: 8%;
}

@media (min-width: 1024px) {
    .kouen-date {
        margin-top: 0;
    }
}

.kouen-date li {
    font-size: 1rem;
    padding: 1% 0;
    letter-spacing: 0.1em;
}

.kouen-date li span.min {
    font-size: 0.9rem;
}

.kouen-date-table {
    width: 100%;
    margin-top: 7%;
    font-size: 1rem;
    border: 1px solid #fff;
    text-align: center;
    vertical-align: middle;
    color: #262626;
}

@media (min-width: 1024px) {
    .kouen-date-table {
        margin-top: 0;
        width: 50%;
    }
}

.kouen-date-table tr,
.kouen-date-table td {
    border: 1px solid #fff;
}

.kouen-date-table tr.dates {
    color: #fff;
    background-color: #9563C2;
}

.kouen-date-table tr.first {
    background-color: #e0e0e0;
}

.kouen-date-table tr.second {
    background-color: #f9f9f9;
}

.kouen-date-table tr.third {
    background-color: #e0e0e0;
}

.kouen-date-table tr td {
    width: 23.333333%;
    font-size: 0.6rem;
}

.kouen-date-table tr td:first-of-type {
    width: 30%;
    padding: 1.5em 0;
}

.kouen-date-attension {
    font-size: 0.8rem;
    margin-top: 5%;
}

.kouen-date-attension li {
    padding: 1% 0;
}

@media (min-width: 1024px) {
    .kouen-date-table tr td {
        font-size: 0.9rem;
    }

    .kouen-date-attension {
        font-size: 0.9rem;
    }
}

/*---------- #price ----------*/

@media (min-width: 1024px) {
    .price-contents {
        display: flex;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
    }
    .price-content {
        width: 50%;
    }
    .zasekihyou-content {
        width: 50%;
    }
}

.price-price-img {
    margin-top: 8%;
    width: 62.46%;
    margin: 0 auto;
    margin-top: 8%;
}

@media (min-width: 1024px) {
    .price-price-img {
        margin-top: 167px;
        width: 330px;
    }
}

.price-table {
    width: 100%;
    margin-top: 10%;
    font-size: 1rem;
    border: 1px solid #fff;
    text-align: center;
    vertical-align: middle;
    color: #262626;
}

.price-table tr,
.price-table td {
    border: 1px solid #fff;
}

.price-table tr.zaseki {
    color: #fff;
    background-color: #9563C2;
    font-weight: bold;
}

.price-table tr.first {
    background-color: #fcbebe;
}

.price-table tr.second {
    background-color: #f4ef9d;
}

.price-table tr.third {
    background-color: #b3edff;
}

.price-table tr.fourth {
    background-color: #f9f9f9;
}

.price-table tr td {
    width: 23.333333%;
    font-size: 0.6rem;
}

@media (min-width: 1024px) {
    .price-table tr td {
        font-size: 0.9rem;
    }
}

.price-table tr td:first-of-type {
    width: 30%;
    padding: 1.5em 0;
    font-weight: bold;
}

.zenseki-shitei {
    text-align: right;
    font-size: 0.9rem;
    margin: 2% 0;
}

.price-attention {
    font-size: 0.9rem;
    padding: 1% 0;
}

.price-attention dt {
    float: left;
    line-height: 1.5em;
}

.price-attention dd {
    margin-left: 20px;
    line-height: 1.5em;
}

/*-------------- zasekihyou -------------- */

.zasekihyou {
    margin-top: 10%;
}

.zasekihyou-img {
    margin-top: 10%;
    width: 20%;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .zasekihyou-img {
        width: 74px;
    }
}

.zasekihyou-seat-img {
    margin-top: 10%;
    width: 100%;
}

@media (min-width: 1024px) {
    .zasekihyou-seat-img {
        margin: 0 auto;
        margin-top: 40px;
        width: 340px;
    }
}

/* ---------------- special-eria ---------------*/

@media (min-width: 1024px) {
    .eria-contents {
        display: flex;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        justify-content: space-between;
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

.special-eria {
    margin-top: 20%;
    position: relative;
}

@media (min-width: 1024px) {
    .ribon-img {
        width: 90%;
        margin: 0 auto;
    }
}

.special-eria p.text-1 {
    color: #9563C2;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 3% 0 4%;
}

.special-attention {
    position: absolute;
    left: 18%;
}

.special-attention p {
    font-size: 0.7rem;
    line-height: 1.3em;
}

@media (min-width: 768px) {
    .special-attention p {
        font-size: 1rem;
        line-height: 1.3em;
    }
}

.sweetroom {
    margin-top: 15%;
    margin-bottom: 15%;
}

.special-eria p.text-1 {
    color: #9563C2;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 3% 0 4%;
}

@media (min-width: 1024px) {
    .special-eria {
        margin-top: 0;
        width: 48%;
    }
    .sweetroom {
        margin-top: 0;
        margin-bottom: 0;
        width: 48%;
    }
}

/*---------- sweetroom ----------*/

.sweetroom-tokuten-img {
    margin-top: 8%;
}

.sweetroom-tokuten-text {
    margin-top: 2%;
    font-size: 0.7rem;
    text-align: right;
}

@media (min-width: 1024px) {
    .sweetroom-tokuten-text {
        font-size: 1rem;
        font-weight: bold;
    }
}

.sweetroom-tokuten-text a {
    text-decoration: none;
    color: #262626;
}

/*--------- show-details ----------*/

@media (min-width: 1024px) {
    .show-details-contents {
        display: flex;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        margin-top: 90px;
        justify-content: space-between;
    }
    .show-details-content {
        width: 49%;
    }
}

.show-details-img {
    width: 78%;
    margin: 0 auto;
    margin-top: 8%;
}

@media (min-width: 1024px) {
    .show-details-img {
        width: 400px;
    }
}

.show-details-img2 {
    margin-top: 0;
}

@media (min-width: 1024px) {
    .show-details-img2 {
        margin-top: 0;
    }
}

.kirakira-big {
    background-image: url(../images/sp/kirakira-big.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}

.show-details-text {
    margin: 12% 0 25%;
}

@media (min-width: 1024px) {
    .show-details-text {
        margin: 0;
    }
}

.show-about-images {
    position: relative;
    margin-bottom: 10%;
}

@media (min-width: 1024px) {
    .show-about-images {
        position: relative;
        margin-bottom: 50px;
        ;
    }
}

.show-about-img:after {
    position: absolute;
    z-index: 995;
    content: '';
    margin: 0 auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.show-about-img.ana:after {
    right: -5.5%;
    bottom: 2%;
    width: 60.46%;
    height: 28%;
    background-image: url("../images/sp/ana.png");
}

@media (min-width: 1024px) {
    .show-about-img.ana:after {
        bottom: 45px;
    }
}

.show-about-img.jasmine:after {
    right: -4.5%;
    bottom: 8%;
    width: 45.46%;
    height: 23%;
    background-image: url("../images/sp/jasmine.png");
}

@media (min-width: 1024px) {
    .show-about-img.jasmine:after {
        bottom: 45px;
        width: 170px;
    }
}

.show-about-img.rapunzel:after {
    right: -4.5%;
    bottom: 13%;
    width: 51.46%;
    height: 28%;
    background-image: url("../images/sp/Rapunzel.png");
}

@media (min-width: 1024px) {
    .show-about-img.rapunzel:after {
        width: 180px;
        height: 117px;
    }
}

.show-about-img.moana:after {
    right: -4.5%;
    bottom: 7%;
    width: 50.46%;
    height: 22%;
    background-image: url("../images/sp/Moana.png");
}

@media (min-width: 1024px) {
    .show-about-img.moana:after {
        bottom: 52px;
        width: 180px;
        height: 60px;
    }
}

.show-about-img.inside-head:after {
    right: -4.5%;
    bottom: 6%;
    width: 56.46%;
    height: 30%;
    background-image: url("../images/sp/InsideOut.png");
}

@media (min-width: 1024px) {
    .show-about-img.inside-head:after {
        bottom: 50px;
        width: 180px;
        height: 77px;
    }
}

.show-about-img.ariel:after {
    right: -4.5%;
    bottom: 15%;
    width: 40.46%;
    height: 31%;
    background-image: url("../images/sp/Ariel.png");
}

@media (min-width: 1024px) {}

.show-about-img .show-about-text {
    margin-top: 6%;
    text-align: center;
    font-size: 1.2rem;
    font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: 600;
    line-height: 1.3em;
}

@media (min-width: 320px) {
    .show-about-img .show-about-text {
        font-size: 1rem;
    }
}

@media (min-width: 375px) {
    .show-about-img .show-about-text {
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .show-about-images-contents {
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        margin-top: 60px;
        margin-bottom: 60px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .show-about-images {
        width: 31%;
    }
}

/*---------- carming-point ----------*/

.carming-point-img {
    width: 76%;
    margin: 0 auto;
    margin-top: 10%;
}

@media (min-width: 1024px) {
    .carming-point-img {
        width: 390px;
        margin: 0 auto;
        margin-top: 105px;
    }
}

.carming-point-wrapper {
    margin-bottom: 10%;
}

@media (min-width: 1024px) {
    .carming-point-wrapper {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 60px;
        max-width: 1100px;
        display: flex;
        justify-content: space-around;
        padding-top: 40px;
    }
}

.carming-point-contents {
    display: flex;
    justify-content: space-around;
}

@media (min-width: 1024px) {
    .carming-point-contents {
        width: 50%;
    }
}

.carming-point-content {
    width: 45%;
    margin-top: 10%;
}

@media (min-width: 1024px) {
    .carming-point-content {
        margin-top: 0;
    }
}

.carming-point-content .point-img {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 10%;
}

@media (min-width: 1024px) {
    .carming-point-content .point-img {
        width: 70%;
    }
    .carming-point-content .point-img2 {
        width: 85%;
        margin: 0 auto;
    }
}

.carming-point-content p {
    width: 100%;
    margin: 0 auto;
    margin-top: 10%;
    font-size: 0.8rem;
    line-height: 1.4rem;
    color: #463508;
    letter-spacing: 0.05em;
}

/*---------- access ----------*/

.access-img {
    width: 70%;
    margin: 0 auto;
    margin-top: 15%;
}

@media (min-width: 1024px) {
    .access-img {
        width: 310px;
        margin-top: 105px;
    }
}

@media (min-width: 1024px) {
    .access-contents {
        margin-top: 60px;
    }
}

.access-contents p {
    font-size: 1.2rem;
    line-height: 1.4em;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-align: center;
    color: #463508;
}

.map-img {
    width: 90%;
    margin: 0 auto;
    margin-top: 10%;
}

@media (min-width: 1024px) {
    .map-img {
        width: 408px;
        margin-top: 30px;
    }
}

.map-text {
    margin: 9% 0 10%;
    font-size: 0.8rem;
    line-height: 1.4em;
    color: #463508;
}

@media (min-width: 1024px) {
    .map-text {
        text-align: center;
        font-size: 16px;
        margin: 30px 0 30px 0;
    }
}

/*---------- qa ----------*/

.qa-img {
    width: 80%;
    margin: 0 auto;
    margin-top: 10%;
}

@media (min-width: 1024px) {
    .qa-img {
        width: 408px;
        margin: 0 auto;
        margin-top: 105px;
    }
}

.sidebar {
    margin-top: 10%;
    margin-bottom: 15%;
    width: 100%;
    height: 100%;
    /*    background: #293949;*/
    /*    position: absolute;*/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 100;
    /*    overflow-y: scroll;*/
}

@media (min-width: 1024px) {
    .sidebar {
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

.sidebar #leftside-navigation ul,
.sidebar #leftside-navigation ul ul {
    margin: -2px 0 0;
    padding: 0;
}

.sidebar #leftside-navigation ul li {
    list-style-type: none;
    /*    border-bottom: 1px solid rgba(255, 255, 255, 0.05);*/
    background-color: #9563C2;
    margin-bottom: 1.5%;
    position: relative;
}

.sidebar #leftside-navigation ul li.active > a {
    color: #000;
}

.sidebar #leftside-navigation ul li.active ul {
    display: block;
}

.sidebar #leftside-navigation ul li a {
    position: relative;
    color: #fdfdfd;
    text-decoration: none;
    display: block;
    padding: 4% 6%;
    font-size: 12px;
    outline: 0;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

@media (min-width: 1024px) {
    .sidebar #leftside-navigation ul li a {
        font-size: 16px;
        text-align: center;
        padding: 20px 0px;
    }
    .sidebar #leftside-navigation ul li a:hover {
        /*    color: #fff;*/
        opacity: .5;
    }
}

.sidebar #leftside-navigation ul li a span {
    display: inline-block;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    /* 追加 */
    transform: rotate(.03deg);
}

.sidebar #leftside-navigation ul li a i {
    width: 20px;
}

.sidebar #leftside-navigation ul li a i .fa-angle-left,
.sidebar #leftside-navigation ul li a i .fa-angle-right {
    padding-top: 3px;
}

.sidebar #leftside-navigation ul ul {
    display: none;
}

.sidebar #leftside-navigation ul ul li {
    background: #fff;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    border-bottom: none;
    padding: 4% 2%;
    color: #463508;
    line-height: 1.4em;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

@media (min-width: 1024px) {
    .sidebar #leftside-navigation ul ul li {
        padding: 20px 20px;
        line-height: 1.4em;
        letter-spacing: 0.1em;
        text-align: left;
        font-size: 14px;
    }
}

.sub-menu {
    position: relative;
}

.sub-menu i {
    position: absolute;
    color: #fff;
    font-size: 0.6rem;
    margin: auto;
    top: 15px;
    right: 0;
    display: block;
}

.sub-menu > a.open i.pull-right {
    transform: scale(-1, -1);
    top: 15px;
    right: 10px;
}

@media (min-width: 768px) {
    .sub-menu i {
        top: 20px;
        right: 10px;
        font-size: 16px;
    }
    .sub-menu > a.open i.pull-right {
        transform: scale(-1, -1);
        top: 20px;
        right: 10px;
    }
}


/*---------- playguide ----------*/

.playguide-image {
    background-color: #9563C2;
    margin-top: 6%;
}

.playguide-img {
    width: 70%;
    margin: 0 auto;
    padding: 15px 0;
}

@media (min-width: 1024px) {
    .playguide-image {
        margin: 0 auto;
        width: 100%;
        max-width: 1100px;
        margin-top: 80px;
    }
    .playguide-img {
        width: 367px;
        margin: 0 auto;
    }
}

.playguide-date {
    font-size: 0.8rem;
    font-weight: bold;
    color: #463508;
    padding: 5% 0;
    text-align: center;
    letter-spacing: 0.05em;
}

@media (min-width: 320px) {
    .playguide-date {
        font-size: 0.7rem;
    }
}

@media (min-width: 375px) {
    .playguide-date {
        font-size: 0.8rem;
    }
}

@media (min-width: 425px) {
    .playguide-date {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .playguide-date {
        font-size: 18px;
        padding: 25px 0;
    }
    .br-sp2 {
        display: none;
    }
}

.playguide-content {
    width: 100%;
    margin: 0 auto;
}

.container-playguide {
    width: 88.8%;
    margin: 0 auto;
}

.playguide-content dl,
.playguide-content dt,
.playguide-content dd {
    margin: 0;
    padding: 0;
    font-size: 10px;
    letter-spacing: 0.1em;
}

@media (min-width: 1024px) {
    .playguide-content dl,
    .playguide-content dt,
    .playguide-content dd {
        font-size: 14px;
    }
}

.playguide-small {
    font-size: 8px;
}

@media (min-width: 1024px) {
    .playguide-small {
        font-size: 13px;
    }
}

.playguide-content dl {
    padding: 3% 0;
    border-bottom: 1px solid #000003;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.playguide-content dl:first-of-type {
    border-top: 1px solid #000003;
}

.playguide-content dl:last-of-type {
    border: none;
}

.playguide-content dt {
    width: 45%;
    line-height: 1.5em;
}

.playguide-content dd {
    width: 45%;
    line-height: 1.5em;
}

@media (min-width: 1024px) {
    .playguide-content dl {
        padding: 20px 120px;
    }
}

.playguide-star {
    color: #ff7f7f;
}

.playguide-content a {
    color: #463508;
    text-decoration: none;
}

.playguide-content a:hover {
    opacity: .5;
}

.playguide-copy {

}

@media (min-width: 1024px) {
    .playguide-copy {
        font-size: 14.35px;
    }
}

/*------------- footer -------------------*/

footer {
    margin-bottom: 69px;
    background-color: #EEEEEF;
    color: #4F3E76;
}

@media (min-width: 1024px) {
    footer {
        margin-bottom: 0px;
    }
}

/*------------- company-info -------------------*/

.company-info {
    width: 87.2%;
    margin: 0 auto;
}


@media (min-width: 1024px) {
    .company-info {
        width: 100%;
        margin: 0 auto;
        max-width: 1100px;
    }
}

.company-info h3 {
    padding-top: 15%;
    font-weight: bold;
    letter-spacing: 0.1em;
}

@media (min-width: 1024px) {
    .company-info h3 {
        padding-top: 0;
        font-size: 30px;
    }
}

.company-info .jimukyoku {
    font-size: 0.9rem;
    margin-top: 3%;
}

.company-info .tel-text {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 5%;
}

.company-info .tel-text2 {
    font-size: 1rem;
    font-weight: normal;
    margin-top: 3%;
}

.tel-num {
    font-size: 1.5rem;
    font-weight: bold;
}

.tel-num a {
    text-decoration: none;
    color: #4F3E76;
}

.company-info-content h3 a {
    color: #4F3E76;
    text-decoration: none;
}


@media (min-width: 1024px) {
    .company-info-contents {
        display: flex;
        padding-top: 50px;
    }
    .company-info-content h3 a:hover {
        opacity: .5;
    }
}

@media (min-width: 1024px) {
    .company-info-content {
        width: 50%;
    }
    .company-info .tel-text {
        margin: 0;
    }
}


/* ----------- company-imfo-text -----------*/

.company-imfo-text {
    margin: 6% 0;
}

@media (min-width: 1024px) {
    .company-imfo-text {
        margin: 30px 0;
    }
}

.company-imfo-text dl {
    font-size: 0.9rem;
}

.company-imfo-text dt {
    float: left;
    line-height: 2em;
}

.company-imfo-text dd {
    margin-left: 55px;
    line-height: 2em;
}

/*------------- footer-small -------------*/

.footer-small {
    background-color: #9563C2;
    padding: 2% 0;
}

.footer-small small {
    font-family: 'Josefin Slab', serif;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/*------------- footerFloatingMenu -------------*/

#footerFloatingMenu {
    display: block;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 0;
    z-index: 999;
    text-align: center;
    color: 1rem;
}

@media (min-width: 1024px) {
    #footerFloatingMenu {
        display: none !important;
    }
}

#footerFloatingMenu img {
    max-width: 99%;
}

/* ----------- pc,sp表示切り替え --------*/

.sp {
    display: block;
}

.pc {
    display: none;
}

@media (min-width: 1024px) {
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }
}
.playguide-content a{
    text-decoration: underline;
}
